commit: 0151ee82d417412108b21c85feabb54d56a0047d
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 20 13:02:39 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 20 13:14:13 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0151ee82
media-sound/a2jmidid: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
media-sound/a2jmidid/Manifest | 1 -
media-sound/a2jmidid/a2jmidid-9-r1.ebuild | 51 -------------------------------
2 files changed, 52 deletions(-)
diff --git a/media-sound/a2jmidid/Manifest b/media-sound/a2jmidid/Manifest
index edc85bc615c2..0c66668b5f93 100644
--- a/media-sound/a2jmidid/Manifest
+++ b/media-sound/a2jmidid/Manifest
@@ -1,2 +1 @@
DIST a2jmidid-12.tar.bz2 309227 BLAKE2B
8041bda96cf2bfe3d51cdf9162857e1c484e95581dd132fbe3f582022ecc5ba89bfbe005884646ac8064a62285c16195f2066aadb6841660c2935b245f8bd3b2
SHA512
1556dc5d9ca0a241177246de16f251db815d29ed3bc50b0db7ebededa1d34e5432fddfc7bc85643864ebf641fe95d9040462787962753d60adb8f02a1e94f815
-DIST a2jmidid-9.tar.gz 47925 BLAKE2B
ad079e76a54f56ee8f82150c306f91aead52f86632978ea6f3376a0bf163744379210b34701b39da4ee14fc4d8a1c6be82d1052abeb8ccf79410bc242d174d62
SHA512
5bd13b6904ed68c5bfe40ca516fd49b7eb4d4a946b9908ee04687265848734c8e1a81579f0f1a5bd0752595be8858dc748da10487b7f366394c09a5ffc7d5e5c
diff --git a/media-sound/a2jmidid/a2jmidid-9-r1.ebuild
b/media-sound/a2jmidid/a2jmidid-9-r1.ebuild
deleted file mode 100644
index 6611af19c248..000000000000
--- a/media-sound/a2jmidid/a2jmidid-9-r1.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 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
-}