* [bug#62387] [PATCH 1/2] gnu: Add cl-lisp-pay.
@ 2023-03-22 16:57 jgart via Guix-patches via
2023-03-22 17:00 ` [bug#62387] [PATCH 1/2] gnu: Add cl-tls jgart via Guix-patches via
2023-03-27 9:03 ` bug#62387: [PATCH 1/2] " Guillaume Le Vaillant
0 siblings, 2 replies; 4+ messages in thread
From: jgart via Guix-patches via @ 2023-03-22 16:57 UTC (permalink / raw)
To: 62387
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#62387] [PATCH 1/2] gnu: Add cl-tls.
2023-03-22 16:57 [bug#62387] [PATCH 1/2] gnu: Add cl-lisp-pay jgart via Guix-patches via
@ 2023-03-22 17:00 ` jgart via Guix-patches via
2023-03-22 17:00 ` [bug#62387] [PATCH 2/2] gnu: Add cl-lisp-pay jgart via Guix-patches via
2023-03-27 9:03 ` bug#62387: [PATCH 1/2] " Guillaume Le Vaillant
1 sibling, 1 reply; 4+ messages in thread
From: jgart via Guix-patches via @ 2023-03-22 17:00 UTC (permalink / raw)
To: 62387; +Cc: jgart
* gnu/packages/lisp-xyz.scm (cl-tls, ecl-cl-tls, sbcl-cl-tls): New variables.
---
gnu/packages/lisp-xyz.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 20ea82cd6f..a6c9bcdfed 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -5739,6 +5739,40 @@ (define-public cl-chipz
(define-public ecl-chipz
(sbcl-package->ecl-package sbcl-chipz))
+(define-public sbcl-cl-tls
+ (let ((commit "2ab4fc3ae7e79e451126a9bb6bc38ca2cd2cb4ba")
+ (revision "0"))
+ (package
+ (name "sbcl-cl-tls")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/K1D77A/cl-tls")
+ (commit commit)))
+ (file-name (git-file-name "cl-tls" version))
+ (sha256
+ (base32 "1j6gwv21ibkk6xd1xxm54wgwp09dzqg60b8z72hivpnq8gwm0ba7"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs
+ (list sbcl-alexandria
+ sbcl-ironclad
+ sbcl-babel
+ sbcl-cl-base64
+ sbcl-fast-io))
+ (home-page "https://github.com/K1D77A/cl-tls")
+ (synopsis "Implementation of Transport Layer Security Protocols")
+ (description "This package provides prototype Common Lisp
+implementation of TLS, RFC5246, ASN.1, x{501,509}, and PKCS{1,3,5,8}.")
+ (license license:bsd-3))))
+
+(define-public cl-tls
+ (sbcl-package->cl-source-package sbcl-cl-tls))
+
+(define-public ecl-cl-tls
+ (sbcl-package->ecl-package sbcl-cl-tls))
+
(define-public sbcl-dns-client
(let ((commit "9f252e9c2bb61c57a6cd367e21ad366b0d3e87e0")
(revision "0"))
--
2.39.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#62387] [PATCH 2/2] gnu: Add cl-lisp-pay.
2023-03-22 17:00 ` [bug#62387] [PATCH 1/2] gnu: Add cl-tls jgart via Guix-patches via
@ 2023-03-22 17:00 ` jgart via Guix-patches via
0 siblings, 0 replies; 4+ messages in thread
From: jgart via Guix-patches via @ 2023-03-22 17:00 UTC (permalink / raw)
To: 62387; +Cc: jgart
* gnu/packages/lisp-xyz.scm (cl-lisp-pay, ecl-lisp-pay, sbcl-lisp-pay):
New variables.
---
gnu/packages/lisp-xyz.scm | 43 +++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index a6c9bcdfed..4bca9e323b 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -5808,6 +5808,49 @@ (define-public ecl-dns-client
(define-public cl-dns-client
(sbcl-package->cl-source-package sbcl-dns-client))
+(define-public sbcl-lisp-pay
+ (let ((commit "c4de776f0a284709931ff3674160ced3b41bd000")
+ (revision "0"))
+ (package
+ (name "sbcl-lisp-pay")
+ (version (git-version "0.0.5" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/K1D77A/lisp-pay")
+ (commit commit)))
+ (file-name (git-file-name "lisp-pay" version))
+ (sha256
+ (base32 "09r6qy4fipriqa0d6g9qm6dq992lr58vh24g5j0adm19i5fnjavh"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs
+ (list sbcl-cl-str
+ sbcl-ironclad
+ sbcl-babel
+ sbcl-alexandria
+ sbcl-jonathan
+ sbcl-dexador
+ sbcl-lack
+ sbcl-ningle
+ sbcl-cl-base64
+ sbcl-cl-tls
+ sbcl-hunchentoot
+ sbcl-closer-mop
+ sbcl-hu.dwim.defclass-star
+ sbcl-shasht))
+ (home-page "https://github.com/K1D77A/lisp-pay/")
+ (synopsis "Wrappers over multiple Payment Processor APIs")
+ (description "This library provides payment API wrappers over
+BTCPay, Paypal, and Stripe.")
+ (license license:expat))))
+
+(define-public cl-lisp-pay
+ (sbcl-package->cl-source-package sbcl-lisp-pay))
+
+(define-public ecl-lisp-pay
+ (sbcl-package->ecl-package sbcl-lisp-pay))
+
(define-public sbcl-drakma
(package
(name "sbcl-drakma")
--
2.39.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#62387: [PATCH 1/2] gnu: Add cl-lisp-pay.
2023-03-22 16:57 [bug#62387] [PATCH 1/2] gnu: Add cl-lisp-pay jgart via Guix-patches via
2023-03-22 17:00 ` [bug#62387] [PATCH 1/2] gnu: Add cl-tls jgart via Guix-patches via
@ 2023-03-27 9:03 ` Guillaume Le Vaillant
1 sibling, 0 replies; 4+ messages in thread
From: Guillaume Le Vaillant @ 2023-03-27 9:03 UTC (permalink / raw)
To: jgart; +Cc: 62387-done
[-- Attachment #1: Type: text/plain, Size: 158 bytes --]
I modified cl-tls to use the same upstream repository as Quicklisp,
and pushed the patches as 18ec16560d6742d9827a0f692f2b858378005cc2 and
following.
Thanks.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-03-27 9:06 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-22 16:57 [bug#62387] [PATCH 1/2] gnu: Add cl-lisp-pay jgart via Guix-patches via
2023-03-22 17:00 ` [bug#62387] [PATCH 1/2] gnu: Add cl-tls jgart via Guix-patches via
2023-03-22 17:00 ` [bug#62387] [PATCH 2/2] gnu: Add cl-lisp-pay jgart via Guix-patches via
2023-03-27 9:03 ` bug#62387: [PATCH 1/2] " 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).