* [bug#47817] [PATCH] gnu: music: Add abjad-ext-nauert
@ 2021-04-16 5:01 jgart via Guix-patches via
2021-04-16 18:06 ` [bug#47817] abjad-ext-nauert: Added lilypond to native-inputs [updated patch] jgart via Guix-patches via
0 siblings, 1 reply; 3+ messages in thread
From: jgart via Guix-patches via @ 2021-04-16 5:01 UTC (permalink / raw)
To: 47817; +Cc: Efraim Flashner
[-- Attachment #1: Type: text/plain, Size: 2 bytes --]
[-- Attachment #2: 0005-gnu-Add-abjad-ext-nauert.patch --]
[-- Type: application/octet-stream, Size: 2435 bytes --]
From 15357c7af0fe229183e8f2692f2bee97e268971d Mon Sep 17 00:00:00 2001
From: jgart <jgart@dismail.de>
Date: Fri, 16 Apr 2021 00:37:34 -0400
Subject: [PATCH 5/6] gnu: Add abjad-ext-nauert.
* gnu/packages/music.scm (abjad-ext-nauert): 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 afce37327a..e318c50beb 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -1598,6 +1598,47 @@ typographic detail of symbols on the page.")
"@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 abjad-ext-nauert
+ (package
+ (name "abjad-ext-nauert")
+ (version "3.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Abjad/abjad-ext-nauert")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "07vgfjh32vmf652lcl2vrbzr0h6nld00qbgwbf9i1kk3xwhvklc9"))))
+ (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" "tests")
+ #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 quantization extension, based on Paul Nauert's Q-Grids")
+ (description
+ "@code{abjad-ext-nauert} provides classes for dealing with composer and
+music theorist Paul Nauert's quantization grids or Q-Grids, for short.")
+ (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#47817] abjad-ext-nauert: Added lilypond to native-inputs [updated patch]
2021-04-16 5:01 [bug#47817] [PATCH] gnu: music: Add abjad-ext-nauert jgart via Guix-patches via
@ 2021-04-16 18:06 ` jgart via Guix-patches via
2021-07-22 8:54 ` bug#47817: " Efraim Flashner
0 siblings, 1 reply; 3+ messages in thread
From: jgart via Guix-patches via @ 2021-04-16 18:06 UTC (permalink / raw)
To: 47817
[-- 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: 0005-gnu-Add-abjad-ext-nauert.patch --]
[-- Type: application/octet-stream, Size: 2471 bytes --]
From 53e3dd717c74a2f70d65afc8d1b44ed9b20035e7 Mon Sep 17 00:00:00 2001
From: jgart <jgart@dismail.de>
Date: Fri, 16 Apr 2021 00:37:34 -0400
Subject: [PATCH 5/6] gnu: Add abjad-ext-nauert.
* gnu/packages/music.scm (abjad-ext-nauert): New variable.
*
---
gnu/packages/music.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 6dbb6b2a13..959a0b4f6f 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -1599,3 +1599,45 @@ typographic detail of symbols on the page.")
"@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 abjad-ext-nauert
+ (package
+ (name "abjad-ext-nauert")
+ (version "3.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Abjad/abjad-ext-nauert")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "07vgfjh32vmf652lcl2vrbzr0h6nld00qbgwbf9i1kk3xwhvklc9"))))
+ (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" "tests")
+ #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 quantization extension, based on Paul Nauert's Q-Grids")
+ (description
+ "@code{abjad-ext-nauert} provides classes for dealing with composer and
+music theorist Paul Nauert's quantization grids or Q-Grids, for short.")
+ (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#47817: abjad-ext-nauert: Added lilypond to native-inputs [updated patch]
2021-04-16 18:06 ` [bug#47817] abjad-ext-nauert: Added lilypond to native-inputs [updated 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: 47817-done
[-- Attachment #1: Type: text/plain, Size: 285 bytes --]
Sorry for taking so long to review the patch.
Patch pushed! Thanks.
--
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:57 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:01 [bug#47817] [PATCH] gnu: music: Add abjad-ext-nauert jgart via Guix-patches via
2021-04-16 18:06 ` [bug#47817] abjad-ext-nauert: Added lilypond to native-inputs [updated patch] jgart via Guix-patches via
2021-07-22 8:54 ` bug#47817: " Efraim Flashner
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).