[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#47443] [PATCH 1/6] gnu: libspatialite: Update dependencies.
From: |
Felix Gruber |
Subject: |
[bug#47443] [PATCH 1/6] gnu: libspatialite: Update dependencies. |
Date: |
Sun, 28 Mar 2021 10:40:18 +0200 |
* gnu/packages/geo.scm (libspatialite, spatialite-tools): Update
dependencies.
[inputs] replace proj.4 with proj and remove zlib which is not used
anymore since libspatialite started using minizip.
(libspatialite)[arguments] fix regex to not disable more tests than
necessary.
---
gnu/packages/geo.scm | 12 +++++-------
1 file changed, 5 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 97fa83b86b..8c98534a4a 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -442,9 +442,8 @@ writing GeoTIFF information tags.")
("librttopo" ,librttopo)
("libxml2" ,libxml2)
("minizip" ,minizip)
- ("proj.4" ,proj.4)
- ("sqlite" ,sqlite)
- ("zlib" ,zlib)))
+ ("proj" ,proj)
+ ("sqlite" ,sqlite)))
(arguments
`(#:configure-flags
'("--enable-rttopo=yes")
@@ -454,7 +453,7 @@ writing GeoTIFF information tags.")
(add-after 'unpack 'ignore-broken-tests
(lambda _
(substitute* '("test/Makefile.in")
- (("\tcheck_sql_stm.*" all) "\tcheck_multithread$(EXEEXT) \\\n")
+ (("\tcheck_sql_stmt.* (check_sql_.*)" all tiny) (string-append
"\t" tiny))
(("(\tch.*) check_v.*ble2.*$" all vt1) (string-append vt1 "
\\\n"))
(("\tch.* (check_v.*ble4.*)$" all vt4) (string-append "\t"
vt4)))
#t)))))
@@ -1748,10 +1747,9 @@ associated attribute file (@file{.dbf}).")
("libspatialite" ,libspatialite)
("libxml2" ,libxml2)
("minizip" ,minizip)
- ("proj.4" ,proj.4)
+ ("proj" ,proj)
("readosm" ,readosm)
- ("sqlite" ,sqlite)
- ("zlib" ,zlib)))
+ ("sqlite" ,sqlite)))
(synopsis "Collection of command line tools for SpatiaLite")
(description
"@code{spatialite-tools} is a collection of Command Line Interface (CLI)
--
2.30.2
- [bug#47443] [PATCH 0/6] Update spatialite-gui, Felix Gruber, 2021/03/28
- [bug#47443] [PATCH 1/6] gnu: libspatialite: Update dependencies.,
Felix Gruber <=
- [bug#47443] [PATCH 5/6] gnu: spatialite-gui: Update to 2.1.0-beta1., Felix Gruber, 2021/03/28
- [bug#47443] [PATCH 2/6] gnu: Add libxlsxwriter., Felix Gruber, 2021/03/28
- [bug#47443] [PATCH 6/6] gnu: libgaiagraphics: Remove package., Felix Gruber, 2021/03/28
- [bug#47443] [PATCH 4/6] gnu: Add librasterlite2., Felix Gruber, 2021/03/28
- [bug#47443] [PATCH 3/6] licenses: Add Free Art License 1.3., Felix Gruber, 2021/03/28
- bug#47443: [PATCH 0/6] Update spatialite-gui, Guillaume Le Vaillant, 2021/03/29