From 9147d1216e2202da7f369c32b0ee73a3fae71530 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Sun, 8 Mar 2020 17:23:04 +0100 Subject: gnu: proj: Update to 6.3.1. * gnu/packages/geo.scm (proj): Update to 6.3.1. --- gnu/packages/geo.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/geo.scm') diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index d458c7bc92..27d5950875 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -328,7 +328,7 @@ (define-public libspatialite (define-public proj (package (name "proj") - (version "6.2.0") + (version "6.3.1") (source (origin (method url-fetch) @@ -336,7 +336,7 @@ (define-public proj version ".tar.gz")) (sha256 (base32 - "0l1as8f4zfg74fms6h5p5psziw0lpznja1xnirzsscpnfbwc005k")))) + "1y46ij32j9b4x1kjnnlykcwk3kkjwkg44sfc1ziwm3a3g0ki3q3d")))) (build-system gnu-build-system) (inputs `(("sqlite" ,sqlite))) -- cgit v1.2.3 From 3cf0a5dc538668adc5bef85cf4c120fad5d24856 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Sun, 8 Mar 2020 18:22:34 +0100 Subject: gnu: gdal: Update to 3.0.4. * gnu/packages/geo.scm (gdal): Update to 3.0.4. --- gnu/packages/geo.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/geo.scm') diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 27d5950875..33137a17f1 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -571,7 +571,7 @@ (define-public spatialite-gui (define-public gdal (package (name "gdal") - (version "3.0.2") + (version "3.0.4") (source (origin (method url-fetch) (uri (string-append @@ -579,7 +579,7 @@ (define-public gdal version ".tar.gz")) (sha256 (base32 - "0f80izh9wshrsw55kg9abpip74hk6frk3hgqrkqbyn3f6i8g2z3q")) + "10symyajj1b7j98f889lqxxbmhcyvlhq9gg0l42h69bv22wx45gw")) (modules '((guix build utils))) (snippet `(begin -- cgit v1.2.3 From e8906d86ee08bbc41d91b2b11c2b2630d7f75f18 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Mon, 9 Mar 2020 14:20:21 +0100 Subject: gnu: spatialite-gui: Add missing input. * gnu/packages/geo.scm (spatialite-gui)[inputs]: Add libjpeg-turbo. --- gnu/packages/geo.scm | 1 + 1 file changed, 1 insertion(+) (limited to 'gnu/packages/geo.scm') diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 33137a17f1..147a39ada7 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -554,6 +554,7 @@ (define-public spatialite-gui `(("freexl" ,freexl) ("geos" ,geos) ("libgaiagraphics" ,libgaiagraphics) + ("libjpeg-turbo" ,libjpeg-turbo) ("libspatialite" ,libspatialite) ("libxml2" ,libxml2) ("proj.4" ,proj.4) -- cgit v1.2.3 From 133de9ab38fef2f6edbff2fded361882f4916b6d Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Mon, 9 Mar 2020 14:44:10 +0100 Subject: gnu: Add readosm. * gnu/packages/geo.scm (readosm): New variable. --- gnu/packages/geo.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'gnu/packages/geo.scm') diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 147a39ada7..6c6d7cf698 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -1460,3 +1460,27 @@ (define-public qmapshack QLandkarte GT application.") (home-page "https://github.com/Maproom/qmapshack/wiki") (license license:gpl3+))) + +(define-public readosm + (package + (name "readosm") + (version "1.1.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://www.gaia-gis.it/gaia-sins/" + "readosm-" version ".tar.gz")) + (sha256 + (base32 "1v20pnda67imjd70fn0zw30aar525xicy3d3v49md5cvqklws265")))) + (build-system gnu-build-system) + (inputs + `(("expat" ,expat) + ("zlib" ,zlib))) + (synopsis "Data extractor for OpenStreetMap files") + (description + "ReadOSM is a library to extract valid data from within an OpenStreetMap +input file (in @code{.osm} or @code{.osm.pbf} format).") + (home-page "https://www.gaia-gis.it/fossil/readosm/index") + (license (list license:gpl2+ + license:lgpl2.1+ + license:mpl1.1)))) -- cgit v1.2.3 From 0ccc1385174e0b6c3af4bb73c1161bc7ad5eee37 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Mon, 9 Mar 2020 14:50:21 +0100 Subject: gnu: Add spatialite-tools. * gnu/packages/geo.scm (spatialite-tools): New variable. --- gnu/packages/geo.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'gnu/packages/geo.scm') diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 6c6d7cf698..1346ebeb5f 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -1484,3 +1484,34 @@ (define-public readosm (license (list license:gpl2+ license:lgpl2.1+ license:mpl1.1)))) + +(define-public spatialite-tools + (package + (name "spatialite-tools") + (version "4.3.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://www.gaia-gis.it/gaia-sins/" + "spatialite-tools-" version ".tar.gz")) + (sha256 + (base32 "12fggjhi8cgwvw8f6nk76f83b8lqkc07abxyj5ap6f2gq2dqafgp")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("expat" ,expat) + ("freexl" ,freexl) + ("geos" ,geos) + ("libspatialite" ,libspatialite) + ("libxml2" ,libxml2) + ("proj.4" ,proj.4) + ("readosm" ,readosm) + ("sqlite" ,sqlite) + ("zlib" ,zlib))) + (synopsis "Collection of command line tools for SpatiaLite") + (description + "@code{spatialite-tools} is a collection of Command Line Interface (CLI) +tools supporting SpatiaLite.") + (home-page "https://www.gaia-gis.it/fossil/spatialite-tools/index") + (license license:gpl3+))) -- cgit v1.2.3