[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/07: gnu: pies: Update to 1.3.
From: |
Ludovic Courtès |
Subject: |
07/07: gnu: pies: Update to 1.3. |
Date: |
Tue, 4 Oct 2016 14:38:28 +0000 (UTC) |
civodul pushed a commit to branch master
in repository guix.
commit a9764b7d2e671894e7150061c4ee429979e36ee6
Author: Ludovic Courtès <address@hidden>
Date: Tue Oct 4 16:36:33 2016 +0200
gnu: pies: Update to 1.3.
* gnu/packages/admin.scm (pies): Update to 1.3.
[arguments]: New field.
---
gnu/packages/admin.scm | 25 ++++++++++++++++++-------
1 file changed, 18 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index f869284..4fcc05a 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -210,16 +210,27 @@ application (for console or X terminals) and requires
ncurses.")
(define-public pies
(package
(name "pies")
- (version "1.2")
+ (version "1.3")
(source
(origin
- (method url-fetch)
- (uri (string-append "mirror://gnu/pies/pies-"
- version ".tar.bz2"))
- (sha256
- (base32
- "18w0dbg77i56cx1bwa789w0qi3l4xkkbascxcv2b6gbm0zmjg1g6"))))
+ (method url-fetch)
+ (uri (string-append "mirror://gnu/pies/pies-"
+ version ".tar.bz2"))
+ (sha256
+ (base32
+ "12r7rjjyibjdj08dvwbp0iflfpzl4s0zhn6cr6zj3hwf9gbzgl1g"))))
(build-system gnu-build-system)
+ (arguments
+ '(#:phases (modify-phases %standard-phases
+ (add-before 'build 'patch-/bin/sh
+ (lambda* (#:key inputs #:allow-other-keys)
+ ;; Use the right shell when executing user-provided
+ ;; shell commands.
+ (let ((bash (assoc-ref inputs "bash")))
+ (substitute* "src/progman.c"
+ (("\"/bin/sh\"")
+ (string-append "\"" bash "/bin/sh\"")))
+ #t))))))
(home-page "http://www.gnu.org/software/pies/")
(synopsis "Program invocation and execution supervisor")
(description
- branch master updated (491dbac -> a9764b7), Ludovic Courtès, 2016/10/04
- 05/07: gnu: gsl: Update to 2.2.1., Ludovic Courtès, 2016/10/04
- 01/07: Set Emacs config variable sentence-end-double-space., Ludovic Courtès, 2016/10/04
- 03/07: gnu: gnu-c-manual: Update to 0.2.5., Ludovic Courtès, 2016/10/04
- 07/07: gnu: pies: Update to 1.3.,
Ludovic Courtès <=
- 06/07: gnu: global: Update to 6.5.5., Ludovic Courtès, 2016/10/04
- 02/07: gnu: rush: Update to 1.8., Ludovic Courtès, 2016/10/04
- 04/07: gnu: direvent: Update to 5.1., Ludovic Courtès, 2016/10/04