unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#57687] [PATCH 0/9] Update proj to 9.0.1.
@ 2022-09-08 20:12 Felix Gruber
  2022-09-08 20:14 ` [bug#57687] [PATCH 1/9] gnu: Add proj-7 Felix Gruber
                   ` (9 more replies)
  0 siblings, 10 replies; 13+ messages in thread
From: Felix Gruber @ 2022-09-08 20:12 UTC (permalink / raw)
  To: 57687; +Cc: Felix Gruber

This patchset updates proj to 9.0.1 and adds a proj-7 package for those
packages that do not build against proj 9, i.e. vtk and xygrib.

I've noticed that I needed to add curl as an input to
openorienteering-mapper and gplates which would otherwise during their
configuration phases in the FindProj.cmake module that apparently now
requires curl. Maybe we should upgrade proj's curl input to a
propagated-input?

Felix Gruber (9):
  gnu: Add proj-7.
  gnu: vtk: Build against proj-7.
  gnu: xygrib: Build against proj-7.
  gnu: proj: Update to 9.0.1.
  gnu: python-pyproj: Update to 3.3.1.
  gnu: python-cartopy: Update to 0.20.3.
  gnu: openorienteering-mapper: Add curl dependency.
  gnu: gplates: Add curl dependency.
  gnu: qgis: Disable failing tests.

 gnu/packages/geo.scm              | 54 ++++++++++++++++++++++---------
 gnu/packages/image-processing.scm |  2 +-
 2 files changed, 40 insertions(+), 16 deletions(-)

-- 
2.30.2





^ permalink raw reply	[flat|nested] 13+ messages in thread

* [bug#57687] [PATCH 1/9] gnu: Add proj-7.
  2022-09-08 20:12 [bug#57687] [PATCH 0/9] Update proj to 9.0.1 Felix Gruber
@ 2022-09-08 20:14 ` Felix Gruber
  2022-09-08 20:14 ` [bug#57687] [PATCH 2/9] gnu: vtk: Build against proj-7 Felix Gruber
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 13+ messages in thread
From: Felix Gruber @ 2022-09-08 20:14 UTC (permalink / raw)
  To: 57687; +Cc: Felix Gruber

* gnu/packages/geo.scm (proj-7): New variable.
---
 gnu/packages/geo.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 9734ae66fe..b1f251b9c5 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -574,6 +574,27 @@ lets developers use the functionality of Proj in their own software.")
                    ;; src/geodesic.*, src/tests/geodtest.cpp
                    license:x11))))
 
