summaryrefslogtreecommitdiff
path: root/guix/lint.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2021-01-06 18:37:52 +0100
committerLudovic Courtès <ludo@gnu.org>2021-01-07 12:08:41 +0100
commit069bb95ab23345ff51ba96b207a262fb553e6126 (patch)
tree4d5ab7845866e598a800e9538b2453d28b733965 /guix/lint.scm
parentb793718cb482a2d2c9fb3de1c90baaf388a0eef5 (diff)
downloadguix-patches-069bb95ab23345ff51ba96b207a262fb553e6126.tar
guix-patches-069bb95ab23345ff51ba96b207a262fb553e6126.tar.gz
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*'.
Diffstat (limited to 'guix/lint.scm')
-rw-r--r--guix/lint.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/lint.scm b/guix/lint.scm
index be6bb4eb01..311bc94cc3 100644
--- a/guix/lint.scm
+++ b/guix/lint.scm
@@ -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 @@ vulnerability records for PACKAGE by calling PACKAGE-VULNERABILITIES."
(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))