guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: proj: Update to 9.1.0 and propagate librarie


From: guix-commits
Subject: branch master updated: gnu: proj: Update to 9.1.0 and propagate libraries.
Date: Mon, 12 Sep 2022 20:49:40 -0400

This is an automated email from the git hooks/post-receive script.

apteryx pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 05c5807ea5 gnu: proj: Update to 9.1.0 and propagate libraries.
05c5807ea5 is described below

commit 05c5807ea5ce1f8af8068151906d670edda97afe
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Mon Sep 12 17:01:14 2022 -0400

    gnu: proj: Update to 9.1.0 and propagate libraries.
    
    * gnu/packages/geo.scm (proj): Update to 9.1.0.
    [arguments]: Delete field.
    [inputs]: Remove libjpeg-turbo and move to...
    [propagated-inputs]: ... here.
---
 gnu/packages/geo.scm | 13 +++++--------
 1 file changed, 5 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 5651386e6b..07222ddcce 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -19,6 +19,7 @@
 ;;; Copyright © 2021 Clément Lassieur <clement@lassieur.org>
 ;;; Copyright © 2021, 2022 Nikolay Korotkiy <sikmir@disroot.org>
 ;;; Copyright © 2022 Roman Scherer <roman.scherer@burningswell.com>
+;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -536,7 +537,7 @@ fully fledged Spatial SQL capabilities.")
 (define-public proj
   (package
     (name "proj")
-    (version "9.0.1")
+    (version "9.1.0")
     (source
      (origin
        (method url-fetch)
@@ -544,14 +545,10 @@ fully fledged Spatial SQL capabilities.")
                            version ".tar.gz"))
        (sha256
         (base32
-         "18x6v4iaphyyxyzdgf76r764qwswvjz9w39zyiphsvchwz5slzkk"))))
+         "0593vd9sac0c98j1f4rammd90d4xnhygbr6d49i8il6ajjdj7cl1"))))
     (build-system cmake-build-system)
-    (arguments
-     `(#:configure-flags '("-DUSE_EXTERNAL_GTEST=ON")))
-    (inputs
-     (list curl libjpeg-turbo libtiff sqlite))
-    (native-inputs
-     (list googletest pkg-config))
+    (native-inputs (list googletest pkg-config))
+    (propagated-inputs (list curl libtiff sqlite)) ;required by proj.pc
     (home-page "https://proj.org/";)
     (synopsis "Coordinate transformation software")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]