gnu: fossil: Update to 2.2.
* gnu/packages/version-control.scm (fossil): Update to 2.2. [source]: Add uri for older versions. [arguments]: Enable previously disabled test.
This commit is contained in:
parent
ab1bd285db
commit
d0b13d7b9b
|
@ -1337,16 +1337,21 @@ repository\" with git-annex.")
|
||||||
(define-public fossil
|
(define-public fossil
|
||||||
(package
|
(package
|
||||||
(name "fossil")
|
(name "fossil")
|
||||||
(version "1.35")
|
(version "2.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
;; Older downloads are moved to another URL.
|
||||||
"https://www.fossil-scm.org/index.html/uv/download/"
|
(uri (list
|
||||||
"fossil-src-" version ".tar.gz"))
|
(string-append
|
||||||
|
"https://www.fossil-scm.org/index.html/uv/download/"
|
||||||
|
"fossil-src-" version ".tar.gz")
|
||||||
|
(string-append
|
||||||
|
"https://www.fossil-scm.org/index.html/uv/"
|
||||||
|
"fossil-src-" version ".tar.gz")))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"07ds6rhq69bhydpm9a01mgdhxf88p9b6y5hdnhn8gjc7ba92zyf1"))))
|
"0wfgacfg29dkl0c3l1rp5ji0kraa64gcbg5lh8p4m7mqdqcq53wv"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("tcl" ,tcl) ;for configuration only
|
`(("tcl" ,tcl) ;for configuration only
|
||||||
|
@ -1375,9 +1380,6 @@ repository\" with git-annex.")
|
||||||
(lambda _
|
(lambda _
|
||||||
(setenv "USER" "guix")
|
(setenv "USER" "guix")
|
||||||
(setenv "TZ" "UTC")
|
(setenv "TZ" "UTC")
|
||||||
;; Fixing the th1 test would require many backports, so
|
|
||||||
;; just disable for now.
|
|
||||||
(delete-file "test/th1.test")
|
|
||||||
#t)))))
|
#t)))))
|
||||||
(home-page "https://fossil-scm.org")
|
(home-page "https://fossil-scm.org")
|
||||||
(synopsis "Software configuration management system")
|
(synopsis "Software configuration management system")
|
||||||
|
|
Loading…
Reference in New Issue