unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#64103] [PATCH 0/2] gnu: zrythm: Enable rtaudio.
@ 2023-06-16  7:07 Sughosha via Guix-patches via
  2023-06-16  7:10 ` [bug#64103] [PATCH 1/2] gnu: rtaudio: Update to 5.2.0 Sughosha via Guix-patches via
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Sughosha via Guix-patches via @ 2023-06-16  7:07 UTC (permalink / raw)
  To: 64103

Sughosha (2):
  [1/2] gnu: rtaudio: Update to 5.2.0.
  [2/2] gnu: zrythm: Enable rtaudio.

 gnu/packages/audio.scm | 16 ++--------------
 gnu/packages/music.scm | 2 ++
 2 files changed, 4 insertions(+), 14 deletions(-)


base-commit: 34d973018608cce1532a7832b540333a50fe59f6




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

* [bug#64103] [PATCH 1/2] gnu: rtaudio: Update to 5.2.0.
  2023-06-16  7:07 [bug#64103] [PATCH 0/2] gnu: zrythm: Enable rtaudio Sughosha via Guix-patches via
@ 2023-06-16  7:10 ` Sughosha via Guix-patches via
  2023-06-16  7:11 ` [bug#64103] [PATCH 2/2] gnu: zrythm: Enable rtaudio Sughosha via Guix-patches via
  2023-09-06  4:42 ` bug#64103: [PATCH 0/2] " Maxim Cournoyer
  2 siblings, 0 replies; 4+ messages in thread
From: Sughosha via Guix-patches via @ 2023-06-16  7:10 UTC (permalink / raw)
  To: 64103@debbugs.gnu.org

* gnu/packages/audio.scm (rtaudio): Update to 5.2.0.
[#:phases]: Delete argument.
---
 gnu/packages/audio.scm | 16 ++--------------
 1 file changed, 2 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 58a981b..46f8a86 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -2809,29 +2809,17 @@ (define-public liblo
 (define-public rtaudio
   (package
     (name "rtaudio")
-    (version "5.1.0")
+    (version "5.2.0")
     (source
      (origin
        (method git-fetch)
        (uri (git-reference
              (url "https://github.com/thestk/rtaudio")
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "156c2dgh6jrsyfn1y89nslvaxm4yifmxridsb708yvkaym02w2l8"))))
+        (base32 "189xphhf0winf8b60dx1kk2biz811wk6ps44br7l1lyfhymxcjmi"))))
     (build-system cmake-build-system)
-    (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         ;; The header that pkg-config expects is include/rtaudio/RtAudio.h,
-         ;; but this package installs it as include/RtAudio.h by default.
-         (add-after 'install 'fix-inc-path
-           (lambda* (#:key outputs #:allow-other-keys)
-             (let* ((out (assoc-ref outputs "out"))
-                    (inc (string-append out "/include")))
-               (mkdir-p (string-append inc "/rtaudio"))
-               (rename-file (string-append inc "/RtAudio.h")
-                            (string-append inc "/rtaudio/RtAudio.h"))))))))
     (native-inputs
      (list pkg-config))
     (inputs
--
libgit2 1.5.1





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

* [bug#64103] [PATCH 2/2] gnu: zrythm: Enable rtaudio.
  2023-06-16  7:07 [bug#64103] [PATCH 0/2] gnu: zrythm: Enable rtaudio Sughosha via Guix-patches via
  2023-06-16  7:10 ` [bug#64103] [PATCH 1/2] gnu: rtaudio: Update to 5.2.0 Sughosha via Guix-patches via
@ 2023-06-16  7:11 ` Sughosha via Guix-patches via
  2023-09-06  4:42 ` bug#64103: [PATCH 0/2] " Maxim Cournoyer
  2 siblings, 0 replies; 4+ messages in thread
From: Sughosha via Guix-patches via @ 2023-06-16  7:11 UTC (permalink / raw)
  To: 64103@debbugs.gnu.org

* gnu/packages/music.scm (zrythm)[#:configure-flags]: Add
"-Drtaudio=enabled".
[inputs]: Add rtaudio.
---
 gnu/packages/music.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 2e7edda..cae0a3e 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -6509,6 +6509,7 @@ (define-public zrythm
                    "-Dgraphviz=enabled" ;for exporting routing graphs
                    "-Dguile=enabled"    ;for Guile scripting
                    "-Djack=enabled"     ;for JACK audio/MIDI backend
+                   "-Drtaudio=enabled"  ;for RtAudio backend (ALSA)
                    "-Drtmidi=enabled"   ;for RtMidi backend (ALSA sequencer)
                    "-Dsdl=enabled")     ;for SDL audio backend (which uses ALSA)
            #:phases
@@ -6590,6 +6591,7 @@ (define-public zrythm
            pipewire
            pulseaudio
            reproc
+           rtaudio
            rtmidi
            rubberband
            sdl2
--
libgit2 1.5.1





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

* bug#64103: [PATCH 0/2] gnu: zrythm: Enable rtaudio.
  2023-06-16  7:07 [bug#64103] [PATCH 0/2] gnu: zrythm: Enable rtaudio Sughosha via Guix-patches via
  2023-06-16  7:10 ` [bug#64103] [PATCH 1/2] gnu: rtaudio: Update to 5.2.0 Sughosha via Guix-patches via
  2023-06-16  7:11 ` [bug#64103] [PATCH 2/2] gnu: zrythm: Enable rtaudio Sughosha via Guix-patches via
@ 2023-09-06  4:42 ` Maxim Cournoyer
  2 siblings, 0 replies; 4+ messages in thread
From: Maxim Cournoyer @ 2023-09-06  4:42 UTC (permalink / raw)
  To: Sughosha; +Cc: 64103-done

Hello,

Sughosha <Sughosha@proton.me> writes:

> Sughosha (2):
>   [1/2] gnu: rtaudio: Update to 5.2.0.
>   [2/2] gnu: zrythm: Enable rtaudio.

Series installed.

-- 
Thanks,
Maxim




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

end of thread, other threads:[~2023-09-06  4:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-16  7:07 [bug#64103] [PATCH 0/2] gnu: zrythm: Enable rtaudio Sughosha via Guix-patches via
2023-06-16  7:10 ` [bug#64103] [PATCH 1/2] gnu: rtaudio: Update to 5.2.0 Sughosha via Guix-patches via
2023-06-16  7:11 ` [bug#64103] [PATCH 2/2] gnu: zrythm: Enable rtaudio Sughosha via Guix-patches via
2023-09-06  4:42 ` bug#64103: [PATCH 0/2] " Maxim Cournoyer

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