[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/04: gnu: pies: Update to 1.7.
From: |
guix-commits |
Subject: |
04/04: gnu: pies: Update to 1.7. |
Date: |
Mon, 3 Jan 2022 02:32:24 -0500 (EST) |
efraim pushed a commit to branch master
in repository guix.
commit 8189ce17051918cf90d5bc84d9d2660a31964b16
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Jan 3 09:23:34 2022 +0200
gnu: pies: Update to 1.7.
* gnu/packages/admin.scm (pies): Update to 1.7.
[arguments]: Remove trailing #t from phases.
---
gnu/packages/admin.scm | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 0eef80f325..5181b3046c 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -717,7 +717,7 @@ memory, disks, network and processes. It's a Python port
and continuation of
(define-public pies
(package
(name "pies")
- (version "1.6")
+ (version "1.7")
(source
(origin
(method url-fetch)
@@ -725,7 +725,7 @@ memory, disks, network and processes. It's a Python port
and continuation of
version ".tar.bz2"))
(sha256
(base32
- "0ad5bg1czwmr4qw33aszxzc6ll99a9lfs32lyfb1wl5x9s1cc7az"))))
+ "0ajcah2y6n55qc0ckspcx0hfpm1yb2xa1apcyij7mclic4q2y330"))))
(build-system gnu-build-system)
(arguments
'(#:phases (modify-phases %standard-phases
@@ -736,8 +736,7 @@ memory, disks, network and processes. It's a Python port
and continuation of
(let ((bash (assoc-ref inputs "bash")))
(substitute* '("src/progman.c" "src/comp.c")
(("\"/bin/sh\"")
- (string-append "\"" bash "/bin/sh\"")))
- #t))))))
+ (string-append "\"" bash "/bin/sh\"")))))))))
(home-page "https://www.gnu.org.ua/software/pies/")
(synopsis "Program invocation and execution supervisor")
(description