GNU bug report logs - #73223
[PATCH 1/2] gnu: Add sbcl-print-licenses.

Previous Next

Package: guix-patches;

Reported by: Roman Scherer <roman <at> burningswell.com>

Date: Fri, 13 Sep 2024 10:03:02 UTC

Severity: normal

Tags: patch

Done: Guillaume Le Vaillant <glv <at> posteo.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 73223 in the body.
You can then email your comments to 73223 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to glv <at> posteo.net, cox.katherine.e+guix <at> gmail.com, me <at> bonfacemunyoki.com, sharlatanus <at> gmail.com, jgart <at> dismail.de, guix-patches <at> gnu.org:
bug#73223; Package guix-patches. (Fri, 13 Sep 2024 10:03:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Roman Scherer <roman <at> burningswell.com>:
New bug report received and forwarded. Copy sent to glv <at> posteo.net, cox.katherine.e+guix <at> gmail.com, me <at> bonfacemunyoki.com, sharlatanus <at> gmail.com, jgart <at> dismail.de, guix-patches <at> gnu.org. (Fri, 13 Sep 2024 10:03:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Roman Scherer <roman <at> burningswell.com>
To: guix-patches <at> gnu.org
Cc: Roman Scherer <roman <at> burningswell.com>
Subject: [PATCH 1/2] gnu: Add sbcl-print-licenses.
Date: Fri, 13 Sep 2024 12:02:22 +0200
* gnu/packages/lisp-xyz.scm (sbcl-print-licenses): New variable.

Change-Id: I62b6655a560e37218e2f056065cd4523b4c0916f
---
 gnu/packages/lisp-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index af48813a16..7b80d4df1e 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -23963,6 +23963,34 @@ (define-public ecl-ppath
 (define-public cl-ppath
   (sbcl-package->cl-source-package sbcl-ppath))
 
+(define-public sbcl-print-licenses
+  (let ((commit "3949663318fb736f4ee660e3aa810875187d531c")
+        (revision "0"))
+    (package
+      (name "sbcl-print-licenses")
+      (build-system asdf-build-system/sbcl)
+      (version (git-version "0.1.0" revision commit))
+      (home-page "https://github.com/vindarel/print-licenses/")
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url home-page)
+               (commit commit)))
+         (file-name (git-file-name "cl-print-licenses" version))
+         (sha256
+          (base32 "14i6r6mf16dlj1g4xk0alg2912y3wy0qbfpyvvgsgxkkar63cmi5"))))
+      (inputs (list sbcl-alexandria sbcl-iterate))
+      (synopsis "Print licenses used by a Common Lisp project")
+      (description "Print licenses used by a Common Lisp project and its dependencies.")
+      (license license:bsd-2))))
+
+(define-public ecl-print-licenses
+  (sbcl-package->ecl-package sbcl-print-licenses))
+
+(define-public cl-print-licenses
+  (sbcl-package->cl-source-package sbcl-print-licenses))
+
 (define-public sbcl-printv
   (let ((commit "e717a7fe076dae861a96117b2f9af29db8d2294d")
         (revision "2"))

base-commit: 37a0c526fbef884e38b2266098b8c528847d9ef0
-- 
2.46.0





Information forwarded to glv <at> posteo.net, cox.katherine.e+guix <at> gmail.com, me <at> bonfacemunyoki.com, sharlatanus <at> gmail.com, jgart <at> dismail.de, guix-patches <at> gnu.org:
bug#73223; Package guix-patches. (Fri, 13 Sep 2024 10:04:02 GMT) Full text and rfc822 format available.

Message #8 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Roman Scherer <roman <at> burningswell.com>
To: guix-patches <at> gnu.org
Cc: Roman Scherer <roman <at> burningswell.com>
Subject: [PATCH 2/2] gnu: Add sbcl-s-base64.
Date: Fri, 13 Sep 2024 12:02:47 +0200
* gnu/packages/lisp-xyz.scm (sbcl-s-base64): New variable.

Change-Id: I58e64470d98696ec722350465159a48581c2a1df
---
 gnu/packages/lisp-xyz.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 7b80d4df1e..b202f78b7d 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -25406,6 +25406,38 @@ (define-public cl-rutils
 (define-public ecl-rutils
   (sbcl-package->ecl-package sbcl-rutils))
 
+(define-public sbcl-s-base64
+  (let ((commit "ed473e220133ca0e8b5b96618ea2972dec9de6cd"))
+    (package
+      (name "sbcl-s-base64")
+      (version (git-version "0.1.0" "0" commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/svenvc/s-base64")
+               (commit commit)))
+         (file-name (git-file-name "cl-s-base64" version))
+         (sha256
+          (base32 "0zrr8zhnkdy97c5g54605nhjlf7fly79ylr1yf6wwyssia04cagg"))))
+      (build-system asdf-build-system/sbcl)
+      (home-page "https://github.com/svenvc/s-base64")
+      (synopsis
+       "Common Lisp package to encode and decode base64")
+      (description
+       "This package provides a Common Lisp implementation of Base64 encoding
+and decoding.  Base64 encoding is a technique to encode binary data in a
+portable, safe printable, 7-bit ASCII format.  The package is used as a
+building block in a number of other open source projects e.g. the KPAX web
+development framework.")
+      (license license:bsd-3))))
+
+(define-public cl-s-base64
+  (sbcl-package->cl-source-package sbcl-s-base64))
+
+(define-public ecl-s-base64
+  (sbcl-package->ecl-package sbcl-s-base64))
+
 (define-public sbcl-s-sysdeps
   ;; No release since 2013.
   (let ((commit "7f8de283b7fbd8b038fdf08493063a736db36ce7")
-- 
2.46.0





Reply sent to Guillaume Le Vaillant <glv <at> posteo.net>:
You have taken responsibility. (Sat, 14 Sep 2024 09:17:02 GMT) Full text and rfc822 format available.

Notification sent to Roman Scherer <roman <at> burningswell.com>:
bug acknowledged by developer. (Sat, 14 Sep 2024 09:17:02 GMT) Full text and rfc822 format available.

Message #13 received at 73223-done <at> debbugs.gnu.org (full text, mbox):

From: Guillaume Le Vaillant <glv <at> posteo.net>
To: Roman Scherer <roman <at> burningswell.com>
Cc: 73223-done <at> debbugs.gnu.org
Subject: Re: [bug#73223] [PATCH 1/2] gnu: Add sbcl-print-licenses.
Date: Sat, 14 Sep 2024 09:15:42 +0000
[Message part 1 (text/plain, inline)]
Patches applied as 6d9a82a6fb8675441d63ae23b715952df13a845f and
following with some minor fixes.
Thanks.
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 12 Oct 2024 11:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 253 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.