From unknown Sun Jun 22 00:42:40 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49511: [PATCH] gnu: add a2jmidid Resent-From: terramorpha@cock.li Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Sat, 10 Jul 2021 19:43:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 49511 X-GNU-PR-Package: guix X-GNU-PR-Keywords: patch To: 49511@debbugs.gnu.org X-Debbugs-Original-To: bug-guix@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.162594615915675 (code B ref -1); Sat, 10 Jul 2021 19:43:01 +0000 Received: (at submit) by debbugs.gnu.org; 10 Jul 2021 19:42:39 +0000 Received: from localhost ([127.0.0.1]:33531 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m2Is3-00044l-Ff for submit@debbugs.gnu.org; Sat, 10 Jul 2021 15:42:39 -0400 Received: from lists.gnu.org ([209.51.188.17]:35024) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m2Is1-00044c-7y for submit@debbugs.gnu.org; Sat, 10 Jul 2021 15:42:37 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:59912) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m2Is0-0007jU-ID for bug-guix@gnu.org; Sat, 10 Jul 2021 15:42:36 -0400 Received: from mail.cock.li ([37.120.193.124]:39968) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m2Iry-0001HQ-Hz for bug-guix@gnu.org; Sat, 10 Jul 2021 15:42:36 -0400 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cock.li; s=mail; t=1625946145; bh=OqFkow2R/46ge+ThCwTch0+1c5FK10xOt7M9XNBwNiM=; h=Date:From:To:Subject:From; b=bqqXcM4ITVlZKZ6kitwoMvj3eDuhHlfw6lLkAAERa12etoVu7nRv/I0kKtmWB0474 ASXJ7GGTVoPsg+7UP9n1TgEiMbi+xiNJTDPYAtXLXYzohBq+pjalH2VHQVdDFkj5Db 5l6JuN+JBk9QnqtpylDnDliaqzWutsHmD3KEntISLhp2QOm26lqeaLs33zbTaFGZc7 t6h/lNIQC/3UF8hPYUez5Z8LuUvniholFdLTsZ4KdzAFIwkOTaCmV9vThjL+vXz/8S gC5wem9MgyNIMfyXf0y++vM86cnW/OMYZV+acphLoJvEum2gtNrGn5T8fRmtvPSYq2 9XUXZ1klkbmYQ== Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Date: Sat, 10 Jul 2021 15:42:25 -0400 From: terramorpha@cock.li Message-ID: <1a5e86a159e7092b643359333a12c6ca@cock.li> X-Sender: terramorpha@cock.li User-Agent: Roundcube Webmail/1.3.15 Received-SPF: pass client-ip=37.120.193.124; envelope-from=terramorpha@cock.li; helo=mail.cock.li X-Spam_score_int: -7 X-Spam_score: -0.8 X-Spam_bar: / X-Spam_report: (-0.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_VALIDITY_RPBL=1.31, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) 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: -2.4 (--) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 28661c5667..cd120a9dae 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -39,6 +39,7 @@ ;;; Copyright © 2021 Bonface Munyoki Kilyungi ;;; Copyright © 2021 Frank Pursel ;;; Copyright © 2021 Rovanion Luckey +;;; Copyright © 2021 Justin Veilleux ;;; ;;; This file is part of GNU Guix. ;;; @@ -6679,3 +6680,27 @@ It is provided as an LV2 plugin and as a standalone Jack application.") framework.") (home-page "http://shiru.untergrund.net/software.shtml") (license license:wtfpl2)))) + +(define-public a2jmidid + (package + (name "a2jmidid") + (version "9") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jackaudio/a2jmidid") + (commit version))) + (sha256 (base32 "1x6rcl3f4nklnx4p5jln9a7fpj9y7agjxs9rw7cccmwnski7pnsq")) + (file-name (string-append "a2jmidid-" version)))) + (arguments `(#:tests? #f)) + (build-system meson-build-system) + (inputs `(("jack" ,jack-1) + ("alsa-lib" ,alsa-lib) + ("dbus" ,dbus))) + (native-inputs `(("pkg-config" ,pkg-config) + ("cmake" ,cmake))) + (synopsis "Bridge program to create jack midi devices for each alsa midi device") + (description + "a2jmidid is a daemon that implements automatic bridging of alsa midi devices to jack midi devices") + (home-page "https://github.com/jackaudio/a2jmidid") + (license license:gpl2))) From unknown Sun Jun 22 00:42:40 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49511: [PATCH] gnu: add a2jmidid Resent-From: Efraim Flashner Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Tue, 13 Jul 2021 10:12:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49511 X-GNU-PR-Package: guix X-GNU-PR-Keywords: patch To: terramorpha@cock.li Cc: 49511@debbugs.gnu.org Received: via spool by 49511-submit@debbugs.gnu.org id=B49511.162617110232328 (code B ref 49511); Tue, 13 Jul 2021 10:12:02 +0000 Received: (at 49511) by debbugs.gnu.org; 13 Jul 2021 10:11:42 +0000 Received: from localhost ([127.0.0.1]:39523 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m3FO9-0008PM-W9 for submit@debbugs.gnu.org; Tue, 13 Jul 2021 06:11:42 -0400 Received: from flashner.co.il ([178.62.234.194]:34360) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m3FO7-0008P8-LC for 49511@debbugs.gnu.org; Tue, 13 Jul 2021 06:11:40 -0400 Received: from localhost (unknown [31.210.177.125]) by flashner.co.il (Postfix) with ESMTPSA id 6F0DE402D0; Tue, 13 Jul 2021 10:11:33 +0000 (UTC) Date: Tue, 13 Jul 2021 13:10:05 +0300 From: Efraim Flashner Message-ID: Mail-Followup-To: Efraim Flashner , terramorpha@cock.li, 49511@debbugs.gnu.org References: <1a5e86a159e7092b643359333a12c6ca@cock.li> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="m65z6TUesO0VkAxR" Content-Disposition: inline In-Reply-To: <1a5e86a159e7092b643359333a12c6ca@cock.li> X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: -0.0 (/) 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 (-) --m65z6TUesO0VkAxR Content-Type: multipart/mixed; boundary="PF+u0miaxA1akUKE" Content-Disposition: inline --PF+u0miaxA1akUKE Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I made some changes to the package but I don't use jack so I can't test it out. Can you see if this works? --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --PF+u0miaxA1akUKE Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="0001-bug-49511-PATCH-gnu-add-a2jmidid.patch" Content-Transfer-Encoding: quoted-printable =46rom cba2be5634a7f2bc1a5f3980d8016ce8f1398fc7 Mon Sep 17 00:00:00 2001 Message-Id: =46rom: "terramorpha@cock.li" Date: Sat, 10 Jul 2021 15:42:25 -0400 Subject: [PATCH] bug#49511: [PATCH] gnu: add a2jmidid Signed-off-by: Efraim Flashner --- gnu/packages/music.scm | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 28661c5667..c616fe01a3 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -39,6 +39,7 @@ ;;; Copyright =C2=A9 2021 Bonface Munyoki Kilyungi ;;; Copyright =C2=A9 2021 Frank Pursel ;;; Copyright =C2=A9 2021 Rovanion Luckey +;;; Copyright =C2=A9 2021 Justin Veilleux ;;; ;;; This file is part of GNU Guix. ;;; @@ -6679,3 +6680,44 @@ It is provided as an LV2 plugin and as a standalone = Jack application.") framework.") (home-page "http://shiru.untergrund.net/software.shtml") (license license:wtfpl2)))) + +(define-public a2jmidid + (package + (name "a2jmidid") + (version "9") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jackaudio/a2jmidid") + (commit version))) + (sha256 + (base32 "1x6rcl3f4nklnx4p5jln9a7fpj9y7agjxs9rw7cccmwnski7pn= sq")) + (file-name (git-file-name name version)))) + (arguments + `(#:tests? #f ; No tests. + #:phases + (modify-phases %standard-phases + (add-after 'install 'wrap-programs + (lambda* (#:key inputs outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (bin (string-append out "/bin/"))) + (substitute* (string-append bin "a2j") + (("a2j_control") (string-append bin "a2j_control"))) + (wrap-program (string-append bin "a2j_control") + `("PYTHONPATH" prefix (,(getenv "PYTHONPATH")))) + #t)))))) + (build-system meson-build-system) + (inputs + `(("alsa-lib" ,alsa-lib) + ("dbus" ,dbus) + ("jack" ,jack-1) + ("python" ,python) + ("python-dbus" ,python-dbus))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (synopsis "ALSA sequencer to JACK MIDI bridging") + (description + "@code{a2jmidid} is a daemon that implements automatic bridging of AL= SA +midi devices to JACK midi devices.") + (home-page "https://github.com/jackaudio/a2jmidid") + (license license:gpl2))) base-commit: 956b6b078edbb96c207747e89ae485d8a4268c6b --=20 2.32.0 --PF+u0miaxA1akUKE-- --m65z6TUesO0VkAxR Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAmDtZn0ACgkQQarn3Mo9 g1HD0hAAuW6OdvWSjAKJh6EnMjDtvsnOINVEo6dWhG7sd62FSe59kKJnRaSEQmqa XFikgn1zZWgGE0JhqcIBIJ/6czT2TI1VDHMVlyouPC2JSX+Bk45qHnEMz/hQVu3u J80J3/v8ZNmf1fxBgJJy+MUIBcu+frMYqfPtzzj6M9a20m9m9u4zs4kJKO//XJ9z 3reS8EQr8m22MAbAfHM6iunnPDx2fy/PfytnUOyOZFPT7r+RMIHeQbEKzKX/z4Yi Ig2reKPYFIlxNZ+M2riSgjAMxf/xfjGfz76UK+xMpdrVIrWLfYT3bRs/bYFzSMLb 4i4/nfAkZPRd+pEy1Lmy2dIX4E+OtNiMY+IF7sBGsv4aL8xu6QkBflkrQC4JP0HE hqym0WKbCM5gYkt234BHb38iUtsPM2upeMxbI95+X3hF5DKgh8cX8tZ9DRlwGLfm cu5exPyBT0AbQtGNtTP+j0h4ETAGb7m4OaRuaFORtxJIXx3YUMO/E8rjEOhbYqbO DVGHNfTX8aYuhx+zN9WMiSjx7uWBFBqwWKak8MlT6OHueQ53dOKs9qDLm2/GnR3U M2zPKUYGMlSRsud5eNXhQlcS64BpnGl5HG5KMg6cX9vBf6JRV1K5hVdoXknvRGNd E+Zu/5nw0kKYggpIZWMrnSG7FFC2KRt+4N1rAEm4c519owRVryo= =S8jK -----END PGP SIGNATURE----- --m65z6TUesO0VkAxR-- From unknown Sun Jun 22 00:42:40 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49511: [PATCH] gnu: add a2jmidid. References: <1a5e86a159e7092b643359333a12c6ca@cock.li> In-Reply-To: <1a5e86a159e7092b643359333a12c6ca@cock.li> Resent-From: terramorpha@cock.li Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Tue, 13 Jul 2021 17:40:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49511 X-GNU-PR-Package: guix X-GNU-PR-Keywords: patch To: 49511@debbugs.gnu.org Cc: efraim@flashner.co.il Received: via spool by 49511-submit@debbugs.gnu.org id=B49511.162619794312878 (code B ref 49511); Tue, 13 Jul 2021 17:40:02 +0000 Received: (at 49511) by debbugs.gnu.org; 13 Jul 2021 17:39:03 +0000 Received: from localhost ([127.0.0.1]:41829 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m3MN5-0003Le-IQ for submit@debbugs.gnu.org; Tue, 13 Jul 2021 13:39:03 -0400 Received: from mail.cock.li ([37.120.193.124]:35132) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m3MN3-0003L8-3Y for 49511@debbugs.gnu.org; Tue, 13 Jul 2021 13:39:01 -0400 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cock.li; s=mail; t=1626197934; bh=llIVy+7iJWKn+CS/qn/q+uy41JXEfpmb/qqEi6pbpNY=; h=Date:From:To:Cc:Subject:From; b=Js9x922/vAPou55itBmwVOWRVmz0uk1DnHSjnNN02h6BXjw5Tv4U/8Hki8Y5WdLQ+ y2r08sgdAwzbAKuLPjn8dpynz5Ieznx105wRiPkkCxjQvd+9JzFv4W7/LpmCc5ITjf V5o/ourwmWvHlQJEuTWCzeNm3bxR+uXUFqnHGWxUOKJk2b/+nFrbsmGj+Xmvl3duQt iJ2Vc3Mq2iy/ljzLdDuguGETd/56lTtdpDuYxhZuia31CLoHJBYKOB3MtLnQMTc2nD fOhiEPKi8xrlALfOOA0jwWf2yt6z6gmwEPCu0gQfB7xIpto2XD/V+zjGzBrKiagFR7 WX2FFShvkRBXg== Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Tue, 13 Jul 2021 13:38:53 -0400 From: terramorpha@cock.li Message-ID: X-Sender: terramorpha@cock.li User-Agent: Roundcube Webmail/1.3.15 X-Spam-Score: -0.0 (/) 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 (-) I can confirm it works. Cheers. From unknown Sun Jun 22 00:42:40 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: terramorpha@cock.li Subject: bug#49511: closed (Re: [PATCH] gnu: add a2jmidid.) Message-ID: References: <1a5e86a159e7092b643359333a12c6ca@cock.li> X-Gnu-PR-Message: they-closed 49511 X-Gnu-PR-Package: guix X-Gnu-PR-Keywords: patch Reply-To: 49511@debbugs.gnu.org Date: Wed, 14 Jul 2021 06:26:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1626243962-15592-1" This is a multi-part message in MIME format... ------------=_1626243962-15592-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #49511: [PATCH] gnu: add a2jmidid which was filed against the guix package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 49511@debbugs.gnu.org. --=20 49511: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D49511 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1626243962-15592-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 49511-done) by debbugs.gnu.org; 14 Jul 2021 06:25:46 +0000 Received: from localhost ([127.0.0.1]:42670 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m3YL3-00042k-Q1 for submit@debbugs.gnu.org; Wed, 14 Jul 2021 02:25:45 -0400 Received: from flashner.co.il ([178.62.234.194]:37682) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m3YL1-00042V-5M for 49511-done@debbugs.gnu.org; Wed, 14 Jul 2021 02:25:44 -0400 Received: from localhost (unknown [31.210.177.125]) by flashner.co.il (Postfix) with ESMTPSA id 8A394403E0; Wed, 14 Jul 2021 06:25:36 +0000 (UTC) Date: Wed, 14 Jul 2021 09:24:20 +0300 From: Efraim Flashner To: terramorpha@cock.li Subject: Re: [PATCH] gnu: add a2jmidid. Message-ID: Mail-Followup-To: Efraim Flashner , terramorpha@cock.li, 49511-done@debbugs.gnu.org References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="biJ3pGBiuj3SjiI9" Content-Disposition: inline In-Reply-To: X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 49511-done Cc: 49511-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.0 (-) --biJ3pGBiuj3SjiI9 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jul 13, 2021 at 01:38:53PM -0400, terramorpha@cock.li wrote: > I can confirm it works. Thanks. Patch pushed! --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --biJ3pGBiuj3SjiI9 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAmDugxQACgkQQarn3Mo9 g1H8lBAAjM9i7exUiohXkE+mn/rsvMOzArom5pRmZRnK+zvMlv5KCR6/AB6itbFF RESQxE/nvCrpdzrUqcLE96zV1PBshmoz95Fo3yiy6LEW+oeUlXg8Tre/ROy1cXXL U6K/Fmh+ULE93bvkV5JScJhylAJk0z4b3yjkMTx2VSzzFmIwexfC284dlQFDSUEu 90wMmFfPSJp7PjaXkHoC9u8RxLkaBZ8B/8dHk12A+rTd5KggG1L23xDJip+YPP7X ne0/gFiohZEQpl0caC842NQxxbYs49ikV/Ky4cnOuH/6GUs1ZGVhACnmbR2OUVI4 NnQoQjgGurbJXwhC9RT0b7LYoMsS60qdPDROAj34WqFRxdd5b5/5EdsThy9s9LDf VjFvqV9kGA8n1mOFFWwQmdZecmIkQ0+fcL2IjxM1t1/PuQ9xRvm8JYlCrofbuKG5 zZeBX2WgfnajtIlexj+w3Cu8Ck29jZ/kpbh9SYZTlr2BhD1DDjdgA3CVzeVzm5bo CECg98VXHZr+r1dh699xZg9YMfEaDoRsJKGl2hhb29G7M8xP36Avc07EIO8EQZb5 MDFOpfjJUyog48JiDxyKbmdeVS7Q5CuSTDSg247MlnO/hb0uug67Fz5ZCF8d1W54 PeoBvn7LAhhDdQk3r2olr8gWYA9D/tw7GOE8uC/pAqMY7oo5t8E= =VEbs -----END PGP SIGNATURE----- --biJ3pGBiuj3SjiI9-- ------------=_1626243962-15592-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 10 Jul 2021 19:42:39 +0000 Received: from localhost ([127.0.0.1]:33531 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m2Is3-00044l-Ff for submit@debbugs.gnu.org; Sat, 10 Jul 2021 15:42:39 -0400 Received: from lists.gnu.org ([209.51.188.17]:35024) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m2Is1-00044c-7y for submit@debbugs.gnu.org; Sat, 10 Jul 2021 15:42:37 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:59912) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m2Is0-0007jU-ID for bug-guix@gnu.org; Sat, 10 Jul 2021 15:42:36 -0400 Received: from mail.cock.li ([37.120.193.124]:39968) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m2Iry-0001HQ-Hz for bug-guix@gnu.org; Sat, 10 Jul 2021 15:42:36 -0400 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cock.li; s=mail; t=1625946145; bh=OqFkow2R/46ge+ThCwTch0+1c5FK10xOt7M9XNBwNiM=; h=Date:From:To:Subject:From; b=bqqXcM4ITVlZKZ6kitwoMvj3eDuhHlfw6lLkAAERa12etoVu7nRv/I0kKtmWB0474 ASXJ7GGTVoPsg+7UP9n1TgEiMbi+xiNJTDPYAtXLXYzohBq+pjalH2VHQVdDFkj5Db 5l6JuN+JBk9QnqtpylDnDliaqzWutsHmD3KEntISLhp2QOm26lqeaLs33zbTaFGZc7 t6h/lNIQC/3UF8hPYUez5Z8LuUvniholFdLTsZ4KdzAFIwkOTaCmV9vThjL+vXz/8S gC5wem9MgyNIMfyXf0y++vM86cnW/OMYZV+acphLoJvEum2gtNrGn5T8fRmtvPSYq2 9XUXZ1klkbmYQ== Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Date: Sat, 10 Jul 2021 15:42:25 -0400 From: terramorpha@cock.li To: bug-guix@gnu.org Subject: [PATCH] gnu: add a2jmidid Message-ID: <1a5e86a159e7092b643359333a12c6ca@cock.li> X-Sender: terramorpha@cock.li User-Agent: Roundcube Webmail/1.3.15 Received-SPF: pass client-ip=37.120.193.124; envelope-from=terramorpha@cock.li; helo=mail.cock.li X-Spam_score_int: -7 X-Spam_score: -0.8 X-Spam_bar: / X-Spam_report: (-0.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_VALIDITY_RPBL=1.31, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit 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: -2.4 (--) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 28661c5667..cd120a9dae 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -39,6 +39,7 @@ ;;; Copyright © 2021 Bonface Munyoki Kilyungi ;;; Copyright © 2021 Frank Pursel ;;; Copyright © 2021 Rovanion Luckey +;;; Copyright © 2021 Justin Veilleux ;;; ;;; This file is part of GNU Guix. ;;; @@ -6679,3 +6680,27 @@ It is provided as an LV2 plugin and as a standalone Jack application.") framework.") (home-page "http://shiru.untergrund.net/software.shtml") (license license:wtfpl2)))) + +(define-public a2jmidid + (package + (name "a2jmidid") + (version "9") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jackaudio/a2jmidid") + (commit version))) + (sha256 (base32 "1x6rcl3f4nklnx4p5jln9a7fpj9y7agjxs9rw7cccmwnski7pnsq")) + (file-name (string-append "a2jmidid-" version)))) + (arguments `(#:tests? #f)) + (build-system meson-build-system) + (inputs `(("jack" ,jack-1) + ("alsa-lib" ,alsa-lib) + ("dbus" ,dbus))) + (native-inputs `(("pkg-config" ,pkg-config) + ("cmake" ,cmake))) + (synopsis "Bridge program to create jack midi devices for each alsa midi device") + (description + "a2jmidid is a daemon that implements automatic bridging of alsa midi devices to jack midi devices") + (home-page "https://github.com/jackaudio/a2jmidid") + (license license:gpl2))) ------------=_1626243962-15592-1--