* [bug#46582] [PATCH] gnu: pngload: Update to 2.0.0-2.91f1d70
@ 2021-02-17 0:57 Sharlatan Hellseher
2021-02-17 9:21 ` bug#46582: " Guillaume Le Vaillant
0 siblings, 1 reply; 2+ messages in thread
From: Sharlatan Hellseher @ 2021-02-17 0:57 UTC (permalink / raw)
To: 46582
[-- Attachment #1: Type: text/plain, Size: 356 bytes --]
--
… наш разум - превосходная объяснительная машина которая способна
найти смысл почти в чем угодно, истолковать любой феномен, но
совершенно не в состоянии принять мысль о непредсказуемости.
[-- Attachment #2: 0001-gnu-pngload-Update-to-2.0.0-2.91f1d70.patch --]
[-- Type: text/x-patch, Size: 3484 bytes --]
From b4ad8a3f4be3022fd305996f26342ed5ac8ffa15 Mon Sep 17 00:00:00 2001
From: Sharlatan Hellseher <sharlatanus@gmail.com>
Date: Wed, 17 Feb 2021 00:52:29 +0000
Subject: [PATCH] gnu: pngload: Update to 2.0.0-2.91f1d70
* gnu/packages/lisp-xyz.scm (sbcl-pngload):
[uri] repository migrated to M. Fiano's private git
https://git.mfiano.net/mfiano/pngload.git,
https://github.com/bufferswap/pngload does not exist any longer.
It still has circular dependencies for test on `opticl`
---
gnu/packages/lisp-xyz.scm | 64 ++++++++++++++++++++-------------------
1 file changed, 33 insertions(+), 31 deletions(-)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 390db119a5..32da261374 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -11531,38 +11531,40 @@ files.")
(sbcl-package->ecl-package sbcl-zpb-exif))
(define-public sbcl-pngload
- (package
- (name "sbcl-pngload")
- (version "2.0.0")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/bufferswap/pngload")
- (commit version)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "1ix8dd0fxlf8xm0bszh1s7sx83hn0vqq8b8c9gkrd5m310w8mpvh"))))
- (build-system asdf-build-system/sbcl)
- (inputs
- `(("3bz" ,sbcl-3bz)
- ("alexandria" ,sbcl-alexandria)
- ("cffi" ,sbcl-cffi)
- ("mmap" ,sbcl-mmap)
- ("parse-float" ,sbcl-parse-float)
- ("static-vectors" ,sbcl-static-vectors)
- ("swap-bytes" ,sbcl-swap-bytes)
- ("zpb-exif" ,sbcl-zpb-exif)))
- (arguments
- ;; Test suite disabled because of a dependency cycle.
- ;; pngload tests depend on opticl which depends on pngload.
- '(#:tests? #f))
- (home-page "https://github.com/bufferswap/pngload")
- (synopsis "PNG image decoder for Common Lisp")
- (description
- "This is a Common Lisp library to load images in the PNG image format,
+ (let ((commit "91f1d703c65bb6a94d6fee06ddbbbbbc5778b71f")
+ (revision "2"))
+ (package
+ (name "sbcl-pngload")
+ (version (git-version "2.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.mfiano.net/mfiano/pngload.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0s94fdbrbqj12qvgyn2g4lfwvz7qhhzbclrpz5ni7adwxgrmvxl1"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs
+ `(("3bz" ,sbcl-3bz)
+ ("alexandria" ,sbcl-alexandria)
+ ("cffi" ,sbcl-cffi)
+ ("mmap" ,sbcl-mmap)
+ ("parse-float" ,sbcl-parse-float)
+ ("static-vectors" ,sbcl-static-vectors)
+ ("swap-bytes" ,sbcl-swap-bytes)
+ ("zpb-exif" ,sbcl-zpb-exif)))
+ (arguments
+ ;; Test suite disabled because of a dependency cycle.
+ ;; pngload tests depend on opticl which depends on pngload.
+ '(#:tests? #f))
+ (home-page "https://git.mfiano.net/mfiano/pngload.git")
+ (synopsis "PNG image decoder for Common Lisp")
+ (description
+ "This is a Common Lisp library to load images in the PNG image format,
both from files on disk, or streams in memory.")
- (license license:expat)))
+ (license license:expat))))
(define-public cl-pngload
(sbcl-package->cl-source-package sbcl-pngload))
--
2.30.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#46582: [PATCH] gnu: pngload: Update to 2.0.0-2.91f1d70
2021-02-17 0:57 [bug#46582] [PATCH] gnu: pngload: Update to 2.0.0-2.91f1d70 Sharlatan Hellseher
@ 2021-02-17 9:21 ` Guillaume Le Vaillant
0 siblings, 0 replies; 2+ messages in thread
From: Guillaume Le Vaillant @ 2021-02-17 9:21 UTC (permalink / raw)
To: Sharlatan Hellseher; +Cc: 46582-done
[-- Attachment #1: Type: text/plain, Size: 66 bytes --]
Patch pushed as 6591e184f0dc7a5159247c9deb12b976f6a8208b.
Thanks.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-02-17 9:23 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-17 0:57 [bug#46582] [PATCH] gnu: pngload: Update to 2.0.0-2.91f1d70 Sharlatan Hellseher
2021-02-17 9:21 ` bug#46582: " Guillaume Le Vaillant
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).