mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
Merge branch 'master' into core-updates.
Conflicts: gnu/local.mk gnu/packages/build-tools.scm gnu/packages/certs.scm gnu/packages/check.scm gnu/packages/compression.scm gnu/packages/cups.scm gnu/packages/fontutils.scm gnu/packages/gnuzilla.scm gnu/packages/guile.scm gnu/packages/ibus.scm gnu/packages/image-processing.scm gnu/packages/linux.scm gnu/packages/music.scm gnu/packages/nss.scm gnu/packages/pdf.scm gnu/packages/python-xyz.scm gnu/packages/qt.scm gnu/packages/ruby.scm gnu/packages/shells.scm gnu/packages/tex.scm gnu/packages/video.scm gnu/packages/vulkan.scm gnu/packages/web.scm gnu/packages/webkit.scm gnu/packages/wm.scm
This commit is contained in:
commit
3bacd3c76a
231 changed files with 20528 additions and 7891 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-2022 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2013-2023 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>
|
||||
|
@ -1484,6 +1484,9 @@ the NIST server non-fatal."
|
|||
(package-version package))))
|
||||
((force lookup) name version)))))
|
||||
|
||||
;; Prevent Guile 3 from inlining this procedure so we can mock it in tests.
|
||||
(set! package-vulnerabilities package-vulnerabilities)
|
||||
|
||||
(define* (check-vulnerabilities package
|
||||
#:optional (package-vulnerabilities
|
||||
package-vulnerabilities))
|
||||
|
@ -1861,6 +1864,10 @@ them for PACKAGE."
|
|||
(name 'description)
|
||||
(description "Validate package descriptions")
|
||||
(check check-description-style))
|
||||
(lint-checker
|
||||
(name 'synopsis)
|
||||
(description "Validate package synopses")
|
||||
(check check-synopsis-style))
|
||||
(lint-checker
|
||||
(name 'inputs-should-be-native)
|
||||
(description "Identify inputs that should be native inputs")
|
||||
|
@ -1925,10 +1932,7 @@ or a list thereof")
|
|||
|
||||
(define %network-dependent-checkers
|
||||
(list
|
||||
(lint-checker
|
||||
(name 'synopsis)
|
||||
(description "Validate package synopses")
|
||||
(check check-synopsis-style))
|
||||
|
||||
(lint-checker
|
||||
(name 'gnu-description)
|
||||
(description "Validate synopsis & description of GNU packages")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue