guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: GPSD: Update to 3.23.


From: guix-commits
Subject: branch master updated: gnu: GPSD: Update to 3.23.
Date: Sat, 07 Aug 2021 14:11:51 -0400

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

lfam pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 178cbc3  gnu: GPSD: Update to 3.23.
178cbc3 is described below

commit 178cbc30d4e4f4a5d718ae220894544709483ef7
Author: Leo Famulari <leo@famulari.name>
AuthorDate: Sat Aug 7 14:06:38 2021 -0400

    gnu: GPSD: Update to 3.23.
    
    Fixes <https://gitlab.com/gpsd/gpsd/-/issues/144>, "GPSD time will jump
    back 1024 weeks at after week=2180 (23-October-2021)".
    
    See also <http://bugs.gnu.org/49815>.
    
    * gnu/packages/gps.scm (gpsd): Update to 3.23.
    [arguments]: Set TAR=noop in the 'fix-build' phase.
---
 gnu/packages/gps.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/gps.scm b/gnu/packages/gps.scm
index 0eb4362..8ac16c6 100644
--- a/gnu/packages/gps.scm
+++ b/gnu/packages/gps.scm
@@ -222,14 +222,14 @@ such as elevation, speed, heart rate, power, temperature, 
and gear shifts.")
 (define-public gpsd
   (package
     (name "gpsd")
-    (version "3.21")
+    (version "3.23")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://download-mirror.savannah.gnu.org";
-                           "/releases/gpsd/gpsd-" version ".tar.gz"))
+                           "/releases/gpsd/gpsd-" version ".tar.xz"))
        (sha256
-        (base32 "14gyqrbrq6jz4y6x59rdpv9d4c3pbn0vh1blq3iwrc6kz0x4ql35"))))
+        (base32 "1px9im0qfn8k7mnvjcw5myakzd7mad2drwyzji400hpwyswjjr73"))))
     (build-system scons-build-system)
     (native-inputs
      `(("bc" ,bc)
@@ -259,7 +259,8 @@ such as elevation, speed, heart rate, power, temperature, 
and gear shifts.")
        (modify-phases %standard-phases
          (add-after 'unpack 'fix-build
            (lambda* (#:key outputs #:allow-other-keys)
-             (substitute* "SConstruct"
+             (setenv "TAR" "noop")
+             (substitute* "SConscript"
                (("envs = \\{\\}")
                 "envs = os.environ"))
              #t))



reply via email to

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