gnu: guix: Update to 0.8.3.
* gnu/packages/package-management.scm (guix-0.8.2): Rename to... (guix-0.8.3): ... this. Adjust users. Add 'disable-container-tests' phase. (guix): Set to GUIX-0.8.3.
This commit is contained in:
parent
e348eaaf31
commit
5d09263bfd
|
@ -52,17 +52,17 @@
|
||||||
arch "-linux"
|
arch "-linux"
|
||||||
"/20131110/guile-2.0.9.tar.xz")))
|
"/20131110/guile-2.0.9.tar.xz")))
|
||||||
|
|
||||||
(define-public guix-0.8.2
|
(define-public guix-0.8.3
|
||||||
(package
|
(package
|
||||||
(name "guix")
|
(name "guix")
|
||||||
(version "0.8.2")
|
(version "0.8.3")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "ftp://alpha.gnu.org/gnu/guix/guix-"
|
(uri (string-append "ftp://alpha.gnu.org/gnu/guix/guix-"
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1a5gnkh17w7fgi5zy63ph64iqdvarkdqypkwgw2iifpqa6jq04zz"))))
|
"14n0nkj0ckhdwhghx1pml99hbjr1xdkn8x145j0xp1357vqlisnz"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags (list
|
`(#:configure-flags (list
|
||||||
|
@ -99,6 +99,17 @@
|
||||||
(copy "mips64el")
|
(copy "mips64el")
|
||||||
(copy "armhf")
|
(copy "armhf")
|
||||||
#t))
|
#t))
|
||||||
|
(add-after
|
||||||
|
'unpack 'disable-container-tests
|
||||||
|
;; XXX FIXME: These tests fail within the build container.
|
||||||
|
(lambda _
|
||||||
|
(substitute* "tests/syscalls.scm"
|
||||||
|
(("^\\(test-assert \"(clone|setns|pivot-root)\"" all)
|
||||||
|
(string-append "(test-skip 1)\n" all)))
|
||||||
|
(substitute* "tests/containers.scm"
|
||||||
|
(("^\\(test-assert" all)
|
||||||
|
(string-append "(test-skip 1)\n" all)))
|
||||||
|
#t))
|
||||||
(add-after
|
(add-after
|
||||||
'install 'wrap-program
|
'install 'wrap-program
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
|
@ -166,7 +177,7 @@ the Nix package manager.")
|
||||||
;; Note: use a short commit id; when using the long one, the limit on socket
|
;; Note: use a short commit id; when using the long one, the limit on socket
|
||||||
;; file names is exceeded while running the tests.
|
;; file names is exceeded while running the tests.
|
||||||
(let ((commit "72cd8ec"))
|
(let ((commit "72cd8ec"))
|
||||||
(package (inherit guix-0.8.2)
|
(package (inherit guix-0.8.3)
|
||||||
(version (string-append "0.8.2." commit))
|
(version (string-append "0.8.2." commit))
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -178,7 +189,7 @@ the Nix package manager.")
|
||||||
"0mfn3y4kihv6xn3a05zafdswy6v8bncddrn4n4qciinplnyg20wa"))
|
"0mfn3y4kihv6xn3a05zafdswy6v8bncddrn4n4qciinplnyg20wa"))
|
||||||
(file-name (string-append "guix-" version "-checkout"))))
|
(file-name (string-append "guix-" version "-checkout"))))
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments guix-0.8.2)
|
(substitute-keyword-arguments (package-arguments guix-0.8.3)
|
||||||
((#:phases phases)
|
((#:phases phases)
|
||||||
`(modify-phases ,phases
|
`(modify-phases ,phases
|
||||||
(add-after
|
(add-after
|
||||||
|
@ -208,9 +219,9 @@ the Nix package manager.")
|
||||||
("texinfo" ,texinfo)
|
("texinfo" ,texinfo)
|
||||||
("graphviz" ,graphviz)
|
("graphviz" ,graphviz)
|
||||||
("help2man" ,help2man)
|
("help2man" ,help2man)
|
||||||
,@(package-native-inputs guix-0.8.2))))))
|
,@(package-native-inputs guix-0.8.3))))))
|
||||||
|
|
||||||
(define-public guix guix-devel)
|
(define-public guix guix-0.8.3)
|
||||||
|
|
||||||
(define-public nix
|
(define-public nix
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in New Issue