GNU bug report logs - #42997
[PATCH 1/2] gnu: muse-sequencer: Update to 3.1.1.

Previous Next

Package: guix-patches;

Reported by: Vinicius Monego <monego <at> posteo.net>

Date: Sun, 23 Aug 2020 15:17:02 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 42997 in the body.
You can then email your comments to 42997 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#42997; Package guix-patches. (Sun, 23 Aug 2020 15:17:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Vinicius Monego <monego <at> posteo.net>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 23 Aug 2020 15:17:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Vinicius Monego <monego <at> posteo.net>
To: guix-patches <at> gnu.org
Cc: Vinicius Monego <monego <at> posteo.net>
Subject: [PATCH 1/2] gnu: muse-sequencer: Update to 3.1.1.
Date: Sun, 23 Aug 2020 12:15:51 -0300
* gnu/packages/music.scm (muse-sequencer): Update to 3.1.1.
[arguments]: Set CMAKE_BUILD_TYPE to Release. Add stage to set LDFLAGS.
Add stage to wrap executable.
[inputs]: Sort alphabetically.
---
This package is broken in the CI. I had to update the version to fix.

There are still some rough edges, but it builds and is somewhat usable.
 gnu/packages/music.scm | 44 +++++++++++++++++++++++++++++-------------
 1 file changed, 31 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index ae8579cb47..7cc6d7b1ea 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -29,6 +29,7 @@
 ;;; Copyright © 2020 Lars-Dominik Braun <lars <at> 6xq.net>
 ;;; Copyright © 2020 Giacomo Leidi <goodoldpaul <at> autistici.org>
 ;;; Copyright © 2020 Michael Rohleder <mike <at> rohleder.de>
+;;; Copyright © 2020 Vinicius Monego <monego <at> posteo.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -4127,7 +4128,7 @@ sample library.")
 (define-public muse-sequencer
   (package
     (name "muse-sequencer")
-    (version "3.0.0")
+    (version "3.1.1")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -4139,7 +4140,7 @@ sample library.")
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1nninz8qyqlxxjdnrm79y3gr3056pga9l2fsqh674jd3cjvafya3"))))
+                "1rasp2v1ds2aw296lbf27rzw0l9fjl0cvbvw85d5ycvh6wkm301p"))))
     (build-system cmake-build-system)
     (arguments
      `(#:tests? #f ; there is no test target
@@ -4147,27 +4148,44 @@ sample library.")
        (list "-DENABLE_LV2_SUPPLIED=OFF"
              "-DENABLE_RTAUDIO=OFF"    ; FIXME: not packaged
              "-DENABLE_INSTPATCH=OFF"  ; FIXME: not packaged
-             "-DENABLE_VST_NATIVE=OFF")
+             "-DENABLE_VST_NATIVE=OFF"
+             "-DCMAKE_BUILD_TYPE=Release")
        #:phases
        (modify-phases %standard-phases
          (add-after 'unpack 'chdir
-           (lambda _ (chdir "muse3"))))))
+           (lambda _ (chdir "muse3")))
+         ;; Fix validate-runpath stage.
+         (add-before 'configure 'set-LDFLAGS
+           (lambda* (#:key inputs outputs #:allow-other-keys)
+             (setenv "LDFLAGS"
+                     (string-append
+                      "-Wl,-rpath=" (assoc-ref outputs "out")
+                      "/lib/muse-3.1/modules"))))
+         ;; Ensure that icons are found at runtime.
+         (add-after 'install 'wrap-executable
+           (lambda* (#:key inputs outputs #:allow-other-keys)
+             (let ((out (assoc-ref outputs "out")))
+               (wrap-program (string-append out "/bin/muse3")
+                 `("QT_PLUGIN_PATH" prefix
+                   ,(list (string-append (assoc-ref inputs "qtsvg")
+                                         "/lib/qt5/plugins/"))))))))))
     (inputs
      `(("alsa-lib" ,alsa-lib)
-       ("lash" ,lash)
-       ("jack" ,jack-1)
-       ("liblo" ,liblo)
        ("dssi" ,dssi)
+       ("fluidsynth" ,fluidsynth)
+       ("jack" ,jack-1)
        ("ladspa" ,ladspa)
-       ("lv2" ,lv2)
-       ("lilv" ,lilv)
-       ("sord" ,sord)
-       ("libsndfile" ,libsndfile)
+       ("lash" ,lash)
+       ("liblo" ,liblo)
        ("libsamplerate" ,libsamplerate)
-       ("fluidsynth" ,fluidsynth)
+       ("libsndfile" ,libsndfile)
+       ("lilv" ,lilv)
+       ("lv2" ,lv2)
        ("pcre" ,pcre)
+       ("pulseaudio" ,pulseaudio)
        ("qtbase" ,qtbase)
-       ("qtsvg" ,qtsvg)))
+       ("qtsvg" ,qtsvg)
+       ("sord" ,sord)))
     (native-inputs
      `(("pkg-config" ,pkg-config)
        ("qttools" ,qttools)))
