lint: Check for more packages which should be native.
* guix/lint.scm (check-inputs-should-be-native): Add autoconf, automake, bison, dejagnu, desktop-file-utils, doxygen, flex, gettext, gobject-introspection, googletest-source, groff, help2man, libtool, swig, qmake, qttools, texinfo, xorg-server-for-tests, yelp-tools.master
parent
7edbaa7f65
commit
bbd9063afc
|
@ -286,11 +286,24 @@ of a package, and INPUT-NAMES, a list of package specifications such as
|
||||||
(let ((inputs (package-inputs package))
|
(let ((inputs (package-inputs package))
|
||||||
(input-names
|
(input-names
|
||||||
'("pkg-config"
|
'("pkg-config"
|
||||||
|
"autoconf"
|
||||||
|
"automake"
|
||||||
|
"bison"
|
||||||
"cmake"
|
"cmake"
|
||||||
|
"dejagnu"
|
||||||
|
"desktop-file-utils"
|
||||||
|
"doxygen"
|
||||||
"extra-cmake-modules"
|
"extra-cmake-modules"
|
||||||
|
"flex"
|
||||||
|
"gettext"
|
||||||
"glib:bin"
|
"glib:bin"
|
||||||
|
"gobject-introspection"
|
||||||
|
"googletest-source"
|
||||||
|
"groff"
|
||||||
|
"help2man"
|
||||||
"intltool"
|
"intltool"
|
||||||
"itstool"
|
"itstool"
|
||||||
|
"libtool"
|
||||||
"qttools"
|
"qttools"
|
||||||
"yasm" "nasm" "fasm"
|
"yasm" "nasm" "fasm"
|
||||||
"python-coverage" "python2-coverage"
|
"python-coverage" "python2-coverage"
|
||||||
|
@ -302,7 +315,13 @@ of a package, and INPUT-NAMES, a list of package specifications such as
|
||||||
"python-pytest" "python2-pytest"
|
"python-pytest" "python2-pytest"
|
||||||
"python-pytest-cov" "python2-pytest-cov"
|
"python-pytest-cov" "python2-pytest-cov"
|
||||||
"python-setuptools-scm" "python2-setuptools-scm"
|
"python-setuptools-scm" "python2-setuptools-scm"
|
||||||
"python-sphinx" "python2-sphinx")))
|
"python-sphinx" "python2-sphinx"
|
||||||
|
"swig"
|
||||||
|
"qmake"
|
||||||
|
"qttools"
|
||||||
|
"texinfo"
|
||||||
|
"xorg-server-for-tests"
|
||||||
|
"yelp-tools")))
|
||||||
(map (lambda (input)
|
(map (lambda (input)
|
||||||
(make-warning
|
(make-warning
|
||||||
package
|
package
|
||||||
|
|
Reference in New Issue