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

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.