public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Miroslav Šulc" <fordfrog@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/a2jmidid/
Date: Wed, 13 Nov 2019 09:52:45 +0000 (UTC)	[thread overview]
Message-ID: <1573638759.db1ea43e9bd591385324e58f1e33ed03e3ca3231.fordfrog@gentoo> (raw)

commit:     db1ea43e9bd591385324e58f1e33ed03e3ca3231
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 13 09:49:45 2019 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Wed Nov 13 09:52:39 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db1ea43e

media-sound/a2jmidid-{9,9999}: bump + added live

1) changed to live project on github.com
2) ebuild rewritten to use mason
3) EAPI-7
4) added BDEPEND
5) updated DOCS

Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-sound/a2jmidid/Manifest             |  1 +
 media-sound/a2jmidid/a2jmidid-9.ebuild    | 37 +++++++++++++++++++++++++++++++
 media-sound/a2jmidid/a2jmidid-9999.ebuild | 37 +++++++++++++++++++++++++++++++
 3 files changed, 75 insertions(+)

diff --git a/media-sound/a2jmidid/Manifest b/media-sound/a2jmidid/Manifest
index 28e71223b11..d5e808090f5 100644
--- a/media-sound/a2jmidid/Manifest
+++ b/media-sound/a2jmidid/Manifest
@@ -1 +1,2 @@
 DIST a2jmidid-8.tar.bz2 162764 BLAKE2B 4c173d458bc9bf393496bc53dcd92e796826386f3d2704f6d1fc108dd7e4fb660271cc2befec655b516dd669189fb01c23576fdd39c1c23b485346390edfb0a7 SHA512 6182a295462ae587461ca395d85c956523bfecd113d031d0ae8a9f304fc3d41f6a5097b3a1a9fc06bd0eef7fe08a4b3c116a3361ff9e63468c3e40b736215592
+DIST a2jmidid-9.tar.gz 47925 BLAKE2B ad079e76a54f56ee8f82150c306f91aead52f86632978ea6f3376a0bf163744379210b34701b39da4ee14fc4d8a1c6be82d1052abeb8ccf79410bc242d174d62 SHA512 5bd13b6904ed68c5bfe40ca516fd49b7eb4d4a946b9908ee04687265848734c8e1a81579f0f1a5bd0752595be8858dc748da10487b7f366394c09a5ffc7d5e5c

diff --git a/media-sound/a2jmidid/a2jmidid-9.ebuild b/media-sound/a2jmidid/a2jmidid-9.ebuild
new file mode 100644
index 00000000000..8879e053f46
--- /dev/null
+++ b/media-sound/a2jmidid/a2jmidid-9.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="Daemon for exposing legacy ALSA sequencer applications in JACK MIDI system"
+HOMEPAGE="https://github.com/linuxaudio/a2jmidid"
+SRC_URI="https://github.com/linuxaudio/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="dbus"
+
+BDEPEND="
+	virtual/pkgconfig
+"
+CDEPEND="
+	${PYTHON_DEPS}
+	media-libs/alsa-lib
+	virtual/jack
+	dbus? ( sys-apps/dbus )
+"
+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
+}

diff --git a/media-sound/a2jmidid/a2jmidid-9999.ebuild b/media-sound/a2jmidid/a2jmidid-9999.ebuild
new file mode 100644
index 00000000000..c3d3a8ed15a
--- /dev/null
+++ b/media-sound/a2jmidid/a2jmidid-9999.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson git-r3
+
+DESCRIPTION="Daemon for exposing legacy ALSA sequencer applications in JACK MIDI system"
+HOMEPAGE="https://github.com/linuxaudio/a2jmidid"
+EGIT_REPO_URI="https://github.com/linuxaudio/a2jmidid.git"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS=""
+IUSE="dbus"
+
+BDEPEND="
+	virtual/pkgconfig
+"
+CDEPEND="
+	${PYTHON_DEPS}
+	media-libs/alsa-lib
+	virtual/jack
+	dbus? ( sys-apps/dbus )
+"
+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
+}


             reply	other threads:[~2019-11-13  9:52 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-13  9:52 Miroslav Šulc [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-02-10 17:51 [gentoo-commits] repo/gentoo:master commit in: media-sound/a2jmidid/ Miroslav Šulc
2024-02-03  6:56 Sam James
2024-01-11 18:20 Miroslav Šulc
2024-01-11 18:20 Miroslav Šulc
2024-01-10  8:51 Miroslav Šulc
2023-06-19  6:47 Miroslav Šulc
2023-05-04  6:59 Miroslav Šulc
2021-07-01  5:02 Miroslav Šulc
2020-07-04 20:35 Michał Górny
2019-12-15 14:16 Miroslav Šulc
2019-12-15 13:43 Agostino Sarubbo
2019-12-13 14:37 Agostino Sarubbo
2019-12-13 10:01 Miroslav Šulc
2019-09-25 13:31 Joonas Niilola
2018-04-04 17:05 Jonas Stein
2017-05-09  7:26 Alexis Ballier
2017-04-23 11:29 David Seifert

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1573638759.db1ea43e9bd591385324e58f1e33ed03e3ca3231.fordfrog@gentoo \
    --to=fordfrog@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox