emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#58635: closed ([PATCH] gnu: Add cl-trivial-sockets.)


From: GNU bug Tracking System
Subject: bug#58635: closed ([PATCH] gnu: Add cl-trivial-sockets.)
Date: Thu, 20 Oct 2022 08:12:02 +0000

Your message dated Thu, 20 Oct 2022 08:08:15 +0000
with message-id <87bkq6ud7h.fsf@kitej>
and subject line Re: [bug#58635] [PATCH] gnu: Add cl-trivial-sockets.
has caused the debbugs.gnu.org bug report #58635,
regarding [PATCH] gnu: Add cl-trivial-sockets.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
58635: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=58635
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add cl-trivial-sockets. Date: Wed, 19 Oct 2022 16:44:04 +0200
---
 gnu/packages/lisp-xyz.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index f23b4a70bb..50f2f91a77 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -4057,6 +4057,37 @@ (define-public cl-usocket
 (define-public ecl-usocket
   (sbcl-package->ecl-package sbcl-usocket))

+(define-public sbcl-trivial-sockets
+  (package
+    (name "sbcl-trivial-sockets")
+    (version "0.4")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/usocket/trivial-sockets.git";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name "cl-usocket" version))
+       (sha256
+        (base32
+         "0xj9x5z3psxqap9c29qz1xswx5fiqxyzd35kmbw2g6z08cgb7nd0"))))
+    (build-system asdf-build-system/sbcl)
+    (arguments
+     `(#:tests? #f
+       #:asd-systems '("trivial-sockets")))
+    (home-page "https://github.com/usocket/trivial-sockets";)
+    (synopsis "Simple socket library for Common Lisp")
+    (description
+     "This library is a portable socket interface that allows CL programs to
+open connected (client) stream sockets to network service.")
+    (license license:x11)))
+
+(define-public cl-trivial-sockets
+  (sbcl-package->cl-source-package sbcl-trivial-sockets))
+
+(define-public ecl-trivial-sockets
+  (sbcl-package->ecl-package sbcl-trivial-sockets))
+
 (define-public sbcl-s-xml
   (package
     (name "sbcl-s-xml")
--
2.34.0



--- End Message ---
--- Begin Message --- Subject: Re: [bug#58635] [PATCH] gnu: Add cl-trivial-sockets. Date: Thu, 20 Oct 2022 08:08:15 +0000
Patch pushed as 4716cea6256523a8ecf90a426d675bfb7620f3e4 with a few
modifications. I didn't add the ecl-* variant because according to
"trivial-sockets.asd" the support for ECL is not implemented.

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]