[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/06: gnu: talloc: Update to 2.1.11.
From: |
Tobias Geerinckx-Rice |
Subject: |
06/06: gnu: talloc: Update to 2.1.11. |
Date: |
Mon, 15 Jan 2018 08:56:34 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit adbfc6b9f1adefba488b44d8a0934bdb76d1e600
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Mon Jan 15 07:30:13 2018 +0100
gnu: talloc: Update to 2.1.11.
* gnu/packages/samba.scm (talloc): Update to 2.1.11.
[arguments]: Run all tests. Use INVOKE.
---
gnu/packages/samba.scm | 17 ++++++-----------
1 file changed, 6 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm
index 7cf02a6..4acd391 100644
--- a/gnu/packages/samba.scm
+++ b/gnu/packages/samba.scm
@@ -233,31 +233,26 @@ Desktops into Active Directory environments using the
winbind daemon.")
(define-public talloc
(package
(name "talloc")
- (version "2.1.10")
+ (version "2.1.11")
(source (origin
(method url-fetch)
(uri (string-append "https://www.samba.org/ftp/talloc/talloc-"
version ".tar.gz"))
(sha256
(base32
- "06gn45if56g81vbj3841fzdjsahrrczwqpfrydm2zv6nxd5yk1f9"))))
+ "1lzfxv2zjxap5snf9ydl1bqgjpz0kgkq7n644f8rkbx0arav77k3"))))
(build-system gnu-build-system)
(arguments
'(#:phases
(modify-phases %standard-phases
(replace 'configure
(lambda* (#:key outputs #:allow-other-keys)
- ;; test_magic_differs.sh has syntax error, and is not in the right
- ;; place where wscript expected.
- ;; Skip the test.
- (substitute* "wscript"
- (("magic_ret = .*") "magic_ret = 0\n"))
- ;; talloc uses a custom configuration script that runs a
- ;; python script called 'waf'.
+ ;; talloc uses a custom configuration script that runs a Python
+ ;; script called 'waf', and doesn't tolerate unknown options.
(setenv "CONFIG_SHELL" (which "sh"))
(let ((out (assoc-ref outputs "out")))
- (zero? (system* "./configure"
- (string-append "--prefix=" out)))))))))
+ (invoke "./configure"
+ (string-append "--prefix=" out))))))))
(inputs
`(("python" ,python-2)))
(home-page "https://talloc.samba.org")
- branch master updated (dd72837 -> adbfc6b), Tobias Geerinckx-Rice, 2018/01/15
- 03/06: gnu: iniparser: Use #:make-flags., Tobias Geerinckx-Rice, 2018/01/15
- 02/06: gnu: iniparser: Fix documentation directory., Tobias Geerinckx-Rice, 2018/01/15
- 01/06: gnu: ccache: Update to 3.3.5., Tobias Geerinckx-Rice, 2018/01/15
- 06/06: gnu: talloc: Update to 2.1.11.,
Tobias Geerinckx-Rice <=
- 04/06: gnu: iniparser: Use INSTALL-FILE., Tobias Geerinckx-Rice, 2018/01/15
- 05/06: gnu: iniparser: Update to 4.1., Tobias Geerinckx-Rice, 2018/01/15