gnu: autogen: Update to 5.18.14.
* gnu/packages/autogen.scm (autogen): Update to 5.18.14. [inputs]: Move perl from native-inputs to here... [native-inputs]: ...and which from inputs to here. [arguments]: Remove unnecessary ‘/usr/bin/tr’ substitution.
This commit is contained in:
parent
2a64c54a96
commit
11c8a64912
|
@ -1,6 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013, 2014 Eric Bavier <bavier@member.fsf.org>
|
;;; Copyright © 2013, 2014 Eric Bavier <bavier@member.fsf.org>
|
||||||
;;; Copyright © 2015, 2016 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2015, 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -31,7 +32,7 @@
|
||||||
(define-public autogen
|
(define-public autogen
|
||||||
(package
|
(package
|
||||||
(name "autogen")
|
(name "autogen")
|
||||||
(version "5.18.12")
|
(version "5.18.14")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -39,12 +40,12 @@
|
||||||
"/autogen-" version ".tar.xz"))
|
"/autogen-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1n5zq4872sakvz9c7ncsdcfp0z8rsybsxvbmhkpbd19ii0pacfxy"))))
|
"1r06gam7sicb9ssn02mhv6r0g5vr4k0l0c67shpqa5i172cspizz"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs `(("perl" ,perl) ;for doc generator mdoc
|
(native-inputs `(("pkg-config" ,pkg-config)
|
||||||
("pkg-config" ,pkg-config)))
|
("which" ,which)))
|
||||||
(inputs `(("which" ,which)
|
(inputs `(("guile" ,guile-2.0)
|
||||||
("guile" ,guile-2.0)))
|
("perl" ,perl))) ; for doc generator mdoc
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
@ -54,8 +55,7 @@
|
||||||
(substitute*
|
(substitute*
|
||||||
(append (find-files "agen5/test" "\\.test$")
|
(append (find-files "agen5/test" "\\.test$")
|
||||||
(find-files "autoopts/test" "\\.(test|in)$"))
|
(find-files "autoopts/test" "\\.(test|in)$"))
|
||||||
(("/bin/sh") sh)
|
(("/bin/sh") sh))
|
||||||
(("/usr/bin/tr") "tr"))
|
|
||||||
#t))))))
|
#t))))))
|
||||||
(home-page "https://www.gnu.org/software/autogen/")
|
(home-page "https://www.gnu.org/software/autogen/")
|
||||||
(synopsis "Automated program generator")
|
(synopsis "Automated program generator")
|
||||||
|
|
Loading…
Reference in New Issue