From unknown Fri Aug 15 19:30:33 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#46785] [PATCH 2/2] gnu: Add mamba. Resent-From: Alexandros Theodotou Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 25 Feb 2021 23:44:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 46785 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 46785@debbugs.gnu.org Cc: Alexandros Theodotou X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.161429660316320 (code B ref -1); Thu, 25 Feb 2021 23:44:02 +0000 Received: (at submit) by debbugs.gnu.org; 25 Feb 2021 23:43:23 +0000 Received: from localhost ([127.0.0.1]:39722 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lFQHt-0004F3-Av for submit@debbugs.gnu.org; Thu, 25 Feb 2021 18:43:23 -0500 Received: from lists.gnu.org ([209.51.188.17]:52256) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lFQHr-0004Ew-UC for submit@debbugs.gnu.org; Thu, 25 Feb 2021 18:43:16 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:44428) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lFQHr-00033B-Mh for guix-patches@gnu.org; Thu, 25 Feb 2021 18:43:15 -0500 Received: from mout01.posteo.de ([185.67.36.141]:51298) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lFQHm-00071N-Sn for guix-patches@gnu.org; Thu, 25 Feb 2021 18:43:15 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id A715C16005C for ; Fri, 26 Feb 2021 00:42:07 +0100 (CET) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4Dmq7y5lJBz6tmF; Fri, 26 Feb 2021 00:42:06 +0100 (CET) From: Alexandros Theodotou Date: Thu, 25 Feb 2021 23:41:50 +0000 Message-Id: <20210225234150.20653-2-alex@zrythm.org> X-Mailer: git-send-email 2.30.1 In-Reply-To: <20210225234150.20653-1-alex@zrythm.org> References: <20210225234150.20653-1-alex@zrythm.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.141; envelope-from=alex@zrythm.org; helo=mout01.posteo.de X-Spam_score_int: -41 X-Spam_score: -4.2 X-Spam_bar: ---- X-Spam_report: (-4.2 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) * gnu/packages/music.scm (mamba): New variable. --- gnu/packages/music.scm | 47 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index d1089fff9b..38cc033c4b 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -24,7 +24,7 @@ ;;; Copyright © 2019 Jakob L. Kreuze ;;; Copyright © 2019 raingloom ;;; Copyright © 2019 David Wilson -;;; Copyright © 2019, 2020 Alexandros Theodotou +;;; Copyright © 2019, 2020, 2021 Alexandros Theodotou ;;; Copyright © 2020 Vincent Legoll ;;; Copyright © 2020 Lars-Dominik Braun ;;; Copyright © 2020 Giacomo Leidi @@ -5826,6 +5826,51 @@ It can also play and mix samples.") (home-page "https://gitlab.com/iurie-sw/geonkick") (license license:gpl3+))) +(define-public mamba + (package + (name "mamba") + (version "2.1") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/brummer10/Mamba") + (commit (string-append "v" version)) + (recursive? #t))) ; references specific commit of libxputty + (file-name (git-file-name name version)) + (sha256 + (base32 + "1bq6sqsij3cdwcsj3wpsnivi4c7jl4l5gwfywhqnib70v60smdja")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no "check" target + #:make-flags + (list (string-append "PREFIX=" + (assoc-ref %outputs "out")) + "CC=gcc") + #:phases + (modify-phases %standard-phases + (delete 'configure)))) + (inputs + `(("alsa-lib" ,alsa-lib) + ("cairo" ,cairo) + ("fluidsynth" ,fluidsynth) + ("jack" ,jack-1) + ("liblo" ,liblo) + ("libsigc++" ,libsigc++) + ("libsmf" ,libsmf) + ("libx11" ,libx11))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (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 +player/recorder for the JACK Audio Connection Kit. It comes with predefined +keymaps for QWERTZ, QWERTY and AZERTY keyboards and also allows custom +ones.") + (license license:0bsd))) + (define-public dpf-plugins (package (name "dpf-plugins") -- 2.30.1 From unknown Fri Aug 15 19:30:33 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#46785] [PATCH] gnu: Add mamba. References: <20210225234150.20653-2-alex@zrythm.org> In-Reply-To: <20210225234150.20653-2-alex@zrythm.org> Resent-From: Alexandros Theodotou Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 26 Feb 2021 00:00:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 46785 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 46785@debbugs.gnu.org Cc: Alexandros Theodotou Received: via spool by 46785-submit@debbugs.gnu.org id=B46785.161429758217870 (code B ref 46785); Fri, 26 Feb 2021 00:00:03 +0000 Received: (at 46785) by debbugs.gnu.org; 25 Feb 2021 23:59:42 +0000 Received: from localhost ([127.0.0.1]:39745 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lFQXg-0004e4-B0 for submit@debbugs.gnu.org; Thu, 25 Feb 2021 18:59:41 -0500 Received: from mout02.posteo.de ([185.67.36.142]:39647) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lFQXe-0004dh-CW for 46785@debbugs.gnu.org; Thu, 25 Feb 2021 18:59:35 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 3887A2400FB for <46785@debbugs.gnu.org>; Fri, 26 Feb 2021 00:59:28 +0100 (CET) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4DmqWz44RSz6tmF; Fri, 26 Feb 2021 00:59:27 +0100 (CET) From: Alexandros Theodotou Date: Thu, 25 Feb 2021 23:59:19 +0000 Message-Id: <20210225235919.22373-1-alex@zrythm.org> X-Mailer: git-send-email 2.30.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/music.scm (mamba): New variable. --- gnu/packages/music.scm | 47 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index d1089fff9b..9dd1b506cb 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -24,7 +24,7 @@ ;;; Copyright © 2019 Jakob L. Kreuze ;;; Copyright © 2019 raingloom ;;; Copyright © 2019 David Wilson -;;; Copyright © 2019, 2020 Alexandros Theodotou +;;; Copyright © 2019, 2020, 2021 Alexandros Theodotou ;;; Copyright © 2020 Vincent Legoll ;;; Copyright © 2020 Lars-Dominik Braun ;;; Copyright © 2020 Giacomo Leidi @@ -5826,6 +5826,51 @@ It can also play and mix samples.") (home-page "https://gitlab.com/iurie-sw/geonkick") (license license:gpl3+))) +(define-public mamba + (package + (name "mamba") + (version "2.1") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/brummer10/Mamba") + (commit (string-append "v" version)) + (recursive? #t))) ; references specific commit of libxputty + (file-name (git-file-name name version)) + (sha256 + (base32 + "1bq6sqsij3cdwcsj3wpsnivi4c7jl4l5gwfywhqnib70v60smdja")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no "check" target + #:make-flags + (list (string-append "PREFIX=" + (assoc-ref %outputs "out")) + "CC=gcc") + #:phases + (modify-phases %standard-phases + (delete 'configure)))) + (inputs + `(("alsa-lib" ,alsa-lib) + ("cairo" ,cairo) + ("fluidsynth" ,fluidsynth) + ("jack" ,jack-1) + ("liblo" ,liblo) + ("libsigc++" ,libsigc++) + ("libsmf" ,libsmf) + ("libx11" ,libx11))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (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 +player/recorder for the JACK Audio Connection Kit. It comes with predefined +keymaps for QWERTZ, QWERTY and AZERTY keyboards and also allows custom +ones.") + (license license:bsd-0))) + (define-public dpf-plugins (package (name "dpf-plugins") -- 2.30.1 From unknown Fri Aug 15 19:30:33 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Alexandros Theodotou Subject: bug#46785: closed (Re: bug#46785: [PATCH 2/2] gnu: Add mamba.) Message-ID: References: <87czwcimyb.fsf_-_@gnu.org> <20210225234150.20653-2-alex@zrythm.org> X-Gnu-PR-Message: they-closed 46785 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 46785@debbugs.gnu.org Date: Sat, 06 Mar 2021 10:42:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1615027322-2707-1" This is a multi-part message in MIME format... ------------=_1615027322-2707-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #46785: [PATCH 2/2] gnu: Add mamba. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 46785@debbugs.gnu.org. --=20 46785: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D46785 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1615027322-2707-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 46785-done) by debbugs.gnu.org; 6 Mar 2021 10:41:27 +0000 Received: from localhost ([127.0.0.1]:36120 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lIUNC-0000ga-TT for submit@debbugs.gnu.org; Sat, 06 Mar 2021 05:41:27 -0500 Received: from eggs.gnu.org ([209.51.188.92]:52174) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lIUNA-0000gM-A1 for 46785-done@debbugs.gnu.org; Sat, 06 Mar 2021 05:41:25 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]:36944) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lIUN4-0008IP-Ht; Sat, 06 Mar 2021 05:41:18 -0500 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=37882 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1lIUN3-00024X-Pg; Sat, 06 Mar 2021 05:41:18 -0500 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Alexandros Theodotou Subject: Re: bug#46785: [PATCH 2/2] gnu: Add mamba. References: <20210225234150.20653-2-alex@zrythm.org> <20210225235919.22373-1-alex@zrythm.org> Date: Sat, 06 Mar 2021 11:41:16 +0100 In-Reply-To: <20210225235919.22373-1-alex@zrythm.org> (Alexandros Theodotou's message of "Thu, 25 Feb 2021 23:59:19 +0000") Message-ID: <87czwcimyb.fsf_-_@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 46785-done Cc: 46785-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Alexandros Theodotou skribis: > * gnu/packages/music.scm (mamba): New variable. Applied, thanks! Ludo=E2=80=99. ------------=_1615027322-2707-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 25 Feb 2021 23:43:23 +0000 Received: from localhost ([127.0.0.1]:39722 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lFQHt-0004F3-Av for submit@debbugs.gnu.org; Thu, 25 Feb 2021 18:43:23 -0500 Received: from lists.gnu.org ([209.51.188.17]:52256) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lFQHr-0004Ew-UC for submit@debbugs.gnu.org; Thu, 25 Feb 2021 18:43:16 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:44428) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lFQHr-00033B-Mh for guix-patches@gnu.org; Thu, 25 Feb 2021 18:43:15 -0500 Received: from mout01.posteo.de ([185.67.36.141]:51298) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lFQHm-00071N-Sn for guix-patches@gnu.org; Thu, 25 Feb 2021 18:43:15 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id A715C16005C for ; Fri, 26 Feb 2021 00:42:07 +0100 (CET) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4Dmq7y5lJBz6tmF; Fri, 26 Feb 2021 00:42:06 +0100 (CET) From: Alexandros Theodotou To: guix-patches@gnu.org Subject: [PATCH 2/2] gnu: Add mamba. Date: Thu, 25 Feb 2021 23:41:50 +0000 Message-Id: <20210225234150.20653-2-alex@zrythm.org> X-Mailer: git-send-email 2.30.1 In-Reply-To: <20210225234150.20653-1-alex@zrythm.org> References: <20210225234150.20653-1-alex@zrythm.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.141; envelope-from=alex@zrythm.org; helo=mout01.posteo.de X-Spam_score_int: -41 X-Spam_score: -4.2 X-Spam_bar: ---- X-Spam_report: (-4.2 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Alexandros Theodotou X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) * gnu/packages/music.scm (mamba): New variable. --- gnu/packages/music.scm | 47 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index d1089fff9b..38cc033c4b 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -24,7 +24,7 @@ ;;; Copyright © 2019 Jakob L. Kreuze ;;; Copyright © 2019 raingloom ;;; Copyright © 2019 David Wilson -;;; Copyright © 2019, 2020 Alexandros Theodotou +;;; Copyright © 2019, 2020, 2021 Alexandros Theodotou ;;; Copyright © 2020 Vincent Legoll ;;; Copyright © 2020 Lars-Dominik Braun ;;; Copyright © 2020 Giacomo Leidi @@ -5826,6 +5826,51 @@ It can also play and mix samples.") (home-page "https://gitlab.com/iurie-sw/geonkick") (license license:gpl3+))) +(define-public mamba + (package + (name "mamba") + (version "2.1") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/brummer10/Mamba") + (commit (string-append "v" version)) + (recursive? #t))) ; references specific commit of libxputty + (file-name (git-file-name name version)) + (sha256 + (base32 + "1bq6sqsij3cdwcsj3wpsnivi4c7jl4l5gwfywhqnib70v60smdja")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no "check" target + #:make-flags + (list (string-append "PREFIX=" + (assoc-ref %outputs "out")) + "CC=gcc") + #:phases + (modify-phases %standard-phases + (delete 'configure)))) + (inputs + `(("alsa-lib" ,alsa-lib) + ("cairo" ,cairo) + ("fluidsynth" ,fluidsynth) + ("jack" ,jack-1) + ("liblo" ,liblo) + ("libsigc++" ,libsigc++) + ("libsmf" ,libsmf) + ("libx11" ,libx11))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (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 +player/recorder for the JACK Audio Connection Kit. It comes with predefined +keymaps for QWERTZ, QWERTY and AZERTY keyboards and also allows custom +ones.") + (license license:0bsd))) + (define-public dpf-plugins (package (name "dpf-plugins") -- 2.30.1 ------------=_1615027322-2707-1--