all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Maya Tomasek via Guix-patches via <guix-patches@gnu.org>
To: 61424@debbugs.gnu.org
Cc: Antero Mejr <antero@mailbox.org>
Subject: [bug#61424] [PATCH 1/6] gnu: zrythm: Update to 1.0.0-beta.4.5.1.
Date: Sat, 11 Feb 2023 11:35:32 +0100	[thread overview]
Message-ID: <20230211103537.24139-2-maya.tomasek@disroot.org> (raw)
In-Reply-To: <20230211103537.24139-1-maya.tomasek@disroot.org>

From: Antero Mejr <antero@mailbox.org>

* gnu/packages/music.scm (zrythm): Update to 1.0.0-beta.4.5.1.
---
 gnu/packages/music.scm | 112 ++++++++++++++++++++++++++---------------
 1 file changed, 72 insertions(+), 40 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index e99bee9cc7..0d1386b274 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -112,6 +112,7 @@ (define-module (gnu packages music)
   #:use-module (gnu packages curl)
   #:use-module (gnu packages cyrus-sasl)
   #:use-module (gnu packages datastructures)
+  #:use-module (gnu packages digest)
   #:use-module (gnu packages docbook)
   #:use-module (gnu packages documentation)
   #:use-module (gnu packages emacs)
@@ -140,6 +141,7 @@ (define-module (gnu packages music)
   #:use-module (gnu packages image)
   #:use-module (gnu packages imagemagick)
   #:use-module (gnu packages java)
+  #:use-module (gnu packages kde-frameworks)
   #:use-module (gnu packages libffi)
   #:use-module (gnu packages libevent)
   #:use-module (gnu packages libusb)
@@ -6351,7 +6353,7 @@ (define-public zrythm
     ;; distros to make necessary changes to integrate the software into the
     ;; distribution.
     (name "zrythm")
-    (version "1.0.0-alpha.12.0.1")
+    (version "1.0.0-beta.4.5.1")
     (source
       (origin
         (method url-fetch)
@@ -6359,48 +6361,78 @@ (define-public zrythm
                             version ".tar.xz"))
         (sha256
           (base32
-           "1si4n8rdg0a3frlbj6yqpyzr4f20v3cpl4m6kv0yf7r25psyl5pk"))))
+           "03p958xir2p1pzhiqbqq8sax8zaw4b7ww64ymxcvznjrcj4clrpm"))))
    (build-system meson-build-system)
    (arguments
-    `(#:glib-or-gtk? #t
-      #:configure-flags
-      `("-Dtests=true"
-        "-Dmanpage=true"
-        "-Ddseg_font=false"
-        "-Dgraphviz=enabled" ; for exporting routing graphs
-        "-Dguile=enabled" ; for Guile scripting
-        "-Djack=enabled" ; for JACK audio/MIDI backend
-        "-Drtmidi=enabled" ; for RtMidi backend (ALSA sequencer)
-        "-Dsdl=enabled"))) ; for SDL audio backend (which uses ALSA)
-   (inputs
-    `(("alsa-lib" ,alsa-lib)
-      ("jack" ,jack-1)
-      ("font-dseg" ,font-dseg)
-      ("fftw" ,fftw)
-      ("fftwf" ,fftwf)
-      ("gettext" ,gettext-minimal)
-      ("glibc" ,glibc)
-      ("graphviz" ,graphviz)
-      ("gtk+" ,gtk+)
-      ("gtksourceview" ,gtksourceview)
-      ("guile" ,guile-2.2)
-      ("libaudec" ,libaudec)
-      ("libcyaml" ,libcyaml)
-      ("libsamplerate" ,libsamplerate)
-      ("libsndfile" ,libsndfile)
-      ("libyaml" ,libyaml)
-      ("lilv" ,lilv)
-      ("lv2" ,lv2)
-      ("pulseaudio" ,pulseaudio)
-      ("reproc" ,reproc)
-      ("rubberband" ,rubberband)
-      ("rtmidi" ,rtmidi-4.0)
-      ("sdl2" ,sdl2)
-      ("xdg-utils" ,xdg-utils)
-      ("zstd" ,zstd "lib")))
+    (list #:tests? #f ;123 pass, 3 fail. Appears network-related.
+          #:glib-or-gtk? #t
+          #:configure-flags
+          #~(list "-Dtests=true"
+                  "-Dmanpage=false" ; fish-completions breaks this
+                  "-Ddseg_font=false"
+                  "-Dgraphviz=enabled" ; for exporting routing graphs
+                  "-Dguile=enabled" ; for Guile scripting
+                  "-Djack=enabled" ; for JACK audio/MIDI backend
+                  "-Drtmidi=enabled" ; for RtMidi backend (ALSA sequencer)
+                  "-Dsdl=enabled") ; for SDL audio backend (which uses ALSA)
+          #:phases #~(modify-phases %standard-phases
+                       (add-after 'unpack 'adjust-build
+                         (lambda _
+                           (setenv "GUILE_AUTO_COMPILE" "0")))
+                       (add-after 'install 'wrap-program
+                         (lambda _
+                           (wrap-program (string-append #$output "/bin/zrythm")
+                             `("GDK_PIXBUF_MODULE_FILE" =
+                               (,(getenv "GDK_PIXBUF_MODULE_FILE")))))))))
+   (propagated-inputs (list breeze-icons
+                            gdk-pixbuf
+                            librsvg)) ;needed for pixbuf SVG loading
+   (inputs (list alsa-lib
+                 boost
+                 carla
+                 curl
+                 fftw
+                 fftwf
+                 flex
+                 font-dseg
+                 gettext-minimal
+                 glib-next
+                 glibc
+                 graphviz
+                 gtk
+                 gtksourceview
+                 guile-2.2
+                 jack-2
+                 json-glib
+                 libadwaita
+                 libaudec
+                 (module-ref
+                  (resolve-interface '(gnu packages debug)) 'libbacktrace)
+                 libcyaml
+                 libpanel
+                 libsamplerate
+                 libsndfile
+                 libyaml
+                 lilv
+                 lv2
+                 pango-next
+                 pulseaudio
+                 reproc
+                 rtmidi
+                 rubberband
+                 sdl2
+                 vamp
+                 xdg-utils
+                 xxhash
+                 zix
+                 `(,zstd "lib")))
    (native-inputs
-     (list pkg-config help2man
-           `(,glib "bin"))) ; for 'glib-compile-resources'
+    (list help2man
+          `(,glib-next "bin") ; for 'glib-compile-resources'
+          pkg-config
+          python-sphinx
+          python-sphinx-intl
+          sassc))
    (synopsis "Digital audio workstation focusing on usability")
    (description "Zrythm is a digital audio workstation designed to be
 featureful and easy to use.  It offers unlimited automation options, LV2
-- 
2.39.1





  reply	other threads:[~2023-02-11 10:37 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-11 10:35 [bug#61423] [PATCH 0/6] gnu: zrythm: Update to 1.0.0-beta.4.5.62 Maya Tomasek via Guix-patches via
2023-02-11 10:35 ` Maya Tomasek via Guix-patches via [this message]
2023-02-11 10:48   ` bug#61424: Closing this as this was a misstake guix-patches--- via
2023-02-11 10:35 ` [bug#61427] [PATCH 2/6] gnu: Add libpanel Maya Tomasek via Guix-patches via
2023-02-11 10:50   ` bug#61427: Closing this as this was a mistake guix-patches--- via
2023-02-11 10:35 ` [bug#61426] [PATCH 3/6] gnu: Add zix Maya Tomasek via Guix-patches via
2023-02-11 10:51   ` bug#61426: Closing this as this was a mistake guix-patches--- via
2023-02-11 10:35 ` [bug#61425] [PATCH 4/6] gnu: carla: Update to 2.6.0 pre-release Maya Tomasek via Guix-patches via
2023-02-11 10:51   ` bug#61425: Closing this as this was a mistake guix-patches--- via
2023-02-11 10:35 ` [bug#61428] [PATCH 5/6] gnu: libaudec: Update to 0.3.4 Maya Tomasek via Guix-patches via
2023-02-11 10:52   ` bug#61428: guix-patches--- via
2023-02-11 10:35 ` [bug#61429] [PATCH 6/6] gnu: zrythm: Update to 1.0.0-beta.4.5.62 Maya Tomasek via Guix-patches via
2023-02-11 10:56   ` bug#61429: Closing this as this was a mistake guix-patches--- via
2023-02-11 11:00 ` [bug#61423] [PATCH 1/6] gnu: zrythm: Update to 1.0.0-beta.4.5.1 Maya Tomasek via Guix-patches via
2023-02-11 11:00   ` [bug#61423] [PATCH 2/6] gnu: Add libpanel Maya Tomasek via Guix-patches via
2023-02-11 11:00   ` [bug#61423] [PATCH 3/6] gnu: Add zix Maya Tomasek via Guix-patches via
2023-02-11 11:00   ` [bug#61423] [PATCH 4/6] gnu: carla: Update to 2.6.0 pre-release Maya Tomasek via Guix-patches via
2023-02-11 11:00   ` [bug#61423] [PATCH 5/6] gnu: libaudec: Update to 0.3.4 Maya Tomasek via Guix-patches via
2023-02-11 11:00   ` [bug#61423] [PATCH 6/6] gnu: zrythm: Update to 1.0.0-beta.4.5.62 Maya Tomasek via Guix-patches via
2023-02-24 23:11 ` [bug#61423] [PATCH 0/6] " Alexandros Theodotou
2023-02-27 14:44   ` Ludovic Courtès
2023-02-28 18:38     ` guix-patches--- via
2023-03-03 10:54       ` Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230211103537.24139-2-maya.tomasek@disroot.org \
    --to=guix-patches@gnu.org \
    --cc=61424@debbugs.gnu.org \
    --cc=antero@mailbox.org \
    --cc=maya.tomasek@disroot.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.