-- 
2.20.1





Information forwarded to guix-patches <at> gnu.org:
bug#42997; Package guix-patches. (Sun, 23 Aug 2020 15:19:01 GMT) Full text and rfc822 format available.

Message #8 received at 42997 <at> debbugs.gnu.org (full text, mbox):

From: Vinicius Monego <monego <at> posteo.net>
To: 42997 <at> debbugs.gnu.org
Cc: Vinicius Monego <monego <at> posteo.net>
Subject: [PATCH 2/2] gnu: muse-sequencer: Add dependencies.
Date: Sun, 23 Aug 2020 12:17:45 -0300
* gnu/packages/music.scm (muse-sequencer): Add dependencies.
[arguments]: Fix RtAudio include path.
[inputs]: Add glib, libinstpatch, lrdf, python, python-pyro4, rtaudio, rubberband.
---
 gnu/packages/music.scm | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 7cc6d7b1ea..31aaa130e8 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -4146,14 +4146,17 @@ sample library.")
      `(#:tests? #f ; there is no test target
        #:configure-flags
        (list "-DENABLE_LV2_SUPPLIED=OFF"
-             "-DENABLE_RTAUDIO=OFF"    ; FIXME: not packaged
-             "-DENABLE_INSTPATCH=OFF"  ; FIXME: not packaged
              "-DENABLE_VST_NATIVE=OFF"
              "-DCMAKE_BUILD_TYPE=Release")
        #:phases
        (modify-phases %standard-phases
          (add-after 'unpack 'chdir
            (lambda _ (chdir "muse3")))
+         ;; Fix RtAudio include syntax.
+         (add-after 'chdir 'fix-rtaudio
+           (lambda _
+             (substitute* "muse/driver/rtaudio.h"
+               (("rtaudio/RtAudio.h") "RtAudio.h"))))
          ;; Fix validate-runpath stage.
          (add-before 'configure 'set-LDFLAGS
            (lambda* (#:key inputs outputs #:allow-other-keys)
@@ -4173,18 +4176,25 @@ sample library.")
      `(("alsa-lib" ,alsa-lib)
        ("dssi" ,dssi)
        ("fluidsynth" ,fluidsynth)
+       ("glib" ,glib)
        ("jack" ,jack-1)
        ("ladspa" ,ladspa)
        ("lash" ,lash)
+       ("libinstpatch" ,libinstpatch)
        ("liblo" ,liblo)
        ("libsamplerate" ,libsamplerate)
        ("libsndfile" ,libsndfile)
        ("lilv" ,lilv)
+       ("lrdf" ,lrdf)
        ("lv2" ,lv2)
        ("pcre" ,pcre)
        ("pulseaudio" ,pulseaudio)
+       ("python" ,python)
+       ("python-pyro4" ,python-pyro4)
        ("qtbase" ,qtbase)
        ("qtsvg" ,qtsvg)
+       ("rtaudio" ,rtaudio)
+       ("rubberband" ,rubberband)
        ("sord" ,sord)))
     (native-inputs
      `(("pkg-config" ,pkg-config)
-- 
2.20.1





Information forwarded to guix-patches <at> gnu.org:
bug#42997; Package guix-patches. (Sun, 23 Aug 2020 18:23:02 GMT) Full text and rfc822 format available.

Message #11 received at 42997 <at> debbugs.gnu.org (full text, mbox):

From: Leo Famulari <leo <at> famulari.name>
To: Vinicius Monego <monego <at> posteo.net>
Cc: 42997 <at> debbugs.gnu.org
Subject: Re: [bug#42997] [PATCH 1/2] gnu: muse-sequencer: Update to 3.1.1.
Date: Sun, 23 Aug 2020 14:22:03 -0400
On Sun, Aug 23, 2020 at 12:15:51PM -0300, Vinicius Monego wrote:
> * gnu/packages/music.scm (muse-sequencer): Update to 3.1.1.

Thanks for these patches!

> [arguments]: Set CMAKE_BUILD_TYPE to Release. Add stage to set LDFLAGS.
> Add stage to wrap executable.
> [inputs]: Sort alphabetically.

> +         (add-before 'configure 'set-LDFLAGS
> +           (lambda* (#:key inputs outputs #:allow-other-keys)
> +             (setenv "LDFLAGS"
> +                     (string-append
> +                      "-Wl,-rpath=" (assoc-ref outputs "out")
> +                      "/lib/muse-3.1/modules"))))

Does this phase actually work? While building, I noticed these messages:

------
starting phase `validate-runpath'
validating RUNPATH of 54 binaries in "/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib"...
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/converters/rubberband_converter.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/converters/src_converter.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/converters/zita_resampler_converter.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libaudio_converter_plugin.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_al.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_arranger.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_audio_convert.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_awl.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_cliplist.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_components.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_core.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_ctrl.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_driver.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_evdata_module.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_icons.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_instruments.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_latency_compensator_module.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_liste.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_lv2host_module.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_marker.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_master.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_memory_module.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_midi_controller_module.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_midiedit.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_midnam_module.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_mixer.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_mpevent_module.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_mplugins.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_plugin_cache_reader_module.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_plugin_cache_writer_module.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_plugin_list_module.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_plugin_rdf_module.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_plugin_scan_module.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_remote.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_simpler_plugin.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_simpler_plugingui.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_string.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_synti.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_sysex_helper_module.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_time_stretch_module.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_wave_module.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_waveedit.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_wavepreview_module.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_widgets.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_widgets_functiondialogs.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/modules/libmuse_xml_module.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/plugins/doublechorus.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/plugins/freeverb.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/plugins/pandelay.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/synthi/deicsonze.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/synthi/fluid_synth.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/synthi/organ.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/synthi/simpledrums.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/lib/muse-3.1/synthi/vam.so: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
validating RUNPATH of 3 binaries in "/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/bin"...
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/bin/.muse3-real: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/bin/grepmidi: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")
/gnu/store/47x594yg113xrj8qp55srjvfvgb5qiv1-muse-sequencer-3.1.1/bin/muse_plugin_scan: warning: RUNPATH contains bogus entries: ("lib/muse-3.1/modules")




Information forwarded to guix-patches <at> gnu.org:
bug#42997; Package guix-patches. (Mon, 24 Aug 2020 16:47:01 GMT) Full text and rfc822 format available.

Message #14 received at 42997 <at> debbugs.gnu.org (full text, mbox):

From: Vinicius Monego <monego <at> posteo.net>
To: Leo Famulari <leo <at> famulari.name>
Cc: 42997 <at> debbugs.gnu.org
Subject: Re: [bug#42997] [PATCH 1/2] gnu: muse-sequencer: Update to 3.1.1.
Date: Mon, 24 Aug 2020 13:46:03 -0300
Leo Famulari writes:

>> +         (add-before 'configure 'set-LDFLAGS
>> +           (lambda* (#:key inputs outputs #:allow-other-keys)
>> +             (setenv "LDFLAGS"
>> +                     (string-append
>> +                      "-Wl,-rpath=" (assoc-ref outputs "out")
>> +                      "/lib/muse-3.1/modules"))))
>
> Does this phase actually work?

Without this phase the validate-runpath phase will fail. If
validate-runpath is deleted, the executable will not find the 
shared
libraries (libmuse*) in that folder and will not start. With this 
phase
it finds the libraries and starts, despite the warning.

There are some segfaults and some UI elements are not loading 
(e.g. the
"Add synth" in the right-click menu and the plugin 
configuration). I'm going to
pass the torch to the next contributor. I hope these patches will 
save some work.




Information forwarded to guix-patches <at> gnu.org:
bug#42997; Package guix-patches. (Fri, 18 Dec 2020 13:14:02 GMT) Full text and rfc822 format available.

Message #17 received at 42997 <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Vinicius Monego <monego <at> posteo.net>
Cc: 42997 <at> debbugs.gnu.org
Subject: Re: [bug#42997] [PATCH 1/2] gnu: muse-sequencer: Update to 3.1.1.
Date: Fri, 18 Dec 2020 14:13:04 +0100
Vinicius Monego <monego <at> posteo.net> skribis:

> * gnu/packages/music.scm (muse-sequencer): Update to 3.1.1.
> [arguments]: Set CMAKE_BUILD_TYPE to Release. Add stage to set LDFLAGS.
> Add stage to wrap executable.
> [inputs]: Sort alphabetically.

Hi!  This update happened independently in commit
5525aea7cf1444fe65dd96ce1d413c7f7331d67b.

Ludo’.




Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Fri, 18 Dec 2020 13:15:01 GMT) Full text and rfc822 format available.

Notification sent to Vinicius Monego <monego <at> posteo.net>:
bug acknowledged by developer. (Fri, 18 Dec 2020 13:15:01 GMT) Full text and rfc822 format available.

Message #22 received at 42997-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Vinicius Monego <monego <at> posteo.net>
Cc: 42997-done <at> debbugs.gnu.org
Subject: Re: [bug#42997] [PATCH 2/2] gnu: muse-sequencer: Add dependencies.
Date: Fri, 18 Dec 2020 14:14:10 +0100
Vinicius Monego <monego <at> posteo.net> skribis:

> * gnu/packages/music.scm (muse-sequencer): Add dependencies.
> [arguments]: Fix RtAudio include path.
> [inputs]: Add glib, libinstpatch, lrdf, python, python-pyro4, rtaudio, rubberband.

Done in fb24a4d5b87fa77a42966938df5e9761c0991876.  Closing!

Ludo'.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 16 Jan 2021 12:24:09 GMT) Full text and rfc822 format available.

This bug report was last modified 3 years and 72 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.