[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#50812] [PATCH v4 1/5] gnu: proj: Update to 7.2.1.
From: |
Felix Gruber |
Subject: |
[bug#50812] [PATCH v4 1/5] gnu: proj: Update to 7.2.1. |
Date: |
Tue, 28 Sep 2021 06:34:40 +0000 |
* gnu/packages/geo.scm (proj): Update to 7.2.1.
[build-system]: Change to cmake-build-system.
[arguments]: Add configure flag to find googletest.
[inputs]: Add curl, libjpeg-turbo and libtiff.
[native-inputs]: Add googletest.
[description]: Consistently call the package Proj, instead of Proj,
PROJ or proj. Use @acronym to define CRS.
---
gnu/packages/geo.scm | 28 +++++++++++++++++-----------
1 file changed, 17 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 9d4a1a8955..ec45601ef4 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -514,7 +514,7 @@ fully fledged Spatial SQL capabilities.")
(define-public proj
(package
(name "proj")
- (version "6.3.1")
+ (version "7.2.1")
(source
(origin
(method url-fetch)
@@ -522,22 +522,28 @@ fully fledged Spatial SQL capabilities.")
version ".tar.gz"))
(sha256
(base32
- "1y46ij32j9b4x1kjnnlykcwk3kkjwkg44sfc1ziwm3a3g0ki3q3d"))))
- (build-system gnu-build-system)
+ "050apzdn0isxpsblys1shrl9ccli5vd32kgswlgx1imrbwpg915k"))))
+ (build-system cmake-build-system)
+ (arguments
+ `(#:configure-flags '("-DUSE_EXTERNAL_GTEST=ON")))
(inputs
- `(("sqlite" ,sqlite)))
+ `(("curl" ,curl)
+ ("libjpeg-turbo" ,libjpeg-turbo)
+ ("libtiff" ,libtiff)
+ ("sqlite" ,sqlite)))
(native-inputs
- `(("pkg-config" ,pkg-config)))
+ `(("googletest" ,googletest)
+ ("pkg-config" ,pkg-config)))
(home-page "https://proj.org/")
(synopsis "Coordinate transformation software")
(description
"Proj is a generic coordinate transformation software that transforms
-geospatial coordinates from one coordinate reference system (CRS) to another.
-This includes cartographic projections as well as geodetic transformations.
-PROJ includes command line applications for easy conversion of coordinates
-from text files or directly from user input. In addition, proj also exposes
-an application programming interface that lets developers use the
-functionality of proj in their own software.")
+geospatial coordinates from one @acronym{CRS, coordinate reference system}
+to another. This includes cartographic projections as well as geodetic
+transformations. Proj includes command line applications for easy
+conversion of coordinates from text files or directly from user input.
+In addition, Proj also exposes an application programming interface that
+lets developers use the functionality of Proj in their own software.")
(license (list license:expat
;; src/projections/patterson.cpp
license:asl2.0
--
2.30.2
- [bug#50812] [PATCH v3 0/6] Add python-geopandas, (continued)
- [bug#50812] [PATCH v3 0/6] Add python-geopandas, Felix Gruber, 2021/09/27
- [bug#50812] [PATCH v3 2/6] gnu: Add python-pyproj., Felix Gruber, 2021/09/27
- [bug#50812] [PATCH v3 3/6] gnu: Add python-cligj., Felix Gruber, 2021/09/27
- [bug#50812] [PATCH v3 5/6] gnu: Add python-geopandas., Felix Gruber, 2021/09/27
- [bug#50812] [PATCH v3 1/6] gnu: Add proj 7.2.1., Felix Gruber, 2021/09/27
- [bug#50812] [PATCH v3 6/6] gnu: Improve description of proj packages., Felix Gruber, 2021/09/27
- [bug#50812] [PATCH v3 4/6] gnu: Add python-fiona., Felix Gruber, 2021/09/27
- [bug#50812] [PATCH v4 0/5] Add python-geopandas, Felix Gruber, 2021/09/28