mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
lint: Comment out 'cve' checker.
* guix/lint.scm (%network-dependent-checkers): Comment out 'cve' checker.
This commit is contained in:
parent
b080b6d937
commit
d7fcd9c565
1 changed files with 11 additions and 5 deletions
|
@ -1319,11 +1319,17 @@ (define %network-dependent-checkers
|
||||||
(name 'github-url)
|
(name 'github-url)
|
||||||
(description "Suggest GitHub URLs")
|
(description "Suggest GitHub URLs")
|
||||||
(check check-github-url))
|
(check check-github-url))
|
||||||
(lint-checker
|
|
||||||
(name 'cve)
|
;; FIXME: Commented out as a consequence of the XML CVE feed retirement:
|
||||||
(description "Check the Common Vulnerabilities and Exposures\
|
;; <https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3>.
|
||||||
(CVE) database")
|
;; Reinstate it once the JSON feed is supported.
|
||||||
(check check-vulnerabilities))
|
|
||||||
|
;; (lint-checker
|
||||||
|
;; (name 'cve)
|
||||||
|
;; (description "Check the Common Vulnerabilities and Exposures\
|
||||||
|
;; (CVE) database")
|
||||||
|
;; (check check-vulnerabilities))
|
||||||
|
|
||||||
(lint-checker
|
(lint-checker
|
||||||
(name 'refresh)
|
(name 'refresh)
|
||||||
(description "Check the package for new upstream releases")
|
(description "Check the package for new upstream releases")
|
||||||
|
|
Loading…
Reference in a new issue