all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#50998] [PATCH] gnu: abjad: Update to 3.4
@ 2021-10-03 18:55 jgart via Guix-patches via
  2021-10-03 19:07 ` [bug#50998] [PATCH 1/4] gnu: python-uqbar: Update to 0.5.6 jgart via Guix-patches via
  2021-10-04  8:25 ` bug#50998: [PATCH] " Efraim Flashner
  0 siblings, 2 replies; 7+ messages in thread
From: jgart via Guix-patches via @ 2021-10-03 18:55 UTC (permalink / raw)
  To: 50998

Hi Guix,

Here's a patch set for updating abjad and related packages.

all best,

jgart

3B1D 7F19 E36B B60C 0F5B 2CA9 A52A A2B4 77B6 DD35




^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug#50998] [PATCH 1/4] gnu: python-uqbar: Update to 0.5.6.
  2021-10-03 18:55 [bug#50998] [PATCH] gnu: abjad: Update to 3.4 jgart via Guix-patches via
@ 2021-10-03 19:07 ` jgart via Guix-patches via
  2021-10-03 19:07   ` [bug#50998] [PATCH 2/4] gnu: abjad-ext-nauert: Update to 3.4 jgart via Guix-patches via
                     ` (2 more replies)
  2021-10-04  8:25 ` bug#50998: [PATCH] " Efraim Flashner
  1 sibling, 3 replies; 7+ messages in thread
From: jgart via Guix-patches via @ 2021-10-03 19:07 UTC (permalink / raw)
  To: 50998; +Cc: jgart

* gnu/packages/graphviz.scm (python-uqbar): Update to 0.5.6.
[arguments]: Update setup.py version requirements.
---
 gnu/packages/graphviz.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/graphviz.scm b/gnu/packages/graphviz.scm
index 5685864d4c..ac896fb577 100644
--- a/gnu/packages/graphviz.scm
+++ b/gnu/packages/graphviz.scm
@@ -258,7 +258,7 @@ structure and layout algorithms.")
 (define-public python-uqbar
   (package
     (name "python-uqbar")
-    (version "0.5.1")
+    (version "0.5.6")
     (source
      (origin
        (method git-fetch)
@@ -268,7 +268,7 @@ structure and layout algorithms.")
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "0413nyhd8z8v3lvsgaghhafnyxg90fi1q80j1kbl21gpmpnc9a7n"))))
+         "1ml3x2mf7nlnvrh9lari5yk0sz2mmg39jwsbjxnpzhnw4kcwpdrs"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
@@ -277,8 +277,8 @@ structure and layout algorithms.")
            (lambda _
              (substitute* "setup.py"
                ;; Latest versions of sphink-rtd-theme require npm to build.
-               (("sphinx-rtd-theme >= 0.4.0") "sphinx-rtd-theme >= 0.2.4")
-               (("black == 19.10b0") "black >= 19.10b0"))
+               (("sphinx-rtd-theme >= 0.5.0") "sphinx-rtd-theme >= 0.2.4")
+               (("black") "black >= 19.10b0"))
              #t))
          (replace 'check
            (lambda* (#:key tests? #:allow-other-keys)
-- 
2.33.0





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#50998] [PATCH 2/4] gnu: abjad-ext-nauert: Update to 3.4.
  2021-10-03 19:07 ` [bug#50998] [PATCH 1/4] gnu: python-uqbar: Update to 0.5.6 jgart via Guix-patches via
@ 2021-10-03 19:07   ` jgart via Guix-patches via
  2021-10-03 19:07   ` [bug#50998] [PATCH 3/4] gnu: abjad-ext-rmakers: " jgart via Guix-patches via
  2021-10-03 19:07   ` [bug#50998] [PATCH 4/4] gnu: abjad: " jgart via Guix-patches via
  2 siblings, 0 replies; 7+ messages in thread
From: jgart via Guix-patches via @ 2021-10-03 19:07 UTC (permalink / raw)
  To: 50998; +Cc: jgart

* gnu/packages/music.scm (abjad-ext-nauert): Update to 3.4.
---
 gnu/packages/music.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 1f0f7c5667..aeb52666be 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -1626,7 +1626,7 @@ and manipulating rhythms such as accelerandi, taleas, and more.")
 (define-public abjad-ext-nauert
   (package
     (name "abjad-ext-nauert")
-    (version "3.3")
+    (version "3.4")
     (source
      (origin
        (method git-fetch)
@@ -1636,7 +1636,7 @@ and manipulating rhythms such as accelerandi, taleas, and more.")
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "07vgfjh32vmf652lcl2vrbzr0h6nld00qbgwbf9i1kk3xwhvklc9"))))
+         "05hr2lr6myzi493k8vc19cqzraxxnbdwlckwbnras19l5g5ns38x"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
-- 
2.33.0





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#50998] [PATCH 3/4] gnu: abjad-ext-rmakers: Update to 3.4.
  2021-10-03 19:07 ` [bug#50998] [PATCH 1/4] gnu: python-uqbar: Update to 0.5.6 jgart via Guix-patches via
  2021-10-03 19:07   ` [bug#50998] [PATCH 2/4] gnu: abjad-ext-nauert: Update to 3.4 jgart via Guix-patches via
@ 2021-10-03 19:07   ` jgart via Guix-patches via
  2021-10-03 19:07   ` [bug#50998] [PATCH 4/4] gnu: abjad: " jgart via Guix-patches via
  2 siblings, 0 replies; 7+ messages in thread
From: jgart via Guix-patches via @ 2021-10-03 19:07 UTC (permalink / raw)
  To: 50998; +Cc: jgart

* gnu/packages/music.scm (abjad-ext-rmakers): Update to 3.4.
---
 gnu/packages/music.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index aeb52666be..332e1b089f 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -1584,7 +1584,7 @@ typographic detail of symbols on the page.")
 (define-public abjad-ext-rmakers
   (package
     (name "abjad-ext-rmakers")
-    (version "3.3")
+    (version "3.4")
     (source
      (origin
        (method git-fetch)
@@ -1594,7 +1594,7 @@ typographic detail of symbols on the page.")
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "03nry8lzh3s81yq4lw8y6j63m7zdsl20q7rvx9cfmp3rmbvlaycs"))))
+         "0wma9vzn42h1rhbzh2dwjsrzjhsi1yqdgn6wx1dfk78vaki6prd8"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
-- 
2.33.0





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#50998] [PATCH 4/4] gnu: abjad: Update to 3.4.
  2021-10-03 19:07 ` [bug#50998] [PATCH 1/4] gnu: python-uqbar: Update to 0.5.6 jgart via Guix-patches via
  2021-10-03 19:07   ` [bug#50998] [PATCH 2/4] gnu: abjad-ext-nauert: Update to 3.4 jgart via Guix-patches via
  2021-10-03 19:07   ` [bug#50998] [PATCH 3/4] gnu: abjad-ext-rmakers: " jgart via Guix-patches via
@ 2021-10-03 19:07   ` jgart via Guix-patches via
  2 siblings, 0 replies; 7+ messages in thread
From: jgart via Guix-patches via @ 2021-10-03 19:07 UTC (permalink / raw)
  To: 50998; +Cc: jgart

* gnu/packages/music.scm (abjad): Update to 3.4.
---
 gnu/packages/music.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 332e1b089f..fa3b70f8c1 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -1529,7 +1529,7 @@ Guile.")
 (define-public abjad
   (package
     (name "abjad")
-    (version "3.3")
+    (version "3.4")
     (source
      (origin
        (method git-fetch)
@@ -1539,7 +1539,7 @@ Guile.")
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "1dzf5v7pawbzkb4qxp4s5z4r3gibkk705pag83yvgzkx6fd6jf2g"))))
+         "0s63vk9fifp0im9c31kb9ck39mbaxhrls993d8fvg0nkg41z1jnz"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
-- 
2.33.0





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* bug#50998: [PATCH] gnu: abjad: Update to 3.4
  2021-10-03 18:55 [bug#50998] [PATCH] gnu: abjad: Update to 3.4 jgart via Guix-patches via
  2021-10-03 19:07 ` [bug#50998] [PATCH 1/4] gnu: python-uqbar: Update to 0.5.6 jgart via Guix-patches via
@ 2021-10-04  8:25 ` Efraim Flashner
  2021-10-04 17:12   ` [bug#50998] " jgart via Guix-patches via
  1 sibling, 1 reply; 7+ messages in thread
From: Efraim Flashner @ 2021-10-04  8:25 UTC (permalink / raw)
  To: jgart; +Cc: 50998-done

[-- Attachment #1: Type: text/plain, Size: 238 bytes --]

Thanks. Patches 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] 7+ messages in thread

* [bug#50998] [PATCH] gnu: abjad: Update to 3.4
  2021-10-04  8:25 ` bug#50998: [PATCH] " Efraim Flashner
@ 2021-10-04 17:12   ` jgart via Guix-patches via
  0 siblings, 0 replies; 7+ messages in thread
From: jgart via Guix-patches via @ 2021-10-04 17:12 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: 50998-done

On Mon, 04 Oct 2021 11:25:00 +0300 Efraim Flashner <efraim@flashner.co.il> wrote:

Thanks Efraim! 

all best,

jgart

3B1D 7F19 E36B B60C 0F5B 2CA9 A52A A2B4 77B6 DD35




^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-10-04 17:15 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-03 18:55 [bug#50998] [PATCH] gnu: abjad: Update to 3.4 jgart via Guix-patches via
2021-10-03 19:07 ` [bug#50998] [PATCH 1/4] gnu: python-uqbar: Update to 0.5.6 jgart via Guix-patches via
2021-10-03 19:07   ` [bug#50998] [PATCH 2/4] gnu: abjad-ext-nauert: Update to 3.4 jgart via Guix-patches via
2021-10-03 19:07   ` [bug#50998] [PATCH 3/4] gnu: abjad-ext-rmakers: " jgart via Guix-patches via
2021-10-03 19:07   ` [bug#50998] [PATCH 4/4] gnu: abjad: " jgart via Guix-patches via
2021-10-04  8:25 ` bug#50998: [PATCH] " Efraim Flashner
2021-10-04 17:12   ` [bug#50998] " jgart via Guix-patches via

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.