GNU bug report logs - #60783
[PATCH 0/3] Fix mamba build.

Previous Next

Package: guix-patches;

Reported by: Daniel Meißner <daniel.meissner-i4k <at> rub.de>

Date: Fri, 13 Jan 2023 14:10:02 UTC

Severity: normal

Tags: patch

Done: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>

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 60783 in the body.
You can then email your comments to 60783 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#60783; Package guix-patches. (Fri, 13 Jan 2023 14:10:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Daniel Meißner <daniel.meissner-i4k <at> rub.de>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 13 Jan 2023 14:10:02 GMT) Full text and rfc822 format available.

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

From: Daniel Meißner <daniel.meissner-i4k <at> rub.de>
To: guix-patches <at> gnu.org
Cc: Daniel Meißner <daniel.meissner-i4k <at> rub.de>
Subject: [PATCH 0/3] Fix mamba build.
Date: Fri, 13 Jan 2023 14:10:18 +0100
Hi Guix,

this patch series fixes the mamba build by using the correct libsigc++ version
and updating mamba to version 2.3.  On occasion I also changed the arguments
to use G-expressions.

Thanks,
Daniel

Daniel Meißner (3):
  gnu: mamba: Use correct version of libsigc++.
  gnu: mamba: Update to 2.3.
  gnu: mamba: Use G-expressions.

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


base-commit: 9ad5c3deeaebfb6f953579992a082d8327730611
-- 
2.38.1





Information forwarded to guix-patches <at> gnu.org:
bug#60783; Package guix-patches. (Fri, 13 Jan 2023 23:40:04 GMT) Full text and rfc822 format available.

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

From: Daniel Meißner <daniel.meissner-i4k <at> rub.de>
To: 60783 <at> debbugs.gnu.org
Cc: Daniel Meißner <daniel.meissner-i4k <at> rub.de>
Subject: [PATCH 1/3] gnu: mamba: Use correct version of libsigc++.
Date: Fri, 13 Jan 2023 22:44:40 +0100
* gnu/packages/music.scm (mamba)[inputs]: Use libsigc++ version 2 instead of
version 3.
---
 gnu/packages/music.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index f83e25d9e8..e433cc61e8 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -6098,7 +6098,7 @@ (define-public mamba
           fluidsynth
           jack-1
           liblo
-          libsigc++
+          libsigc++-2
           libsmf
           libx11))
    (native-inputs
-- 
2.38.1





Information forwarded to guix-patches <at> gnu.org:
bug#60783; Package guix-patches. (Fri, 13 Jan 2023 23:40:05 GMT) Full text and rfc822 format available.

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

From: Daniel Meißner <daniel.meissner-i4k <at> rub.de>
To: 60783 <at> debbugs.gnu.org
Cc: Daniel Meißner <daniel.meissner-i4k <at> rub.de>
Subject: [PATCH 2/3] gnu: mamba: Update to 2.3.
Date: Fri, 13 Jan 2023 22:44:41 +0100
* gnu/packages/music.scm (mamba): Update to 2.3.
---
 gnu/packages/music.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index e433cc61e8..811da51955 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -6069,7 +6069,7 @@ (define-public geonkick
 (define-public mamba
   (package
    (name "mamba")
-   (version "2.1")
+   (version "2.3")
    (source
     (origin
       (method git-fetch)
@@ -6081,7 +6081,7 @@ (define-public mamba
       (file-name (git-file-name name version))
       (sha256
        (base32
-        "1bq6sqsij3cdwcsj3wpsnivi4c7jl4l5gwfywhqnib70v60smdja"))))
+        "12w85i86jbnihd7w81vhvg8hkn7r32hyk9m1pdh3bd44dcz34gqf"))))
    (build-system gnu-build-system)
    (arguments
     `(#:tests? #f  ; no "check" target
@@ -6102,7 +6102,7 @@ (define-public mamba
           libsmf
           libx11))
    (native-inputs
-    (list pkg-config))
+    (list pkg-config xxd))
    (home-page "https://github.com/brummer10/Mamba")
    (synopsis "Virtual MIDI keyboard and MIDI file player/recorder for JACK")
    (description "Mamba is a virtual MIDI keyboard and MIDI file
-- 
2.38.1





Information forwarded to guix-patches <at> gnu.org:
bug#60783; Package guix-patches. (Fri, 13 Jan 2023 23:40:05 GMT) Full text and rfc822 format available.

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

From: Daniel Meißner <daniel.meissner-i4k <at> rub.de>
To: 60783 <at> debbugs.gnu.org
Cc: Daniel Meißner <daniel.meissner-i4k <at> rub.de>
Subject: [PATCH 3/3] gnu: mamba: Use G-expressions.
Date: Fri, 13 Jan 2023 22:44:42 +0100
* gnu/packages/music.scm (mamba)[arguments]: Use G-expressions.
---
 gnu/packages/music.scm | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 811da51955..aeb86a4799 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -6084,14 +6084,13 @@ (define-public mamba
         "12w85i86jbnihd7w81vhvg8hkn7r32hyk9m1pdh3bd44dcz34gqf"))))
    (build-system gnu-build-system)
    (arguments
-    `(#:tests? #f  ; no "check" target
-      #:make-flags
-      (list (string-append "PREFIX="
-                           (assoc-ref %outputs "out"))
-            (string-append "CC=" ,(cc-for-target)))
-      #:phases
-      (modify-phases %standard-phases
-        (delete 'configure))))
+    (list #:tests? #f  ; no "check" target
+          #:make-flags
+          #~(list (string-append "PREFIX=" #$output)
+                  (string-append "CC=" #$(cc-for-target)))
+          #:phases
+          #~(modify-phases %standard-phases
+              (delete 'configure))))
    (inputs
     (list alsa-lib
           cairo
-- 
2.38.1





Reply sent to Maxim Cournoyer <maxim.cournoyer <at> gmail.com>:
You have taken responsibility. (Mon, 16 Jan 2023 17:52:02 GMT) Full text and rfc822 format available.

Notification sent to Daniel Meißner <daniel.meissner-i4k <at> rub.de>:
bug acknowledged by developer. (Mon, 16 Jan 2023 17:52:02 GMT) Full text and rfc822 format available.

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

From: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
To: Daniel Meißner <daniel.meissner-i4k <at> rub.de>
Cc: 60783-done <at> debbugs.gnu.org
Subject: Re: bug#60783: [PATCH 0/3] Fix mamba build.
Date: Mon, 16 Jan 2023 12:51:09 -0500
Hello!

Daniel Meißner <daniel.meissner-i4k <at> rub.de> writes:

> Hi Guix,
>
> this patch series fixes the mamba build by using the correct libsigc++ version
> and updating mamba to version 2.3.  On occasion I also changed the arguments
> to use G-expressions.
>
> Thanks,
> Daniel
>
> Daniel Meißner (3):
>   gnu: mamba: Use correct version of libsigc++.
>   gnu: mamba: Update to 2.3.
>   gnu: mamba: Use G-expressions.

Thanks a lot!  Applied.

-- 
Thanks,
Maxim




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 14 Feb 2023 12:24:13 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year 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.