all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#71546] [PATCH 1/2] gnu: cl-triads: Update to version 0.0.1.
@ 2024-06-14  6:34 Charles via Guix-patches via
  2024-06-14  6:34 ` [bug#71547] [PATCH 2/2] gnu: cl-ctype: Update to commit 9b824aa7 Charles via Guix-patches via
  2024-06-18  8:58 ` bug#71546: [PATCH 1/2] gnu: cl-triads: Update to version 0.0.1 Guillaume Le Vaillant
  0 siblings, 2 replies; 4+ messages in thread
From: Charles via Guix-patches via @ 2024-06-14  6:34 UTC (permalink / raw)
  To: 71546
  Cc: Charles, Guillaume Le Vaillant, Katherine Cox-Buday,
	Munyoki Kilyungi, Sharlatan Hellseher, jgart

* gnu/packages/lisp-xyz.scm (sbcl-triads): Update version, hash, URL, and home-page.

Change-Id: I9a6d1d484920c9c76e2f9d74142ecdc82d31dfde
---
 gnu/packages/lisp-xyz.scm | 84 +++++++++++++++++++--------------------
 1 file changed, 42 insertions(+), 42 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 5c798b98b0..00b07ae949 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -28084,51 +28084,51 @@ (define-public ecl-trees
   (sbcl-package->ecl-package sbcl-trees))
 
 (define-public sbcl-triads
-  (let ((commit "840b025bf3d65cc5eaead4542a02a3ca6d77c2b6")
-        (revision "0"))
-    (package
-      (name "sbcl-triads")
-      (version (git-version "0" revision commit))
-      (source
-       (origin
-         (method git-fetch)
-         (uri (git-reference
-               (url "https://github.com/charJe/triads")
-               (commit commit)))
-         (file-name (git-file-name "cl-triads" version))
-         (sha256
-          (base32 "146mwshynhdw82m2nxrcjvf1nk0z3fn6ywcd2vqxkly5qricc53w"))))
-      (build-system asdf-build-system/sbcl)
-      (outputs '("out" "bin"))
-      (arguments
-       '(#:asd-systems '("charje.triads")
-         #:phases
-         (modify-phases %standard-phases
-           (add-after 'create-asdf-configuration 'build-binary
-             (lambda* (#:key outputs #:allow-other-keys)
-               (setenv "HOME" (getcwd))
-               (invoke
-                "sbcl" "--eval" "(require :asdf)" "--eval"
-                (format
-                 #f "~S"
-                 `(progn
-                   (require "charje.triads"
-                            ,(string-append (getcwd) "/charje.triads.asd"))
-                   (asdf:make "charje.triads"))))
-               (install-file
-                (string-append (getcwd) "/triads")
-                (string-append (assoc-ref outputs "bin") "/bin")))))))
-      (inputs
-       (list sbcl-cl-str
-             sbcl-serapeum
-             sbcl-trivia))
-      (home-page "https://github.com/charJe/triads")
-      (synopsis "Music composition tool to convert roman numerals into triads")
-      (description "Triads is a simple command line tool that reads roman
+  (package
+    (name "sbcl-triads")
+    (version "0.0.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://git.sr.ht/~charje/triads")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name "cl-triads" version))
+       (sha256
+        (base32 "0s47rcp3karml5b06g98adjr2wxn6y9p9bigh8y7wjihpr3075x1"))))
+    (build-system asdf-build-system/sbcl)
+    (outputs '("out" "bin"))
+    (arguments
+     '(#:asd-systems '("charje.triads")
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'create-asdf-configuration 'build-binary
+           (lambda* (#:key outputs #:allow-other-keys)
+             (setenv "HOME" (getcwd))
+             (invoke
+              "sbcl" "--eval" "(require :asdf)" "--eval"
+              (format
+               #f "~S"
+               `(progn
+                 (require "charje.triads"
+                          ,(string-append (getcwd) "/charje.triads.asd"))
+                 (asdf:make "charje.triads"))))
+             (install-file
+              (string-append (getcwd) "/triads")
+              (string-append (assoc-ref outputs "bin") "/bin")))))))
+    (inputs
+     (list sbcl-cl-str
+           sbcl-serapeum
+           sbcl-trivia
+           sbcl-command-line-args
+           sbcl-charje.loop))
+    (home-page "https://git.sr.ht/~charje/triads")
+    (synopsis "Music composition tool to convert roman numerals into triads")
+    (description "Triads is a simple command line tool that reads roman
 numeral notation from standard input (or a file) and an musical key and outputs
 the roman numeral in addition to the notes of the triad associated with that
 roman numeral given in the key.")
-      (license license:gpl3))))
+    (license license:gpl3)))
 
 (define-public cl-triads
   (sbcl-package->cl-source-package sbcl-triads))

