all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#73223] [PATCH 1/2] gnu: Add sbcl-print-licenses.
@ 2024-09-13 10:02 Roman Scherer
  2024-09-13 10:02 ` [bug#73223] [PATCH 2/2] gnu: Add sbcl-s-base64 Roman Scherer
  2024-09-14  9:15 ` bug#73223: [PATCH 1/2] gnu: Add sbcl-print-licenses Guillaume Le Vaillant
  0 siblings, 2 replies; 3+ messages in thread
From: Roman Scherer @ 2024-09-13 10:02 UTC (permalink / raw)
  To: 73223
  Cc: Roman Scherer, Guillaume Le Vaillant, Katherine Cox-Buday,
	Munyoki Kilyungi, Sharlatan Hellseher, jgart

* 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





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#73223] [PATCH 2/2] gnu: Add sbcl-s-base64.
  2024-09-13 10:02 [bug#73223] [PATCH 1/2] gnu: Add sbcl-print-licenses Roman Scherer
@ 2024-09-13 10:02 ` Roman Scherer
  2024-09-14  9:15 ` bug#73223: [PATCH 1/2] gnu: Add sbcl-print-licenses Guillaume Le Vaillant
  1 sibling, 0 replies; 3+ messages in thread
From: Roman Scherer @ 2024-09-13 10:02 UTC (permalink / raw)
  To: 73223
  Cc: Roman Scherer, Guillaume Le Vaillant, Katherine Cox-Buday,
	Munyoki Kilyungi, Sharlatan Hellseher, jgart

* 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





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#73223: [PATCH 1/2] gnu: Add sbcl-print-licenses.
  2024-09-13 10:02 [bug#73223] [PATCH 1/2] gnu: Add sbcl-print-licenses Roman Scherer
  2024-09-13 10:02 ` [bug#73223] [PATCH 2/2] gnu: Add sbcl-s-base64 Roman Scherer
@ 2024-09-14  9:15 ` Guillaume Le Vaillant
  1 sibling, 0 replies; 3+ messages in thread
From: Guillaume Le Vaillant @ 2024-09-14  9:15 UTC (permalink / raw)
  To: Roman Scherer; +Cc: 73223-done

[-- Attachment #1: Type: text/plain, Size: 105 bytes --]

Patches applied as 6d9a82a6fb8675441d63ae23b715952df13a845f and
following with some minor fixes.
Thanks.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-09-14  9:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-13 10:02 [bug#73223] [PATCH 1/2] gnu: Add sbcl-print-licenses Roman Scherer
2024-09-13 10:02 ` [bug#73223] [PATCH 2/2] gnu: Add sbcl-s-base64 Roman Scherer
2024-09-14  9:15 ` bug#73223: [PATCH 1/2] gnu: Add sbcl-print-licenses Guillaume Le Vaillant

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.