From b7efdd771aad99c9a6509a5f85a80a1f7cfd55f3 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 30 Jun 2023 19:43:35 +0100 Subject: gentoo auto-resync : 30:06:2023 - 19:43:35 --- media-sound/a2jmidid/Manifest | 4 +-- media-sound/a2jmidid/a2jmidid-9-r1.ebuild | 51 +++++++++++++++++++++++++++++++ media-sound/a2jmidid/a2jmidid-9.ebuild | 51 ------------------------------- media-sound/a2jmidid/a2jmidid-9999.ebuild | 2 +- 4 files changed, 54 insertions(+), 54 deletions(-) create mode 100644 media-sound/a2jmidid/a2jmidid-9-r1.ebuild delete mode 100644 media-sound/a2jmidid/a2jmidid-9.ebuild (limited to 'media-sound/a2jmidid') diff --git a/media-sound/a2jmidid/Manifest b/media-sound/a2jmidid/Manifest index 9c5ef2c2e21b..c80f22e5669e 100644 --- a/media-sound/a2jmidid/Manifest +++ b/media-sound/a2jmidid/Manifest @@ -1,4 +1,4 @@ DIST a2jmidid-9.tar.gz 47925 BLAKE2B ad079e76a54f56ee8f82150c306f91aead52f86632978ea6f3376a0bf163744379210b34701b39da4ee14fc4d8a1c6be82d1052abeb8ccf79410bc242d174d62 SHA512 5bd13b6904ed68c5bfe40ca516fd49b7eb4d4a946b9908ee04687265848734c8e1a81579f0f1a5bd0752595be8858dc748da10487b7f366394c09a5ffc7d5e5c -EBUILD a2jmidid-9.ebuild 1028 BLAKE2B 32bf417d04dba1619b963f753bdfabd6eb77c3f71267c06a223fae3253bf61e212bf792704e044b4bbb08274353795f1dc37352941b2dc91d4f2a88335523ccd SHA512 94cf207e28e99dd54db40e4b7d93cea02c3f489661621c20ee01ba89f16afefd645a8fcbe951ac6b9663ffdfdcf2669dd9c2e850f4e50769f493f2c15a9a1162 -EBUILD a2jmidid-9999.ebuild 998 BLAKE2B d051acc2ea35ef2e409766cffac24e5322a22a8a81fedf96c6f085cc4a3eabeb041360af2e402b4e9336f4103537b9061a0d6cecc40b5192eecf3a630bf04c19 SHA512 6c91fc1df0831d525518f4de7d0af403b2d9204bc260c1abbc72c7a0870387183a33f3b3e5f38d142009deb5fe5c55e1b597ee0328c8a659f5137de43926a122 +EBUILD a2jmidid-9-r1.ebuild 1028 BLAKE2B 2d34ea4f8e248ee1e0a3ee0dccbbb4f5e91346dd557d787d1524e0d147f40540676c5e064bcd9279cba9142aaaa6e05b3d0967a68439b56703ef7f7ca14a9848 SHA512 005338a322bc3a174762a09788a4772fafca935abc0332c5d969acea1eed32e060f81a4fae4ada53980bb15e1ef719b59b22bfe527cbfcd6e0580c61b52de1e2 +EBUILD a2jmidid-9999.ebuild 998 BLAKE2B 8d68f4d9168a8275d6c81e6c2c051cb2295f0ceb899ed78b6628705657b353b6990f307ce9aa5831587754da6970127c2baaeabf8c32d2b4d8c135fbcd23885b SHA512 a4e147dc97a48b1ac426e04fed0149df6dca0799db96845eb63b144259785718fdca57f3e74a2de837f4dda74ac89de6618ec3434b3f1713da49f7e41e3a12c2 MISC metadata.xml 519 BLAKE2B f3fd9aab93d2e3a16ada0fa1d876d5eacc5d515596308f5db111c192a3296e2813a329f83e90d467090652b078d9855bf6c03b6882e124001a56c6671a10cabe SHA512 fffd096c9013e2727928dd62c6755b929046ed968199e423fd5e480ca66c16bc2d8179f35e1d61fdeba7178a3819f8bee61ba22e5bdfb26393e7e91f6fac1425 diff --git a/media-sound/a2jmidid/a2jmidid-9-r1.ebuild b/media-sound/a2jmidid/a2jmidid-9-r1.ebuild new file mode 100644 index 000000000000..6611af19c248 --- /dev/null +++ b/media-sound/a2jmidid/a2jmidid-9-r1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_REQ_USE="threads(+)" + +inherit meson python-single-r1 + +DESCRIPTION="Daemon for exposing legacy ALSA sequencer applications in JACK MIDI system" +HOMEPAGE="https://github.com/jackaudio/a2jmidid" +SRC_URI="https://github.com/jackaudio/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~arm x86" +IUSE="dbus python" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + +BDEPEND=" + virtual/pkgconfig +" +CDEPEND=" + media-libs/alsa-lib + virtual/jack + dbus? ( sys-apps/dbus ) + python? ( ${PYTHON_DEPS} ) +" +RDEPEND="${CDEPEND}" +DEPEND="${RDEPEND}" + +DOCS=( AUTHORS.rst CHANGELOG.rst README.rst internals.txt ) + +src_configure() { + local emesonargs=( + -Ddisable-dbus=$(usex dbus false true) + ) + + meson_src_configure +} + +src_install() { + meson_src_install + + if use python; then + python_fix_shebang "${ED}" + else + rm "${ED}/usr/bin/a2j_control" || die + fi +} diff --git a/media-sound/a2jmidid/a2jmidid-9.ebuild b/media-sound/a2jmidid/a2jmidid-9.ebuild deleted file mode 100644 index eef4ab470304..000000000000 --- a/media-sound/a2jmidid/a2jmidid-9.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -PYTHON_REQ_USE="threads(+)" - -inherit meson python-single-r1 - -DESCRIPTION="Daemon for exposing legacy ALSA sequencer applications in JACK MIDI system" -HOMEPAGE="https://github.com/jackaudio/a2jmidid" -SRC_URI="https://github.com/jackaudio/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm x86" -IUSE="dbus python" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -BDEPEND=" - virtual/pkgconfig -" -CDEPEND=" - media-libs/alsa-lib - virtual/jack - dbus? ( sys-apps/dbus ) - python? ( ${PYTHON_DEPS} ) -" -RDEPEND="${CDEPEND}" -DEPEND="${RDEPEND}" - -DOCS=( AUTHORS.rst CHANGELOG.rst README.rst internals.txt ) - -src_configure() { - local emasonargs=( - -Ddisable-dbus=$(usex dbus false true) - ) - - meson_src_configure -} - -src_install() { - meson_src_install - - if use python; then - python_fix_shebang "${ED}" - else - rm "${ED}/usr/bin/a2j_control" || die - fi -} diff --git a/media-sound/a2jmidid/a2jmidid-9999.ebuild b/media-sound/a2jmidid/a2jmidid-9999.ebuild index acfedd2037f8..c3ee5ece2ef8 100644 --- a/media-sound/a2jmidid/a2jmidid-9999.ebuild +++ b/media-sound/a2jmidid/a2jmidid-9999.ebuild @@ -33,7 +33,7 @@ DEPEND="${RDEPEND}" DOCS=( AUTHORS.rst CHANGELOG.rst README.rst internals.txt ) src_configure() { - local emasonargs=( + local emesonargs=( -Ddisable-dbus=$(usex dbus false true) ) -- cgit v1.2.3