From: Charles via Guix-patches via <guix-patches@gnu.org>
To: 71546@debbugs.gnu.org
Cc: Charles <charles@charje.net>,
Guillaume Le Vaillant <glv@posteo.net>,
Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>,
Munyoki Kilyungi <me@bonfacemunyoki.com>,
Sharlatan Hellseher <sharlatanus@gmail.com>,
jgart <jgart@dismail.de>
Subject: [bug#71546] [PATCH 1/2] gnu: cl-triads: Update to version 0.0.1.
Date: Fri, 14 Jun 2024 01:34:27 -0500 [thread overview]
Message-ID: <4fc7feaeaa82287b2019b42c8c757e05d3bd5dd6.1718346868.git.charles@charje.net> (raw)
* 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
next reply other threads:[~2024-06-14 6:43 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-14 6:34 Charles via Guix-patches via [this message]
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
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4fc7feaeaa82287b2019b42c8c757e05d3bd5dd6.1718346868.git.charles@charje.net \
--to=guix-patches@gnu.org \
--cc=71546@debbugs.gnu.org \
--cc=charles@charje.net \
--cc=cox.katherine.e+guix@gmail.com \
--cc=glv@posteo.net \
--cc=jgart@dismail.de \
--cc=me@bonfacemunyoki.com \
--cc=sharlatanus@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.