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

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 96ca564482 gnu: pdal: Update to 2.9.0.
96ca564482 is described below

commit 96ca564482a777da1a00789b48cec3a5f54ba9e5
Author: Mattia Bunel <[email protected]>
AuthorDate: Fri Jun 20 16:32:32 2025 +0200

    gnu: pdal: Update to 2.9.0.
    
    * gnu/packages/geo.scm (pdal): Update to 2.9.0.
    
    Change-Id: Ie45cf96ccfcd6ecfa887979fde2a260c26aad5e3
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/geo.scm | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 8c5152e242..26548e2699 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -1507,7 +1507,7 @@ development.")
 (define-public pdal
   (package
     (name "pdal")
-    (version "2.8.4")
+    (version "2.9.0")
     (source
      (origin
        (method git-fetch)
@@ -1516,17 +1516,20 @@ development.")
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1w6cg9akb46xf6h7cw0nrg109d6n9035qxczk2scvaxg76hgnsz7"))))
+        (base32 "0gckixcykp9di4j7w6zkbhpj2ji1hvk8z3rw58dlqcvi81xcyjfa"))))
     (build-system cmake-build-system)
     (arguments
-     (list #:phases
+     (list
+      #:configure-flags #~(list "-DUSE_EXTERNAL_GTEST=ON")
+      #:phases
            #~(modify-phases %standard-phases
                (replace 'check
                  (lambda* (#:key tests? #:allow-other-keys)
                    (when tests?
-                     (invoke "ctest" "-E" ;; This test hangs.
-                             "pdal_io_stac_reader_test")))))))
-    (native-inputs (list python))
+                     (invoke "ctest" "-E"
+                             ;; This tests needs network .
+                             "pdal_io_(stac|copc)_reader_test")))))))
+    (native-inputs (list python googletest))
     (inputs (list gdal
                   h3
                   libgeotiff

Reply via email to