1
0
forked from tribes/guix

Compare commits

..

2 Commits

Author SHA1 Message Date
Ludovic Courtès 193a08e254 gnu: guix: Update development snapshot.
* gnu/packages/package-management.scm (guix-devel): Update to commit 5d09263.
  Prefix version string with "0.8.3.".
  (guix): Set to GUIX-DEVEL.
2015-07-22 00:33:47 +02:00
Ludovic Courtès 5d09263bfd 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.
2015-07-21 23:16:36 +02:00
+20 -9
View File
@@ -52,17 +52,17 @@
arch "-linux"
"/20131110/guile-2.0.9.tar.xz")))
(define-public guix-0.8.2
(define-public guix-0.8.3
(package
(name "guix")
(version "0.8.2")
(version "0.8.3")
(source (origin
(method url-fetch)
(uri (string-append "ftp://alpha.gnu.org/gnu/guix/guix-"
version ".tar.gz"))
(sha256
(base32
"1a5gnkh17w7fgi5zy63ph64iqdvarkdqypkwgw2iifpqa6jq04zz"))))
"14n0nkj0ckhdwhghx1pml99hbjr1xdkn8x145j0xp1357vqlisnz"))))
(build-system gnu-build-system)
(arguments
`(#:configure-flags (list
@@ -99,6 +99,17 @@
(copy "mips64el")
(copy "armhf")
#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
'install 'wrap-program
(lambda* (#:key inputs outputs #:allow-other-keys)
@@ -165,9 +176,9 @@ the Nix package manager.")
;;
;; Note: use a short commit id; when using the long one, the limit on socket
;; file names is exceeded while running the tests.
(let ((commit "72cd8ec"))
(package (inherit guix-0.8.2)
(version (string-append "0.8.2." commit))
(let ((commit "5d09263"))
(package (inherit guix-0.8.3)
(version (string-append "0.8.3." commit))
(source (origin
(method git-fetch)
(uri (git-reference
@@ -175,10 +186,10 @@ the Nix package manager.")
(commit commit)))
(sha256
(base32
"0mfn3y4kihv6xn3a05zafdswy6v8bncddrn4n4qciinplnyg20wa"))
"0v5g90di91j218x620shib7xjrjd5dkk4h1zrlg98hdmbgxq5s3j"))
(file-name (string-append "guix-" version "-checkout"))))
(arguments
(substitute-keyword-arguments (package-arguments guix-0.8.2)
(substitute-keyword-arguments (package-arguments guix-0.8.3)
((#:phases phases)
`(modify-phases ,phases
(add-after
@@ -208,7 +219,7 @@ the Nix package manager.")
("texinfo" ,texinfo)
("graphviz" ,graphviz)
("help2man" ,help2man)
,@(package-native-inputs guix-0.8.2))))))
,@(package-native-inputs guix-0.8.3))))))
(define-public guix guix-devel)