summary refs log tree commit diff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2019-10-18 11:55:24 +0200
committerLudovic Courtès <ludo@gnu.org>2019-10-18 12:02:52 +0200
commitd7fcd9c565812919109ae88049f5d8bf4c56f9bd (patch)
tree8af224f6d931a93e5c46c1d4b582dd6703677969
parentb080b6d9378a6b23edfc46dcd4a96eb796db2927 (diff)
downloadguix-d7fcd9c565812919109ae88049f5d8bf4c56f9bd.tar.gz
lint: Comment out 'cve' checker.
* guix/lint.scm (%network-dependent-checkers): Comment out 'cve' checker.
-rw-r--r--guix/lint.scm16
1 files changed, 11 insertions, 5 deletions
diff --git a/guix/lint.scm b/guix/lint.scm
index 03a8e88225..6336cf4e3b 100644
--- a/guix/lint.scm
+++ b/guix/lint.scm
@@ -1319,11 +1319,17 @@ or a list thereof")
      (name        'github-url)
      (description "Suggest GitHub URLs")
      (check       check-github-url))
-   (lint-checker
-     (name        'cve)
-     (description "Check the Common Vulnerabilities and Exposures\
- (CVE) database")
-     (check       check-vulnerabilities))
+
+   ;; FIXME: Commented out as a consequence of the XML CVE feed retirement:
+   ;; <https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3>.
+   ;; Reinstate it once the JSON feed is supported.
+
+ ;;   (lint-checker
+ ;;     (name        'cve)
+ ;;     (description "Check the Common Vulnerabilities and Exposures\
+ ;; (CVE) database")
+ ;;     (check       check-vulnerabilities))
+
    (lint-checker
      (name        'refresh)
      (description "Check the package for new upstream releases")