guix-commits
[Top][All Lists]
Advanced

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

01/01: packages: Update 'check-package-freshness' to use (guix upstream)


From: Ludovic Courtès
Subject: 01/01: packages: Update 'check-package-freshness' to use (guix upstream).
Date: Wed, 21 Oct 2015 16:29:41 +0000

civodul pushed a commit to branch master
in repository guix.

commit 861be0cc1d1b2fc50be61b4815189e0d3b2075ed
Author: Ludovic Courtès <address@hidden>
Date:   Wed Oct 21 18:28:14 2015 +0200

    packages: Update 'check-package-freshness' to use (guix upstream).
    
    This is a followup to 0a7c5a0.
    Reported by Efraim Flashner <address@hidden>.
    
    * gnu/packages.scm (check-package-freshness): Update to the new (guix
      upstream) interface.
---
 gnu/packages.scm |   11 ++++++++---
 1 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/gnu/packages.scm b/gnu/packages.scm
index 6e46a89..fb27738 100644
--- a/gnu/packages.scm
+++ b/gnu/packages.scm
@@ -24,6 +24,7 @@
   #:use-module (guix utils)
   #:use-module ((guix ftp-client) #:select (ftp-open))
   #:use-module (guix gnu-maintenance)
+  #:use-module (guix upstream)
   #:use-module (ice-9 ftw)
   #:use-module (ice-9 vlist)
   #:use-module (ice-9 match)
@@ -377,14 +378,18 @@ it."
       (when (false-if-exception (gnu-package? package))
         (let ((name      (package-name package))
               (full-name (package-full-name package)))
+          ;; XXX: This could work with non-GNU packages as well.  However,
+          ;; GNU's FTP-based updater would be too slow if it weren't memoized,
+          ;; and the generic interface in (guix upstream) doesn't support
+          ;; that.
           (match (waiting (latest-release name
                                           #:ftp-open ftp-open*
                                           #:ftp-close (const #f))
                           (_ "looking for the latest release of GNU ~a...") 
name)
-            ((? gnu-release? release)
+            ((? upstream-source? source)
              (let ((latest-version
-                    (string-append (gnu-release-package release) "-"
-                                   (gnu-release-version release))))
+                    (string-append (upstream-source-package source) "-"
+                                   (upstream-source-version source))))
               (when (version>? latest-version full-name)
                 (format (current-error-port)
                         (_ "~a: note: using ~a \



reply via email to

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