gnu: astyle: Update to 3.4.8.
* gnu/packages/code.scm (astyle): Update to 3.4.8. [arguments]: Don't explicitly return #t from phases.
This commit is contained in:
parent
974b04ab80
commit
b2b7411466
1 changed files with 4 additions and 6 deletions
|
@ -835,15 +835,14 @@ Objective@tie{}C, D, Java, Pawn, and Vala). Features:
|
||||||
(define-public astyle
|
(define-public astyle
|
||||||
(package
|
(package
|
||||||
(name "astyle")
|
(name "astyle")
|
||||||
(version "3.1")
|
(version "3.4.8")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://sourceforge/astyle/astyle/astyle%20"
|
(uri (string-append "mirror://sourceforge/astyle/astyle/astyle%20"
|
||||||
version "/astyle_" version "_linux.tar.gz"))
|
version "/astyle_" version "_linux.tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "1ms54wcs7hg1bsywqwf2lhdfizgbk7qxc9ghasxk8i99jvwlrk6b"))))
|
||||||
"1ms54wcs7hg1bsywqwf2lhdfizgbk7qxc9ghasxk8i99jvwlrk6b"))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;no tests
|
`(#:tests? #f ;no tests
|
||||||
|
@ -856,7 +855,7 @@ Objective@tie{}C, D, Java, Pawn, and Vala). Features:
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
(lambda _ (chdir "build/gcc") #t))
|
(lambda _ (chdir "build/gcc")))
|
||||||
(add-after 'install 'install-libs
|
(add-after 'install 'install-libs
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
;; Libraries and includes are not installed by default
|
;; Libraries and includes are not installed by default
|
||||||
|
@ -881,8 +880,7 @@ Objective@tie{}C, D, Java, Pawn, and Vala). Features:
|
||||||
(lambda (sofile)
|
(lambda (sofile)
|
||||||
(make-so-link sofile "(\\.[0-9]){3}$") ;; link .so
|
(make-so-link sofile "(\\.[0-9]){3}$") ;; link .so
|
||||||
(make-so-link sofile "(\\.[0-9]){2}$")) ;; link .so.3
|
(make-so-link sofile "(\\.[0-9]){2}$")) ;; link .so.3
|
||||||
(find-files libdir "lib.*\\.so\\..*")))
|
(find-files libdir "lib.*\\.so\\..*"))))))))
|
||||||
#t)))))
|
|
||||||
(home-page "https://astyle.sourceforge.net/")
|
(home-page "https://astyle.sourceforge.net/")
|
||||||
(synopsis "Source code indenter, formatter, and beautifier")
|
(synopsis "Source code indenter, formatter, and beautifier")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue