unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#39056] [PATCH] lint: Check for more packages which should be native.
@ 2020-01-09 15:33 Danny Milosavljevic
  2020-01-09 17:04 ` Danny Milosavljevic
  2020-01-09 21:48 ` Ludovic Courtès
  0 siblings, 2 replies; 5+ messages in thread
From: Danny Milosavljevic @ 2020-01-09 15:33 UTC (permalink / raw)
  To: 39056; +Cc: Danny Milosavljevic

* guix/lint.scm (check-inputs-should-be-native): Add autoconf, automake,
bison, dejagnu, desktop-file-utils, doxygen, flex, gettext,
googletest-source, groff, help2man, libtool, swig, qmake, qttools,
texinfo, xorg-server-for-tests.
---
 guix/lint.scm | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

diff --git a/guix/lint.scm b/guix/lint.scm
index e3544bd963..4e3aa2f00d 100644
--- a/guix/lint.scm
+++ b/guix/lint.scm
@@ -286,11 +286,23 @@ of a package, and INPUT-NAMES, a list of package specifications such as
   (let ((inputs (package-inputs package))
         (input-names
          '("pkg-config"
+            "autoconf"
+            "automake"
+            "bison"
             "cmake"
+            "dejagnu"
+            "desktop-file-utils"
+            "doxygen"
             "extra-cmake-modules"
+            "flex"
+            "gettext"
             "glib:bin"
+            "googletest-source"
+            "groff"
+            "help2man"
             "intltool"
             "itstool"
+            "libtool"
             "qttools"
             "yasm" "nasm" "fasm"
             "python-coverage" "python2-coverage"
@@ -302,7 +314,12 @@ of a package, and INPUT-NAMES, a list of package specifications such as
             "python-pytest" "python2-pytest"
             "python-pytest-cov" "python2-pytest-cov"
             "python-setuptools-scm" "python2-setuptools-scm"
-            "python-sphinx" "python2-sphinx")))
+            "python-sphinx" "python2-sphinx"
+            "swig"
+            "qmake"
+            "qttools"
+            "texinfo"
+            "xorg-server-for-tests")))
     (map (lambda (input)
            (make-warning
             package

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#39056] [PATCH] lint: Check for more packages which should be native.
  2020-01-09 15:33 [bug#39056] [PATCH] lint: Check for more packages which should be native Danny Milosavljevic
@ 2020-01-09 17:04 ` Danny Milosavljevic
  2020-01-09 17:10   ` Danny Milosavljevic
  2020-01-09 21:48 ` Ludovic Courtès
  1 sibling, 1 reply; 5+ messages in thread
From: Danny Milosavljevic @ 2020-01-09 17:04 UTC (permalink / raw)
  To: 39056

[-- Attachment #1: Type: text/plain, Size: 16 bytes --]

And yelp-tools

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#39056] [PATCH] lint: Check for more packages which should be native.
  2020-01-09 17:04 ` Danny Milosavljevic
@ 2020-01-09 17:10   ` Danny Milosavljevic
  0 siblings, 0 replies; 5+ messages in thread
From: Danny Milosavljevic @ 2020-01-09 17:10 UTC (permalink / raw)
  To: 39056

[-- Attachment #1: Type: text/plain, Size: 27 bytes --]

And gobject-introspection

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#39056] [PATCH] lint: Check for more packages which should be native.
  2020-01-09 15:33 [bug#39056] [PATCH] lint: Check for more packages which should be native Danny Milosavljevic
  2020-01-09 17:04 ` Danny Milosavljevic
@ 2020-01-09 21:48 ` Ludovic Courtès
  2020-01-09 22:15   ` bug#39056: " Danny Milosavljevic
  1 sibling, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2020-01-09 21:48 UTC (permalink / raw)
  To: Danny Milosavljevic; +Cc: 39056

Hello,

Danny Milosavljevic <dannym@scratchpost.org> skribis:

> * guix/lint.scm (check-inputs-should-be-native): Add autoconf, automake,
> bison, dejagnu, desktop-file-utils, doxygen, flex, gettext,
> googletest-source, groff, help2man, libtool, swig, qmake, qttools,
> texinfo, xorg-server-for-tests.

LGTM!

> And yelp-tools
> And gobject-introspection

Those too.  :-)

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#39056: [PATCH] lint: Check for more packages which should be native.
  2020-01-09 21:48 ` Ludovic Courtès
@ 2020-01-09 22:15   ` Danny Milosavljevic
  0 siblings, 0 replies; 5+ messages in thread
From: Danny Milosavljevic @ 2020-01-09 22:15 UTC (permalink / raw)
  Cc: Ludovic Courtès, 39056-done

[-- Attachment #1: Type: text/plain, Size: 86 bytes --]

Pushed to guix master as commit bbd9063afcb204b3f81c59d09f5c54d3b67f1e91.

Thanks!

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-01-09 22:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-09 15:33 [bug#39056] [PATCH] lint: Check for more packages which should be native Danny Milosavljevic
2020-01-09 17:04 ` Danny Milosavljevic
2020-01-09 17:10   ` Danny Milosavljevic
2020-01-09 21:48 ` Ludovic Courtès
2020-01-09 22:15   ` bug#39056: " Danny Milosavljevic

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).