[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/10: gnu: thefuck: Use INVOKE.
From: |
Tobias Geerinckx-Rice |
Subject: |
10/10: gnu: thefuck: Use INVOKE. |
Date: |
Thu, 26 Apr 2018 23:37:27 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 2216b6f4108abfb2f75db7667beaa46ee7d630e8
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Fri Apr 27 05:13:48 2018 +0200
gnu: thefuck: Use INVOKE.
* gnu/packages/admin.scm (thefuck)[arguments]: Substitute INVOKE for
SYSTEM* and end phase with explicit #t.
---
gnu/packages/admin.scm | 3 ++-
gnu/packages/music.scm | 4 ++--
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index ce4dca6..1d9fa7c 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -1962,7 +1962,8 @@ throughput (in the same interval).")
(add-installed-pythonpath inputs outputs)
;; Some tests need write access to $HOME.
(setenv "HOME" "/tmp")
- (zero? (system* "py.test" "-v")))))))
+ (invoke "py.test" "-v")
+ #t)))))
(propagated-inputs
`(("python-colorama" ,python-colorama)
("python-decorator" ,python-decorator)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 6419ad4..7e98fa7 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -2147,14 +2147,14 @@ computer's keyboard.")
(define-public aj-snapshot
(package
(name "aj-snapshot")
- (version "0.9.7")
+ (version "0.9.8")
(source (origin
(method url-fetch)
(uri (string-append "mirror://sourceforge/aj-snapshot/"
"aj-snapshot-" version ".tar.bz2"))
(sha256
(base32
- "0yxccgp9qw2cyqv719wlbq8wfsr5ga8czvwa7bmb8dh5s11n3rn8"))))
+ "0wilky1g2mb88v2z0520s7sw1dsn10iwanc8id5p6z1xsnhg7b6p"))))
(build-system gnu-build-system)
(inputs
`(("minixml" ,minixml)
- branch master updated (adfc742 -> 2216b6f), Tobias Geerinckx-Rice, 2018/04/26
- 01/10: gnu: address@hidden: Update to 2.000004., Tobias Geerinckx-Rice, 2018/04/26
- 03/10: gnu: tuxguitar: Update home page., Tobias Geerinckx-Rice, 2018/04/26
- 05/10: gnu: mpd: Update to 0.20.19., Tobias Geerinckx-Rice, 2018/04/26
- 06/10: gnu: drumstick: Update to 1.1.1., Tobias Geerinckx-Rice, 2018/04/26
- 07/10: gnu: infamous-plugins: Use HTTPS home page., Tobias Geerinckx-Rice, 2018/04/26
- 02/10: gnu: perl-clone: Update to 0.39., Tobias Geerinckx-Rice, 2018/04/26
- 09/10: gnu: thefuck: Update to 3.26., Tobias Geerinckx-Rice, 2018/04/26
- 08/10: gnu: infamous-plugins: Update to 0.2.04., Tobias Geerinckx-Rice, 2018/04/26
- 04/10: gnu: tuxguitar: Update to 1.5., Tobias Geerinckx-Rice, 2018/04/26
- 10/10: gnu: thefuck: Use INVOKE.,
Tobias Geerinckx-Rice <=