* [bug#54707] [PATCH] gnu: sbcl-sxql: Update to cc3478c.
@ 2022-04-04 14:49 jgart via Guix-patches via
2022-04-04 14:53 ` [bug#54707] [PATCH v2] " jgart via Guix-patches via
0 siblings, 1 reply; 3+ messages in thread
From: jgart via Guix-patches via @ 2022-04-04 14:49 UTC (permalink / raw)
To: 54707; +Cc: jgart
* gnu/packages/lisp-xyz.scm (sbcl-sxql): Update to cc3478c.
---
gnu/packages/lisp-xyz.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index e8c6406d7a..aa0a744c1c 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -10790,10 +10790,11 @@ (define-public ecl-exponential-backoff
(sbcl-package->ecl-package sbcl-exponential-backoff))
(define-public sbcl-sxql
- (let ((commit "acdd183a4c38b4e0699a285f8a711c88f6b4302c"))
+ (let ((commit "cc3478cacb0557475a59cf619dad66c5dc8080ba")
+ (revision "3"))
(package
(name "sbcl-sxql")
- (version (git-version "0.1.0" "2" commit))
+ (version (git-version "0.1.0" revision commit))
(source
(origin
(method git-fetch)
@@ -10802,7 +10803,7 @@ (define-public sbcl-sxql
(commit commit)))
(file-name (git-file-name "sqxl" version))
(sha256
- (base32 "1i1crdsf2nbyxxpvjgrwmwpjxn6a4drbcmqs4q4shfi8zyap7vng"))))
+ (base32 "011an993amy8q3gl4hyqrgnc93cgny3cv9gbp679rrmyyp8zmywr"))))
(build-system asdf-build-system/sbcl)
(inputs
(list sbcl-alexandria
@@ -10811,6 +10812,7 @@ (define-public sbcl-sxql
sbcl-iterate
sbcl-optima
sbcl-split-sequence
+ sbcl-trivia
sbcl-trivial-types))
(native-inputs
(list sbcl-prove))
--
2.34.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#54707] [PATCH v2] gnu: sbcl-sxql: Update to cc3478c.
2022-04-04 14:49 [bug#54707] [PATCH] gnu: sbcl-sxql: Update to cc3478c jgart via Guix-patches via
@ 2022-04-04 14:53 ` jgart via Guix-patches via
2022-04-07 8:24 ` bug#54707: " Guillaume Le Vaillant
0 siblings, 1 reply; 3+ messages in thread
From: jgart via Guix-patches via @ 2022-04-04 14:53 UTC (permalink / raw)
To: 54707; +Cc: jgart
* gnu/packages/lisp-xyz.scm (sbcl-sxql): Update to cc3478c and
use revision variable in let block.
[inputs]: Add missing sbcl-trivia input.
Forgot to add some details in the commit message.
Here is v2.
all best,
jgart
---
gnu/packages/lisp-xyz.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index e8c6406d7a..aa0a744c1c 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -10790,10 +10790,11 @@ (define-public ecl-exponential-backoff
(sbcl-package->ecl-package sbcl-exponential-backoff))
(define-public sbcl-sxql
- (let ((commit "acdd183a4c38b4e0699a285f8a711c88f6b4302c"))
+ (let ((commit "cc3478cacb0557475a59cf619dad66c5dc8080ba")
+ (revision "3"))
(package
(name "sbcl-sxql")
- (version (git-version "0.1.0" "2" commit))
+ (version (git-version "0.1.0" revision commit))
(source
(origin
(method git-fetch)
@@ -10802,7 +10803,7 @@ (define-public sbcl-sxql
(commit commit)))
(file-name (git-file-name "sqxl" version))
(sha256
- (base32 "1i1crdsf2nbyxxpvjgrwmwpjxn6a4drbcmqs4q4shfi8zyap7vng"))))
+ (base32 "011an993amy8q3gl4hyqrgnc93cgny3cv9gbp679rrmyyp8zmywr"))))
(build-system asdf-build-system/sbcl)
(inputs
(list sbcl-alexandria
@@ -10811,6 +10812,7 @@ (define-public sbcl-sxql
sbcl-iterate
sbcl-optima
sbcl-split-sequence
+ sbcl-trivia
sbcl-trivial-types))
(native-inputs
(list sbcl-prove))
--
2.34.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* bug#54707: [PATCH v2] gnu: sbcl-sxql: Update to cc3478c.
2022-04-04 14:53 ` [bug#54707] [PATCH v2] " jgart via Guix-patches via
@ 2022-04-07 8:24 ` Guillaume Le Vaillant
0 siblings, 0 replies; 3+ messages in thread
From: Guillaume Le Vaillant @ 2022-04-07 8:24 UTC (permalink / raw)
To: jgart; +Cc: 54707-done
[-- Attachment #1: Type: text/plain, Size: 66 bytes --]
Patch pushed as b94b334cb7f77fdd9380d76e25d85664adb5b997.
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:[~2022-04-07 8:27 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-04 14:49 [bug#54707] [PATCH] gnu: sbcl-sxql: Update to cc3478c jgart via Guix-patches via
2022-04-04 14:53 ` [bug#54707] [PATCH v2] " jgart via Guix-patches via
2022-04-07 8:24 ` bug#54707: " 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).