guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#48051] [PATCH 1/3] gnu: muse-sequencer: Update to 4.0.0.


From: Vinicius Monego
Subject: [bug#48051] [PATCH 1/3] gnu: muse-sequencer: Update to 4.0.0.
Date: Mon, 26 Apr 2021 23:50:31 +0000

* gnu/packages/music.scm (muse-sequencer): Update to 4.0.0.
---
There will be warnings in validate-runpath about bogus entries (they have been 
there before in version 3 too). They can be ignored for now because the 
executable won't launch without setting rpath like this. I don't know how to 
fix those warnings.

 gnu/packages/music.scm | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 2b5f43cb14..6c98c8c0fc 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -4715,19 +4715,16 @@ sample library.")
 (define-public muse-sequencer
   (package
     (name "muse-sequencer")
-    (version "3.1.1")
+    (version "4.0.0")
     (source (origin
               (method git-fetch)
               (uri (git-reference
                     (url "https://github.com/muse-sequencer/muse";)
-                    (commit (string-append "muse_"
-                                           (string-map (lambda (c)
-                                                         (if (char=? c #\.)
-                                                             #\_ c)) 
version)))))
+                    (commit version)))
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1rasp2v1ds2aw296lbf27rzw0l9fjl0cvbvw85d5ycvh6wkm301p"))))
+                "1gamr9ln10l26wwyin1a4grrqy6h05qzcgp28wsp85yczkpsh02c"))))
     (build-system cmake-build-system)
     (arguments
      `(#:tests? #f ; there is no test target
@@ -4745,7 +4742,7 @@ sample library.")
        #:phases
        (modify-phases %standard-phases
          (add-after 'unpack 'chdir
-           (lambda _ (chdir "muse3") #t))
+           (lambda _ (chdir "src") #t))
          (add-after 'chdir 'fix-include
            (lambda _
              (substitute* "muse/driver/rtaudio.h"
-- 
2.31.1






reply via email to

[Prev in Thread] Current Thread [Next in Thread]