GNU bug report logs - #71546
[PATCH 1/2] gnu: cl-triads: Update to version 0.0.1.

Previous Next

Package: guix-patches;

Reported by: Charles <charles <at> charje.net>

Date: Fri, 14 Jun 2024 06:43:02 UTC

Severity: normal

Tags: patch

Done: Guillaume Le Vaillant <glv <at> posteo.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 71546 in the body.
You can then email your comments to 71546 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to glv <at> posteo.net, cox.katherine.e+guix <at> gmail.com, me <at> bonfacemunyoki.com, sharlatanus <at> gmail.com, jgart <at> dismail.de, guix-patches <at> gnu.org:
bug#71546; Package guix-patches. (Fri, 14 Jun 2024 06:43:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Charles <charles <at> charje.net>:
New bug report received and forwarded. Copy sent to glv <at> posteo.net, cox.katherine.e+guix <at> gmail.com, me <at> bonfacemunyoki.com, sharlatanus <at> gmail.com, jgart <at> dismail.de, guix-patches <at> gnu.org. (Fri, 14 Jun 2024 06:43:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Charles <charles <at> charje.net>
To: guix-patches <at> gnu.org
Cc: Charles <charles <at> charje.net>
Subject: [PATCH 1/2] gnu: cl-triads: Update to version 0.0.1.
Date: Fri, 14 Jun 2024 01:34:27 -0500
* 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





Reply sent to Guillaume Le Vaillant <glv <at> posteo.net>:
You have taken responsibility. (Tue, 18 Jun 2024 09:00:03 GMT) Full text and rfc822 format available.

Notification sent to Charles <charles <at> charje.net>:
bug acknowledged by developer. (Tue, 18 Jun 2024 09:00:03 GMT) Full text and rfc822 format available.

Message #10 received at 71546-done <at> debbugs.gnu.org (full text, mbox):

From: Guillaume Le Vaillant <glv <at> posteo.net>
To: Charles <charles <at> charje.net>
Cc: 71546-done <at> debbugs.gnu.org
Subject: Re: [bug#71546] [PATCH 1/2] gnu: cl-triads: Update to version 0.0.1.
Date: Tue, 18 Jun 2024 08:58:48 +0000
[Message part 1 (text/plain, inline)]
Patch applied as f46e89bf7b68f6fa093f22250a6d45b32929fcba.
Thanks.
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 16 Jul 2024 11:24:16 GMT) Full text and rfc822 format available.

This bug report was last modified 339 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.