GNU bug report logs -
#55327
[PATCH] gnu: Add sbcl-zip.
Previous Next
Reported by: Adam Kandur <kefironpremise <at> gmail.com>
Date: Sun, 8 May 2022 22:12:02 UTC
Severity: normal
Tags: patch
Done: Guillaume Le Vaillant <glv <at> posteo.net>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#55327: [PATCH] gnu: Add sbcl-zip.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 55327 <at> debbugs.gnu.org.
--
55327: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=55327
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
[Message part 3 (text/plain, inline)]
Patch pushed as 9f9c2f200b6bb25486f6739dba08a818740e6a80 with some
simplifications (new style for inputs) and fixes (license field, wrong
variable name in definitions of cl-zip and ecl-zip).
Thanks.
[signature.asc (application/pgp-signature, inline)]
[Message part 5 (message/rfc822, inline)]
* gnu/packages/lisp-xyz.scm (sbcl-zip): New variable.
---
gnu/packages/lisp-xyz.scm | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 4e8e0a4bfc..0f6042c467 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -910,6 +910,43 @@ (define-public ecl-zpb-ttf
(define-public cl-zpb-ttf
(sbcl-package->cl-source-package sbcl-zpb-ttf))
+(define-public sbcl-zip
+ ;; named branch is outdated
+ (let ((commit "688b1545dd7a4fe355556768bb03f8bd9b847a87")
+ (revision "1"))
+ (package
+ (name "sbcl-zip")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/bluelisp/zip")
+ (commit commit)))
+ (sha256
+ (base32
+ "0s08a6fq182fzsbfyvihqbdllq6gxcwkvphxnrd9wwz65dhg5y66"))
+ (file-name (git-file-name name version))))
+ (build-system asdf-build-system/sbcl)
+ (inputs
+ `(("sbcl-salza2" ,sbcl-salza2)
+ ("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)
+ ("sbcl-babel" ,sbcl-babel)
+ ("sbcl-cl-fad" ,sbcl-cl-fad)))
+ (arguments
+ ;; TODO: Tests fail because they require quicklisp to run.
+ `(#:tests? #f))
+ (synopsis "zip library written in Common Lisp")
+ (description "Library for .zip-file reading and writing, written in Common Lisp.")
+ (home-page "https://zip.common-lisp.dev")
+ (license license:expat))))
+
+(define-public ecl-zip
+ (sbcl-package->ecl-package sbcl-zpb-ttf))
+
+(define-public cl-zip
+ (sbcl-package->cl-source-package sbcl-zpb-ttf))
+
(define-public sbcl-cl-vectors
(package
(name "sbcl-cl-vectors")
--
2.36.0
This bug report was last modified 3 years and 74 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.