all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#61935] [PATCH] gnu: sbcl-nsymbols: Update to 0.3.0.
@ 2023-03-03 14:14 Artyom Bologov
  2023-03-04  9:45 ` Guillaume Le Vaillant
  0 siblings, 1 reply; 4+ messages in thread
From: Artyom Bologov @ 2023-03-03 14:14 UTC (permalink / raw)
  To: 61935

[-- Attachment #1: Type: text/plain, Size: 57 bytes --]

Hello Guix,

Here's a patch updating nsymbols to 0.3.0.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Update sbcl-nsymbols to 0.3.0. --]
[-- Type: text/x-patch, Size: 1394 bytes --]

From 891fcfbc408c35d74a23b7fe6d0dcbf420864e76 Mon Sep 17 00:00:00 2001
From: Artyom Bologov <mail@aartaka.me>
Date: Fri, 3 Mar 2023 18:12:30 +0400
Subject: [PATCH] gnu: sbcl-nsymbols: Update to 0.3.0.

* gnu/packages/lisp-xyz.scm (sbcl-nsymbols): Update to 0.3.0.
---
 gnu/packages/lisp-xyz.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index a8792dee52..aa4df45c0c 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -24798,7 +24798,7 @@ (define-public ecl-nactivitypub
 (define-public sbcl-nsymbols
   (package
    (name "sbcl-nsymbols")
-   (version "0.2.0")
+   (version "0.3.0")
    (source
     (origin
      (method git-fetch)
@@ -24807,9 +24807,12 @@ (define-public sbcl-nsymbols
            (commit version)))
      (file-name (git-file-name "cl-nsymbols" version))
      (sha256
-      (base32 "1nks5v2l6vf0kwiyv3r2lickp3xhyi0ck33y1l08crmwhn097hpd"))))
+      (base32 "1ax2f7kp1br9zixmmm0qn3b441baa582mgr0q8xsvs4nbv1l5dqx"))))
    (build-system asdf-build-system/sbcl)
    (native-inputs (list sbcl-lisp-unit2))
+   (inputs (list cl-closer-mop))
+   (arguments
+    '(#:asd-systems '("nsymbols" "nsymbols/star")))
    (synopsis
     "Functions to search, filter, and group symbols in chosen packages")
    (home-page "https://github.com/atlas-engineer/nsymbols")
-- 
2.38.1


[-- Attachment #3: Type: text/plain, Size: 27 bytes --]


Thanks,
--
Artyom Bologov

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#61935] [PATCH] gnu: sbcl-nsymbols: Update to 0.3.0.
  2023-03-03 14:14 [bug#61935] [PATCH] gnu: sbcl-nsymbols: Update to 0.3.0 Artyom Bologov
@ 2023-03-04  9:45 ` Guillaume Le Vaillant
  2023-03-06 16:47   ` Artyom Bologov
  0 siblings, 1 reply; 4+ messages in thread
From: Guillaume Le Vaillant @ 2023-03-04  9:45 UTC (permalink / raw)
  To: Artyom Bologov; +Cc: 61935

[-- Attachment #1: Type: text/plain, Size: 625 bytes --]

Hi.
One test of the ecl-nsymbols package is failing with the updated version:

--8<---------------cut here---------------start------------->8---
Starting: NSYMBOLS/TESTS::NSYMBOLS-INSPECTION
;;; OPTIMIZE levels: Safety=2, Space=0, Speed=3, Debug=0
;;;
;;; End of Pass 1.NSYMBOLS/TESTS::NSYMBOLS-INSPECTION - FAILED (0.17s) : 8 assertions passed
  | FAILED (1)
  | Failed Form: (LISP-UNIT2:ASSERT-EQL 0
  |                                     (LENGTH
  |                                      (NSYMBOLS:PACKAGE-CLASSES :NSYMBOLS)))
  | Expected 0
  | but saw 1
--8<---------------cut here---------------end--------------->8---

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#61935] [PATCH] gnu: sbcl-nsymbols: Update to 0.3.0.
  2023-03-04  9:45 ` Guillaume Le Vaillant
@ 2023-03-06 16:47   ` Artyom Bologov
  2023-03-07 10:39     ` bug#61935: " Guillaume Le Vaillant
  0 siblings, 1 reply; 4+ messages in thread
From: Artyom Bologov @ 2023-03-06 16:47 UTC (permalink / raw)
  To: Guillaume Le Vaillant; +Cc: 61935, Artyom Bologov

[-- Attachment #1: Type: text/plain, Size: 71 bytes --]

Hello Guillaume,

Right, see the new version patch in the attachment.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Update sbcl-nsymbols to 0.3.1. --]
[-- Type: text/x-patch, Size: 1470 bytes --]

From 4879a1c21b51291904be46b9ef9bd6a91a229043 Mon Sep 17 00:00:00 2001
From: Artyom Bologov <mail@aartaka.me>
Date: Mon, 6 Mar 2023 20:44:41 +0400
Subject: [PATCH] gnu: sbcl-nsymbols: Update to 0.3.1.

* gnu/packages/lisp-xyz.scm (sbcl-nsymbols): Update to 0.3.1.
[inputs]: Add cl-closer-mop.
[arguments]<#:asd-systems>: Add nsymbols/star.
---
 gnu/packages/lisp-xyz.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index a8792dee52..ebe7472089 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -24798,7 +24798,7 @@ (define-public ecl-nactivitypub
 (define-public sbcl-nsymbols
   (package
    (name "sbcl-nsymbols")
-   (version "0.2.0")
+   (version "0.3.1")
    (source
     (origin
      (method git-fetch)
@@ -24807,9 +24807,12 @@ (define-public sbcl-nsymbols
            (commit version)))
      (file-name (git-file-name "cl-nsymbols" version))
      (sha256
-      (base32 "1nks5v2l6vf0kwiyv3r2lickp3xhyi0ck33y1l08crmwhn097hpd"))))
+      (base32 "14zdwsk2nrismj3xb54kfpgcdcsdzw3fyd7zwxlsir66lv9w9ji9"))))
    (build-system asdf-build-system/sbcl)
    (native-inputs (list sbcl-lisp-unit2))
+   (inputs (list cl-closer-mop))
+   (arguments
+    '(#:asd-systems '("nsymbols" "nsymbols/star")))
    (synopsis
     "Functions to search, filter, and group symbols in chosen packages")
    (home-page "https://github.com/atlas-engineer/nsymbols")
-- 
2.38.1


[-- Attachment #3: Type: text/plain, Size: 20 bytes --]


Thanks,
--
Artyom.

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#61935: [PATCH] gnu: sbcl-nsymbols: Update to 0.3.0.
  2023-03-06 16:47   ` Artyom Bologov
@ 2023-03-07 10:39     ` Guillaume Le Vaillant
  0 siblings, 0 replies; 4+ messages in thread
From: Guillaume Le Vaillant @ 2023-03-07 10:39 UTC (permalink / raw)
  To: Artyom Bologov; +Cc: 61935-done

[-- Attachment #1: Type: text/plain, Size: 66 bytes --]

Patch pushed as 66f7d95d027d74ae6e9c9d37c80ed65b5c96dc40.
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-07 10:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-03 14:14 [bug#61935] [PATCH] gnu: sbcl-nsymbols: Update to 0.3.0 Artyom Bologov
2023-03-04  9:45 ` Guillaume Le Vaillant
2023-03-06 16:47   ` Artyom Bologov
2023-03-07 10:39     ` bug#61935: " 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.