gnu: guile-png: Update to 0.4.1.
* gnu/packages/guile-xyz.scm (guile-png): Update to 0.4.1. [arguments]: Remove extra phases. Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
99a61391d7
commit
b5a85e31dd
|
@ -3843,7 +3843,7 @@ debugging code.")
|
||||||
(define-public guile-png
|
(define-public guile-png
|
||||||
(package
|
(package
|
||||||
(name "guile-png")
|
(name "guile-png")
|
||||||
(version "0.4.0")
|
(version "0.4.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -3852,21 +3852,10 @@ debugging code.")
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
(file-name (string-append name "-" version "-checkout"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0x5wynd5q3prhzic1s9vys80vga5dnqzyk7d7q6kx9hvyyi551qr"))))
|
"1vkhv0dip0na6d9g478i587n5y6046vn5rsjmfnbibi9yx4rkrf8"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags '("GUILE_AUTO_COMPILE=0") ;to prevent guild warnings
|
`(#:make-flags '("GUILE_AUTO_COMPILE=0"))) ;to prevent guild warnings
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
;; Guile-PNG tries to log parser messages to the syslog which is not
|
|
||||||
;; available during the build.
|
|
||||||
(add-after 'unpack 'fix-tests
|
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
||||||
(substitute* "tests/graphics.scm"
|
|
||||||
((" \\(png graphics\\)\\)")
|
|
||||||
(string-append " (png graphics)\n"
|
|
||||||
" (png fsm context))\n"
|
|
||||||
"(log-clear-handlers!)"))))))))
|
|
||||||
(native-inputs (list autoconf
|
(native-inputs (list autoconf
|
||||||
automake
|
automake
|
||||||
pkg-config
|
pkg-config
|
||||||
|
|
Reference in New Issue