base-commit: b72fdac20061a882b1eeda5ed0e5e27bb1dec205
-- 
2.41.0





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

* [bug#71547] [PATCH 2/2] gnu: cl-ctype: Update to commit 9b824aa7.
  2024-06-14  6:34 [bug#71546] [PATCH 1/2] gnu: cl-triads: Update to version 0.0.1 Charles via Guix-patches via
@ 2024-06-14  6:34 ` Charles via Guix-patches via
  2024-06-18  9:00   ` bug#71547: " Guillaume Le Vaillant
  2024-06-18  8:58 ` bug#71546: [PATCH 1/2] gnu: cl-triads: Update to version 0.0.1 Guillaume Le Vaillant
  1 sibling, 1 reply; 4+ messages in thread
From: Charles via Guix-patches via @ 2024-06-14  6:34 UTC (permalink / raw)
  To: 71547
  Cc: Charles, Guillaume Le Vaillant, Katherine Cox-Buday,
	Munyoki Kilyungi, Sharlatan Hellseher, jgart

* gnu/packages/lisp-xyz.scm (sbcl-ctype): Update commit, version, and hash.

Change-Id: Ie57ee10342094da4dd5d5a99e00042954ab57060
---
 gnu/packages/lisp-xyz.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 00b07ae949..ee17768f8b 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -12376,10 +12376,10 @@ (define-public ecl-css-lite
   (sbcl-package->ecl-package sbcl-css-lite))
 
 (define-public sbcl-ctype
-  (let ((commit "9b824aa75d7ceb9f3504590b09c6d8a57269f026"))
+  (let ((commit "c514623a0cd5c4340ab4ab13d90509f15f09c47a"))
     (package
       (name "sbcl-ctype")
-      (version (git-version "0.0.0" "2" commit))
+      (version (git-version "0.0.0" "3" commit))
       (source
        (origin
          (method git-fetch)
@@ -12388,7 +12388,7 @@ (define-public sbcl-ctype
                (commit commit)))
          (file-name (git-file-name "cl-ctype" version))
          (sha256
-          (base32 "00d82v7hb7vii6gaaaa7ykzl70hga93laz7w9z1hhdl3z7zb473a"))))
+          (base32 "0qnssrjssb7258i3a1s1bv3z6plx4pzrkg65i8an25bvwrjwpvqv"))))
       (build-system asdf-build-system/sbcl)
       (inputs
        (list sbcl-alexandria))
-- 
2.41.0





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

* bug#71546: [PATCH 1/2] gnu: cl-triads: Update to version 0.0.1.
  2024-06-14  6:34 [bug#71546] [PATCH 1/2] gnu: cl-triads: Update to version 0.0.1 Charles via Guix-patches via
  2024-06-14  6:34 ` [bug#71547] [PATCH 2/2] gnu: cl-ctype: Update to commit 9b824aa7 Charles via Guix-patches via
@ 2024-06-18  8:58 ` Guillaume Le Vaillant
  1 sibling, 0 replies; 4+ messages in thread
From: Guillaume Le Vaillant @ 2024-06-18  8:58 UTC (permalink / raw)
  To: Charles; +Cc: 71546-done

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

Patch applied as f46e89bf7b68f6fa093f22250a6d45b32929fcba.
Thanks.

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

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

* bug#71547: [PATCH 2/2] gnu: cl-ctype: Update to commit 9b824aa7.
  2024-06-14  6:34 ` [bug#71547] [PATCH 2/2] gnu: cl-ctype: Update to commit 9b824aa7 Charles via Guix-patches via
@ 2024-06-18  9:00   ` Guillaume Le Vaillant
  0 siblings, 0 replies; 4+ messages in thread
From: Guillaume Le Vaillant @ 2024-06-18  9:00 UTC (permalink / raw)
  To: Charles; +Cc: 71547-done

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

Patch applied as 75cc9ff895398c67a154927a0c53d0223459177e with a fixed
commit message.
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:[~2024-06-18  9:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-14  6:34 [bug#71546] [PATCH 1/2] gnu: cl-triads: Update to version 0.0.1 Charles via Guix-patches via
2024-06-14  6:34 ` [bug#71547] [PATCH 2/2] gnu: cl-ctype: Update to commit 9b824aa7 Charles via Guix-patches via
2024-06-18  9:00   ` bug#71547: " Guillaume Le Vaillant
2024-06-18  8:58 ` bug#71546: [PATCH 1/2] gnu: cl-triads: Update to version 0.0.1 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.