gnu: cvs-fast-export: Use non-native Python 3.
* gnu/packages/version-control.scm (cvs-fast-export)[native-inputs]: Remove python-2. [inputs]: Add python-wrapper.
This commit is contained in:
parent
d462bf0e49
commit
a894ca327b
1 changed files with 8 additions and 6 deletions
|
@ -1580,11 +1580,13 @@ RCS, PRCS, and Aegis packages.")
|
||||||
#: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")))))
|
||||||
(inputs `(("git" ,git)))
|
(inputs
|
||||||
(native-inputs `(("asciidoc" ,asciidoc)
|
`(("git" ,git)
|
||||||
|
("python" ,python-wrapper)))
|
||||||
|
(native-inputs
|
||||||
|
`(("asciidoc" ,asciidoc)
|
||||||
;; These are needed for the tests.
|
;; These are needed for the tests.
|
||||||
("cvs" ,cvs)
|
("cvs" ,cvs)
|
||||||
("python" ,python-2)
|
|
||||||
("rcs" ,rcs)))
|
("rcs" ,rcs)))
|
||||||
(home-page "http://www.catb.org/esr/cvs-fast-export/")
|
(home-page "http://www.catb.org/esr/cvs-fast-export/")
|
||||||
(synopsis "Export an RCS or CVS history as a fast-import stream")
|
(synopsis "Export an RCS or CVS history as a fast-import stream")
|
||||||
|
|
Reference in a new issue