gnu: cvs-fast-export: Update to 1.51.
* gnu/packages/version-control.scm (cvs-fast-export): Update to 1.51. [arguments]: Remove obsolete ‘remove-optimizations’ phase.
This commit is contained in:
parent
8cc1fdcee7
commit
d462bf0e49
1 changed files with 4 additions and 10 deletions
|
@ -1564,25 +1564,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.45")
|
(version "1.51")
|
||||||
(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
|
||||||
"19pxg6p0pcgyd2fbnh3wy1kazv6vcfi5lzc2whhdi1w9kj4r9c4z"))))
|
"0nn5cf8syb5nbjvkn8w561pk25clv187h4hs9pnc700g9w56chzf"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(delete 'configure) ; no configure script
|
(delete 'configure)) ; no configure script
|
||||||
(add-after 'unpack 'remove-optimizations
|
|
||||||
(lambda _
|
|
||||||
;; Don't optimize for a specific processor architecture.
|
|
||||||
(substitute* "Makefile"
|
|
||||||
(("CFLAGS \\+= -march=native") ""))
|
|
||||||
#t)))
|
|
||||||
#:parallel-build? #f ; parallel a2x commands fail spectacularly
|
#:parallel-build? #f ; parallel a2x commands fail spectacularly
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(list "CC=gcc" (string-append "prefix?=" (assoc-ref %outputs "out")))))
|
(list "CC=gcc" (string-append "prefix?=" (assoc-ref %outputs "out")))))
|
||||||
|
|
Reference in a new issue