* [bug#73198] [PATCH 0/3] Update cl-lack and cl-clack
@ 2024-09-12 14:02 Konrad Hinsen
2024-09-12 14:05 ` [bug#73198] [PATCH 1/3] gnu: Add cl-anypool Konrad Hinsen
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Konrad Hinsen @ 2024-09-12 14:02 UTC (permalink / raw)
To: 73198
The upcoming series of three patches updates cl-lack and cl-clack,
two tightly coupled packages, to the latest versions. In preparation
for this, the first patch adds cl-anypool, a new dependency of
cl-lack.
Konrad Hinsen (3):
gnu: Add cl-anypool
gnu: Update cl-lack to 0.3.0.
gnu: Update cl-clack to 2.1.0.
gnu/local.mk | 1 +
gnu/packages/lisp-xyz.scm | 107 ++++++++++----
gnu/packages/patches/lack.patch | 243 ++++++++++++++++++++++++++++++++
3 files changed, 327 insertions(+), 24 deletions(-)
create mode 100644 gnu/packages/patches/lack.patch
base-commit: fdac906f7c575e9dad91fb247dfe242a6e5883a7
--
2.45.2
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#73198] [PATCH 1/3] gnu: Add cl-anypool
2024-09-12 14:02 [bug#73198] [PATCH 0/3] Update cl-lack and cl-clack Konrad Hinsen
@ 2024-09-12 14:05 ` Konrad Hinsen
2024-09-12 14:06 ` [bug#73198] [PATCH 2/3] gnu: Update cl-lack to 0.3.0 Konrad Hinsen
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Konrad Hinsen @ 2024-09-12 14:05 UTC (permalink / raw)
To: 73198
* gnu/packages/lisp-xyz.scm (sbcl-anypool cl-anypool ecl-anypool): New variables.
Change-Id: Ia9cf43dc6f7a529e1a3df96360d06ddc6357a480
---
gnu/packages/lisp-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 2bd7d18202..fcc2e2ad63 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -1163,6 +1163,42 @@ (define-public sbcl-antik
(define-public cl-antik
(sbcl-package->cl-source-package sbcl-antik))
+(define-public sbcl-anypool
+ (let ((commit "5389ec945882e87f2fc1d3e852c91aaf176556e5")
+ (revision "1"))
+ (package
+ (name "sbcl-anypool")
+ (version (git-version "0.1.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/fukamachi/anypool")
+ (commit commit)))
+ (file-name (git-file-name "anypool" version))
+ (sha256
+ (base32 "1ffssc5fzh7gj0z94xxfb3mk5cwja65lrhxyfgib15a6yxqf1kk1"))))
+ (build-system asdf-build-system/sbcl)
+ (native-inputs
+ (list sbcl-rove))
+ (inputs
+ (list sbcl-bordeaux-threads
+ sbcl-cl-speedy-queue))
+ (arguments
+ '(#:asd-systems '("anypool"
+ "anypool/middleware")))
+ (home-page "https://github.com/fukamachi/anypool")
+ (synopsis "General-purpose connection pooling library")
+ (description
+ "General-purpose connection pooling library for Common Lisp")
+ (license license:bsd-2))))
+
+(define-public cl-anypool
+ (sbcl-package->cl-source-package sbcl-anypool))
+
+(define-public ecl-anypool
+ (sbcl-package->ecl-package sbcl-anypool))
+
(define-public sbcl-april
(let ((commit "bdd74f168ec82f28fe4ab692f2c0af39441a5701")
(revision "3"))
--
2.45.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#73198] [PATCH 2/3] gnu: Update cl-lack to 0.3.0.
2024-09-12 14:02 [bug#73198] [PATCH 0/3] Update cl-lack and cl-clack Konrad Hinsen
2024-09-12 14:05 ` [bug#73198] [PATCH 1/3] gnu: Add cl-anypool Konrad Hinsen
@ 2024-09-12 14:06 ` Konrad Hinsen
2024-09-12 14:06 ` [bug#73198] [PATCH 3/3] gnu: Update cl-clack to 2.1.0 Konrad Hinsen
2024-09-13 9:44 ` bug#73198: [PATCH 0/3] Update cl-lack and cl-clack Guillaume Le Vaillant
3 siblings, 0 replies; 5+ messages in thread
From: Konrad Hinsen @ 2024-09-12 14:06 UTC (permalink / raw)
To: 73198
* gnu/packages/lisp-xyz.scm (sbcl-lack cl-lack ecl-lack): Update to 0.3.0.
* gnu/packages/patches/lack.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
Change-Id: I4285cf208b76d6f461735fff04293833ef163e08
---
gnu/local.mk | 1 +
gnu/packages/lisp-xyz.scm | 50 +++++--
gnu/packages/patches/lack.patch | 243 ++++++++++++++++++++++++++++++++
3 files changed, 280 insertions(+), 14 deletions(-)
create mode 100644 gnu/packages/patches/lack.patch
diff --git a/gnu/local.mk b/gnu/local.mk
index ed630041ff..580b42333a 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1588,6 +1588,7 @@ dist_patch_DATA = \
%D%/packages/patches/json-c-0.12-CVE-2020-12762.patch \
%D%/packages/patches/julia-SOURCE_DATE_EPOCH-mtime.patch \
%D%/packages/patches/julia-Use-MPFR-4.2.patch \
+ %D%/packages/patches/lack.patch \
%D%/packages/patches/libcall-ui-make-it-installable.patch \
%D%/packages/patches/libcamera-ipa_manager-disable-signature-verification.patch \
%D%/packages/patches/libcss-check-format.patch \
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index fcc2e2ad63..d026d04485 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -18514,11 +18514,11 @@ (define-public cl-kons-9
;; (sbcl-package->ecl-package sbcl-kons-9))
(define-public sbcl-lack
- (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
+ (let ((commit "35d3a8e03cab9204eec88c7dfe4d5366fc2ea922")
(revision "1"))
(package
(name "sbcl-lack")
- (version (git-version "0.1.0" revision commit))
+ (version (git-version "0.3.0" revision commit))
(source
(origin
(method git-fetch)
@@ -18527,28 +18527,50 @@ (define-public sbcl-lack
(commit commit)))
(file-name (git-file-name "lack" version))
(sha256
- (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
+ (base32 "1yrhhzn8ywdjxwpaxzlnsm2lslhy45r89brn8gh5n08mdyjlp4l2"))
+ (patches (search-patches "lack.patch"))))
(build-system asdf-build-system/sbcl)
(native-inputs
- (list sbcl-prove))
+ (list sbcl-prove
+ sbcl-cl-cookie
+ sbcl-dexador
+ sbcl-hunchentoot))
(inputs
- `(("circular-streams" ,sbcl-circular-streams)
- ("http-body" ,sbcl-http-body)
- ("ironclad" ,sbcl-ironclad)
- ("local-time" ,sbcl-local-time)
- ("quri" ,sbcl-quri)
- ("trivial-mimes" ,sbcl-trivial-mimes)))
+ (list sbcl-alexandria
+ sbcl-anypool
+ sbcl-bordeaux-threads
+ sbcl-circular-streams
+ sbcl-cl-base64
+ sbcl-cl-isaac
+ sbcl-cl-redis
+ sbcl-dbi
+ sbcl-http-body
+ sbcl-ironclad
+ sbcl-local-time
+ sbcl-quri
+ sbcl-trivial-mimes
+ sbcl-trivial-rfc-1123))
(arguments
'(#:asd-systems '("lack"
+ "lack-app-directory"
+ "lack-app-file"
+ "lack-component"
+ "lack-middleware-accesslog"
+ "lack-middleware-auth-basic"
+ "lack-middleware-backtrace"
+ "lack-middleware-csrf"
+ "lack-middleware-dbpool"
+ "lack-middleware-mount"
+ "lack-middleware-session"
+ "lack-middleware-static"
"lack-request"
"lack-response"
- "lack-component"
+ "lack-session-store-dbi"
+ "lack-session-store-redis"
"lack-util"
"lack-util-writer-stream"
"lack-middleware-backtrace"
- "lack-middleware-static")
- ;; XXX: Component :CLACK not found
- #:tests? #f))
+ "lack-middleware-static")))
(home-page "https://github.com/fukamachi/lack")
(synopsis "Lack, the core of Clack")
(description
diff --git a/gnu/packages/patches/lack.patch b/gnu/packages/patches/lack.patch
new file mode 100644
index 0000000000..c9abfb3d6f
--- /dev/null
+++ b/gnu/packages/patches/lack.patch
@@ -0,0 +1,243 @@
+Remove tests that cannot be run. Some depend on clack, which in turn
+depends on lack. Others refer to systems that don't exist
+(names starting with "t-").
+
+--- a/lack-component.asd
++++ b/lack-component.asd
+@@ -2,7 +2,6 @@
+ :version "0.2.0"
+ :author "Eitaro Fukamachi"
+ :license "MIT"
+- :components ((:file "src/component"))
+- :in-order-to ((test-op (test-op "t-lack-component"))))
++ :components ((:file "src/component")))
+
+ (register-system-packages "lack-component" '(:lack.component))
+diff --git a/lack-middleware-accesslog.asd b/lack-middleware-accesslog.asd
+index c593988..21a4e70 100644
+--- a/lack-middleware-accesslog.asd
++++ b/lack-middleware-accesslog.asd
+@@ -6,7 +6,6 @@
+ "local-time")
+ :components ((:module "src"
+ :components
+- ((:file "middleware/accesslog"))))
+- :in-order-to ((test-op (test-op "t-lack-middleware-accesslog"))))
++ ((:file "middleware/accesslog")))))
+
+ (register-system-packages "lack-middleware-accesslog" '(:lack.middleware.accesslog))
+diff --git a/lack-middleware-auth-basic.asd b/lack-middleware-auth-basic.asd
+index 9206d22..6862f33 100644
+--- a/lack-middleware-auth-basic.asd
++++ b/lack-middleware-auth-basic.asd
+@@ -6,7 +6,6 @@
+ "split-sequence")
+ :components ((:module "src"
+ :components
+- ((:file "middleware/auth/basic"))))
+- :in-order-to ((test-op (test-op "t-lack-middleware-auth-basic"))))
++ ((:file "middleware/auth/basic")))))
+
+ (register-system-packages "lack-middleware-auth-basic" '(:lack.middleware.auth.basic))
+diff --git a/lack-middleware-backtrace.asd b/lack-middleware-backtrace.asd
+index 8df7f9f..cf73f81 100644
+--- a/lack-middleware-backtrace.asd
++++ b/lack-middleware-backtrace.asd
+@@ -3,7 +3,6 @@
+ :author "Eitaro Fukamachi"
+ :license "MIT"
+ :depends-on ("uiop")
+- :components ((:file "src/middleware/backtrace"))
+- :in-order-to ((test-op (test-op "t-lack-middleware-backtrace"))))
++ :components ((:file "src/middleware/backtrace")))
+
+ (register-system-packages "lack-middleware-backtrace" '(:lack.middleware.backtrace))
+diff --git a/lack-middleware-csrf.asd b/lack-middleware-csrf.asd
+index 105d3bb..fcf46f7 100644
+--- a/lack-middleware-csrf.asd
++++ b/lack-middleware-csrf.asd
+@@ -6,7 +6,6 @@
+ "lack-util")
+ :components ((:module "src"
+ :components
+- ((:file "middleware/csrf"))))
+- :in-order-to ((test-op (test-op "t-lack-middleware-csrf"))))
++ ((:file "middleware/csrf")))))
+
+ (register-system-packages "lack-middleware-csrf" '(:lack.middleware.csrf))
+diff --git a/lack-middleware-session.asd b/lack-middleware-session.asd
+index 92b1568..bed4c89 100644
+--- a/lack-middleware-session.asd
++++ b/lack-middleware-session.asd
+@@ -19,7 +19,6 @@
+ :pathname "session"
+ :components
+ ((:file "state")
+- (:file "state/cookie"))))))
+- :in-order-to ((test-op (test-op "t-lack-middleware-session"))))
++ (:file "state/cookie")))))))
+
+ (register-system-packages "lack-middleware-session" '(:lack.middleware.session))
+diff --git a/lack-middleware-static.asd b/lack-middleware-static.asd
+index a0ce627..107a386 100644
+--- a/lack-middleware-static.asd
++++ b/lack-middleware-static.asd
+@@ -7,7 +7,6 @@
+ "alexandria")
+ :components ((:module "src"
+ :components
+- ((:file "middleware/static"))))
+- :in-order-to ((test-op (test-op "t-lack-middleware-static"))))
++ ((:file "middleware/static")))))
+
+ (register-system-packages "lack-middleware-static" '(:lack.middleware.static))
+diff --git a/lack-request.asd b/lack-request.asd
+index 5efa05c..240b421 100644
+--- a/lack-request.asd
++++ b/lack-request.asd
+@@ -9,7 +9,6 @@
+ :components ((:module "src"
+ :components
+ ((:file "request" :depends-on ("media-type"))
+- (:file "media-type"))))
+- :in-order-to ((test-op (test-op "t-lack-request"))))
++ (:file "media-type")))))
+
+ (register-system-packages "lack-request" '(:lack.request))
+diff --git a/lack-session-store-dbi.asd b/lack-session-store-dbi.asd
+index 00e7d1e..825a96c 100644
+--- a/lack-session-store-dbi.asd
++++ b/lack-session-store-dbi.asd
+@@ -7,7 +7,6 @@
+ "marshal"
+ "trivial-utf-8"
+ "cl-base64")
+- :components ((:file "src/middleware/session/store/dbi"))
+- :in-order-to ((test-op (test-op "t-lack-session-store-dbi"))))
++ :components ((:file "src/middleware/session/store/dbi")))
+
+ (register-system-packages "lack-session-store-dbi" '(:lack.session.store.dbi))
+diff --git a/lack-session-store-redis.asd b/lack-session-store-redis.asd
+index 96b0504..57e4046 100644
+--- a/lack-session-store-redis.asd
++++ b/lack-session-store-redis.asd
+@@ -7,7 +7,6 @@
+ "marshal"
+ "cl-base64"
+ "trivial-utf-8")
+- :components ((:file "src/middleware/session/store/redis"))
+- :in-order-to ((test-op (test-op "t-lack-session-store-redis"))))
++ :components ((:file "src/middleware/session/store/redis")))
+
+ (register-system-packages "lack-session-store-redis" '(:lack.session.store.redis))
+diff --git a/lack-util.asd b/lack-util.asd
+index 0391a1b..1318c04 100644
+--- a/lack-util.asd
++++ b/lack-util.asd
+@@ -5,7 +5,6 @@
+ :depends-on ((:feature (:or :windows :mswindows :win32 :cormanlisp) "ironclad")
+ (:feature (:not (:or :windows :mswindows :win32 :cormanlisp)) "cl-isaac")
+ "bordeaux-threads")
+- :components ((:file "src/util"))
+- :in-order-to ((test-op (test-op "t-lack-util"))))
++ :components ((:file "src/util")))
+
+ (register-system-packages "lack-util" '(:lack.util))
+diff --git a/lack.asd b/lack.asd
+index e213c10..dde71cf 100644
+--- a/lack.asd
++++ b/lack.asd
+@@ -43,8 +43,6 @@
+ "lack/middleware/auth/basic"
+ "lack/session/store/redis"
+ "lack/session/store/dbi"
+- "clack"
+- "clack-test"
+ "hunchentoot"
+ "dexador"
+ "cl-cookie"
+@@ -60,7 +58,6 @@
+ :serial t
+ :components ((:file "builder")
+ (:file "util")
+- (:file "request")
+ (:file "component")
+ (:file "media-type")
+ (:module "middleware"
+diff --git a/tests/request.lisp b/tests/request.lisp
+deleted file mode 100644
+index 3fd26e0..0000000
+--- a/tests/request.lisp
++++ /dev/null
+@@ -1,71 +0,0 @@
+-(defpackage #:lack/tests/request
+- (:use #:cl
+- #:rove
+- #:lack/request
+- #:clack.test
+- #:flexi-streams)
+- (:import-from #:dexador)
+- (:import-from #:alexandria
+- #:alist-hash-table))
+-(in-package #:lack/tests/request)
+-
+-(defparameter *request*
+- (make-request `(:content-type "application/x-www-form-urlencoded; charset=utf-8"
+- :content-length 20
+- :uri-scheme :http
+- :query-string "ediweitz=weitzedi&name=eitaro&q=C%2B%2B"
+- :raw-body
+- ,(flex:make-flexi-stream
+- (flex:make-in-memory-input-stream
+- #(110 97 109 101 61 230 183 177 231 148 186 232 139 177 229 164 170 233 131 142))
+- :external-format :utf-8)
+- :headers ,(alexandria:alist-hash-table
+- '(("referer" . "http://github.com/fukamachi/clack")
+- ("user-agent" . "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_6; en-US)")
+- ("accept" . "text/html")
+- ("cookie" . "hoge=1;fuga=semi;colon"))
+- :test 'equal))))
+-
+-(deftest lack-request
+- (ok (typep *request* 'request))
+-
+- (ok (request-env *request*) "request-env")
+-
+- (ok (equal (request-content-type *request*) "application/x-www-form-urlencoded; charset=utf-8")
+- "request-content-type")
+-
+- (ok (equalp (request-query-parameters *request*)
+- '(("ediweitz" . "weitzedi") ("name" . "eitaro") ("q" . "C++")))
+- "request-query-parameters")
+-
+- (ok (equalp (request-body-parameters *request*)
+- `(("name" . ,(flex:octets-to-string
+- #(230 183 177 231 148 186 232 139 177 229 164 170 233 131 142)
+- :external-format :utf-8))))
+- "request-body-parameters")
+-
+- (ok (equalp (request-cookies *request*)
+- '(("hoge" . "1") ("fuga" . "semi") ("colon")))
+- "request-cookies")
+-
+- (ok (request-accepts-p *request* "text/html"))
+-
+- (ng (request-accepts-p *request* "application/json"))
+-
+- (testing-app "make-request"
+- (lambda (env)
+- (make-request env)
+- `(200 nil (,(third (assoc "file" (request-body-parameters (make-request env)) :test #'string=)))))
+- (multiple-value-bind (body status)
+- (dex:post (localhost)
+- :content
+- `(("file" . ,(asdf:system-relative-pathname :lack #P"data/jellyfish.jpg"))))
+- (ok (eql status 200))
+- (ok (equal body "jellyfish.jpg")))
+-
+- (multiple-value-bind (body status)
+- (dex:post (localhost)
+- :content
+- `(("file" . ,(asdf:system-relative-pathname :lack #P"data/jellyfish.jpg"))))
+- (ok (eql status 200))
+- (ok (equal body "jellyfish.jpg")))))
--
2.45.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#73198] [PATCH 3/3] gnu: Update cl-clack to 2.1.0.
2024-09-12 14:02 [bug#73198] [PATCH 0/3] Update cl-lack and cl-clack Konrad Hinsen
2024-09-12 14:05 ` [bug#73198] [PATCH 1/3] gnu: Add cl-anypool Konrad Hinsen
2024-09-12 14:06 ` [bug#73198] [PATCH 2/3] gnu: Update cl-lack to 0.3.0 Konrad Hinsen
@ 2024-09-12 14:06 ` Konrad Hinsen
2024-09-13 9:44 ` bug#73198: [PATCH 0/3] Update cl-lack and cl-clack Guillaume Le Vaillant
3 siblings, 0 replies; 5+ messages in thread
From: Konrad Hinsen @ 2024-09-12 14:06 UTC (permalink / raw)
To: 73198
* gnu/packages/lisp-xyz.scm (sbcl-clack cl-clack ecl-clack): Update tp 2.1.0.
Change-Id: I460a621af2a50ffb6e268180873bd7570e900824
---
gnu/packages/lisp-xyz.scm | 21 +++++++++++----------
1 file changed, 11 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index d026d04485..9f1b0873cd 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -10375,11 +10375,11 @@ (define-public ecl-clache
(sbcl-package->ecl-package sbcl-clache))
(define-public sbcl-clack
- (let ((commit "6fd0279424f7ba5fd4f92d69a1970846b0b11222")
- (revision "2"))
+ (let ((commit "4916ebb243d42d1b52f8030db146215033b1b71e")
+ (revision "1"))
(package
(name "sbcl-clack")
- (version (git-version "2.0.0" revision commit))
+ (version (git-version "2.1.0" revision commit))
(source
(origin
(method git-fetch)
@@ -10388,29 +10388,30 @@ (define-public sbcl-clack
(commit commit)))
(file-name (git-file-name "cl-clack" version))
(sha256
- (base32 "0sfmvqmsg9z13x0v77448rpdqgyprdq739nsbrjw9a28hv9jmkg9"))))
+ (base32 "0kgymwvv1ghzvl4jryl3fxf0kf44i6z19izcf1rf0k4cidx093a7"))))
(build-system asdf-build-system/sbcl)
(arguments
+ ;; Only the handler for hunchentoot is included. The other
+ ;; two Web servers supported by clack, toot and wookie,
+ ;; have not yet been packaged for Guix.
'(#:asd-systems '("clack"
- "clack-handler-fcgi"
- "clack-socket"
- "clack-handler-hunchentoot")))
+ "clack-handler-hunchentoot"
+ "clack-socket")))
(inputs
(list sbcl-alexandria
sbcl-bordeaux-threads
- sbcl-cl-fastcgi
sbcl-flexi-streams
sbcl-hunchentoot
sbcl-lack
- sbcl-quri
sbcl-split-sequence
+ sbcl-slime-swank
sbcl-usocket))
(home-page "https://github.com/fukamachi/clack")
(synopsis "Web Application Environment for Common Lisp")
(description
"Clack is a web application environment for Common Lisp inspired by
Python's WSGI and Ruby's Rack.")
- (license license:llgpl))))
+ (license license:expat))))
(define-public cl-clack
(sbcl-package->cl-source-package sbcl-clack))
--
2.45.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* bug#73198: [PATCH 0/3] Update cl-lack and cl-clack
2024-09-12 14:02 [bug#73198] [PATCH 0/3] Update cl-lack and cl-clack Konrad Hinsen
` (2 preceding siblings ...)
2024-09-12 14:06 ` [bug#73198] [PATCH 3/3] gnu: Update cl-clack to 2.1.0 Konrad Hinsen
@ 2024-09-13 9:44 ` Guillaume Le Vaillant
3 siblings, 0 replies; 5+ messages in thread
From: Guillaume Le Vaillant @ 2024-09-13 9:44 UTC (permalink / raw)
To: Konrad Hinsen; +Cc: 73198-done
[-- Attachment #1: Type: text/plain, Size: 143 bytes --]
Patches applied as d844eecd34ad718da8aedcd3d19ac0e447cdf467 and
following with some minor modifications and completed commit messages.
Thanks.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-09-13 9:45 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-12 14:02 [bug#73198] [PATCH 0/3] Update cl-lack and cl-clack Konrad Hinsen
2024-09-12 14:05 ` [bug#73198] [PATCH 1/3] gnu: Add cl-anypool Konrad Hinsen
2024-09-12 14:06 ` [bug#73198] [PATCH 2/3] gnu: Update cl-lack to 0.3.0 Konrad Hinsen
2024-09-12 14:06 ` [bug#73198] [PATCH 3/3] gnu: Update cl-clack to 2.1.0 Konrad Hinsen
2024-09-13 9:44 ` bug#73198: [PATCH 0/3] Update cl-lack and cl-clack 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.