me
/
guix
Archived
1
0
Fork 0

gnu: Remove indent@2.2.10.

* gnu/packages/code.scm (indent): Update to 2.2.12.
[native-inputs]: Add TEXINFO.
(indent-2.2.12): Remove variable.
master
Marius Bakke 2019-07-09 21:09:47 +02:00
parent 33f460addf
commit 7fe6dcf708
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 5 additions and 16 deletions

View File

@ -626,13 +626,13 @@ the C, C++, C++/CLI, ObjectiveC, C#, and Java programming languages.")
(define-public indent (define-public indent
(package (package
(name "indent") (name "indent")
(version "2.2.10") (version "2.2.12")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "mirror://gnu/indent/indent-" version (uri (string-append "mirror://gnu/indent/indent-" version
".tar.gz")) ".tar.gz"))
(sha256 (base32 (sha256
"0f9655vqdvfwbxvs1gpa7py8k1z71aqh8hp73f65vazwbfz436wa")))) (base32 "12xvcd16cwilzglv9h7sgh4h1qqjd1h8s48ji2dla58m4706hzg7"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:phases `(#:phases
@ -645,6 +645,8 @@ the C, C++, C++/CLI, ObjectiveC, C#, and Java programming languages.")
(substitute* "doc/Makefile.in" (substitute* "doc/Makefile.in"
(("^docdir = .*$") "docdir = @docdir@\n")) (("^docdir = .*$") "docdir = @docdir@\n"))
#t))))) #t)))))
(native-inputs
`(("texinfo" ,texinfo)))
(synopsis "Code reformatter") (synopsis "Code reformatter")
(description (description
"Indent is a program that makes source code easier to read by "Indent is a program that makes source code easier to read by
@ -655,19 +657,6 @@ extensions over the standard utility.")
(license license:gpl3+) (license license:gpl3+)
(home-page "https://www.gnu.org/software/indent/"))) (home-page "https://www.gnu.org/software/indent/")))
(define-public indent-2.2.12
(package
(inherit indent)
(version "2.2.12")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnu/indent/indent-" version
".tar.gz"))
(sha256
(base32
"12xvcd16cwilzglv9h7sgh4h1qqjd1h8s48ji2dla58m4706hzg7"))))
(native-inputs `(("texinfo" ,texinfo)))))
(define-public amalgamate (define-public amalgamate
(let* ((commit "c91f07eea1133aa184f652b8f1398eaf03586208") (let* ((commit "c91f07eea1133aa184f652b8f1398eaf03586208")
(revision "0") (revision "0")