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:
parent
1c5655c0ba
commit
b603d02a0e
|
@ -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")
|
||||||
|
|
Loading…
Reference in New Issue