guix-commits
[Top][All Lists]
Advanced

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

01/04: transformations: '--with-latest' correctly handles already-latest


From: guix-commits
Subject: 01/04: transformations: '--with-latest' correctly handles already-latest case.
Date: Tue, 8 Jun 2021 17:29:02 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 7ccf416dd00b9842d7f9801ae8d2438e92a4cdfe
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Tue Jun 8 22:44:53 2021 +0200

    transformations: '--with-latest' correctly handles already-latest case.
    
    Previously, '--with-latest' would wrongfully print:
    
      warning: could not determine latest upstream release of 'xyz'
    
    when 'xyz' is already the latest version.  This fixes that.
    
    * guix/transformations.scm (transform-package-latest): Use
    'package-latest-release' instead of 'package-latest-release*'.
---
 guix/transformations.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/guix/transformations.scm b/guix/transformations.scm
index 4e92603..b0c09a0 100644
--- a/guix/transformations.scm
+++ b/guix/transformations.scm
@@ -25,7 +25,7 @@
   #:autoload   (guix download) (download-to-store)
   #:autoload   (guix git-download) (git-reference? git-reference-url)
   #:autoload   (guix git) (git-checkout git-checkout? git-checkout-url)
-  #:autoload   (guix upstream) (package-latest-release*
+  #:autoload   (guix upstream) (package-latest-release
                                 upstream-source-version
                                 upstream-source-signature-urls)
   #:use-module (guix utils)
@@ -518,7 +518,7 @@ additional patches."
   "Return a procedure that rewrites package graphs such that those in SPECS
 are replaced by their latest upstream version."
   (define (package-with-latest-upstream p)
-    (let ((source (package-latest-release* p)))
+    (let ((source (package-latest-release p)))
       (cond ((not source)
              (warning
               (G_ "could not determine latest upstream release of '~a'~%")



reply via email to

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