* [bug#60783] [PATCH 0/3] Fix mamba build.
@ 2023-01-13 13:10 Daniel Meißner via Guix-patches via
2023-01-13 21:44 ` [bug#60783] [PATCH 1/3] gnu: mamba: Use correct version of libsigc++ Daniel Meißner via Guix-patches via
2023-01-16 17:51 ` bug#60783: [PATCH 0/3] Fix mamba build Maxim Cournoyer
0 siblings, 2 replies; 5+ messages in thread
From: Daniel Meißner via Guix-patches via @ 2023-01-13 13:10 UTC (permalink / raw)
To: 60783; +Cc: Daniel Meißner
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
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#60783] [PATCH 1/3] gnu: mamba: Use correct version of libsigc++.
2023-01-13 13:10 [bug#60783] [PATCH 0/3] Fix mamba build Daniel Meißner via Guix-patches via
@ 2023-01-13 21:44 ` Daniel Meißner via Guix-patches via
2023-01-13 21:44 ` [bug#60783] [PATCH 2/3] gnu: mamba: Update to 2.3 Daniel Meißner via Guix-patches via
2023-01-13 21:44 ` [bug#60783] [PATCH 3/3] gnu: mamba: Use G-expressions Daniel Meißner via Guix-patches via
2023-01-16 17:51 ` bug#60783: [PATCH 0/3] Fix mamba build Maxim Cournoyer
1 sibling, 2 replies; 5+ messages in thread
From: Daniel Meißner via Guix-patches via @ 2023-01-13 21:44 UTC (permalink / raw)
To: 60783; +Cc: Daniel Meißner
* 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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#60783] [PATCH 2/3] gnu: mamba: Update to 2.3.
2023-01-13 21:44 ` [bug#60783] [PATCH 1/3] gnu: mamba: Use correct version of libsigc++ Daniel Meißner via Guix-patches via
@ 2023-01-13 21:44 ` Daniel Meißner via Guix-patches via
2023-01-13 21:44 ` [bug#60783] [PATCH 3/3] gnu: mamba: Use G-expressions Daniel Meißner via Guix-patches via
1 sibling, 0 replies; 5+ messages in thread
From: Daniel Meißner via Guix-patches via @ 2023-01-13 21:44 UTC (permalink / raw)
To: 60783; +Cc: Daniel Meißner
* 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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#60783] [PATCH 3/3] gnu: mamba: Use G-expressions.
2023-01-13 21:44 ` [bug#60783] [PATCH 1/3] gnu: mamba: Use correct version of libsigc++ Daniel Meißner via Guix-patches via
2023-01-13 21:44 ` [bug#60783] [PATCH 2/3] gnu: mamba: Update to 2.3 Daniel Meißner via Guix-patches via
@ 2023-01-13 21:44 ` Daniel Meißner via Guix-patches via
1 sibling, 0 replies; 5+ messages in thread
From: Daniel Meißner via Guix-patches via @ 2023-01-13 21:44 UTC (permalink / raw)
To: 60783; +Cc: Daniel Meißner
* 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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* bug#60783: [PATCH 0/3] Fix mamba build.
2023-01-13 13:10 [bug#60783] [PATCH 0/3] Fix mamba build Daniel Meißner via Guix-patches via
2023-01-13 21:44 ` [bug#60783] [PATCH 1/3] gnu: mamba: Use correct version of libsigc++ Daniel Meißner via Guix-patches via
@ 2023-01-16 17:51 ` Maxim Cournoyer
1 sibling, 0 replies; 5+ messages in thread
From: Maxim Cournoyer @ 2023-01-16 17:51 UTC (permalink / raw)
To: Daniel Meißner; +Cc: 60783-done
Hello!
Daniel Meißner <daniel.meissner-i4k@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
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-01-16 17:52 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-13 13:10 [bug#60783] [PATCH 0/3] Fix mamba build Daniel Meißner via Guix-patches via
2023-01-13 21:44 ` [bug#60783] [PATCH 1/3] gnu: mamba: Use correct version of libsigc++ Daniel Meißner via Guix-patches via
2023-01-13 21:44 ` [bug#60783] [PATCH 2/3] gnu: mamba: Update to 2.3 Daniel Meißner via Guix-patches via
2023-01-13 21:44 ` [bug#60783] [PATCH 3/3] gnu: mamba: Use G-expressions Daniel Meißner via Guix-patches via
2023-01-16 17:51 ` bug#60783: [PATCH 0/3] Fix mamba build Maxim Cournoyer
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.