gnu: cvs-fast-export: Update to 1.45.
* gnu/packages/version-control.scm (cvs-fast-export): Update to 1.45. [arguments]: Remove 'fix-setpython-PATH' phase.
This commit is contained in:
parent
cfc92cd7bf
commit
66416c0c1c
|
@ -1427,27 +1427,19 @@ RCS, PRCS, and Aegis packages.")
|
||||||
(define-public cvs-fast-export
|
(define-public cvs-fast-export
|
||||||
(package
|
(package
|
||||||
(name "cvs-fast-export")
|
(name "cvs-fast-export")
|
||||||
(version "1.44")
|
(version "1.45")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://www.catb.org/~esr/cvs-fast-export/"
|
(uri (string-append "http://www.catb.org/~esr/cvs-fast-export/"
|
||||||
"cvs-fast-export-" version ".tar.gz"))
|
"cvs-fast-export-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1l7hlys4vw4zk4ikdjiig5vzgv5dv48mbm8bdqgvgkyyxb2j0dm0"))))
|
"19pxg6p0pcgyd2fbnh3wy1kazv6vcfi5lzc2whhdi1w9kj4r9c4z"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(delete 'configure)
|
(delete 'configure) ; no configure script
|
||||||
(add-before 'check 'fix-setpython-PATH
|
|
||||||
(lambda _
|
|
||||||
;; The Makefile does try to add the current working directory to
|
|
||||||
;; $PATH, but this fails for some reason in 1.44. Hack around it.
|
|
||||||
(substitute* "tests/Makefile"
|
|
||||||
(("setpython" command)
|
|
||||||
(string-append "./" command)))
|
|
||||||
#t))
|
|
||||||
(add-after 'unpack 'remove-optimizations
|
(add-after 'unpack 'remove-optimizations
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Don't optimize for a specific processor architecture.
|
;; Don't optimize for a specific processor architecture.
|
||||||
|
|
Loading…
Reference in New Issue