[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/07: gnu: talloc: Update to 2.1.5.
From: |
??? |
Subject: |
04/07: gnu: talloc: Update to 2.1.5. |
Date: |
Fri, 18 Dec 2015 02:31:26 +0000 |
iyzsong pushed a commit to branch master
in repository guix.
commit 095da0234299372c9793d1ccd7ee05e5abf0ff04
Author: 宋文武 <address@hidden>
Date: Fri Dec 18 10:08:33 2015 +0800
gnu: talloc: Update to 2.1.5.
* gnu/packages/samba.scm (talloc): Update to 2.1.5.
[arguments]: Modify wscript to skip the 'magic_differs' test.
---
gnu/packages/samba.scm | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm
index 0873a00..743784c 100644
--- a/gnu/packages/samba.scm
+++ b/gnu/packages/samba.scm
@@ -169,20 +169,25 @@ Desktops into Active Directory environments using the
winbind daemon.")
(define-public talloc
(package
(name "talloc")
- (version "2.1.2")
+ (version "2.1.5")
(source (origin
(method url-fetch)
(uri (string-append "https://www.samba.org/ftp/talloc/talloc-";
version ".tar.gz"))
(sha256
(base32
- "13c365f7y8idjf2v1jxdjpkc3lxdmsxxfxjx1ymianm7zjiph393"))))
+ "1pfx3kmj973hpacfw46fzfnjd7ms1j03ifkc30wk930brx8ffcrq"))))
(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'.
(setenv "CONFIG_SHELL" (which "sh"))
- branch master updated (f464016 -> 710964d), ???, 2015/12/17
- 01/07: gnu: Add cracklib., ???, 2015/12/17
- 03/07: gnu: talloc: Use 'modify-phases' syntax., ???, 2015/12/17
- 04/07: gnu: talloc: Update to 2.1.5.,
??? <=
- 02/07: gnu: Add libpwquality., ???, 2015/12/17
- 05/07: gnu: Add tevent., ???, 2015/12/17
- 06/07: gnu: Add ldb., ???, 2015/12/17
- 07/07: gnu: samba: Update to 4.3.2., ???, 2015/12/17