guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: texinfo: Add procps to native-inputs to fix tests.


From: Mark H. Weaver
Subject: 01/02: gnu: texinfo: Add procps to native-inputs to fix tests.
Date: Sat, 11 Jul 2015 05:05:26 +0000

mhw pushed a commit to branch core-updates
in repository guix.

commit 47ed8e048bd5905f7648bed472a13eb95393767d
Author: Mark H Weaver <address@hidden>
Date:   Sat Jul 11 00:56:39 2015 -0400

    gnu: texinfo: Add procps to native-inputs to fix tests.
    
    * gnu/packages/texinfo.scm (texinfo)[native-inputs]: Add procps.
      (texinfo-5, texinfo-4)[native-inputs]: Override to be empty.
    * gnu/packages/commencement.scm (texinfo-boot0)[texinfo]: Override
      native-inputs to be empty.
---
 gnu/packages/commencement.scm |    1 +
 gnu/packages/texinfo.scm      |    6 +++++-
 2 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 02a9a36..d3f239f 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -284,6 +284,7 @@
   ;; because we don't need the stand-alone Info reader.
   ;; Also, use %BOOT0-INPUTS to avoid building Perl once more.
   (let ((texinfo (package (inherit texinfo)
+                   (native-inputs '())
                    (inputs (alist-delete "ncurses" (package-inputs 
texinfo))))))
     (package-with-bootstrap-guile
      (package-with-explicit-inputs texinfo %boot0-inputs
diff --git a/gnu/packages/texinfo.scm b/gnu/packages/texinfo.scm
index cf367c1..92bd947 100644
--- a/gnu/packages/texinfo.scm
+++ b/gnu/packages/texinfo.scm
@@ -26,6 +26,7 @@
   #:use-module (gnu packages)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages perl)
+  #:use-module (gnu packages linux)
   #:use-module (gnu packages ncurses))
 
 (define-public texinfo
@@ -40,6 +41,7 @@
                (base32
                 "1r3i6jyynn6ab45fxw5bms8mflk9ry4qpj6gqyry72vfd5c47fhi"))))
     (build-system gnu-build-system)
+    (native-inputs `(("procps" ,procps)))  ;one of the tests needs pgrep
     (inputs `(("ncurses" ,ncurses)
               ("xz" ,xz)
               ("perl" ,perl)))
@@ -63,7 +65,8 @@ is on expressing the content semantically, avoiding physical 
markup commands.")
                                   version ".tar.xz"))
               (sha256
                (base32
-                "1njfwh2z34r2c4r0iqa7v24wmjzvsfyz4vplzry8ln3479lfywal"))))))
+                "1njfwh2z34r2c4r0iqa7v24wmjzvsfyz4vplzry8ln3479lfywal"))))
+    (native-inputs '())))
 
 (define-public texinfo-4
   (package (inherit texinfo)
@@ -77,6 +80,7 @@ is on expressing the content semantically, avoiding physical 
markup commands.")
               (sha256
                (base32
                 "1rf9ckpqwixj65bw469i634897xwlgkm5i9g2hv3avl6mv7b0a3d"))))
+    (native-inputs '())
     (inputs `(("ncurses" ,ncurses) ("xz" ,xz)))))
 
 (define-public texi2html



reply via email to

[Prev in Thread] Current Thread [Next in Thread]