unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#40174] [PATCH] gnu: zrythm: update to 0.8.156.
@ 2020-03-21 20:01 Alexandros Theodotou
  2020-03-23 20:05 ` Mathieu Othacehe
  2020-04-04 21:48 ` Alexandros Theodotou
  0 siblings, 2 replies; 4+ messages in thread
From: Alexandros Theodotou @ 2020-03-21 20:01 UTC (permalink / raw)
  To: 40174


[-- Attachment #1.1: Type: text/plain, Size: 338 bytes --]

Hi,

This patch updates Zrythm to 0.8.156. 

I also added support for SDL2 (alternative audio backend to JACK) and
RtMidi (alternative MIDI backend to JACK) so Zrythm can be used without
JACK. SDL2 and RtMidi use ALSA and ALSA sequencer respectively, which
unlike JACK require no extra configuration to use them.

Thanks,
Alex

[-- Attachment #1.2: 0001-gnu-zrythm-update-to-0.8.156.patch --]
[-- Type: text/x-patch, Size: 2266 bytes --]

From ebbdffedd65f5d2d10f4ca2e6dc7d029eb00ca31 Mon Sep 17 00:00:00 2001
From: Alexandros Theodotou <alex@zrythm.org>
Date: Sat, 21 Mar 2020 19:56:43 +0000
Subject: [PATCH] gnu: zrythm: update to 0.8.156.

* gnu/packages/music.scm (zrythm): Update to 0.8.156.
---
 gnu/packages/music.scm | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 468be9937f..05f5ef5697 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5161,7 +5161,7 @@ and as an LV2 plugin.")
 (define-public zrythm
   (package
     (name "zrythm")
-    (version "0.7.573")
+    (version "0.8.156")
     (source
       (origin
         (method url-fetch)
@@ -5169,13 +5169,14 @@ and as an LV2 plugin.")
                             version ".tar.xz"))
         (sha256
           (base32
-            "075gq478xbzz5ql4fsrgfzhgxi7z26k6034lhlkmm0klfcb8j9mg"))))
+            "0m6052msvgrvs6zy3xiz0vjkf9mbq7w4dhikfmdwqry6c86gkd23"))))
    (build-system meson-build-system)
    (arguments
     `(#:glib-or-gtk? #t
       #:configure-flags
       `("-Denable_tests=true" "-Dmanpage=true"
-        "-Dinstall_dseg_font=false" "-Denable_ffmpeg=true")
+        "-Dinstall_dseg_font=false" "-Denable_ffmpeg=true"
+        "-Denable_rtmidi=true" "-Denable_sdl=true")
       #:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'patch-xdg-open
@@ -5194,18 +5195,19 @@ and as an LV2 plugin.")
       ("gettext" ,gettext-minimal)
       ("glibc" ,glibc)
       ("gtk+" ,gtk+)
+      ("libaudec" ,libaudec)
       ("libcyaml" ,libcyaml)
       ("libsamplerate" ,libsamplerate)
       ("libsndfile" ,libsndfile)
       ("libyaml" ,libyaml)
       ("lilv" ,lilv)
