gnu: libspatialite: Update to 5.0.0.
* gnu/packages/geo.scm (libspatialite, spatialite-tools): Update to 5.0.0. [inputs]: Add new required dependencies minizip and librttopo. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>master
parent
a051bf405b
commit
b202c702ce
|
@ -417,7 +417,7 @@ writing GeoTIFF information tags.")
|
||||||
(define-public libspatialite
|
(define-public libspatialite
|
||||||
(package
|
(package
|
||||||
(name "libspatialite")
|
(name "libspatialite")
|
||||||
(version "4.3.0a")
|
(version "5.0.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -425,19 +425,23 @@ writing GeoTIFF information tags.")
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"16d4lpl7xrm9zy4gphy6nwanpjp8wn9g4wq2i2kh8abnlhq01448"))))
|
"1b3dmkgwbfi43hj3jzy2mh707khavrnw91vdd5sv387m8c1dfzvv"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("freexl" ,freexl)
|
`(("freexl" ,freexl)
|
||||||
("geos" ,geos)
|
("geos" ,geos)
|
||||||
|
("librttopo" ,librttopo)
|
||||||
("libxml2" ,libxml2)
|
("libxml2" ,libxml2)
|
||||||
|
("minizip" ,minizip)
|
||||||
("proj.4" ,proj.4)
|
("proj.4" ,proj.4)
|
||||||
("sqlite" ,sqlite)
|
("sqlite" ,sqlite)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:configure-flags
|
||||||
|
'("--enable-rttopo=yes")
|
||||||
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
;; 3 tests are failing, ignore them:
|
;; 3 tests are failing, ignore them:
|
||||||
(add-after 'unpack 'ignore-broken-tests
|
(add-after 'unpack 'ignore-broken-tests
|
||||||
|
@ -1687,14 +1691,14 @@ input file (in @code{.osm} or @code{.osm.pbf} format).")
|
||||||
(define-public spatialite-tools
|
(define-public spatialite-tools
|
||||||
(package
|
(package
|
||||||
(name "spatialite-tools")
|
(name "spatialite-tools")
|
||||||
(version "4.3.0")
|
(version "5.0.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://www.gaia-gis.it/gaia-sins/"
|
(uri (string-append "https://www.gaia-gis.it/gaia-sins/"
|
||||||
"spatialite-tools-" version ".tar.gz"))
|
"spatialite-tools-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "12fggjhi8cgwvw8f6nk76f83b8lqkc07abxyj5ap6f2gq2dqafgp"))))
|
(base32 "0ckddgdpxhy6vkpr9q2hnx5qmanrd8g4pqnifbrq1i5jrj82s2dd"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)))
|
||||||
|
@ -1702,8 +1706,10 @@ input file (in @code{.osm} or @code{.osm.pbf} format).")
|
||||||
`(("expat" ,expat)
|
`(("expat" ,expat)
|
||||||
("freexl" ,freexl)
|
("freexl" ,freexl)
|
||||||
("geos" ,geos)
|
("geos" ,geos)
|
||||||
|
("librttopo" ,librttopo)
|
||||||
("libspatialite" ,libspatialite)
|
("libspatialite" ,libspatialite)
|
||||||
("libxml2" ,libxml2)
|
("libxml2" ,libxml2)
|
||||||
|
("minizip" ,minizip)
|
||||||
("proj.4" ,proj.4)
|
("proj.4" ,proj.4)
|
||||||
("readosm" ,readosm)
|
("readosm" ,readosm)
|
||||||
("sqlite" ,sqlite)
|
("sqlite" ,sqlite)
|
||||||
|
|
Reference in New Issue