gnu: texinfo: Update to 6.5.

* gnu/packages/texinfo.scm (texinfo): Update to 6.5.
[native-inputs]: Remove procps.
(texinfo@6.5): Remove variable.
This commit is contained in:
Efraim Flashner 2017-10-03 14:33:19 +03:00
parent 1c5655c0ba
commit b603d02a0e
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 2 additions and 17 deletions

View File

@ -31,19 +31,17 @@
#:use-module (gnu packages ncurses)) #:use-module (gnu packages ncurses))
(define-public texinfo (define-public texinfo
;; TODO: Merge with 'texinfo-latest' on the next core-updates.
(package (package
(name "texinfo") (name "texinfo")
(version "6.4") (version "6.5")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "mirror://gnu/texinfo/texinfo-" (uri (string-append "mirror://gnu/texinfo/texinfo-"
version ".tar.xz")) version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"0ficyfpknfrsm3xn3svd38fja3s7s1ml5wn6yyd0ycf6hwfydqka")))) "0qjzvbvnv9003xdrcpi3jp7y68j4hq2ciw9frh2hghh698zlnxvp"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs `(("procps" ,procps))) ;one of the tests needs pgrep
(inputs `(("ncurses" ,ncurses) (inputs `(("ncurses" ,ncurses)
("perl" ,perl))) ("perl" ,perl)))
@ -64,19 +62,6 @@ their source and the command-line Info reader. The emphasis of the language
is on expressing the content semantically, avoiding physical markup commands.") is on expressing the content semantically, avoiding physical markup commands.")
(license gpl3+))) (license gpl3+)))
(define-public texinfo-latest
;; TODO: Turn this into 'texinfo' on the next core-updates cycle.
(package (inherit texinfo)
(version "6.5")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnu/texinfo/texinfo-"
version ".tar.xz"))
(sha256
(base32
"0qjzvbvnv9003xdrcpi3jp7y68j4hq2ciw9frh2hghh698zlnxvp"))))
(native-inputs '())))
(define-public texinfo-5 (define-public texinfo-5
(package (inherit texinfo) (package (inherit texinfo)
(version "5.2") (version "5.2")