Skip to content
Snippets Groups Projects
Unverified Commit e93f8d98 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

gnu: guile-git: Update to latest Git snapshot.

* gnu/packages/guile.scm (guile-git): Update to 96dfb3b.
[arguments]: Remove #:parallel-tests?.
parent 58b24078
No related branches found
No related tags found
No related merge requests found
...@@ -1703,8 +1703,8 @@ (define-public guile-fibers ...@@ -1703,8 +1703,8 @@ (define-public guile-fibers
(license license:lgpl3+))) (license license:lgpl3+)))
(define-public guile-git (define-public guile-git
(let ((revision "0") (let ((revision "1")
(commit "969514aa7224217bc3c1a4c5312a9469ac5f13d5")) (commit "96dfb3bdba39a37cf6aefb18e335118a6115f963"))
(package (package
(name "guile-git") (name "guile-git")
(version (string-append "0.0-" revision "." (string-take commit 7))) (version (string-append "0.0-" revision "." (string-take commit 7)))
...@@ -1714,17 +1714,14 @@ (define-public guile-git ...@@ -1714,17 +1714,14 @@ (define-public guile-git
(uri (git-reference (url home-page) (commit commit))) (uri (git-reference (url home-page) (commit commit)))
(sha256 (sha256
(base32 (base32
"079l8y6pjkmahb4k6dfqh3hk34pg540rrl29aixyvv86w9bdfjil")) "0v73251kmh1vs7gp3jh4pk4rikl4d8illwi0gnhwa55ij1mn9apl"))
(file-name (git-file-name name version)))) (file-name (git-file-name name version))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
'(#:phases (modify-phases %standard-phases '(#:phases (modify-phases %standard-phases
(add-after 'unpack 'bootstrap (add-after 'unpack 'bootstrap
(lambda _ (lambda _
(zero? (system* "autoreconf" "-vfi"))))) (zero? (system* "autoreconf" "-vfi")))))))
;; Test suite is not parallel-safe: the tests open same-named repos.
#:parallel-tests? #f))
(native-inputs (native-inputs
`(("autoconf" ,autoconf) `(("autoconf" ,autoconf)
("automake" ,automake) ("automake" ,automake)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment