[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: busybox: Update to 1.29.1.
From: |
Efraim Flashner |
Subject: |
01/01: gnu: busybox: Update to 1.29.1. |
Date: |
Thu, 19 Jul 2018 14:29:51 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit e9ab4b40a8bf6ddf7242bc0d67b61148a4078419
Author: Efraim Flashner <address@hidden>
Date: Thu Jul 19 21:27:46 2018 +0300
gnu: busybox: Update to 1.29.1.
* gnu/packages/busybox.scm (busybox): Update to 1.29.1.
[arguments]: Add custom phase to change the default value of TASKSET.
---
gnu/packages/busybox.scm | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/busybox.scm b/gnu/packages/busybox.scm
index 4cdea3a..480b777 100644
--- a/gnu/packages/busybox.scm
+++ b/gnu/packages/busybox.scm
@@ -1,6 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 John Darrington <address@hidden>
-;;; Copyright © 2016, 2017 Efraim Flashner <address@hidden>
+;;; Copyright © 2016, 2017, 2018 Efraim Flashner <address@hidden>
;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
;;;
;;; This file is part of GNU Guix.
@@ -31,7 +31,7 @@
(define-public busybox
(package
(name "busybox")
- (version "1.26.2")
+ (version "1.29.1")
(source (origin
(method url-fetch)
(uri (string-append
@@ -39,11 +39,18 @@
version ".tar.bz2"))
(sha256
(base32
- "05mg6rh5smkzfwqfcazkpwy6h6555llsazikqnvwkaf17y8l8gns"))))
+ "1hqlr5b3bsyb6avadz1z4za6pyl32r1krnpcpwwqilhnx8q0f9gw"))))
(build-system gnu-build-system)
(arguments
'(#:phases
(modify-phases %standard-phases
+ (add-before 'configure 'disable-taskset
+ ;; This feature fails its tests in the build environment,
+ ;; was default 'n' until after 1.26.2.
+ (lambda _
+ (substitute* "util-linux/taskset.c"
+ (("default y") "default n"))
+ #t))
(replace 'configure
(lambda _ (invoke "make" "defconfig")))
(replace 'check