* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2022-08-23 20:00 Miroslav Šulc
0 siblings, 0 replies; 26+ messages in thread
From: Miroslav Šulc @ 2022-08-23 20:00 UTC (permalink / raw
To: gentoo-commits
commit: 7d7c598b68c92419964e23d4ffa8c51a8c3eba62
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 23 19:59:24 2022 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Tue Aug 23 20:00:53 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d7c598b
media-sound/patchage: bump to 1.0.8 + added live
Closes: https://bugs.gentoo.org/865437
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-sound/patchage/Manifest | 1 +
media-sound/patchage/patchage-1.0.8.ebuild | 50 ++++++++++++++++++++++++++++++
media-sound/patchage/patchage-9999.ebuild | 50 ++++++++++++++++++++++++++++++
3 files changed, 101 insertions(+)
diff --git a/media-sound/patchage/Manifest b/media-sound/patchage/Manifest
index 8fca8a198910..6b8aee71b9f9 100644
--- a/media-sound/patchage/Manifest
+++ b/media-sound/patchage/Manifest
@@ -1 +1,2 @@
DIST patchage-1.0.6.tar.bz2 664841 BLAKE2B 72d0de6d12e07ec160f4c59c51f138e1220a1b8994bdab90f56dd715bf16b6f561836d184ec5d5077de3bc7bb5c6778ea2b7bcbf0b33230be662f2b729eac568 SHA512 b7aedcb07da0c81842929833ab93a0b20c08e465bf05ebb4e47670d295c0d4d0d50f0f74001d9264c2c23ef08d3881232e7622ecf101d1d53ffcae2f8c0f31d3
+DIST patchage-1.0.8.tar.xz 334888 BLAKE2B d6bac04a3a6880c7758a01c60b4f4c907e7ae191ef8956fb6ad6f039d9bf40e973ff6e38fc6a5af5b4b4ce5386496282ab5cb06573b0e091e24b7c80fae73ac3 SHA512 af2e43c53ce80ab59416745e85cd7fc524fd3b21ae259d171f15998566cfa067a84a7406e78f5b50bc3ff339363b3ed9cacc9790f08cc6189e4919fc43d041dc
diff --git a/media-sound/patchage/patchage-1.0.8.ebuild b/media-sound/patchage/patchage-1.0.8.ebuild
new file mode 100644
index 000000000000..a629310e40dd
--- /dev/null
+++ b/media-sound/patchage/patchage-1.0.8.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson xdg
+
+DESCRIPTION="Modular patch bay for JACK-based audio and MIDI systems"
+HOMEPAGE="https://drobilla.net/software/patchage"
+
+if [[ ${PV} == 9999 ]] ; then
+ inherit git-r3
+ EGIT_REPO_URI="https://gitlab.com/drobilla/patchage.git"
+else
+ SRC_URI="https://download.drobilla.net/${P}.tar.xz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="alsa jack jack-dbus test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ virtual/pkgconfig
+"
+RDEPEND="dev-cpp/glibmm:2
+ dev-cpp/gtkmm:2.4
+ media-libs/ganv
+ alsa? ( media-libs/alsa-lib )
+ jack? ( virtual/jack )
+ jack-dbus? (
+ dev-libs/dbus-glib
+ sys-apps/dbus
+ )"
+DEPEND="${RDEPEND}
+ dev-libs/boost
+ dev-libs/libfmt:="
+
+DOCS=( AUTHORS NEWS README.md )
+
+src_configure() {
+ local emesonargs=(
+ $(meson_feature alsa)
+ $(meson_feature jack)
+ $(meson_feature jack-dbus jack_dbus)
+ $(meson_feature test tests)
+ )
+ meson_src_configure
+}
diff --git a/media-sound/patchage/patchage-9999.ebuild b/media-sound/patchage/patchage-9999.ebuild
new file mode 100644
index 000000000000..e449d00c7bf0
--- /dev/null
+++ b/media-sound/patchage/patchage-9999.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson xdg
+
+DESCRIPTION="Modular patch bay for JACK-based audio and MIDI systems"
+HOMEPAGE="https://drobilla.net/software/patchage"
+
+if [[ ${PV} == 9999 ]] ; then
+ inherit git-r3
+ EGIT_REPO_URI="https://gitlab.com/drobilla/patchage.git"
+else
+ SRC_URI="https://download.drobilla.net/${P}.tar.xz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="alsa jack jack-dbus test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ virtual/pkgconfig
+"
+RDEPEND="dev-cpp/glibmm:2
+ dev-cpp/gtkmm:2.4
+ media-libs/ganv
+ alsa? ( media-libs/alsa-lib )
+ jack? ( virtual/jack )
+ jack-dbus? (
+ dev-libs/dbus-glib
+ sys-apps/dbus
+ )"
+DEPEND="${RDEPEND}
+ dev-libs/boost
+ >=dev-libs/libfmt-9:="
+
+DOCS=( AUTHORS NEWS README.md )
+
+src_configure() {
+ local emesonargs=(
+ $(meson_feature alsa)
+ $(meson_feature jack)
+ $(meson_feature jack-dbus jack_dbus)
+ $(meson_feature test tests)
+ )
+ meson_src_configure
+}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2023-04-21 6:47 Miroslav Šulc
0 siblings, 0 replies; 26+ messages in thread
From: Miroslav Šulc @ 2023-04-21 6:47 UTC (permalink / raw
To: gentoo-commits
commit: 77880a2f96d3a39a4d5227fd19b61308fa614685
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 21 06:47:34 2023 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Fri Apr 21 06:47:34 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77880a2f
media-sound/patchage: dropped obsolete 1.0.8
Bug: https://bugs.gentoo.org/877617
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-sound/patchage/Manifest | 1 -
media-sound/patchage/patchage-1.0.8.ebuild | 50 ------------------------------
2 files changed, 51 deletions(-)
diff --git a/media-sound/patchage/Manifest b/media-sound/patchage/Manifest
index 4fcfc17257db..29743404e30c 100644
--- a/media-sound/patchage/Manifest
+++ b/media-sound/patchage/Manifest
@@ -1,2 +1 @@
DIST patchage-1.0.10.tar.xz 341164 BLAKE2B db7e17acc483b1fec27c80a3bedf3b546d303d8ce4f90f7f7669a4e4e1dcb526881d949d91edfdd6283dff3d9382c4c3534972065e2769a43e9e4b982b0dfbec SHA512 c6c43afc50978db02517282c1e8c7aad131e30f6255e79e65ea17edcee0b470ec3172da2c057abe4cf4bb12a081a92165ac322cfc4ec77382bb992e74827831b
-DIST patchage-1.0.8.tar.xz 334888 BLAKE2B d6bac04a3a6880c7758a01c60b4f4c907e7ae191ef8956fb6ad6f039d9bf40e973ff6e38fc6a5af5b4b4ce5386496282ab5cb06573b0e091e24b7c80fae73ac3 SHA512 af2e43c53ce80ab59416745e85cd7fc524fd3b21ae259d171f15998566cfa067a84a7406e78f5b50bc3ff339363b3ed9cacc9790f08cc6189e4919fc43d041dc
diff --git a/media-sound/patchage/patchage-1.0.8.ebuild b/media-sound/patchage/patchage-1.0.8.ebuild
deleted file mode 100644
index e292e0cb168b..000000000000
--- a/media-sound/patchage/patchage-1.0.8.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson xdg
-
-DESCRIPTION="Modular patch bay for JACK-based audio and MIDI systems"
-HOMEPAGE="https://drobilla.net/software/patchage"
-
-if [[ ${PV} == 9999 ]] ; then
- inherit git-r3
- EGIT_REPO_URI="https://gitlab.com/drobilla/patchage.git"
-else
- SRC_URI="https://download.drobilla.net/${P}.tar.xz"
- KEYWORDS="amd64 x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="alsa jack jack-dbus test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- virtual/pkgconfig
-"
-RDEPEND="dev-cpp/glibmm:2
- dev-cpp/gtkmm:2.4
- media-libs/ganv
- alsa? ( media-libs/alsa-lib )
- jack? ( virtual/jack )
- jack-dbus? (
- dev-libs/dbus-glib
- sys-apps/dbus
- )"
-DEPEND="${RDEPEND}
- dev-libs/boost
- <dev-libs/libfmt-9:="
-
-DOCS=( AUTHORS NEWS README.md )
-
-src_configure() {
- local emesonargs=(
- $(meson_feature alsa)
- $(meson_feature jack)
- $(meson_feature jack-dbus jack_dbus)
- $(meson_feature test tests)
- )
- meson_src_configure
-}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2023-04-20 22:30 Sam James
0 siblings, 0 replies; 26+ messages in thread
From: Sam James @ 2023-04-20 22:30 UTC (permalink / raw
To: gentoo-commits
commit: 928148c515d120a16e3674156f3544f7a8bab3dd
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 20 22:13:26 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 20 22:29:40 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=928148c5
media-sound/patchage: Stabilize 1.0.10 x86, #877617
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-sound/patchage/patchage-1.0.10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-sound/patchage/patchage-1.0.10.ebuild b/media-sound/patchage/patchage-1.0.10.ebuild
index 0a465588c102..45bf464c1982 100644
--- a/media-sound/patchage/patchage-1.0.10.ebuild
+++ b/media-sound/patchage/patchage-1.0.10.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]] ; then
EGIT_REPO_URI="https://gitlab.com/drobilla/patchage.git"
else
SRC_URI="https://download.drobilla.net/${P}.tar.xz"
- KEYWORDS="amd64 ~x86"
+ KEYWORDS="amd64 x86"
fi
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2023-04-20 22:30 Sam James
0 siblings, 0 replies; 26+ messages in thread
From: Sam James @ 2023-04-20 22:30 UTC (permalink / raw
To: gentoo-commits
commit: f785e66b92c0f11d1c7ed95d8bf22a6de99f8626
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 20 22:13:21 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 20 22:29:39 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f785e66b
media-sound/patchage: Stabilize 1.0.10 amd64, #877617
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-sound/patchage/patchage-1.0.10.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-sound/patchage/patchage-1.0.10.ebuild b/media-sound/patchage/patchage-1.0.10.ebuild
index e449d00c7bf0..0a465588c102 100644
--- a/media-sound/patchage/patchage-1.0.10.ebuild
+++ b/media-sound/patchage/patchage-1.0.10.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]] ; then
EGIT_REPO_URI="https://gitlab.com/drobilla/patchage.git"
else
SRC_URI="https://download.drobilla.net/${P}.tar.xz"
- KEYWORDS="~amd64 ~x86"
+ KEYWORDS="amd64 ~x86"
fi
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2022-09-26 5:02 Miroslav Šulc
0 siblings, 0 replies; 26+ messages in thread
From: Miroslav Šulc @ 2022-09-26 5:02 UTC (permalink / raw
To: gentoo-commits
commit: d4da5b9edb3e87ac214609b5b0f3bb8f1f323dd5
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 26 05:02:29 2022 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Mon Sep 26 05:02:38 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4da5b9e
media-sound/patchage: dropped obsolete 1.0.6
Bug: https://bugs.gentoo.org/872596
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-sound/patchage/Manifest | 1 -
media-sound/patchage/patchage-1.0.6.ebuild | 43 ------------------------------
2 files changed, 44 deletions(-)
diff --git a/media-sound/patchage/Manifest b/media-sound/patchage/Manifest
index 92f04e2ecfbf..4fcfc17257db 100644
--- a/media-sound/patchage/Manifest
+++ b/media-sound/patchage/Manifest
@@ -1,3 +1,2 @@
DIST patchage-1.0.10.tar.xz 341164 BLAKE2B db7e17acc483b1fec27c80a3bedf3b546d303d8ce4f90f7f7669a4e4e1dcb526881d949d91edfdd6283dff3d9382c4c3534972065e2769a43e9e4b982b0dfbec SHA512 c6c43afc50978db02517282c1e8c7aad131e30f6255e79e65ea17edcee0b470ec3172da2c057abe4cf4bb12a081a92165ac322cfc4ec77382bb992e74827831b
-DIST patchage-1.0.6.tar.bz2 664841 BLAKE2B 72d0de6d12e07ec160f4c59c51f138e1220a1b8994bdab90f56dd715bf16b6f561836d184ec5d5077de3bc7bb5c6778ea2b7bcbf0b33230be662f2b729eac568 SHA512 b7aedcb07da0c81842929833ab93a0b20c08e465bf05ebb4e47670d295c0d4d0d50f0f74001d9264c2c23ef08d3881232e7622ecf101d1d53ffcae2f8c0f31d3
DIST patchage-1.0.8.tar.xz 334888 BLAKE2B d6bac04a3a6880c7758a01c60b4f4c907e7ae191ef8956fb6ad6f039d9bf40e973ff6e38fc6a5af5b4b4ce5386496282ab5cb06573b0e091e24b7c80fae73ac3 SHA512 af2e43c53ce80ab59416745e85cd7fc524fd3b21ae259d171f15998566cfa067a84a7406e78f5b50bc3ff339363b3ed9cacc9790f08cc6189e4919fc43d041dc
diff --git a/media-sound/patchage/patchage-1.0.6.ebuild b/media-sound/patchage/patchage-1.0.6.ebuild
deleted file mode 100644
index d32bc3586aef..000000000000
--- a/media-sound/patchage/patchage-1.0.6.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# 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-9:="
-
-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")
-}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2022-09-25 12:19 Agostino Sarubbo
0 siblings, 0 replies; 26+ messages in thread
From: Agostino Sarubbo @ 2022-09-25 12:19 UTC (permalink / raw
To: gentoo-commits
commit: 67bd3ffb92c0c6d2e99b30d9e3af519489c71d01
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 25 12:19:08 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Sep 25 12:19:08 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67bd3ffb
media-sound/patchage: Stabilize 1.0.8 amd64, #872596
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
media-sound/patchage/patchage-1.0.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-sound/patchage/patchage-1.0.8.ebuild b/media-sound/patchage/patchage-1.0.8.ebuild
index d3748a67f0f2..e292e0cb168b 100644
--- a/media-sound/patchage/patchage-1.0.8.ebuild
+++ b/media-sound/patchage/patchage-1.0.8.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]] ; then
EGIT_REPO_URI="https://gitlab.com/drobilla/patchage.git"
else
SRC_URI="https://download.drobilla.net/${P}.tar.xz"
- KEYWORDS="~amd64 x86"
+ KEYWORDS="amd64 x86"
fi
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2022-09-25 1:18 Sam James
0 siblings, 0 replies; 26+ messages in thread
From: Sam James @ 2022-09-25 1:18 UTC (permalink / raw
To: gentoo-commits
commit: 71db9e5f88f50eb5927b214adc6429a2aa1eba96
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 25 01:17:25 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 25 01:17:25 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71db9e5f
media-sound/patchage: Stabilize 1.0.8 x86, #872596
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-sound/patchage/patchage-1.0.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-sound/patchage/patchage-1.0.8.ebuild b/media-sound/patchage/patchage-1.0.8.ebuild
index b9c459f1ed41..d3748a67f0f2 100644
--- a/media-sound/patchage/patchage-1.0.8.ebuild
+++ b/media-sound/patchage/patchage-1.0.8.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]] ; then
EGIT_REPO_URI="https://gitlab.com/drobilla/patchage.git"
else
SRC_URI="https://download.drobilla.net/${P}.tar.xz"
- KEYWORDS="~amd64 ~x86"
+ KEYWORDS="~amd64 x86"
fi
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2022-09-18 14:29 Miroslav Šulc
0 siblings, 0 replies; 26+ messages in thread
From: Miroslav Šulc @ 2022-09-18 14:29 UTC (permalink / raw
To: gentoo-commits
commit: 97de4d962698fdc96c6be0f1f9e157c1fffb2361
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 18 14:29:24 2022 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Sun Sep 18 14:29:24 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97de4d96
media-sound/patchage: needs libfmt < 9
Closes: https://bugs.gentoo.org/859301
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-sound/patchage/patchage-1.0.6.ebuild | 2 +-
media-sound/patchage/patchage-1.0.8.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-sound/patchage/patchage-1.0.6.ebuild b/media-sound/patchage/patchage-1.0.6.ebuild
index 3427226b5b01..d32bc3586aef 100644
--- a/media-sound/patchage/patchage-1.0.6.ebuild
+++ b/media-sound/patchage/patchage-1.0.6.ebuild
@@ -31,7 +31,7 @@ RDEPEND="dev-cpp/glibmm:2
)"
DEPEND="${RDEPEND}
dev-libs/boost
- dev-libs/libfmt:="
+ <dev-libs/libfmt-9:="
DOCS=( AUTHORS NEWS README.md )
diff --git a/media-sound/patchage/patchage-1.0.8.ebuild b/media-sound/patchage/patchage-1.0.8.ebuild
index a629310e40dd..b9c459f1ed41 100644
--- a/media-sound/patchage/patchage-1.0.8.ebuild
+++ b/media-sound/patchage/patchage-1.0.8.ebuild
@@ -35,7 +35,7 @@ RDEPEND="dev-cpp/glibmm:2
)"
DEPEND="${RDEPEND}
dev-libs/boost
- dev-libs/libfmt:="
+ <dev-libs/libfmt-9:="
DOCS=( AUTHORS NEWS README.md )
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2022-09-18 14:27 Miroslav Šulc
0 siblings, 0 replies; 26+ messages in thread
From: Miroslav Šulc @ 2022-09-18 14:27 UTC (permalink / raw
To: gentoo-commits
commit: 3040b663fa704849e384ff07dd41f85b147fa0f9
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 18 14:26:33 2022 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Sun Sep 18 14:26:55 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3040b663
media-sound/patchage: bump to 1.0.10
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-sound/patchage/Manifest | 1 +
media-sound/patchage/patchage-1.0.10.ebuild | 50 +++++++++++++++++++++++++++++
2 files changed, 51 insertions(+)
diff --git a/media-sound/patchage/Manifest b/media-sound/patchage/Manifest
index 6b8aee71b9f9..92f04e2ecfbf 100644
--- a/media-sound/patchage/Manifest
+++ b/media-sound/patchage/Manifest
@@ -1,2 +1,3 @@
+DIST patchage-1.0.10.tar.xz 341164 BLAKE2B db7e17acc483b1fec27c80a3bedf3b546d303d8ce4f90f7f7669a4e4e1dcb526881d949d91edfdd6283dff3d9382c4c3534972065e2769a43e9e4b982b0dfbec SHA512 c6c43afc50978db02517282c1e8c7aad131e30f6255e79e65ea17edcee0b470ec3172da2c057abe4cf4bb12a081a92165ac322cfc4ec77382bb992e74827831b
DIST patchage-1.0.6.tar.bz2 664841 BLAKE2B 72d0de6d12e07ec160f4c59c51f138e1220a1b8994bdab90f56dd715bf16b6f561836d184ec5d5077de3bc7bb5c6778ea2b7bcbf0b33230be662f2b729eac568 SHA512 b7aedcb07da0c81842929833ab93a0b20c08e465bf05ebb4e47670d295c0d4d0d50f0f74001d9264c2c23ef08d3881232e7622ecf101d1d53ffcae2f8c0f31d3
DIST patchage-1.0.8.tar.xz 334888 BLAKE2B d6bac04a3a6880c7758a01c60b4f4c907e7ae191ef8956fb6ad6f039d9bf40e973ff6e38fc6a5af5b4b4ce5386496282ab5cb06573b0e091e24b7c80fae73ac3 SHA512 af2e43c53ce80ab59416745e85cd7fc524fd3b21ae259d171f15998566cfa067a84a7406e78f5b50bc3ff339363b3ed9cacc9790f08cc6189e4919fc43d041dc
diff --git a/media-sound/patchage/patchage-1.0.10.ebuild b/media-sound/patchage/patchage-1.0.10.ebuild
new file mode 100644
index 000000000000..e449d00c7bf0
--- /dev/null
+++ b/media-sound/patchage/patchage-1.0.10.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson xdg
+
+DESCRIPTION="Modular patch bay for JACK-based audio and MIDI systems"
+HOMEPAGE="https://drobilla.net/software/patchage"
+
+if [[ ${PV} == 9999 ]] ; then
+ inherit git-r3
+ EGIT_REPO_URI="https://gitlab.com/drobilla/patchage.git"
+else
+ SRC_URI="https://download.drobilla.net/${P}.tar.xz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="alsa jack jack-dbus test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ virtual/pkgconfig
+"
+RDEPEND="dev-cpp/glibmm:2
+ dev-cpp/gtkmm:2.4
+ media-libs/ganv
+ alsa? ( media-libs/alsa-lib )
+ jack? ( virtual/jack )
+ jack-dbus? (
+ dev-libs/dbus-glib
+ sys-apps/dbus
+ )"
+DEPEND="${RDEPEND}
+ dev-libs/boost
+ >=dev-libs/libfmt-9:="
+
+DOCS=( AUTHORS NEWS README.md )
+
+src_configure() {
+ local emesonargs=(
+ $(meson_feature alsa)
+ $(meson_feature jack)
+ $(meson_feature jack-dbus jack_dbus)
+ $(meson_feature test tests)
+ )
+ meson_src_configure
+}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2022-06-08 8:42 Agostino Sarubbo
0 siblings, 0 replies; 26+ messages in thread
From: Agostino Sarubbo @ 2022-06-08 8:42 UTC (permalink / raw
To: gentoo-commits
commit: 39550eeb03a2db99b85d8fd1bf8bebb407908c01
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 8 08:42:16 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Jun 8 08:42:16 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39550eeb
media-sound/patchage: amd64 stable wrt bug #850559
Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
media-sound/patchage/patchage-1.0.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-sound/patchage/patchage-1.0.6.ebuild b/media-sound/patchage/patchage-1.0.6.ebuild
index 1a176a97fe59..3427226b5b01 100644
--- a/media-sound/patchage/patchage-1.0.6.ebuild
+++ b/media-sound/patchage/patchage-1.0.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://download.drobilla.net/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
IUSE="alsa debug jack-dbus"
BDEPEND="
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2022-06-08 7:21 Jakov Smolić
0 siblings, 0 replies; 26+ messages in thread
From: Jakov Smolić @ 2022-06-08 7:21 UTC (permalink / raw
To: gentoo-commits
commit: 10dc4c007806a35ba6efa2f4a99fa72b2bb10331
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 8 07:21:01 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed Jun 8 07:21:01 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10dc4c00
media-sound/patchage: Stabilize 1.0.6 x86, #850559
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
media-sound/patchage/patchage-1.0.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-sound/patchage/patchage-1.0.6.ebuild b/media-sound/patchage/patchage-1.0.6.ebuild
index 6e6e47d0591f..1a176a97fe59 100644
--- a/media-sound/patchage/patchage-1.0.6.ebuild
+++ b/media-sound/patchage/patchage-1.0.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://download.drobilla.net/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
IUSE="alsa debug jack-dbus"
BDEPEND="
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2022-05-31 1:56 Sam James
0 siblings, 0 replies; 26+ messages in thread
From: Sam James @ 2022-05-31 1:56 UTC (permalink / raw
To: gentoo-commits
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")
+}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2021-04-30 20:53 Miroslav Šulc
0 siblings, 0 replies; 26+ messages in thread
From: Miroslav Šulc @ 2021-04-30 20:53 UTC (permalink / raw
To: gentoo-commits
commit: 5ec92f9412a8bf5483f2c0929a1c93591f8e8382
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 30 20:53:23 2021 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Fri Apr 30 20:53:38 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ec92f94
media-sound/patchage: removed unused deps
Closes: https://bugs.gentoo.org/787206
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-sound/patchage/patchage-1.0.4.ebuild | 2 --
1 file changed, 2 deletions(-)
diff --git a/media-sound/patchage/patchage-1.0.4.ebuild b/media-sound/patchage/patchage-1.0.4.ebuild
index a231618a501..b9a415d93c2 100644
--- a/media-sound/patchage/patchage-1.0.4.ebuild
+++ b/media-sound/patchage/patchage-1.0.4.ebuild
@@ -22,8 +22,6 @@ BDEPEND="
"
RDEPEND="dev-cpp/glibmm:2
dev-cpp/gtkmm:2.4
- dev-cpp/libglademm:2.4
- dev-cpp/libgnomecanvasmm:2.6
media-libs/ganv
virtual/jack
alsa? ( media-libs/alsa-lib )
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2021-02-08 17:26 Sam James
0 siblings, 0 replies; 26+ messages in thread
From: Sam James @ 2021-02-08 17:26 UTC (permalink / raw
To: gentoo-commits
commit: e3b75fff643ab68c7607b474d52252e825ce2e76
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 8 17:26:09 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb 8 17:26:09 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3b75fff
media-sound/patchage: Stabilize 1.0.4 x86, #769470
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-sound/patchage/patchage-1.0.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-sound/patchage/patchage-1.0.4.ebuild b/media-sound/patchage/patchage-1.0.4.ebuild
index 1f49643e324..a231618a501 100644
--- a/media-sound/patchage/patchage-1.0.4.ebuild
+++ b/media-sound/patchage/patchage-1.0.4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="alsa debug jack-dbus"
BDEPEND="
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2021-02-08 17:25 Sam James
0 siblings, 0 replies; 26+ messages in thread
From: Sam James @ 2021-02-08 17:25 UTC (permalink / raw
To: gentoo-commits
commit: 19f34af2e0698434d52f61784b19daea689a7312
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 8 17:24:50 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb 8 17:24:50 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19f34af2
media-sound/patchage: Stabilize 1.0.4 amd64, #769470
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-sound/patchage/patchage-1.0.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-sound/patchage/patchage-1.0.4.ebuild b/media-sound/patchage/patchage-1.0.4.ebuild
index 07b1e83730b..1f49643e324 100644
--- a/media-sound/patchage/patchage-1.0.4.ebuild
+++ b/media-sound/patchage/patchage-1.0.4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="alsa debug jack-dbus"
BDEPEND="
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2021-01-14 10:40 Miroslav Šulc
0 siblings, 0 replies; 26+ messages in thread
From: Miroslav Šulc @ 2021-01-14 10:40 UTC (permalink / raw
To: gentoo-commits
commit: a897a678ea96451b310f8714da2580a412500909
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 14 10:40:00 2021 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Thu Jan 14 10:40:16 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a897a678
media-sound/patchage: fixed configuration in 1.0.4
Closes: https://bugs.gentoo.org/765394
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-sound/patchage/patchage-1.0.4.ebuild | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/media-sound/patchage/patchage-1.0.4.ebuild b/media-sound/patchage/patchage-1.0.4.ebuild
index 24bbd1ab010..07b1e83730b 100644
--- a/media-sound/patchage/patchage-1.0.4.ebuild
+++ b/media-sound/patchage/patchage-1.0.4.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="alsa debug jack-dbus session"
+IUSE="alsa debug jack-dbus"
BDEPEND="
${PYTHON_DEPS}
@@ -43,6 +43,5 @@ src_configure() {
waf-utils_src_configure \
$(use debug && echo "--debug") \
$(use alsa || echo "--no-alsa") \
- $(use jack-dbus && echo "--jack-dbus") \
- $(use session && echo "--jack-session-manage")
+ $(use jack-dbus && echo "--jack-dbus")
}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2020-08-29 12:16 Miroslav Šulc
0 siblings, 0 replies; 26+ messages in thread
From: Miroslav Šulc @ 2020-08-29 12:16 UTC (permalink / raw
To: gentoo-commits
commit: a3f4eba72a8ec012c076406b965feff106a27a97
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 29 12:16:11 2020 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Sat Aug 29 12:16:11 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3f4eba7
media-sound/patchage: enabled string patch
Bug: https://bugs.gentoo.org/728178
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-sound/patchage/patchage-1.0.2.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/media-sound/patchage/patchage-1.0.2.ebuild b/media-sound/patchage/patchage-1.0.2.ebuild
index b25929f0516..b5955f1048d 100644
--- a/media-sound/patchage/patchage-1.0.2.ebuild
+++ b/media-sound/patchage/patchage-1.0.2.ebuild
@@ -31,9 +31,9 @@ DEPEND="${RDEPEND}
DOCS=( AUTHORS NEWS README.md )
-#PATCHES=(
-# "${FILESDIR}/${P}-string.patch"
-#)
+PATCHES=(
+ "${FILESDIR}/${P}-string.patch"
+)
src_configure() {
waf-utils_src_configure \
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2020-07-17 7:44 Agostino Sarubbo
0 siblings, 0 replies; 26+ messages in thread
From: Agostino Sarubbo @ 2020-07-17 7:44 UTC (permalink / raw
To: gentoo-commits
commit: d1e2f8a435be3dadaa0fb964dee1e938bf3d24d9
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 17 07:43:39 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jul 17 07:43:39 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1e2f8a4
media-sound/patchage: x86 stable wrt bug #732060
Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
media-sound/patchage/patchage-1.0.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-sound/patchage/patchage-1.0.2.ebuild b/media-sound/patchage/patchage-1.0.2.ebuild
index 20e8dca43fc..b25929f0516 100644
--- a/media-sound/patchage/patchage-1.0.2.ebuild
+++ b/media-sound/patchage/patchage-1.0.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="alsa debug jack-dbus session"
RDEPEND=">=dev-cpp/glibmm-2.14:2
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2020-07-17 7:21 Agostino Sarubbo
0 siblings, 0 replies; 26+ messages in thread
From: Agostino Sarubbo @ 2020-07-17 7:21 UTC (permalink / raw
To: gentoo-commits
commit: aca3475d39ba31b2f248b5eac57ce285c7236a4e
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 17 07:20:49 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jul 17 07:20:49 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aca3475d
media-sound/patchage: amd64 stable wrt bug #732060
Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
media-sound/patchage/patchage-1.0.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-sound/patchage/patchage-1.0.2.ebuild b/media-sound/patchage/patchage-1.0.2.ebuild
index 7e4f4bd5b7e..20e8dca43fc 100644
--- a/media-sound/patchage/patchage-1.0.2.ebuild
+++ b/media-sound/patchage/patchage-1.0.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="alsa debug jack-dbus session"
RDEPEND=">=dev-cpp/glibmm-2.14:2
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2020-06-10 8:10 Miroslav Šulc
0 siblings, 0 replies; 26+ messages in thread
From: Miroslav Šulc @ 2020-06-10 8:10 UTC (permalink / raw
To: gentoo-commits
commit: f4186b981a86e7b79fb5abd35946400bfdc5f509
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 10 08:09:05 2020 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Wed Jun 10 08:09:58 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4186b98
media-sound/patchage: bump to 1.0.2
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-sound/patchage/Manifest | 1 +
media-sound/patchage/patchage-1.0.2.ebuild | 40 ++++++++++++++++++++++++++++++
2 files changed, 41 insertions(+)
diff --git a/media-sound/patchage/Manifest b/media-sound/patchage/Manifest
index d1018c5715a..3456d91a622 100644
--- a/media-sound/patchage/Manifest
+++ b/media-sound/patchage/Manifest
@@ -1,2 +1,3 @@
DIST patchage-0.5.0.tar.bz2 411848 BLAKE2B 50138309d31c4806072c95af7df46e1b0ca2fe570c606886d9d6eb666cb3a499c12689b3ba1db26c0d59dd0ee732e350a6dffcdb7bee98f78906fa957e1e2609 SHA512 2b6c971f5fb192309734d6f42f17db83979805e6dcafbc95b343c3749afd85ea65c9b7d101b0b4bdf5102b6d60394cabcaa0d511aeb3fe1bf2db924b7e8b46cf
DIST patchage-1.0.0.tar.bz2 414300 BLAKE2B 4f2fd0a0911cb261508883b73305c2736143d9a165b854b8b4042a3c0f6454e1f79bc3b6cd5d28844e1cdeeaf7dd20effc164aa1151390d4c45af0a339c2ef5a SHA512 0a2be0183257a34a68ec84e6fb17d29a3d8ba7dd54a05fcdd13784ac8f5621eb7a376f17d42168958f5e1a8dab8858a9c5c8c867aa1838736cc2b7775f75f510
+DIST patchage-1.0.2.tar.bz2 586298 BLAKE2B db52e267dc6ecc246ca5a30d88976c426b607c47c10cf041fe3bb0ab2d6b22d7b3c55a704be0d2fb6b87b3d23d26f15dd49b3d151d3d1dc084f290f4e7ccb01d SHA512 8d59bf4a71c2b41a1c9d8f72da30046568573c6cedaca69815b279fd1c24d44267da6846e219449d47f43157663abc331ef89f241d94dd16e666e06da9f81e12
diff --git a/media-sound/patchage/patchage-1.0.2.ebuild b/media-sound/patchage/patchage-1.0.2.ebuild
new file mode 100644
index 00000000000..d936e429343
--- /dev/null
+++ b/media-sound/patchage/patchage-1.0.2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_REQ_USE='threads(+)'
+inherit waf-utils python-any-r1 xdg
+
+DESCRIPTION="Modular patch bay for JACK-based audio and MIDI systems"
+HOMEPAGE="http://drobilla.net/software/patchage"
+SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="alsa debug jack-dbus session"
+
+RDEPEND=">=dev-cpp/glibmm-2.14:2
+ >=dev-cpp/gtkmm-2.11.12:2.4
+ >=dev-cpp/libglademm-2.6.0:2.4
+ dev-cpp/libgnomecanvasmm:2.6
+ >=media-libs/ganv-1.4.0
+ virtual/jack
+ alsa? ( media-libs/alsa-lib )
+ jack-dbus? ( dev-libs/dbus-glib
+ sys-apps/dbus )"
+DEPEND="${RDEPEND}
+ ${PYTHON_DEPS}
+ dev-libs/boost
+ virtual/pkgconfig"
+
+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") \
+ $(use session && echo "--jack-session-manage")
+}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2020-06-10 8:10 Miroslav Šulc
0 siblings, 0 replies; 26+ messages in thread
From: Miroslav Šulc @ 2020-06-10 8:10 UTC (permalink / raw
To: gentoo-commits
commit: 0de1d2910935313e7cf0a3aa021a86980c3b2220
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 10 08:09:50 2020 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Wed Jun 10 08:09:58 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0de1d291
media-sound/patchage: removed obsolete 1.0.0*
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-sound/patchage/Manifest | 1 -
media-sound/patchage/patchage-1.0.0-r1.ebuild | 48 ---------------------------
media-sound/patchage/patchage-1.0.0.ebuild | 40 ----------------------
3 files changed, 89 deletions(-)
diff --git a/media-sound/patchage/Manifest b/media-sound/patchage/Manifest
index 3456d91a622..d921a5c2f1e 100644
--- a/media-sound/patchage/Manifest
+++ b/media-sound/patchage/Manifest
@@ -1,3 +1,2 @@
DIST patchage-0.5.0.tar.bz2 411848 BLAKE2B 50138309d31c4806072c95af7df46e1b0ca2fe570c606886d9d6eb666cb3a499c12689b3ba1db26c0d59dd0ee732e350a6dffcdb7bee98f78906fa957e1e2609 SHA512 2b6c971f5fb192309734d6f42f17db83979805e6dcafbc95b343c3749afd85ea65c9b7d101b0b4bdf5102b6d60394cabcaa0d511aeb3fe1bf2db924b7e8b46cf
-DIST patchage-1.0.0.tar.bz2 414300 BLAKE2B 4f2fd0a0911cb261508883b73305c2736143d9a165b854b8b4042a3c0f6454e1f79bc3b6cd5d28844e1cdeeaf7dd20effc164aa1151390d4c45af0a339c2ef5a SHA512 0a2be0183257a34a68ec84e6fb17d29a3d8ba7dd54a05fcdd13784ac8f5621eb7a376f17d42168958f5e1a8dab8858a9c5c8c867aa1838736cc2b7775f75f510
DIST patchage-1.0.2.tar.bz2 586298 BLAKE2B db52e267dc6ecc246ca5a30d88976c426b607c47c10cf041fe3bb0ab2d6b22d7b3c55a704be0d2fb6b87b3d23d26f15dd49b3d151d3d1dc084f290f4e7ccb01d SHA512 8d59bf4a71c2b41a1c9d8f72da30046568573c6cedaca69815b279fd1c24d44267da6846e219449d47f43157663abc331ef89f241d94dd16e666e06da9f81e12
diff --git a/media-sound/patchage/patchage-1.0.0-r1.ebuild b/media-sound/patchage/patchage-1.0.0-r1.ebuild
deleted file mode 100644
index 6fe9924872d..00000000000
--- a/media-sound/patchage/patchage-1.0.0-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE='threads(+)'
-inherit gnome2-utils waf-utils python-any-r1
-
-DESCRIPTION="Modular patch bay for JACK-based audio and MIDI systems"
-HOMEPAGE="http://drobilla.net/software/patchage"
-SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="alsa debug jack-dbus session"
-
-RDEPEND=">=dev-cpp/glibmm-2.14:2
- >=dev-cpp/gtkmm-2.11.12:2.4
- >=dev-cpp/libglademm-2.6.0:2.4
- dev-cpp/libgnomecanvasmm:2.6
- >=media-libs/ganv-1.4.0
- virtual/jack
- alsa? ( media-libs/alsa-lib )
- jack-dbus? ( dev-libs/dbus-glib
- sys-apps/dbus )"
-DEPEND="${RDEPEND}
- ${PYTHON_DEPS}
- dev-libs/boost
- virtual/pkgconfig"
-
-DOCS=( AUTHORS NEWS README )
-
-src_configure() {
- waf-utils_src_configure \
- $(use debug && echo "--debug") \
- $(use alsa || echo "--no-alsa") \
- $(use jack-dbus && echo "--jack-dbus") \
- $(use session && echo "--jack-session-manage")
-}
-
-pkg_postinst() {
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
-}
diff --git a/media-sound/patchage/patchage-1.0.0.ebuild b/media-sound/patchage/patchage-1.0.0.ebuild
deleted file mode 100644
index f8d6244f24d..00000000000
--- a/media-sound/patchage/patchage-1.0.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE='threads(+)'
-inherit waf-utils python-any-r1
-
-DESCRIPTION="Modular patch bay for JACK-based audio and MIDI systems"
-HOMEPAGE="http://drobilla.net/software/patchage"
-SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="alsa debug jack-dbus session"
-
-RDEPEND=">=dev-cpp/glibmm-2.14:2
- >=dev-cpp/gtkmm-2.11.12:2.4
- >=dev-cpp/libglademm-2.6.0:2.4
- dev-cpp/libgnomecanvasmm:2.6
- >=media-libs/ganv-1.4.0
- virtual/jack
- alsa? ( media-libs/alsa-lib )
- jack-dbus? ( dev-libs/dbus-glib
- sys-apps/dbus )"
-DEPEND="${RDEPEND}
- ${PYTHON_DEPS}
- dev-libs/boost
- virtual/pkgconfig"
-
-DOCS=( AUTHORS NEWS README )
-
-src_configure() {
- waf-utils_src_configure \
- $(use debug && echo "--debug") \
- $(use alsa || echo "--no-alsa") \
- $(use jack-dbus && echo "--jack-dbus") \
- $(use session && echo "--jack-session-manage")
-}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2017-12-20 22:40 Patrice Clement
0 siblings, 0 replies; 26+ messages in thread
From: Patrice Clement @ 2017-12-20 22:40 UTC (permalink / raw
To: gentoo-commits
commit: d503828cfe88f7cd3ce262cc40f0db31316f46b2
Author: Karl Linden <karl.j.linden <AT> gmail <DOT> com>
AuthorDate: Tue Dec 5 12:44:44 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Wed Dec 20 22:38:29 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d503828c
media-sound/patchage: update icons cache.
This fixes QA warnings about missing calls to gnome2_icon_cache_update.
Package-Manager: Portage-2.3.16, Repoman-2.3.6
media-sound/patchage/patchage-0.5.0-r2.ebuild | 10 +++++++++-
media-sound/patchage/patchage-1.0.0-r1.ebuild | 10 +++++++++-
2 files changed, 18 insertions(+), 2 deletions(-)
diff --git a/media-sound/patchage/patchage-0.5.0-r2.ebuild b/media-sound/patchage/patchage-0.5.0-r2.ebuild
index ecd4516090e..98b3a269c3f 100644
--- a/media-sound/patchage/patchage-0.5.0-r2.ebuild
+++ b/media-sound/patchage/patchage-0.5.0-r2.ebuild
@@ -5,7 +5,7 @@ EAPI=6
PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE='threads(+)'
-inherit flag-o-matic waf-utils python-any-r1
+inherit flag-o-matic gnome2-utils waf-utils python-any-r1
DESCRIPTION="Modular patch bay for audio and MIDI systems"
HOMEPAGE="http://wiki.drobilla.net/Patchage"
@@ -43,3 +43,11 @@ src_configure() {
$(use alsa || echo "--no-alsa") \
$(use lash || echo "--no-lash")
}
+
+pkg_postinst() {
+ gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+ gnome2_icon_cache_update
+}
diff --git a/media-sound/patchage/patchage-1.0.0-r1.ebuild b/media-sound/patchage/patchage-1.0.0-r1.ebuild
index 98c7403ade2..6fe9924872d 100644
--- a/media-sound/patchage/patchage-1.0.0-r1.ebuild
+++ b/media-sound/patchage/patchage-1.0.0-r1.ebuild
@@ -4,7 +4,7 @@
EAPI=6
PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE='threads(+)'
-inherit waf-utils python-any-r1
+inherit gnome2-utils waf-utils python-any-r1
DESCRIPTION="Modular patch bay for JACK-based audio and MIDI systems"
HOMEPAGE="http://drobilla.net/software/patchage"
@@ -38,3 +38,11 @@ src_configure() {
$(use jack-dbus && echo "--jack-dbus") \
$(use session && echo "--jack-session-manage")
}
+
+pkg_postinst() {
+ gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+ gnome2_icon_cache_update
+}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2017-12-20 22:40 Patrice Clement
0 siblings, 0 replies; 26+ messages in thread
From: Patrice Clement @ 2017-12-20 22:40 UTC (permalink / raw
To: gentoo-commits
commit: 353c8e640756f8d7b8a8cc4c9990023e915d4dc7
Author: Karl Linden <karl.j.linden <AT> gmail <DOT> com>
AuthorDate: Tue Dec 5 11:05:11 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Wed Dec 20 22:38:28 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=353c8e64
media-sound/patchage: depend on virtual/jack.
Closes: https://bugs.gentoo.org/631964
Closes: https://github.com/gentoo/gentoo/pull/6449
Package-Manager: Portage-2.3.16, Repoman-2.3.6
media-sound/patchage/patchage-0.5.0-r1.ebuild | 4 ++--
media-sound/patchage/patchage-1.0.0.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/media-sound/patchage/patchage-0.5.0-r1.ebuild b/media-sound/patchage/patchage-0.5.0-r1.ebuild
index e9ef3beb497..f7a464d6ad2 100644
--- a/media-sound/patchage/patchage-0.5.0-r1.ebuild
+++ b/media-sound/patchage/patchage-0.5.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -22,7 +22,7 @@ RDEPEND=">=media-libs/raul-0.7.0
>=dev-cpp/glibmm-2.14:2
>=dev-cpp/libglademm-2.6.0:2.4
dev-cpp/libgnomecanvasmm:2.6
- >=media-sound/jack-audio-connection-kit-0.107
+ virtual/jack
alsa? ( media-libs/alsa-lib )
lash? ( dev-libs/dbus-glib )"
DEPEND="${RDEPEND}
diff --git a/media-sound/patchage/patchage-1.0.0.ebuild b/media-sound/patchage/patchage-1.0.0.ebuild
index 87cdc2f529e..f8d6244f24d 100644
--- a/media-sound/patchage/patchage-1.0.0.ebuild
+++ b/media-sound/patchage/patchage-1.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -20,7 +20,7 @@ RDEPEND=">=dev-cpp/glibmm-2.14:2
>=dev-cpp/libglademm-2.6.0:2.4
dev-cpp/libgnomecanvasmm:2.6
>=media-libs/ganv-1.4.0
- >=media-sound/jack-audio-connection-kit-0.120.0
+ virtual/jack
alsa? ( media-libs/alsa-lib )
jack-dbus? ( dev-libs/dbus-glib
sys-apps/dbus )"
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2017-12-20 22:40 Patrice Clement
0 siblings, 0 replies; 26+ messages in thread
From: Patrice Clement @ 2017-12-20 22:40 UTC (permalink / raw
To: gentoo-commits
commit: 212ea959374c66fb8da88754737559f5d0d7f976
Author: Karl Linden <karl.j.linden <AT> gmail <DOT> com>
AuthorDate: Tue Dec 5 12:38:23 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Wed Dec 20 22:38:29 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=212ea959
media-sound/patchage: bump to EAPI 6.
Package-Manager: Portage-2.3.16, Repoman-2.3.6
media-sound/patchage/patchage-0.5.0-r2.ebuild | 45 +++++++++++++++++++++++++++
media-sound/patchage/patchage-1.0.0-r1.ebuild | 40 ++++++++++++++++++++++++
2 files changed, 85 insertions(+)
diff --git a/media-sound/patchage/patchage-0.5.0-r2.ebuild b/media-sound/patchage/patchage-0.5.0-r2.ebuild
new file mode 100644
index 00000000000..ecd4516090e
--- /dev/null
+++ b/media-sound/patchage/patchage-0.5.0-r2.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE='threads(+)'
+
+inherit flag-o-matic waf-utils python-any-r1
+
+DESCRIPTION="Modular patch bay for audio and MIDI systems"
+HOMEPAGE="http://wiki.drobilla.net/Patchage"
+SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="alsa debug lash"
+
+RDEPEND=">=media-libs/raul-0.7.0
+ >=x11-libs/flowcanvas-0.7.1
+ >=dev-cpp/gtkmm-2.11.12:2.4
+ >=dev-cpp/glibmm-2.14:2
+ >=dev-cpp/libglademm-2.6.0:2.4
+ dev-cpp/libgnomecanvasmm:2.6
+ virtual/jack
+ alsa? ( media-libs/alsa-lib )
+ lash? ( dev-libs/dbus-glib )"
+DEPEND="${RDEPEND}
+ ${PYTHON_DEPS}
+ dev-libs/boost
+ virtual/pkgconfig"
+
+DOCS=( AUTHORS README ChangeLog )
+
+PATCHES=(
+ "${FILESDIR}"/${P}-desktop.patch
+)
+
+src_configure() {
+ append-cxxflags -std=c++11
+ waf-utils_src_configure \
+ $(use debug && echo "--debug") \
+ $(use alsa || echo "--no-alsa") \
+ $(use lash || echo "--no-lash")
+}
diff --git a/media-sound/patchage/patchage-1.0.0-r1.ebuild b/media-sound/patchage/patchage-1.0.0-r1.ebuild
new file mode 100644
index 00000000000..98c7403ade2
--- /dev/null
+++ b/media-sound/patchage/patchage-1.0.0-r1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE='threads(+)'
+inherit waf-utils python-any-r1
+
+DESCRIPTION="Modular patch bay for JACK-based audio and MIDI systems"
+HOMEPAGE="http://drobilla.net/software/patchage"
+SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="alsa debug jack-dbus session"
+
+RDEPEND=">=dev-cpp/glibmm-2.14:2
+ >=dev-cpp/gtkmm-2.11.12:2.4
+ >=dev-cpp/libglademm-2.6.0:2.4
+ dev-cpp/libgnomecanvasmm:2.6
+ >=media-libs/ganv-1.4.0
+ virtual/jack
+ alsa? ( media-libs/alsa-lib )
+ jack-dbus? ( dev-libs/dbus-glib
+ sys-apps/dbus )"
+DEPEND="${RDEPEND}
+ ${PYTHON_DEPS}
+ dev-libs/boost
+ virtual/pkgconfig"
+
+DOCS=( AUTHORS NEWS README )
+
+src_configure() {
+ waf-utils_src_configure \
+ $(use debug && echo "--debug") \
+ $(use alsa || echo "--no-alsa") \
+ $(use jack-dbus && echo "--jack-dbus") \
+ $(use session && echo "--jack-session-manage")
+}
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2017-12-20 22:40 Patrice Clement
0 siblings, 0 replies; 26+ messages in thread
From: Patrice Clement @ 2017-12-20 22:40 UTC (permalink / raw
To: gentoo-commits
commit: 1a409a552634da123544c7f7dec8d6fe712fecba
Author: Karl Linden <karl.j.linden <AT> gmail <DOT> com>
AuthorDate: Sat Dec 9 18:24:53 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Wed Dec 20 22:38:29 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a409a55
media-sound/patchage: correct HOMEPAGE.
Package-Manager: Portage-2.3.16, Repoman-2.3.6
media-sound/patchage/patchage-0.5.0-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-sound/patchage/patchage-0.5.0-r2.ebuild b/media-sound/patchage/patchage-0.5.0-r2.ebuild
index 98b3a269c3f..54e2fcbe562 100644
--- a/media-sound/patchage/patchage-0.5.0-r2.ebuild
+++ b/media-sound/patchage/patchage-0.5.0-r2.ebuild
@@ -8,7 +8,7 @@ PYTHON_REQ_USE='threads(+)'
inherit flag-o-matic gnome2-utils waf-utils python-any-r1
DESCRIPTION="Modular patch bay for audio and MIDI systems"
-HOMEPAGE="http://wiki.drobilla.net/Patchage"
+HOMEPAGE="http://drobilla.net/software/patchage"
SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/
@ 2015-12-23 10:59 Pacho Ramos
0 siblings, 0 replies; 26+ messages in thread
From: Pacho Ramos @ 2015-12-23 10:59 UTC (permalink / raw
To: gentoo-commits
commit: e5c4b5fc6265b29c24bef9f4a220d7a8f31b9da6
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 23 10:52:02 2015 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Dec 23 10:58:56 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5c4b5fc
media-sound/patchage: Fix building with latest glibmm/libsigc++
Package-Manager: portage-2.2.26
media-sound/patchage/patchage-0.5.0-r1.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/media-sound/patchage/patchage-0.5.0-r1.ebuild b/media-sound/patchage/patchage-0.5.0-r1.ebuild
index cbe9654..274aa0c 100644
--- a/media-sound/patchage/patchage-0.5.0-r1.ebuild
+++ b/media-sound/patchage/patchage-0.5.0-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=5
PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE='threads(+)'
-inherit eutils waf-utils python-any-r1
+inherit eutils flag-o-matic waf-utils python-any-r1
DESCRIPTION="Modular patch bay for audio and MIDI systems"
HOMEPAGE="http://wiki.drobilla.net/Patchage"
@@ -38,6 +38,7 @@ src_prepare() {
}
src_configure() {
+ append-cxxflags -std=c++11
waf-utils_src_configure \
$(use debug && echo "--debug") \
$(use alsa || echo "--no-alsa") \
^ permalink raw reply related [flat|nested] 26+ messages in thread
end of thread, other threads:[~2023-04-21 6:47 UTC | newest]
Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-23 20:00 [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/ Miroslav Šulc
-- strict thread matches above, loose matches on Subject: below --
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-06-08 8:42 Agostino Sarubbo
2022-06-08 7:21 Jakov Smolić
2022-05-31 1:56 Sam James
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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox