gnu: python-waf: Update to 1.9.5.
* gnu/packages/python.scm (python-waf): Update to 1.9.5. [arguments]: Shorten custom build phase. [source]: Use http. [home-page]: Use http.
This commit is contained in:
parent
603d55de4a
commit
7dd55dfeca
|
@ -5236,30 +5236,28 @@ connection to each user.")
|
||||||
(define-public python-waf
|
(define-public python-waf
|
||||||
(package
|
(package
|
||||||
(name "python-waf")
|
(name "python-waf")
|
||||||
(version "1.9.1")
|
(version "1.9.5")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://waf.io/"
|
(uri (string-append "http://waf.io/"
|
||||||
"waf-" version ".tar.bz2"))
|
"waf-" version ".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1nc4qaqx2vsanlpp9mcwvf91xjqpkvcc6fcxd5sb4fwvaxamw5v6"))))
|
"1sl3ipi2czds57rlzjnpdzqa0skx8asfvmh3qmibpvdwf15rpppg"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'build
|
(replace 'build
|
||||||
(lambda _
|
(lambda _
|
||||||
(zero? (begin
|
(zero? (system* "python" "waf-light" "configure" "build"))))
|
||||||
(system* "python" "waf-light" "configure")
|
|
||||||
(system* "python" "waf-light" "build")))))
|
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda _
|
||||||
(zero? (system* "python" "waf" "--version"))))
|
(zero? (system* "python" "waf" "--version"))))
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda _
|
(lambda _
|
||||||
(copy-file "waf" %output))))))
|
(copy-file "waf" %output))))))
|
||||||
(home-page "https://waf.io/")
|
(home-page "http://waf.io/")
|
||||||
(synopsis "Python-based build system")
|
(synopsis "Python-based build system")
|
||||||
(description
|
(description
|
||||||
"Waf is a Python-based framework for configuring, compiling and installing
|
"Waf is a Python-based framework for configuring, compiling and installing
|
||||||
|
|
Loading…
Reference in New Issue