* [bug#47816] [PATCH] gnu: music: Add abjad-ext-rmakers
@ 2021-04-16 5:00 jgart via Guix-patches via
2021-04-16 18:03 ` [bug#47816] abjad-ext-rmakers: Added lilypond to native-inputs [new patch] jgart via Guix-patches via
0 siblings, 1 reply; 3+ messages in thread
From: jgart via Guix-patches via @ 2021-04-16 5:00 UTC (permalink / raw)
To: 47816; +Cc: Efraim Flashner
[-- Attachment #1: Type: text/plain, Size: 2 bytes --]
[-- Attachment #2: 0004-gnu-Add-abjad-ext-rmakers.patch --]
[-- Type: application/octet-stream, Size: 2340 bytes --]
From 6dc9d475c11119e7c0e3caa2fddd4e50baa7477a Mon Sep 17 00:00:00 2001
From: jgart <jgart@dismail.de>
Date: Fri, 16 Apr 2021 00:35:27 -0400
Subject: [PATCH 4/6] gnu: Add abjad-ext-rmakers.
* gnu/packages/music.scm (abjad-ext-rmakers): New variable.
---
gnu/packages/music.scm | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index f705d91cee..afce37327a 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -1558,6 +1558,46 @@ Because Abjad wraps the LilyPond music notation package, you can use Abjad to co
typographic detail of symbols on the page.")
(license license:expat)))
+(define-public abjad-ext-rmakers
+ (package
+ (name "abjad-ext-rmakers")
+ (version "3.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Abjad/abjad-ext-rmakers")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "03nry8lzh3s81yq4lw8y6j63m7zdsl20q7rvx9cfmp3rmbvlaycs"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "python" "-m" "pytest" ".")
+ #t))))))
+ (native-inputs
+ `(("python-black" ,python-black)
+ ("python-flake8" ,python-flake8)
+ ("python-iniconfig" ,python-iniconfig)
+ ("python-isort" ,python-isort)
+ ("python-mypy" ,python-mypy)
+ ("python-pytest" ,python-pytest-6)
+ ("python-pytest-cov" ,python-pytest-cov)
+ ("python-pytest-helpers-namespace" ,python-pytest-helpers-namespace)))
+ (propagated-inputs
+ `(("abjad" ,abjad)))
+ (home-page "https://abjad.github.io")
+ (synopsis "Abjad rhythm-maker exension package")
+ (description
+ "@code{abjad-ext-rmakers} includes a collection of classes for creating and
+and manipulating rhythms such as accelerandi, taleas, and more.")
+ (license license:expat)))
(define-public non-sequencer
;; The latest tagged release is three years old and uses a custom build
;; system, so we take the last commit.
--
2.29.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#47816] abjad-ext-rmakers: Added lilypond to native-inputs [new patch]
2021-04-16 5:00 [bug#47816] [PATCH] gnu: music: Add abjad-ext-rmakers jgart via Guix-patches via
@ 2021-04-16 18:03 ` jgart via Guix-patches via
2021-07-22 8:54 ` bug#47816: " Efraim Flashner
0 siblings, 1 reply; 3+ messages in thread
From: jgart via Guix-patches via @ 2021-04-16 18:03 UTC (permalink / raw)
To: 47816
[-- Attachment #1: Type: text/plain, Size: 153 bytes --]
Hi Guix,
Here is an updated patch that adds lilypond as a native-input. This is required for the tests to pass. See 47815.
best regards,
jgart
[-- Attachment #2: 0004-gnu-Add-abjad-ext-rmakers.patch --]
[-- Type: application/octet-stream, Size: 2375 bytes --]
From 4867fd9c0f98763522f38e338345f6c9728559d1 Mon Sep 17 00:00:00 2001
From: jgart <jgart@dismail.de>
Date: Fri, 16 Apr 2021 00:35:27 -0400
Subject: [PATCH 4/6] gnu: Add abjad-ext-rmakers.
* gnu/packages/music.scm (abjad-ext-rmakers): New variable.
*
---
gnu/packages/music.scm | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 9d1375d6b3..6dbb6b2a13 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -1558,6 +1558,47 @@ Because Abjad wraps the LilyPond music notation package, you can use Abjad to co
typographic detail of symbols on the page.")
(license license:expat)))
+(define-public abjad-ext-rmakers
+ (package
+ (name "abjad-ext-rmakers")
+ (version "3.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Abjad/abjad-ext-rmakers")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "03nry8lzh3s81yq4lw8y6j63m7zdsl20q7rvx9cfmp3rmbvlaycs"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "python" "-m" "pytest" ".")
+ #t))))))
+ (native-inputs
+ `(("lilypond" ,lilypond)
+ ("python-black" ,python-black)
+ ("python-flake8" ,python-flake8)
+ ("python-iniconfig" ,python-iniconfig)
+ ("python-isort" ,python-isort)
+ ("python-mypy" ,python-mypy)
+ ("python-pytest" ,python-pytest-6)
+ ("python-pytest-cov" ,python-pytest-cov)
+ ("python-pytest-helpers-namespace" ,python-pytest-helpers-namespace)))
+ (propagated-inputs
+ `(("abjad" ,abjad)))
+ (home-page "https://abjad.github.io")
+ (synopsis "Abjad rhythm-maker exension package")
+ (description
+ "@code{abjad-ext-rmakers} includes a collection of classes for creating and
+and manipulating rhythms such as accelerandi, taleas, and more.")
+ (license license:expat)))
(define-public non-sequencer
;; The latest tagged release is three years old and uses a custom build
;; system, so we take the last commit.
--
2.29.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* bug#47816: abjad-ext-rmakers: Added lilypond to native-inputs [new patch]
2021-04-16 18:03 ` [bug#47816] abjad-ext-rmakers: Added lilypond to native-inputs [new patch] jgart via Guix-patches via
@ 2021-07-22 8:54 ` Efraim Flashner
0 siblings, 0 replies; 3+ messages in thread
From: Efraim Flashner @ 2021-07-22 8:54 UTC (permalink / raw)
To: jgart; +Cc: 47816-done
[-- Attachment #1: Type: text/plain, Size: 254 bytes --]
Sorry for taking so long. Patch pushed!
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-07-22 8:56 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-16 5:00 [bug#47816] [PATCH] gnu: music: Add abjad-ext-rmakers jgart via Guix-patches via
2021-04-16 18:03 ` [bug#47816] abjad-ext-rmakers: Added lilypond to native-inputs [new patch] jgart via Guix-patches via
2021-07-22 8:54 ` bug#47816: " Efraim Flashner
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.