public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
Date: Tue, 31 May 2022 01:56:57 +0000 (UTC)	[thread overview]
Message-ID: <1653962200.8d4ca0a51fbf31671d6f61eba7c70eb533c4f9f7.sam@gentoo> (raw)

commit:     8d4ca0a51fbf31671d6f61eba7c70eb533c4f9f7
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May 31 00:17:50 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May 31 01:56:40 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d4ca0a5

media-sound/patchage: add 1.0.6

Closes: https://bugs.gentoo.org/846086
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-sound/patchage/Manifest              |  1 +
 media-sound/patchage/metadata.xml          | 17 +++++++-----
 media-sound/patchage/patchage-1.0.6.ebuild | 43 ++++++++++++++++++++++++++++++
 3 files changed, 54 insertions(+), 7 deletions(-)

diff --git a/media-sound/patchage/Manifest b/media-sound/patchage/Manifest
index 8d79df994c1c..001fd616cfc9 100644
--- a/media-sound/patchage/Manifest
+++ b/media-sound/patchage/Manifest
@@ -1 +1,2 @@
 DIST patchage-1.0.4.tar.bz2 661824 BLAKE2B 3e56b7513e19e0acb1ef524ba7d7754699abdb6a968547f7a545c8651f23a33c209b9728dae01d839022ec380185a1673ff58733c1553007a6a3b7c889aa7f03 SHA512 665d81ca16c1052f71c3037d2ad8f9a6120b09a323999468484dda1b4c4b567c36728ebe38c54152406b63a4107f04764d0dede52302bc7a7b124e82132749fb
+DIST patchage-1.0.6.tar.bz2 664841 BLAKE2B 72d0de6d12e07ec160f4c59c51f138e1220a1b8994bdab90f56dd715bf16b6f561836d184ec5d5077de3bc7bb5c6778ea2b7bcbf0b33230be662f2b729eac568 SHA512 b7aedcb07da0c81842929833ab93a0b20c08e465bf05ebb4e47670d295c0d4d0d50f0f74001d9264c2c23ef08d3881232e7622ecf101d1d53ffcae2f8c0f31d3

diff --git a/media-sound/patchage/metadata.xml b/media-sound/patchage/metadata.xml
index 31c35cf5131f..4bae645001ae 100644
--- a/media-sound/patchage/metadata.xml
+++ b/media-sound/patchage/metadata.xml
@@ -1,11 +1,14 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <maintainer type="project">
-    <email>proaudio@gentoo.org</email>
-    <name>Gentoo ProAudio Project</name>
-  </maintainer>
-  <use>
-    <flag name="jack-dbus">Use Jack via D-Bus instead of libjack</flag>
-  </use>
+	<maintainer type="project">
+		<email>proaudio@gentoo.org</email>
+		<name>Gentoo ProAudio Project</name>
+	</maintainer>
+	<use>
+		<flag name="jack-dbus">Use Jack via D-Bus instead of libjack</flag>
+	</use>
+	<upstream>
+		<remote-id type="gitlab">drobilla/patchage</remote-id>
+	</upstream>
 </pkgmetadata>

diff --git a/media-sound/patchage/patchage-1.0.6.ebuild b/media-sound/patchage/patchage-1.0.6.ebuild
new file mode 100644
index 000000000000..6e6e47d0591f
--- /dev/null
+++ b/media-sound/patchage/patchage-1.0.6.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..11} )
+PYTHON_REQ_USE='threads(+)'
+inherit waf-utils python-any-r1 xdg
+
+DESCRIPTION="Modular patch bay for JACK-based audio and MIDI systems"
+HOMEPAGE="https://drobilla.net/software/patchage"
+SRC_URI="https://download.drobilla.net/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="alsa debug jack-dbus"
+
+BDEPEND="
+	${PYTHON_DEPS}
+	virtual/pkgconfig
+"
+RDEPEND="dev-cpp/glibmm:2
+	dev-cpp/gtkmm:2.4
+	media-libs/ganv
+	virtual/jack
+	alsa? ( media-libs/alsa-lib )
+	jack-dbus? (
+		dev-libs/dbus-glib
+		sys-apps/dbus
+	)"
+DEPEND="${RDEPEND}
+	dev-libs/boost
+	dev-libs/libfmt:="
+
+DOCS=( AUTHORS NEWS README.md )
+
+src_configure() {
+	waf-utils_src_configure \
+		$(use debug && echo "--debug") \
+		$(use alsa || echo "--no-alsa") \
+		$(use jack-dbus && echo "--jack-dbus")
+}


             reply	other threads:[~2022-05-31  1:57 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-31  1:56 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-01-29 10:28 [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/ Miroslav Šulc
2023-04-21  6:47 Miroslav Šulc
2023-04-20 22:30 Sam James
2023-04-20 22:30 Sam James
2022-09-26  5:02 Miroslav Šulc
2022-09-25 12:19 Agostino Sarubbo
2022-09-25  1:18 Sam James
2022-09-18 14:29 Miroslav Šulc
2022-09-18 14:27 Miroslav Šulc
2022-08-23 20:00 Miroslav Šulc
2022-06-08  8:42 Agostino Sarubbo
2022-06-08  7:21 Jakov Smolić
2021-04-30 20:53 Miroslav Šulc
2021-02-08 17:26 Sam James
2021-02-08 17:25 Sam James
2021-01-14 10:40 Miroslav Šulc
2020-08-29 12:16 Miroslav Šulc
2020-07-17  7:44 Agostino Sarubbo
2020-07-17  7:21 Agostino Sarubbo
2020-06-10  8:10 Miroslav Šulc
2020-06-10  8:10 Miroslav Šulc
2017-12-20 22:40 Patrice Clement
2017-12-20 22:40 Patrice Clement
2017-12-20 22:40 Patrice Clement
2017-12-20 22:40 Patrice Clement
2015-12-23 10:59 Pacho Ramos

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=1653962200.8d4ca0a51fbf31671d6f61eba7c70eb533c4f9f7.sam@gentoo \
    --to=sam@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