GNU bug report logs -
#62387
[PATCH 1/2] gnu: Add cl-lisp-pay.
Previous Next
Reported by: "jgart" <jgart <at> dismail.de>
Date: Wed, 22 Mar 2023 16:58: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 62387 in the body.
You can then email your comments to 62387 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#62387
; Package
guix-patches
.
(Wed, 22 Mar 2023 16:58:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
"jgart" <jgart <at> dismail.de>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Wed, 22 Mar 2023 16:58:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Information forwarded
to
guix-patches <at> gnu.org
:
bug#62387
; Package
guix-patches
.
(Wed, 22 Mar 2023 17:02:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 62387 <at> debbugs.gnu.org (full text, mbox):
* 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
Information forwarded
to
guix-patches <at> gnu.org
:
bug#62387
; Package
guix-patches
.
(Wed, 22 Mar 2023 17:02:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 62387 <at> debbugs.gnu.org (full text, mbox):
* 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
Reply sent
to
Guillaume Le Vaillant <glv <at> posteo.net>
:
You have taken responsibility.
(Mon, 27 Mar 2023 09:06:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
"jgart" <jgart <at> dismail.de>
:
bug acknowledged by developer.
(Mon, 27 Mar 2023 09:06:02 GMT)
Full text and
rfc822 format available.
Message #16 received at 62387-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
I modified cl-tls to use the same upstream repository as Quicklisp,
and pushed the patches as 18ec16560d6742d9827a0f692f2b858378005cc2 and
following.
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
.
(Mon, 24 Apr 2023 11:24:12 GMT)
Full text and
rfc822 format available.
This bug report was last modified 2 years and 20 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.