gnu: cl-pngload: Update to 2.0.0-2.91f1d70.
* gnu/packages/lisp-xyz.scm (sbcl-pngload): Update to 2.0.0-2.91f1d70. [source]: Update URI as upstream repository migrated. [home-page]: Likewise. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>master
parent
6cf3b1c265
commit
6591e184f0
|
@ -11532,18 +11532,20 @@ files.")
|
||||||
(sbcl-package->ecl-package sbcl-zpb-exif))
|
(sbcl-package->ecl-package sbcl-zpb-exif))
|
||||||
|
|
||||||
(define-public sbcl-pngload
|
(define-public sbcl-pngload
|
||||||
|
(let ((commit "91f1d703c65bb6a94d6fee06ddbbbbbc5778b71f")
|
||||||
|
(revision "2"))
|
||||||
(package
|
(package
|
||||||
(name "sbcl-pngload")
|
(name "sbcl-pngload")
|
||||||
(version "2.0.0")
|
(version (git-version "2.0.0" revision commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/bufferswap/pngload")
|
(url "https://git.mfiano.net/mfiano/pngload.git")
|
||||||
(commit version)))
|
(commit commit)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name "pngload" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1ix8dd0fxlf8xm0bszh1s7sx83hn0vqq8b8c9gkrd5m310w8mpvh"))))
|
(base32 "0s94fdbrbqj12qvgyn2g4lfwvz7qhhzbclrpz5ni7adwxgrmvxl1"))))
|
||||||
(build-system asdf-build-system/sbcl)
|
(build-system asdf-build-system/sbcl)
|
||||||
(inputs
|
(inputs
|
||||||
`(("3bz" ,sbcl-3bz)
|
`(("3bz" ,sbcl-3bz)
|
||||||
|
@ -11558,12 +11560,12 @@ files.")
|
||||||
;; Test suite disabled because of a dependency cycle.
|
;; Test suite disabled because of a dependency cycle.
|
||||||
;; pngload tests depend on opticl which depends on pngload.
|
;; pngload tests depend on opticl which depends on pngload.
|
||||||
'(#:tests? #f))
|
'(#:tests? #f))
|
||||||
(home-page "https://github.com/bufferswap/pngload")
|
(home-page "https://git.mfiano.net/mfiano/pngload.git")
|
||||||
(synopsis "PNG image decoder for Common Lisp")
|
(synopsis "PNG image decoder for Common Lisp")
|
||||||
(description
|
(description
|
||||||
"This is a Common Lisp library to load images in the PNG image format,
|
"This is a Common Lisp library to load images in the PNG image format,
|
||||||
both from files on disk, or streams in memory.")
|
both from files on disk, or streams in memory.")
|
||||||
(license license:expat)))
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public cl-pngload
|
(define-public cl-pngload
|
||||||
(sbcl-package->cl-source-package sbcl-pngload))
|
(sbcl-package->cl-source-package sbcl-pngload))
|
||||||
|
|
Reference in New Issue