+; This is the last version of proj that provides the old proj.4 API.
+(define-public proj-7
+  (package (inherit proj)
+    (version "7.2.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "http://download.osgeo.org/proj/proj-"
+                           version ".tar.gz"))
+       (sha256
+        (base32
+         "050apzdn0isxpsblys1shrl9ccli5vd32kgswlgx1imrbwpg915k"))))
+    (arguments
+     `(#:configure-flags '("-DUSE_EXTERNAL_GTEST=ON")
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'fix-version
+           (lambda _
+             (substitute* "CMakeLists.txt"
+               (("MAJOR 7 MINOR 2 PATCH 0") "MAJOR 7 MINOR 2 PATCH 1")))))))))
+
 (define-public proj.4
   (package
     (name "proj.4")
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#57687] [PATCH 2/9] gnu: vtk: Build against proj-7.
  2022-09-08 20:12 [bug#57687] [PATCH 0/9] Update proj to 9.0.1 Felix Gruber
  2022-09-08 20:14 ` [bug#57687] [PATCH 1/9] gnu: Add proj-7 Felix Gruber
@ 2022-09-08 20:14 ` Felix Gruber
  2022-09-08 20:14 ` [bug#57687] [PATCH 3/9] gnu: xygrib: " Felix Gruber
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 13+ messages in thread
From: Felix Gruber @ 2022-09-08 20:14 UTC (permalink / raw)
  To: 57687; +Cc: Felix Gruber

* gnu/packages/image-processing.scm (vtk)[inputs]: Replace proj with
proj-7.
---
 gnu/packages/image-processing.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/image-processing.scm b/gnu/packages/image-processing.scm
index 0225f72651..aa8efd97c6 100644
--- a/gnu/packages/image-processing.scm
+++ b/gnu/packages/image-processing.scm
@@ -391,7 +391,7 @@ many popular formats.")
            mesa
            netcdf
            libpng
-           proj
+           proj-7
            python
            ;("pugixml" ,pugixml)
            sqlite
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#57687] [PATCH 3/9] gnu: xygrib: Build against proj-7.
  2022-09-08 20:12 [bug#57687] [PATCH 0/9] Update proj to 9.0.1 Felix Gruber
  2022-09-08 20:14 ` [bug#57687] [PATCH 1/9] gnu: Add proj-7 Felix Gruber
  2022-09-08 20:14 ` [bug#57687] [PATCH 2/9] gnu: vtk: Build against proj-7 Felix Gruber
@ 2022-09-08 20:14 ` Felix Gruber
  2022-09-08 20:14 ` [bug#57687] [PATCH 4/9] gnu: proj: Update to 9.0.1 Felix Gruber
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 13+ messages in thread
From: Felix Gruber @ 2022-09-08 20:14 UTC (permalink / raw)
  To: 57687; +Cc: Felix Gruber

* gnu/packages/geo.scm (xygrib)[inputs]: Replace proj with proj-7.
---
 gnu/packages/geo.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index b1f251b9c5..03ffbbfc95 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -1522,7 +1522,7 @@ map display.  Downloads map data from a number of websites, including
            libnova
            libpng
            openjpeg
-           proj
+           proj-7
            qtbase-5
            zlib))
     (native-search-paths
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#57687] [PATCH 4/9] gnu: proj: Update to 9.0.1.
  2022-09-08 20:12 [bug#57687] [PATCH 0/9] Update proj to 9.0.1 Felix Gruber
                   ` (2 preceding siblings ...)
  2022-09-08 20:14 ` [bug#57687] [PATCH 3/9] gnu: xygrib: " Felix Gruber
@ 2022-09-08 20:14 ` Felix Gruber
  2022-09-08 20:14 ` [bug#57687] [PATCH 5/9] gnu: python-pyproj: Update to 3.3.1 Felix Gruber
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 13+ messages in thread
From: Felix Gruber @ 2022-09-08 20:14 UTC (permalink / raw)
  To: 57687; +Cc: Felix Gruber

* gnu/packages/geo.scm (proj): Update to 9.0.1.
  [arguments]: Remove fix-version phase.
---
 gnu/packages/geo.scm | 12 +++---------
 1 file changed, 3 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 03ffbbfc95..59234863b8 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -536,7 +536,7 @@ fully fledged Spatial SQL capabilities.")
 (define-public proj
   (package
     (name "proj")
-    (version "7.2.1")
+    (version "9.0.1")
     (source
      (origin
        (method url-fetch)
@@ -544,16 +544,10 @@ fully fledged Spatial SQL capabilities.")
                            version ".tar.gz"))
        (sha256
         (base32
-         "050apzdn0isxpsblys1shrl9ccli5vd32kgswlgx1imrbwpg915k"))))
+         "18x6v4iaphyyxyzdgf76r764qwswvjz9w39zyiphsvchwz5slzkk"))))
     (build-system cmake-build-system)
     (arguments
-     `(#:configure-flags '("-DUSE_EXTERNAL_GTEST=ON")
-       #:phases
-       (modify-phases %standard-phases
-         (add-after 'unpack 'fix-version
-           (lambda _
-             (substitute* "CMakeLists.txt"
-               (("MAJOR 7 MINOR 2 PATCH 0") "MAJOR 7 MINOR 2 PATCH 1")))))))
+     `(#:configure-flags '("-DUSE_EXTERNAL_GTEST=ON")))
     (inputs
      (list curl libjpeg-turbo libtiff sqlite))
     (native-inputs
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#57687] [PATCH 5/9] gnu: python-pyproj: Update to 3.3.1.
  2022-09-08 20:12 [bug#57687] [PATCH 0/9] Update proj to 9.0.1 Felix Gruber
                   ` (3 preceding siblings ...)
  2022-09-08 20:14 ` [bug#57687] [PATCH 4/9] gnu: proj: Update to 9.0.1 Felix Gruber
@ 2022-09-08 20:14 ` Felix Gruber
  2022-09-08 20:14 ` [bug#57687] [PATCH 6/9] gnu: python-cartopy: Update to 0.20.3 Felix Gruber
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 13+ messages in thread
From: Felix Gruber @ 2022-09-08 20:14 UTC (permalink / raw)
  To: 57687; +Cc: Felix Gruber

* gnu/packages/geo.scm (python-pyproj): Update to 3.3.1.
---
 gnu/packages/geo.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 59234863b8..98a9e05b9b 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -642,14 +642,14 @@ projections.")
 (define-public python-pyproj
   (package
     (name "python-pyproj")
-    (version "3.2.1")
+    (version "3.3.1")
     (source
       (origin
         (method url-fetch)
         (uri (pypi-uri "pyproj" version))
         (sha256
           (base32
-            "0xrqpy708qlyd7nqjra0dl7nvkqzaj9w0v7wq4j5pxazha9n14sa"))))
+            "1gjg63irs44djyqbp9gg7s02d0y5i9cd1a83phyzp5fcj56y3n5k"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#57687] [PATCH 6/9] gnu: python-cartopy: Update to 0.20.3.
  2022-09-08 20:12 [bug#57687] [PATCH 0/9] Update proj to 9.0.1 Felix Gruber
                   ` (4 preceding siblings ...)
  2022-09-08 20:14 ` [bug#57687] [PATCH 5/9] gnu: python-pyproj: Update to 3.3.1 Felix Gruber
@ 2022-09-08 20:14 ` Felix Gruber
  2022-09-08 20:14 ` [bug#57687] [PATCH 7/9] gnu: openorienteering-mapper: Add curl dependency Felix Gruber
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 13+ messages in thread
From: Felix Gruber @ 2022-09-08 20:14 UTC (permalink / raw)
  To: 57687; +Cc: Felix Gruber

* gnu/packages/geo.scm (python-cartopy): Update to 0.20.3.
[propagated-inputs]: Add python-pyproj.
[inputs]: Add comment to explain why proj is needed after depending on
python-pyproj.
---
 gnu/packages/geo.scm | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 98a9e05b9b..f27c97477d 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -1088,13 +1088,13 @@ utilities for data translation and processing.")
   (package
     (name "python-cartopy")
     ;; This is a post-release fix that adds build_ext to setup.py.
-    (version "0.19.0.post1")
+    (version "0.20.3")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "Cartopy" version))
        (sha256
-        (base32 "0xnm8z3as3hriivdfd26s6vn5b63gb46x6vxw6gh1mwfm5rlg2sb"))))
+        (base32 "01lhnkhw22jp6hnrs5qvgkq4fqcni2sx7ydiyv8w8xxx5wpglq0d"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
@@ -1112,11 +1112,16 @@ utilities for data translation and processing.")
      (list python-matplotlib
            python-numpy
            python-pykdtree
+           python-pyproj
            python-pyshp
            python-scipy
            python-shapely))
     (inputs
-     (list geos proj))
+     (list geos
+           ;; cartopy's setup.py looks for the proj executable.
+           ;; Not sure if it actually makes use of it since it
+           ;; probably uses proj only through pyproj.
+           proj))
     (native-inputs
      (list python-cython python-flufl-lock python-pytest))
     (home-page "https://scitools.org.uk/cartopy/docs/latest/")
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#57687] [PATCH 7/9] gnu: openorienteering-mapper: Add curl dependency.
  2022-09-08 20:12 [bug#57687] [PATCH 0/9] Update proj to 9.0.1 Felix Gruber
                   ` (5 preceding siblings ...)
  2022-09-08 20:14 ` [bug#57687] [PATCH 6/9] gnu: python-cartopy: Update to 0.20.3 Felix Gruber
@ 2022-09-08 20:14 ` Felix Gruber
  2022-09-08 21:12   ` Maxime Devos
  2022-09-08 21:13   ` Maxime Devos
  2022-09-08 20:14 ` [bug#57687] [PATCH 8/9] gnu: gplates: " Felix Gruber
                   ` (2 subsequent siblings)
  9 siblings, 2 replies; 13+ messages in thread
From: Felix Gruber @ 2022-09-08 20:14 UTC (permalink / raw)
  To: 57687; +Cc: Felix Gruber

* gnu/packages/geo.scm (openorienteering-mapper)[inputs]: Add curl.
---
 gnu/packages/geo.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index f27c97477d..c0ac44a81b 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -2209,6 +2209,7 @@ track your position right from your laptop.")
     (inputs
      `(("clipper" ,clipper)
        ("cups" ,cups)
+       ("curl" ,curl)
        ("gdal" ,gdal)
        ("proj" ,proj)
        ("qtbase" ,qtbase-5)
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#57687] [PATCH 8/9] gnu: gplates: Add curl dependency.
  2022-09-08 20:12 [bug#57687] [PATCH 0/9] Update proj to 9.0.1 Felix Gruber
                   ` (6 preceding siblings ...)
  2022-09-08 20:14 ` [bug#57687] [PATCH 7/9] gnu: openorienteering-mapper: Add curl dependency Felix Gruber
@ 2022-09-08 20:14 ` Felix Gruber
  2022-09-08 20:14 ` [bug#57687] [PATCH 9/9] gnu: qgis: Disable failing tests Felix Gruber
  2022-09-11 14:08 ` bug#57687: [PATCH 0/9] Update proj to 9.0.1 Guillaume Le Vaillant
  9 siblings, 0 replies; 13+ messages in thread
From: Felix Gruber @ 2022-09-08 20:14 UTC (permalink / raw)
  To: 57687; +Cc: Felix Gruber

* gnu/packages/geo.scm (gplates)[inputs]: Add curl.
---
 gnu/packages/geo.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index c0ac44a81b..962c2179a7 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -2732,6 +2732,7 @@ using third-party geocoders and other data sources.")
     (inputs
      (list boost
            cgal
+           curl
            gdal
            glew
            glu
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#57687] [PATCH 9/9] gnu: qgis: Disable failing tests.
  2022-09-08 20:12 [bug#57687] [PATCH 0/9] Update proj to 9.0.1 Felix Gruber
                   ` (7 preceding siblings ...)
  2022-09-08 20:14 ` [bug#57687] [PATCH 8/9] gnu: gplates: " Felix Gruber
@ 2022-09-08 20:14 ` Felix Gruber
  2022-09-11 14:08 ` bug#57687: [PATCH 0/9] Update proj to 9.0.1 Guillaume Le Vaillant
  9 siblings, 0 replies; 13+ messages in thread
From: Felix Gruber @ 2022-09-08 20:14 UTC (permalink / raw)
  To: 57687; +Cc: Felix Gruber

* gnu/packages/geo.scm (qgis)[arguments]: Disable failing tests in
  'check phase.
---
 gnu/packages/geo.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 962c2179a7..2e8b1266f9 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -2471,6 +2471,7 @@ growing set of geoscientific methods.")
                              "ProcessingOtbAlgorithmsTest"
                              "test_core_authmanager"
                              "test_core_compositionconverter"
+                             "test_core_coordinatereferencesystem"
                              "test_core_gdalutils"
                              "test_core_labelingengine"
                              "test_core_layout"
@@ -2480,6 +2481,7 @@ growing set of geoscientific methods.")
                              "test_core_layoutpicture"
                              "test_core_legendrenderer"
                              "test_core_networkaccessmanager"
+                             "test_core_rasterfilewriter"
                              "test_core_tiledownloadmanager"
                              "test_gui_dualview"
                              "test_gui_htmlwidgetwrapper"
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [bug#57687] [PATCH 7/9] gnu: openorienteering-mapper: Add curl dependency.
  2022-09-08 20:14 ` [bug#57687] [PATCH 7/9] gnu: openorienteering-mapper: Add curl dependency Felix Gruber
@ 2022-09-08 21:12   ` Maxime Devos
  2022-09-08 21:13   ` Maxime Devos
  1 sibling, 0 replies; 13+ messages in thread
From: Maxime Devos @ 2022-09-08 21:12 UTC (permalink / raw)
  To: Felix Gruber, 57687


[-- Attachment #1.1.1: Type: text/plain, Size: 965 bytes --]


On 08-09-2022 22:14, Felix Gruber wrote:
> * gnu/packages/geo.scm (openorienteering-mapper)[inputs]: Add curl.
> ---
>   gnu/packages/geo.scm | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
> index f27c97477d..c0ac44a81b 100644
> --- a/gnu/packages/geo.scm
> +++ b/gnu/packages/geo.scm
> @@ -2209,6 +2209,7 @@ track your position right from your laptop.")
>       (inputs
>        `(("clipper" ,clipper)
>          ("cups" ,cups)
> +       ("curl" ,curl)
>          ("gdal" ,gdal)
>          ("proj" ,proj)
>          ("qtbase" ,qtbase-5)

Why?

According to "grep -rF 
/gnu/store/m06nhjir7vxm2kq88dlm7cvpxcyhilzr-openorienteering-mapper-0.9.5-checkout", 
it's curl is not actually used by openorienteering-mapper (except for 
"superbuild-licensing.cmake" and the CI, but I don't think we actually 
use those in Guix). What's the point of adding 'curl' here?

Greetings,
Maxime


[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 929 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 236 bytes --]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [bug#57687] [PATCH 7/9] gnu: openorienteering-mapper: Add curl dependency.
  2022-09-08 20:14 ` [bug#57687] [PATCH 7/9] gnu: openorienteering-mapper: Add curl dependency Felix Gruber
  2022-09-08 21:12   ` Maxime Devos
@ 2022-09-08 21:13   ` Maxime Devos
  1 sibling, 0 replies; 13+ messages in thread
From: Maxime Devos @ 2022-09-08 21:13 UTC (permalink / raw)
  To: Felix Gruber, 57687


[-- Attachment #1.1.1: Type: text/plain, Size: 682 bytes --]


On 08-09-2022 22:14, Felix Gruber wrote:
> * gnu/packages/geo.scm (openorienteering-mapper)[inputs]: Add curl.
> ---
>   gnu/packages/geo.scm | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
> index f27c97477d..c0ac44a81b 100644
> --- a/gnu/packages/geo.scm
> +++ b/gnu/packages/geo.scm
> @@ -2209,6 +2209,7 @@ track your position right from your laptop.")
>       (inputs
>        `(("clipper" ,clipper)
>          ("cups" ,cups)
> +       ("curl" ,curl)
>          ("gdal" ,gdal)
>          ("proj" ,proj)
>          ("qtbase" ,qtbase-5)
Nevermind my comment about curl, I've now seen the cover letter ...

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 929 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 236 bytes --]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* bug#57687: [PATCH 0/9] Update proj to 9.0.1.
  2022-09-08 20:12 [bug#57687] [PATCH 0/9] Update proj to 9.0.1 Felix Gruber
                   ` (8 preceding siblings ...)
  2022-09-08 20:14 ` [bug#57687] [PATCH 9/9] gnu: qgis: Disable failing tests Felix Gruber
@ 2022-09-11 14:08 ` Guillaume Le Vaillant
  9 siblings, 0 replies; 13+ messages in thread
From: Guillaume Le Vaillant @ 2022-09-11 14:08 UTC (permalink / raw)
  To: Felix Gruber; +Cc: 57687-done

[-- Attachment #1: Type: text/plain, Size: 82 bytes --]

Patches pushed as 3eeb67c5d9594b3e2ff41ab95183d3ca51a0d893 and
following.
Thanks.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2022-09-11 14:10 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-08 20:12 [bug#57687] [PATCH 0/9] Update proj to 9.0.1 Felix Gruber
2022-09-08 20:14 ` [bug#57687] [PATCH 1/9] gnu: Add proj-7 Felix Gruber
2022-09-08 20:14 ` [bug#57687] [PATCH 2/9] gnu: vtk: Build against proj-7 Felix Gruber
2022-09-08 20:14 ` [bug#57687] [PATCH 3/9] gnu: xygrib: " Felix Gruber
2022-09-08 20:14 ` [bug#57687] [PATCH 4/9] gnu: proj: Update to 9.0.1 Felix Gruber
2022-09-08 20:14 ` [bug#57687] [PATCH 5/9] gnu: python-pyproj: Update to 3.3.1 Felix Gruber
2022-09-08 20:14 ` [bug#57687] [PATCH 6/9] gnu: python-cartopy: Update to 0.20.3 Felix Gruber
2022-09-08 20:14 ` [bug#57687] [PATCH 7/9] gnu: openorienteering-mapper: Add curl dependency Felix Gruber
2022-09-08 21:12   ` Maxime Devos
2022-09-08 21:13   ` Maxime Devos
2022-09-08 20:14 ` [bug#57687] [PATCH 8/9] gnu: gplates: " Felix Gruber
2022-09-08 20:14 ` [bug#57687] [PATCH 9/9] gnu: qgis: Disable failing tests Felix Gruber
2022-09-11 14:08 ` bug#57687: [PATCH 0/9] Update proj to 9.0.1 Guillaume Le Vaillant

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).