mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
upstream: Make the 'updaters' parameter optional.
* guix/upstream.scm (lookup-updater, package-latest-release) (package-latest-release*, package-update): Make 'updaters' an optional parameter. * guix/lint.scm (check-for-updates): Remove second argument to 'package-latest-release*'.
This commit is contained in:
parent
b793718cb4
commit
069bb95ab2
2 changed files with 13 additions and 7 deletions
|
@ -1,7 +1,7 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2014 Cyril Roelandt <tipecaml@gmail.com>
|
||||
;;; Copyright © 2014, 2015 Eric Bavier <bavier@member.fsf.org>
|
||||
;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2015, 2016 Mathieu Lirzin <mthl@gnu.org>
|
||||
;;; Copyright © 2016 Danny Milosavljevic <dannym+a@scratchpost.org>
|
||||
;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
||||
|
@ -1183,7 +1183,7 @@ (define (check-for-updates package)
|
|||
(format #f (G_ "while retrieving upstream info for '~a'")
|
||||
(package-name package))
|
||||
#f
|
||||
(package-latest-release* package (force %updaters)))
|
||||
(package-latest-release* package))
|
||||
((? upstream-source? source)
|
||||
(if (version>? (upstream-source-version source)
|
||||
(package-version package))
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2015 Alex Kost <alezost@gmail.com>
|
||||
;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;;
|
||||
|
@ -248,7 +248,8 @@ (define %updaters
|
|||
'()
|
||||
(importer-modules))))
|
||||
|
||||
(define (lookup-updater package updaters)
|
||||
(define* (lookup-updater package
|
||||
#:optional (updaters (force %updaters)))
|
||||
"Return an updater among UPDATERS that matches PACKAGE, or #f if none of
|
||||
them matches."
|
||||
(find (match-lambda
|
||||
|
@ -256,7 +257,9 @@ (define (lookup-updater package updaters)
|
|||
(pred package)))
|
||||
updaters))
|
||||
|
||||
(define (package-latest-release package updaters)
|
||||
(define* (package-latest-release package
|
||||
#:optional
|
||||
(updaters (force %updaters)))
|
||||
"Return an upstream source to update PACKAGE, a <package> object, or #f if
|
||||
none of UPDATERS matches PACKAGE. It is the caller's responsibility to ensure
|
||||
that the returned source is newer than the current one."
|
||||
|
@ -265,7 +268,9 @@ (define (package-latest-release package updaters)
|
|||
((upstream-updater-latest updater) package))
|
||||
(_ #f)))
|
||||
|
||||
(define (package-latest-release* package updaters)
|
||||
(define* (package-latest-release* package
|
||||
#:optional
|
||||
(updaters (force %updaters)))
|
||||
"Like 'package-latest-release', but ensure that the return source is newer
|
||||
than that of PACKAGE."
|
||||
(match (package-latest-release package updaters)
|
||||
|
@ -402,7 +407,8 @@ (define %method-updates
|
|||
;; Mapping of origin methods to source update procedures.
|
||||
`((,url-fetch . ,package-update/url-fetch)))
|
||||
|
||||
(define* (package-update store package updaters
|
||||
(define* (package-update store package
|
||||
#:optional (updaters (force %updaters))
|
||||
#:key (key-download 'interactive))
|
||||
"Return the new version, the file name of the new version tarball, and input
|
||||
changes for PACKAGE; return #f (three values) when PACKAGE is up-to-date.
|
||||
|
|
Loading…
Reference in a new issue