diff options
author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2023-05-07 08:04:57 +0300 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-05-24 15:04:01 +0200 |
commit | b5a85e31dd6fa3ed2582c79b8906abdc48ddd793 (patch) | |
tree | b00eee0ab9ec4b9e5a72fda3722d15c67925ea5d | |
parent | 99a61391d78f5df6720f14f3596384a61366cef7 (diff) | |
download | guix-b5a85e31dd6fa3ed2582c79b8906abdc48ddd793.tar.gz guix-b5a85e31dd6fa3ed2582c79b8906abdc48ddd793.zip |
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>
-rw-r--r-- | gnu/packages/guile-xyz.scm | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index d79b01d168..92882eca3c 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -3843,7 +3843,7 @@ debugging code.") (define-public guile-png (package (name "guile-png") - (version "0.4.0") + (version "0.4.1") (source (origin (method git-fetch) (uri (git-reference @@ -3852,21 +3852,10 @@ debugging code.") (file-name (string-append name "-" version "-checkout")) (sha256 (base32 - "0x5wynd5q3prhzic1s9vys80vga5dnqzyk7d7q6kx9hvyyi551qr")))) + "1vkhv0dip0na6d9g478i587n5y6046vn5rsjmfnbibi9yx4rkrf8")))) (build-system gnu-build-system) (arguments - `(#: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!)")))))))) + `(#:make-flags '("GUILE_AUTO_COMPILE=0"))) ;to prevent guild warnings (native-inputs (list autoconf automake pkg-config |