From unknown Sun Jun 15 08:38:44 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#44967] [PATCH 0/2] Update libspatialite to 5.0.0 Resent-From: Felix Gruber Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 30 Nov 2020 19:39:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 44967 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 44967@debbugs.gnu.org Cc: Felix Gruber X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16067650983018 (code B ref -1); Mon, 30 Nov 2020 19:39:02 +0000 Received: (at submit) by debbugs.gnu.org; 30 Nov 2020 19:38:18 +0000 Received: from localhost ([127.0.0.1]:56717 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kjp06-0000mb-GP for submit@debbugs.gnu.org; Mon, 30 Nov 2020 14:38:18 -0500 Received: from lists.gnu.org ([209.51.188.17]:42382) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kjp05-0000mU-7Q for submit@debbugs.gnu.org; Mon, 30 Nov 2020 14:38:17 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:52278) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kjp05-0001qZ-0g for guix-patches@gnu.org; Mon, 30 Nov 2020 14:38:17 -0500 Received: from mout01.posteo.de ([185.67.36.65]:51205) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kjp01-00038t-Rg for guix-patches@gnu.org; Mon, 30 Nov 2020 14:38:16 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 20A0916005F for ; Mon, 30 Nov 2020 20:38:09 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1606765089; bh=10WSG2N+RojAmOgSrvsve+HOJfvplCxkS0rremAZZiU=; h=From:To:Cc:Subject:Date:From; b=NXCvCUE19+G7xPSpxXjITkEyWJwBprPOtBJARI3FFBC54QyjcCSdCIQpUs0BUIe5u 6dhCJPRQqJAszxAlQVwNOlNRaHOxSPgPFobmIXuzQl6IVeCd+mWVBjXbzz3Qd7npuk cldyEBU/XkGS2aefRhwDkmBzM7iKkehKBPMPzh26+eRNN6EygRmSxf7uHbAh9vmUyv MyEgUu7d1rC6JTqyqy/mFJBel/blWTk3BJ3cU0G3HidHXPzCHOhWHyW+IwaJC6aJAy chYhRN55vfyztQgSKCt9fMQ0qyx5lHwHuFpAMEWUTn85X9kQLLDjigPKZzKK9/QQpC R64sjoWF1JLLA== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4ClFrc0sJmz6tmJ; Mon, 30 Nov 2020 20:38:07 +0100 (CET) From: Felix Gruber Date: Mon, 30 Nov 2020 20:37:03 +0100 Message-Id: <20201130193703.5514-1-felgru@posteo.net> X-Mailer: git-send-email 2.29.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.65; envelope-from=felgru@posteo.net; helo=mout01.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) Hey Guix, these patches update libspatialite to the latest available release. There were two new required dependencies: minizip and librttopo. The latter was not yet packaged in guix, so the first patch adds a librttopo package. Technically, libspatialite could also be built without librttopo, but then the spatialite-tools package fails compilation due to missing symbols. So in the end, I also added librttopo to libspatialite's inputs. Lastly, I've checked that all three packages depending on libspatialite (spatialite-gui@1.7.1 qgis@3.12.1 spatialite-tools@5.0.0) still built sucessfully after the update. Felix Gruber (2): gnu: Add librttopo. gnu: libspatialite: Update to 5.0.0. gnu/packages/geo.scm | 66 ++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 61 insertions(+), 5 deletions(-) -- 2.29.2 From unknown Sun Jun 15 08:38:44 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#44967] [PATCH 1/2] gnu: Add librttopo. Resent-From: Felix Gruber Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 30 Nov 2020 19:44:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 44967 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 44967@debbugs.gnu.org Cc: Felix Gruber Received: via spool by 44967-submit@debbugs.gnu.org id=B44967.16067654063572 (code B ref 44967); Mon, 30 Nov 2020 19:44:03 +0000 Received: (at 44967) by debbugs.gnu.org; 30 Nov 2020 19:43:26 +0000 Received: from localhost ([127.0.0.1]:56736 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kjp50-0000vM-0x for submit@debbugs.gnu.org; Mon, 30 Nov 2020 14:43:26 -0500 Received: from mout01.posteo.de ([185.67.36.65]:45394) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kjp4w-0000v5-NI for 44967@debbugs.gnu.org; Mon, 30 Nov 2020 14:43:21 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 134A8160063 for <44967@debbugs.gnu.org>; Mon, 30 Nov 2020 20:43:11 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1606765392; bh=pb8HjbitqtxC4OORfmyEABDyP4stUTE8JTVYu7cbong=; h=From:To:Cc:Subject:Date:From; b=H6gtkcA7voJdqAcUrcaFRMNR2HBD6J9qMXJlywCcViiGbSOQNsuzktagMpw74d+5I y82pbsKWrYdr9rSR25R8cJj7tdH95GUOcnbMg5dIrYNkUccm9PwEAxvimT3q77W3Nc dADPqHyvuG3LiytXwredrh5/TwiPTjRThew0t4Qp+4uxEQ6V/Blmgzk0hmt9JQX007 wE3odtKsOLgk1JlZGWbomATTTdGjKSafA4fRkIjuVB0QgbwUDCwSJMhNPqzLxW7/wm ftuw1X9yZ9srqvadQ5g5FQWpd00LUTKP1HzM1Wgd/i5BkD1or96CFcPHi3roY8BLVH GiE1tG/8bq34g== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4ClFyR1yNdz6tmG; Mon, 30 Nov 2020 20:43:11 +0100 (CET) From: Felix Gruber Date: Mon, 30 Nov 2020 20:42:33 +0100 Message-Id: <20201130194234.5676-1-felgru@posteo.net> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20201130193703.5514-1-felgru@posteo.net> References: <20201130193703.5514-1-felgru@posteo.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) * gnu/packages/geo.scm (librttopo): New variable. --- gnu/packages/geo.scm | 50 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 5908ef4b66..1c8e6c8cfa 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -13,6 +13,7 @@ ;;; Copyright © 2019 Hartmut Goebel ;;; Copyright © 2020 Marius Bakke ;;; Copyright © 2020 Christopher Baines +;;; Copyright © 2020 Felix Gruber ;;; ;;; This file is part of GNU Guix. ;;; @@ -365,6 +366,55 @@ writing GeoTIFF information tags.") (license:non-copyleft "file://LICENSE" "See LICENSE in the distribution."))))) +(define-public librttopo + (package + (name "librttopo") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://git.osgeo.org/gitea/rttopo/librttopo") + (commit (string-append "librttopo-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0h7lzlkn9g4xky6h81ndy0aa6dxz8wb6rnl8v3987jy1i6pr072p")))) + (build-system gnu-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'patch-autogen + (lambda _ + (let ((autoconf (which "autoconf")) + (autoheader (which "autoheader")) + (aclocal (which "aclocal")) + (automake (which "automake")) + (libtoolize (which "libtoolize")) + ) + (substitute* "autogen.sh" + (("`which autoconf 2>/dev/null`") autoconf) + (("`which autoheader 2>/dev/null`") autoheader) + (("ACLOCAL=.*$") + (string-append "ACLOCAL=" aclocal "\n")) + (("AUTOMAKE=.*$") + (string-append "AUTOMAKE=" automake "\n")) + (("LIBTOOLIZE=.*$") + (string-append "LIBTOOLIZE=" libtoolize "\n")))) + #t))))) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("libtool" ,libtool) + ("pkg-config" ,pkg-config))) + (inputs + `(("geos" ,geos))) + (synopsis "Library to handle SQL/MM topologies") + (description + "The RT Topology Library exposes an API to create and manage standard +(ISO 13249 aka SQL/MM) topologies using user-provided data stores.") + (home-page "https://git.osgeo.org/gitea/rttopo/librttopo") + (license license:gpl2+))) + (define-public libspatialite (package (name "libspatialite") -- 2.29.2 From unknown Sun Jun 15 08:38:44 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#44967] [PATCH 2/2] gnu: libspatialite: Update to 5.0.0. Resent-From: Felix Gruber Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 30 Nov 2020 19:44:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 44967 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 44967@debbugs.gnu.org Cc: Felix Gruber Received: via spool by 44967-submit@debbugs.gnu.org id=B44967.16067654073579 (code B ref 44967); Mon, 30 Nov 2020 19:44:03 +0000 Received: (at 44967) by debbugs.gnu.org; 30 Nov 2020 19:43:27 +0000 Received: from localhost ([127.0.0.1]:56739 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kjp54-0000vZ-Ov for submit@debbugs.gnu.org; Mon, 30 Nov 2020 14:43:26 -0500 Received: from mout02.posteo.de ([185.67.36.66]:60127) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kjp53-0000vE-Jr for 44967@debbugs.gnu.org; Mon, 30 Nov 2020 14:43:26 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 47B1D2400FF for <44967@debbugs.gnu.org>; Mon, 30 Nov 2020 20:43:19 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1606765399; bh=CSK5VDeun85LdUhrqx5KKSXoyhr6fbd/sTKKaTfYQ00=; h=From:To:Cc:Subject:Date:From; b=J87O8fB5rfFqwH8n0DThS018fc6Gj5n1+ZAAqBNxknfxu5HUto/no2fenD2w773jo 7gfK7ozpCZnyH0t9x8stDp42Xu9PzCYB76Bv9XR0wtlLAZRO+gm7mCjqV3JmhLhvKU YmHsh432tCmG+w0wvZs0NdiWp31Phq3WVwB2ql6A4LiE3DQWZRt4XsrzB3oGeBNdEk DuuTEOQROCltPNpPGzODtx8d3nG3VkOMlFYMMP5mIYFRxa7ssRIe03Co0YMuAqssC3 XYVg1OaEHd69uXGIiQxvLRJ0CGJgMO/9tQw6GPMo+Llsz3egEPm/sqFFcXDadL0tWm P5I/mBGRjZziw== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4ClFyZ4v13z6tmG; Mon, 30 Nov 2020 20:43:18 +0100 (CET) From: Felix Gruber Date: Mon, 30 Nov 2020 20:42:34 +0100 Message-Id: <20201130194234.5676-2-felgru@posteo.net> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20201130193703.5514-1-felgru@posteo.net> References: <20201130193703.5514-1-felgru@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) * gnu/packages/geo.scm (libspatialite, spatialite-tools): Update to 5.0.0. [inputs]: Add new required dependencies minizip and librttopo. --- gnu/packages/geo.scm | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 1c8e6c8cfa..30e63a9eb6 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -418,7 +418,7 @@ writing GeoTIFF information tags.") (define-public libspatialite (package (name "libspatialite") - (version "4.3.0a") + (version "5.0.0") (source (origin (method url-fetch) @@ -426,19 +426,23 @@ writing GeoTIFF information tags.") version ".tar.gz")) (sha256 (base32 - "16d4lpl7xrm9zy4gphy6nwanpjp8wn9g4wq2i2kh8abnlhq01448")))) + "1b3dmkgwbfi43hj3jzy2mh707khavrnw91vdd5sv387m8c1dfzvv")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) (inputs `(("freexl" ,freexl) ("geos" ,geos) + ("librttopo" ,librttopo) ("libxml2" ,libxml2) + ("minizip" ,minizip) ("proj.4" ,proj.4) ("sqlite" ,sqlite) ("zlib" ,zlib))) (arguments - `(#:phases + `(#:configure-flags + '("--enable-rttopo=yes") + #:phases (modify-phases %standard-phases ;; 3 tests are failing, ignore them: (add-after 'unpack 'ignore-broken-tests @@ -1688,14 +1692,14 @@ input file (in @code{.osm} or @code{.osm.pbf} format).") (define-public spatialite-tools (package (name "spatialite-tools") - (version "4.3.0") + (version "5.0.0") (source (origin (method url-fetch) (uri (string-append "https://www.gaia-gis.it/gaia-sins/" "spatialite-tools-" version ".tar.gz")) (sha256 - (base32 "12fggjhi8cgwvw8f6nk76f83b8lqkc07abxyj5ap6f2gq2dqafgp")))) + (base32 "0ckddgdpxhy6vkpr9q2hnx5qmanrd8g4pqnifbrq1i5jrj82s2dd")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) @@ -1703,8 +1707,10 @@ input file (in @code{.osm} or @code{.osm.pbf} format).") `(("expat" ,expat) ("freexl" ,freexl) ("geos" ,geos) + ("librttopo" ,librttopo) ("libspatialite" ,libspatialite) ("libxml2" ,libxml2) + ("minizip" ,minizip) ("proj.4" ,proj.4) ("readosm" ,readosm) ("sqlite" ,sqlite) -- 2.29.2 From unknown Sun Jun 15 08:38:44 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Felix Gruber Subject: bug#44967: closed (Re: [bug#44967] [PATCH 0/2] Update libspatialite to 5.0.0) Message-ID: References: <87eek9zad6.fsf@yamatai> <20201130193703.5514-1-felgru@posteo.net> X-Gnu-PR-Message: they-closed 44967 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 44967@debbugs.gnu.org Date: Tue, 01 Dec 2020 17:49:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1606844942-21110-1" This is a multi-part message in MIME format... ------------=_1606844942-21110-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #44967: [PATCH 0/2] Update libspatialite to 5.0.0 which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 44967@debbugs.gnu.org. --=20 44967: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D44967 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1606844942-21110-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 44967-done) by debbugs.gnu.org; 1 Dec 2020 17:48:16 +0000 Received: from localhost ([127.0.0.1]:33211 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kk9lA-0005TW-JF for submit@debbugs.gnu.org; Tue, 01 Dec 2020 12:48:16 -0500 Received: from mout01.posteo.de ([185.67.36.65]:45637) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kk9l6-0005TH-6z for 44967-done@debbugs.gnu.org; Tue, 01 Dec 2020 12:48:15 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 6F9F4160068 for <44967-done@debbugs.gnu.org>; Tue, 1 Dec 2020 18:48:05 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1606844885; bh=/mPSMFdf6EFyPhUqo3DNTCJYXh8ewnnvO4z6PAn0iv8=; h=From:To:Cc:Subject:Date:From; b=CMKwJdetb0TJ4rt9aRiOHeDrYnVr/GZsHLe+KTk/4iHvDrXhVMgAl2MXqmk5M3a+1 07zv/kwRnYhrIQKLSh1YMxBI/QnqA7An0qaRNU4zaCPGkRYVgpmdpfbxQv7hUkToqY o0LomNDuN4B/q8ghwdLQWy6tXMOMDJpEYLk/+MDCnwwF7RRPTZOe9rfOjExrnP7ezp pFsaWuWJ0ckkeRxyl7MKYicZh+ADqXmAYd1m0BlTyXir0djThlGxoe5vRlv4NHlx1C 43eqCGZV7Tnp5RJY9HK2J3HSzzY40I6Zx4l3LMSSc7D7eH7s3HemtJaLFgoM2SjIjD amJZOkAATjZ0g== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4ClqM53pqfz6tmc; Tue, 1 Dec 2020 18:48:01 +0100 (CET) References: <20201130193703.5514-1-felgru@posteo.net> User-agent: mu4e 1.4.13; emacs 27.1 From: Guillaume Le Vaillant To: Felix Gruber Subject: Re: [bug#44967] [PATCH 0/2] Update libspatialite to 5.0.0 In-reply-to: <20201130193703.5514-1-felgru@posteo.net> Date: Tue, 01 Dec 2020 18:47:49 +0100 Message-ID: <87eek9zad6.fsf@yamatai> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 44967-done Cc: 44967-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain Felix Gruber skribis: > Felix Gruber (2): > gnu: Add librttopo. > gnu: libspatialite: Update to 5.0.0. > > gnu/packages/geo.scm | 66 ++++++++++++++++++++++++++++++++++++++++---- > 1 file changed, 61 insertions(+), 5 deletions(-) Pushed as a051bf405bf70d36a99195aff15ff82e99a7b504 and following. Thanks. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCX8aBxg8cZ2x2QHBvc3Rl by5uZXQACgkQa+ggit8h/j8K0gD/RCDTCPbC/Qk+06626dsc7tQEShG8udjDlWHR zIJMgH0BAJdOGBRI4BSbKz2C9ecLEL9RZ3SUJLKZ63flvz5hI9n7 =KiAZ -----END PGP SIGNATURE----- --=-=-=-- ------------=_1606844942-21110-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 30 Nov 2020 19:38:18 +0000 Received: from localhost ([127.0.0.1]:56717 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kjp06-0000mb-GP for submit@debbugs.gnu.org; Mon, 30 Nov 2020 14:38:18 -0500 Received: from lists.gnu.org ([209.51.188.17]:42382) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kjp05-0000mU-7Q for submit@debbugs.gnu.org; Mon, 30 Nov 2020 14:38:17 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:52278) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kjp05-0001qZ-0g for guix-patches@gnu.org; Mon, 30 Nov 2020 14:38:17 -0500 Received: from mout01.posteo.de ([185.67.36.65]:51205) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kjp01-00038t-Rg for guix-patches@gnu.org; Mon, 30 Nov 2020 14:38:16 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 20A0916005F for ; Mon, 30 Nov 2020 20:38:09 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1606765089; bh=10WSG2N+RojAmOgSrvsve+HOJfvplCxkS0rremAZZiU=; h=From:To:Cc:Subject:Date:From; b=NXCvCUE19+G7xPSpxXjITkEyWJwBprPOtBJARI3FFBC54QyjcCSdCIQpUs0BUIe5u 6dhCJPRQqJAszxAlQVwNOlNRaHOxSPgPFobmIXuzQl6IVeCd+mWVBjXbzz3Qd7npuk cldyEBU/XkGS2aefRhwDkmBzM7iKkehKBPMPzh26+eRNN6EygRmSxf7uHbAh9vmUyv MyEgUu7d1rC6JTqyqy/mFJBel/blWTk3BJ3cU0G3HidHXPzCHOhWHyW+IwaJC6aJAy chYhRN55vfyztQgSKCt9fMQ0qyx5lHwHuFpAMEWUTn85X9kQLLDjigPKZzKK9/QQpC R64sjoWF1JLLA== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4ClFrc0sJmz6tmJ; Mon, 30 Nov 2020 20:38:07 +0100 (CET) From: Felix Gruber To: guix-patches@gnu.org Subject: [PATCH 0/2] Update libspatialite to 5.0.0 Date: Mon, 30 Nov 2020 20:37:03 +0100 Message-Id: <20201130193703.5514-1-felgru@posteo.net> X-Mailer: git-send-email 2.29.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.65; envelope-from=felgru@posteo.net; helo=mout01.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Felix Gruber X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) Hey Guix, these patches update libspatialite to the latest available release. There were two new required dependencies: minizip and librttopo. The latter was not yet packaged in guix, so the first patch adds a librttopo package. Technically, libspatialite could also be built without librttopo, but then the spatialite-tools package fails compilation due to missing symbols. So in the end, I also added librttopo to libspatialite's inputs. Lastly, I've checked that all three packages depending on libspatialite (spatialite-gui@1.7.1 qgis@3.12.1 spatialite-tools@5.0.0) still built sucessfully after the update. Felix Gruber (2): gnu: Add librttopo. gnu: libspatialite: Update to 5.0.0. gnu/packages/geo.scm | 66 ++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 61 insertions(+), 5 deletions(-) -- 2.29.2 ------------=_1606844942-21110-1--