-      ("xdg-utils" ,xdg-utils)
-      ("rubberband" ,rubberband)))
+      ("rubberband" ,rubberband)
+      ("rtmidi" ,rtmidi)
+      ("sdl2" ,sdl2)
+      ("xdg-utils" ,xdg-utils)))
    (native-inputs
      `(("pkg-config" ,pkg-config)
        ("help2man" ,help2man)
-       ("libaudec" ,libaudec)
-       ("lv2" ,lv2)
        ("glib" ,glib "bin"))) ;for 'glib-compile-resources'
    (synopsis "Digital audio workstation focusing on usability")
    (description "Zrythm is a digital audio workstation designed to be
-- 
2.25.1


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* [bug#40174] [PATCH] gnu: zrythm: update to 0.8.156.
  2020-03-21 20:01 [bug#40174] [PATCH] gnu: zrythm: update to 0.8.156 Alexandros Theodotou
@ 2020-03-23 20:05 ` Mathieu Othacehe
  2020-04-04 21:48 ` Alexandros Theodotou
  1 sibling, 0 replies; 4+ messages in thread
From: Mathieu Othacehe @ 2020-03-23 20:05 UTC (permalink / raw)
  To: 40174


Hello Alexandros,

Could you separate the update part from the rest and propose two
different patches?

Thanks,

Mathieu

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

* [bug#40174] [PATCH] gnu: zrythm: update to 0.8.156.
  2020-03-21 20:01 [bug#40174] [PATCH] gnu: zrythm: update to 0.8.156 Alexandros Theodotou
  2020-03-23 20:05 ` Mathieu Othacehe
@ 2020-04-04 21:48 ` Alexandros Theodotou
  2020-04-05  8:38   ` bug#40174: " Mathieu Othacehe
  1 sibling, 1 reply; 4+ messages in thread
From: Alexandros Theodotou @ 2020-04-04 21:48 UTC (permalink / raw)
  To: 40174; +Cc: Mathieu Othacehe


[-- Attachment #1.1: Type: text/plain, Size: 412 bytes --]

> Hello Alexandros,
> 
> Could you separate the update part from the rest and propose two
> different patches?
> 
> Thanks,
> 
> Mathieu

Hi Mathieu,

I updated it to 0.8.200. The only change I made in this patch besides
the version is the mandatory guile dependency. This can't be split.

I will send the rest of the changes in another ticket when the next
version is released.

Thanks,
Alex

[-- Attachment #1.2: 0001-gnu-zrythm-Update-to-0.8.200.patch --]
[-- Type: text/x-patch, Size: 1333 bytes --]

From 312ca1d579684c5a9ae327179c5337961f6e4bfd Mon Sep 17 00:00:00 2001
From: Alexandros Theodotou <alex@zrythm.org>
Date: Sat, 4 Apr 2020 22:42:57 +0100
Subject: [PATCH] gnu: zrythm: Update to 0.8.200.

* gnu/packages/music.scm (zrythm): Update to 0.8.200.
---
 gnu/packages/music.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 7d0cfe8665..4ae51c48cd 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5161,7 +5161,7 @@ and as an LV2 plugin.")
 (define-public zrythm
   (package
     (name "zrythm")
-    (version "0.7.573")
+    (version "0.8.200")
     (source
       (origin
         (method url-fetch)
@@ -5169,7 +5169,7 @@ and as an LV2 plugin.")
                             version ".tar.xz"))
         (sha256
           (base32
-            "075gq478xbzz5ql4fsrgfzhgxi7z26k6034lhlkmm0klfcb8j9mg"))))
+            "13ivxbrd44qnhyh46dcr94dvqxg8cn4bbd8xm77ljw0p9b4ks4zs"))))
    (build-system meson-build-system)
    (arguments
     `(#:glib-or-gtk? #t
@@ -5194,6 +5194,7 @@ and as an LV2 plugin.")
       ("gettext" ,gettext-minimal)
       ("glibc" ,glibc)
       ("gtk+" ,gtk+)
+      ("guile" ,guile-2.2)
       ("libcyaml" ,libcyaml)
       ("libsamplerate" ,libsamplerate)
       ("libsndfile" ,libsndfile)
-- 
2.26.0


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* bug#40174: [PATCH] gnu: zrythm: update to 0.8.156.
  2020-04-04 21:48 ` Alexandros Theodotou
@ 2020-04-05  8:38   ` Mathieu Othacehe
  0 siblings, 0 replies; 4+ messages in thread
From: Mathieu Othacehe @ 2020-04-05  8:38 UTC (permalink / raw)
  To: Alexandros Theodotou; +Cc: 40174-done


Hello,

> I updated it to 0.8.200. The only change I made in this patch besides
> the version is the mandatory guile dependency. This can't be split.
>
> I will send the rest of the changes in another ticket when the next
> version is released.

Ok, pushed with a sligtly edited commit message.

Thanks,

Mathieu

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

end of thread, other threads:[~2020-04-05  8:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-21 20:01 [bug#40174] [PATCH] gnu: zrythm: update to 0.8.156 Alexandros Theodotou
2020-03-23 20:05 ` Mathieu Othacehe
2020-04-04 21:48 ` Alexandros Theodotou
2020-04-05  8:38   ` bug#40174: " Mathieu Othacehe

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).