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.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Guillaume Le Vaillant <glv <at> posteo.net>
Cc: tracker <at> debbugs.gnu.org
Subject: bug#71546: closed ([PATCH 1/2] gnu: cl-triads: Update to version
 0.0.1.)
Date: Tue, 18 Jun 2024 09:00:03 +0000
[Message part 1 (text/plain, inline)]
Your message dated Tue, 18 Jun 2024 08:58:48 +0000
with message-id <87y172wrsn.fsf <at> kitej>
and subject line Re: [bug#71546] [PATCH 1/2] gnu: cl-triads: Update to version 0.0.1.
has caused the debbugs.gnu.org bug report #71546,
regarding [PATCH 1/2] gnu: cl-triads: Update to version 0.0.1.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)


-- 
71546: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=71546
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
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



[Message part 3 (message/rfc822, inline)]
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 4 (text/plain, inline)]
Patch applied as f46e89bf7b68f6fa093f22250a6d45b32929fcba.
Thanks.
[signature.asc (application/pgp-signature, inline)]

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.