public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-sound/qpwgraph/
@ 2023-09-03 19:13 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2023-09-03 19:13 UTC (permalink / raw
  To: gentoo-commits

commit:     e3b66138a76da0d871b614e3e4fb215cc3045486
Author:     Adel KARA SLIMANE <adel.ks <AT> zegrapher <DOT> com>
AuthorDate: Sun Sep  3 18:14:57 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep  3 19:13:05 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3b66138

media-sound/qpwgraph: new package, add 0.5.2, 9999

Closes: https://bugs.gentoo.org/835516
Signed-off-by: Adel KARA SLIMANE <adel.ks <AT> zegrapher.com>
Closes: https://github.com/gentoo/gentoo/pull/32585
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-sound/qpwgraph/Manifest              |  1 +
 media-sound/qpwgraph/metadata.xml          | 19 +++++++++++
 media-sound/qpwgraph/qpwgraph-0.5.2.ebuild | 55 ++++++++++++++++++++++++++++++
 media-sound/qpwgraph/qpwgraph-9999.ebuild  | 55 ++++++++++++++++++++++++++++++
 4 files changed, 130 insertions(+)

diff --git a/media-sound/qpwgraph/Manifest b/media-sound/qpwgraph/Manifest
new file mode 100644
index 000000000000..f9967e1c05d2
--- /dev/null
+++ b/media-sound/qpwgraph/Manifest
@@ -0,0 +1 @@
+DIST qpwgraph-v0.5.2.tar.bz2 454542 BLAKE2B aaeb947d77e5e1c41195a994193cd3de10fc8dfa798b36f90577f9a8b4037176b5465c55123ab7308691279b5c6c6c20d426cfa1ccf0836b35873b30a6f135df SHA512 0ab06d72fd3a7045f6a4f0895e9bdedeaedf97a9d948f78b763f1a46ef2444f6cf9574f02c25197249ba22bf7189b86cf4fe59dc5d091627788e3e45126809fa

diff --git a/media-sound/qpwgraph/metadata.xml b/media-sound/qpwgraph/metadata.xml
new file mode 100644
index 000000000000..d07baf2f954e
--- /dev/null
+++ b/media-sound/qpwgraph/metadata.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<name>Adel Kara Slimane</name>
+		<email>adel.ks@zegrapher.com</email>
+	</maintainer>
+	<maintainer type="project" proxied="proxy">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="freedesktop-gitlab">rncbc/qpwgraph</remote-id>
+		<bugs-to>https://gitlab.freedesktop.org/rncbc/qpwgraph/-/issues</bugs-to>
+	</upstream>
+	<use>
+		<flag name="trayicon">Build support for tray icon</flag>
+	</use>
+</pkgmetadata>

diff --git a/media-sound/qpwgraph/qpwgraph-0.5.2.ebuild b/media-sound/qpwgraph/qpwgraph-0.5.2.ebuild
new file mode 100644
index 000000000000..744009584113
--- /dev/null
+++ b/media-sound/qpwgraph/qpwgraph-0.5.2.ebuild
@@ -0,0 +1,55 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake xdg
+
+DESCRIPTION="PipeWire Graph Qt GUI Interface"
+HOMEPAGE="https://gitlab.freedesktop.org/rncbc/qpwgraph"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://gitlab.freedesktop.org/rncbc/qpwgraph"
+else
+	SRC_URI="https://gitlab.freedesktop.org/rncbc/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2"
+	S="${WORKDIR}/${PN}-v${PV}"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+
+IUSE="alsa trayicon qt6 wayland"
+
+BDEPEND="
+	!qt6? ( dev-qt/linguist-tools:5 )
+	qt6? ( dev-qt/qttools:6[linguist] )
+"
+DEPEND="
+	media-video/pipewire:=
+	alsa? ( media-libs/alsa-lib )
+	!qt6? (
+		dev-qt/qtcore:5
+		dev-qt/qtgui:5
+		dev-qt/qtnetwork:5
+		dev-qt/qtsvg:5
+		dev-qt/qtwidgets:5
+		dev-qt/qtxml:5
+	)
+	qt6? (
+		dev-qt/qtbase:6[gui,widgets,xml,network]
+		dev-qt/qtsvg:6
+	)
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+	local mycmakeargs=(
+		-DCONFIG_ALSA_MIDI=$(usex alsa)
+		-DCONFIG_SYSTEM_TRAY=$(usex trayicon)
+		-DCONFIG_WAYLAND=$(usex wayland)
+		-DCONFIG_QT6=$(usex qt6)
+	)
+	cmake_src_configure
+}

diff --git a/media-sound/qpwgraph/qpwgraph-9999.ebuild b/media-sound/qpwgraph/qpwgraph-9999.ebuild
new file mode 100644
index 000000000000..744009584113
--- /dev/null
+++ b/media-sound/qpwgraph/qpwgraph-9999.ebuild
@@ -0,0 +1,55 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake xdg
+
+DESCRIPTION="PipeWire Graph Qt GUI Interface"
+HOMEPAGE="https://gitlab.freedesktop.org/rncbc/qpwgraph"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://gitlab.freedesktop.org/rncbc/qpwgraph"
+else
+	SRC_URI="https://gitlab.freedesktop.org/rncbc/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2"
+	S="${WORKDIR}/${PN}-v${PV}"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+
+IUSE="alsa trayicon qt6 wayland"
+
+BDEPEND="
+	!qt6? ( dev-qt/linguist-tools:5 )
+	qt6? ( dev-qt/qttools:6[linguist] )
+"
+DEPEND="
+	media-video/pipewire:=
+	alsa? ( media-libs/alsa-lib )
+	!qt6? (
+		dev-qt/qtcore:5
+		dev-qt/qtgui:5
+		dev-qt/qtnetwork:5
+		dev-qt/qtsvg:5
+		dev-qt/qtwidgets:5
+		dev-qt/qtxml:5
+	)
+	qt6? (
+		dev-qt/qtbase:6[gui,widgets,xml,network]
+		dev-qt/qtsvg:6
+	)
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+	local mycmakeargs=(
+		-DCONFIG_ALSA_MIDI=$(usex alsa)
+		-DCONFIG_SYSTEM_TRAY=$(usex trayicon)
+		-DCONFIG_WAYLAND=$(usex wayland)
+		-DCONFIG_QT6=$(usex qt6)
+	)
+	cmake_src_configure
+}


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/qpwgraph/
@ 2023-10-14  5:45 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2023-10-14  5:45 UTC (permalink / raw
  To: gentoo-commits

commit:     c4be086cdf1d898d9e09ffb4601fd3ff54759676
Author:     Adel KARA SLIMANE <adel.ks <AT> zegrapher <DOT> com>
AuthorDate: Sat Oct  7 16:51:11 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Oct 14 05:44:06 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4be086c

media-sound/qpwgraph: add 0.5.3

Signed-off-by: Adel KARA SLIMANE <adel.ks <AT> zegrapher.com>
Closes: https://github.com/gentoo/gentoo/pull/33233
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-sound/qpwgraph/Manifest              |  1 +
 media-sound/qpwgraph/qpwgraph-0.5.3.ebuild | 55 ++++++++++++++++++++++++++++++
 2 files changed, 56 insertions(+)

diff --git a/media-sound/qpwgraph/Manifest b/media-sound/qpwgraph/Manifest
index f9967e1c05d2..484299d511cc 100644
--- a/media-sound/qpwgraph/Manifest
+++ b/media-sound/qpwgraph/Manifest
@@ -1 +1,2 @@
 DIST qpwgraph-v0.5.2.tar.bz2 454542 BLAKE2B aaeb947d77e5e1c41195a994193cd3de10fc8dfa798b36f90577f9a8b4037176b5465c55123ab7308691279b5c6c6c20d426cfa1ccf0836b35873b30a6f135df SHA512 0ab06d72fd3a7045f6a4f0895e9bdedeaedf97a9d948f78b763f1a46ef2444f6cf9574f02c25197249ba22bf7189b86cf4fe59dc5d091627788e3e45126809fa
+DIST qpwgraph-v0.5.3.tar.bz2 235908 BLAKE2B c304231d872c469c5154a5e2a13c9c28ab1d4c877cd62da671ff1588360ae30606cbe70388748e87193a83047ce6c328e573f3886bcd7cff6151357634695b17 SHA512 c4ff0a575eaaf71b69c192a2533275e61be3611b95dd6c48ed7109ddad36d97493a76babe1215863e4391acb9efaf480fc3b905dd357239869c9c1ae4c7d3e2f

diff --git a/media-sound/qpwgraph/qpwgraph-0.5.3.ebuild b/media-sound/qpwgraph/qpwgraph-0.5.3.ebuild
new file mode 100644
index 000000000000..744009584113
--- /dev/null
+++ b/media-sound/qpwgraph/qpwgraph-0.5.3.ebuild
@@ -0,0 +1,55 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake xdg
+
+DESCRIPTION="PipeWire Graph Qt GUI Interface"
+HOMEPAGE="https://gitlab.freedesktop.org/rncbc/qpwgraph"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://gitlab.freedesktop.org/rncbc/qpwgraph"
+else
+	SRC_URI="https://gitlab.freedesktop.org/rncbc/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2"
+	S="${WORKDIR}/${PN}-v${PV}"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+
+IUSE="alsa trayicon qt6 wayland"
+
+BDEPEND="
+	!qt6? ( dev-qt/linguist-tools:5 )
+	qt6? ( dev-qt/qttools:6[linguist] )
+"
+DEPEND="
+	media-video/pipewire:=
+	alsa? ( media-libs/alsa-lib )
+	!qt6? (
+		dev-qt/qtcore:5
+		dev-qt/qtgui:5
+		dev-qt/qtnetwork:5
+		dev-qt/qtsvg:5
+		dev-qt/qtwidgets:5
+		dev-qt/qtxml:5
+	)
+	qt6? (
+		dev-qt/qtbase:6[gui,widgets,xml,network]
+		dev-qt/qtsvg:6
+	)
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+	local mycmakeargs=(
+		-DCONFIG_ALSA_MIDI=$(usex alsa)
+		-DCONFIG_SYSTEM_TRAY=$(usex trayicon)
+		-DCONFIG_WAYLAND=$(usex wayland)
+		-DCONFIG_QT6=$(usex qt6)
+	)
+	cmake_src_configure
+}


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/qpwgraph/
@ 2024-01-20 12:23 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2024-01-20 12:23 UTC (permalink / raw
  To: gentoo-commits

commit:     337873aabab7b7f1f1c7b158d7497008892fcd88
Author:     Adel KARA SLIMANE <adel.ks <AT> zegrapher <DOT> com>
AuthorDate: Thu Dec 21 21:47:15 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 20 12:22:53 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=337873aa

media-sound/qpwgraph: add 0.6.1, drop old

Closes: https://bugs.gentoo.org/920485

Signed-off-by: Adel KARA SLIMANE <adel.ks <AT> zegrapher.com>
Closes: https://github.com/gentoo/gentoo/pull/34004
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-sound/qpwgraph/Manifest                      |  3 +-
 media-sound/qpwgraph/qpwgraph-0.5.3.ebuild         | 55 ----------------------
 ...qpwgraph-0.5.2.ebuild => qpwgraph-0.6.1.ebuild} |  0
 3 files changed, 1 insertion(+), 57 deletions(-)

diff --git a/media-sound/qpwgraph/Manifest b/media-sound/qpwgraph/Manifest
index 484299d511cc..a66f54b3b00d 100644
--- a/media-sound/qpwgraph/Manifest
+++ b/media-sound/qpwgraph/Manifest
@@ -1,2 +1 @@
-DIST qpwgraph-v0.5.2.tar.bz2 454542 BLAKE2B aaeb947d77e5e1c41195a994193cd3de10fc8dfa798b36f90577f9a8b4037176b5465c55123ab7308691279b5c6c6c20d426cfa1ccf0836b35873b30a6f135df SHA512 0ab06d72fd3a7045f6a4f0895e9bdedeaedf97a9d948f78b763f1a46ef2444f6cf9574f02c25197249ba22bf7189b86cf4fe59dc5d091627788e3e45126809fa
-DIST qpwgraph-v0.5.3.tar.bz2 235908 BLAKE2B c304231d872c469c5154a5e2a13c9c28ab1d4c877cd62da671ff1588360ae30606cbe70388748e87193a83047ce6c328e573f3886bcd7cff6151357634695b17 SHA512 c4ff0a575eaaf71b69c192a2533275e61be3611b95dd6c48ed7109ddad36d97493a76babe1215863e4391acb9efaf480fc3b905dd357239869c9c1ae4c7d3e2f
+DIST qpwgraph-v0.6.1.tar.bz2 235779 BLAKE2B 467b5200c89bf24e6572caef7ba48c267d70e766ab525b1bccbda0de80a85ddfc5b0d4613d4d408ca4a2524f9250234918629a08f85590ec4bbf5b29d08eca55 SHA512 b3c42c07f0ab7a21128e51a81c814f1022b0b27ad25b52cdf2170d11086a6ca39eef68d23142d78ae20ff858a0b813b1146811d3afa59913cf4e1f5208df2be6

diff --git a/media-sound/qpwgraph/qpwgraph-0.5.3.ebuild b/media-sound/qpwgraph/qpwgraph-0.5.3.ebuild
deleted file mode 100644
index 744009584113..000000000000
--- a/media-sound/qpwgraph/qpwgraph-0.5.3.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake xdg
-
-DESCRIPTION="PipeWire Graph Qt GUI Interface"
-HOMEPAGE="https://gitlab.freedesktop.org/rncbc/qpwgraph"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://gitlab.freedesktop.org/rncbc/qpwgraph"
-else
-	SRC_URI="https://gitlab.freedesktop.org/rncbc/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2"
-	S="${WORKDIR}/${PN}-v${PV}"
-	KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-
-IUSE="alsa trayicon qt6 wayland"
-
-BDEPEND="
-	!qt6? ( dev-qt/linguist-tools:5 )
-	qt6? ( dev-qt/qttools:6[linguist] )
-"
-DEPEND="
-	media-video/pipewire:=
-	alsa? ( media-libs/alsa-lib )
-	!qt6? (
-		dev-qt/qtcore:5
-		dev-qt/qtgui:5
-		dev-qt/qtnetwork:5
-		dev-qt/qtsvg:5
-		dev-qt/qtwidgets:5
-		dev-qt/qtxml:5
-	)
-	qt6? (
-		dev-qt/qtbase:6[gui,widgets,xml,network]
-		dev-qt/qtsvg:6
-	)
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-	local mycmakeargs=(
-		-DCONFIG_ALSA_MIDI=$(usex alsa)
-		-DCONFIG_SYSTEM_TRAY=$(usex trayicon)
-		-DCONFIG_WAYLAND=$(usex wayland)
-		-DCONFIG_QT6=$(usex qt6)
-	)
-	cmake_src_configure
-}

diff --git a/media-sound/qpwgraph/qpwgraph-0.5.2.ebuild b/media-sound/qpwgraph/qpwgraph-0.6.1.ebuild
similarity index 100%
rename from media-sound/qpwgraph/qpwgraph-0.5.2.ebuild
rename to media-sound/qpwgraph/qpwgraph-0.6.1.ebuild


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/qpwgraph/
@ 2024-04-26  6:55 Joonas Niilola
  0 siblings, 0 replies; 9+ messages in thread
From: Joonas Niilola @ 2024-04-26  6:55 UTC (permalink / raw
  To: gentoo-commits

commit:     1dad92a381bde30ac04ff111e19ff77f4383f785
Author:     Adel KARA SLIMANE <adel.ks <AT> zegrapher <DOT> com>
AuthorDate: Sat Mar 23 16:53:00 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Apr 26 06:55:03 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dad92a3

media-sound/qpwgraph: add 0.6.2, drop 0.6.1

Signed-off-by: Adel KARA SLIMANE <adel.ks <AT> zegrapher.com>
Closes: https://github.com/gentoo/gentoo/pull/35884
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 media-sound/qpwgraph/Manifest                                         | 2 +-
 media-sound/qpwgraph/{qpwgraph-0.6.1.ebuild => qpwgraph-0.6.2.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/qpwgraph/Manifest b/media-sound/qpwgraph/Manifest
index a66f54b3b00d..d5e22c9a82b1 100644
--- a/media-sound/qpwgraph/Manifest
+++ b/media-sound/qpwgraph/Manifest
@@ -1 +1 @@
-DIST qpwgraph-v0.6.1.tar.bz2 235779 BLAKE2B 467b5200c89bf24e6572caef7ba48c267d70e766ab525b1bccbda0de80a85ddfc5b0d4613d4d408ca4a2524f9250234918629a08f85590ec4bbf5b29d08eca55 SHA512 b3c42c07f0ab7a21128e51a81c814f1022b0b27ad25b52cdf2170d11086a6ca39eef68d23142d78ae20ff858a0b813b1146811d3afa59913cf4e1f5208df2be6
+DIST qpwgraph-v0.6.2.tar.bz2 213346 BLAKE2B eb2984c0b72d6478a865cad22f9cfb2fcf4098a2d86bd42d69946ccc14780a1c27e8843518b7fc25769bf157090170efe33ff3b95f7df9823ac57c53b465a9ca SHA512 229bc94691206b5bd236c5b998009b799e00c2ca6dd5eb5a1aa7c3ff0c88713d13705700961d536bac82aca6c4ecd8776cd18307f61f9ddc7f5abbdc4e429693

diff --git a/media-sound/qpwgraph/qpwgraph-0.6.1.ebuild b/media-sound/qpwgraph/qpwgraph-0.6.2.ebuild
similarity index 97%
rename from media-sound/qpwgraph/qpwgraph-0.6.1.ebuild
rename to media-sound/qpwgraph/qpwgraph-0.6.2.ebuild
index 744009584113..37b4e0ba45ae 100644
--- a/media-sound/qpwgraph/qpwgraph-0.6.1.ebuild
+++ b/media-sound/qpwgraph/qpwgraph-0.6.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2023 Gentoo Authors
+# Copyright 2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/qpwgraph/
@ 2024-10-01 18:27 Andreas Sturmlechner
  0 siblings, 0 replies; 9+ messages in thread
From: Andreas Sturmlechner @ 2024-10-01 18:27 UTC (permalink / raw
  To: gentoo-commits

commit:     515373026147cf85bdc6f84f84fb1fdcbc4a9f00
Author:     Adel KARA SLIMANE <adel.ks <AT> zegrapher <DOT> com>
AuthorDate: Fri Sep 20 18:50:14 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Oct  1 18:27:01 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51537302

media-sound/qpwgraph: add 0.7.8

Closes: https://bugs.gentoo.org/936232

Signed-off-by: Adel KARA SLIMANE <adel.ks <AT> zegrapher.com>
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 media-sound/qpwgraph/Manifest              |  1 +
 media-sound/qpwgraph/qpwgraph-0.7.8.ebuild | 55 ++++++++++++++++++++++++++++++
 2 files changed, 56 insertions(+)

diff --git a/media-sound/qpwgraph/Manifest b/media-sound/qpwgraph/Manifest
index d5e22c9a82b1..34097dce74cf 100644
--- a/media-sound/qpwgraph/Manifest
+++ b/media-sound/qpwgraph/Manifest
@@ -1 +1,2 @@
 DIST qpwgraph-v0.6.2.tar.bz2 213346 BLAKE2B eb2984c0b72d6478a865cad22f9cfb2fcf4098a2d86bd42d69946ccc14780a1c27e8843518b7fc25769bf157090170efe33ff3b95f7df9823ac57c53b465a9ca SHA512 229bc94691206b5bd236c5b998009b799e00c2ca6dd5eb5a1aa7c3ff0c88713d13705700961d536bac82aca6c4ecd8776cd18307f61f9ddc7f5abbdc4e429693
+DIST qpwgraph-v0.7.8.tar.bz2 228111 BLAKE2B 079e5e91d23bd0ded1670b2ab514f5b93f5085dfb76f12e944ff04460544ee858fdde6bacfd3c7d3ad448b880d46e42d8223d0e0562c1752b00631008f47424c SHA512 982cafa0f4d2e17b84de992455d10cb591d77ce8e2c1f052864c3c57de0ecaa67f8d9880a03cf851f5cea24db65ece6a2a42d873bcca4bc43e1de7843548e8f9

diff --git a/media-sound/qpwgraph/qpwgraph-0.7.8.ebuild b/media-sound/qpwgraph/qpwgraph-0.7.8.ebuild
new file mode 100644
index 000000000000..37b4e0ba45ae
--- /dev/null
+++ b/media-sound/qpwgraph/qpwgraph-0.7.8.ebuild
@@ -0,0 +1,55 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake xdg
+
+DESCRIPTION="PipeWire Graph Qt GUI Interface"
+HOMEPAGE="https://gitlab.freedesktop.org/rncbc/qpwgraph"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://gitlab.freedesktop.org/rncbc/qpwgraph"
+else
+	SRC_URI="https://gitlab.freedesktop.org/rncbc/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2"
+	S="${WORKDIR}/${PN}-v${PV}"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+
+IUSE="alsa trayicon qt6 wayland"
+
+BDEPEND="
+	!qt6? ( dev-qt/linguist-tools:5 )
+	qt6? ( dev-qt/qttools:6[linguist] )
+"
+DEPEND="
+	media-video/pipewire:=
+	alsa? ( media-libs/alsa-lib )
+	!qt6? (
+		dev-qt/qtcore:5
+		dev-qt/qtgui:5
+		dev-qt/qtnetwork:5
+		dev-qt/qtsvg:5
+		dev-qt/qtwidgets:5
+		dev-qt/qtxml:5
+	)
+	qt6? (
+		dev-qt/qtbase:6[gui,widgets,xml,network]
+		dev-qt/qtsvg:6
+	)
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+	local mycmakeargs=(
+		-DCONFIG_ALSA_MIDI=$(usex alsa)
+		-DCONFIG_SYSTEM_TRAY=$(usex trayicon)
+		-DCONFIG_WAYLAND=$(usex wayland)
+		-DCONFIG_QT6=$(usex qt6)
+	)
+	cmake_src_configure
+}


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/qpwgraph/
@ 2024-10-01 18:27 Andreas Sturmlechner
  0 siblings, 0 replies; 9+ messages in thread
From: Andreas Sturmlechner @ 2024-10-01 18:27 UTC (permalink / raw
  To: gentoo-commits

commit:     b4285e5d5b29ece02ba2780cb8efa899a137c108
Author:     Adel KARA SLIMANE <adel.ks <AT> zegrapher <DOT> com>
AuthorDate: Sat Sep 28 18:06:38 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Oct  1 18:27:02 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4285e5d

media-sound/qpwgraph: drop 'trayicon' useflag

Enable it unconditionally, can be disabled in the app's menu

Signed-off-by: Adel KARA SLIMANE <adel.ks <AT> zegrapher.com>
Closes: https://github.com/gentoo/gentoo/pull/38691
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 media-sound/qpwgraph/metadata.xml          | 3 ---
 media-sound/qpwgraph/qpwgraph-0.7.8.ebuild | 4 ++--
 media-sound/qpwgraph/qpwgraph-9999.ebuild  | 4 ++--
 3 files changed, 4 insertions(+), 7 deletions(-)

diff --git a/media-sound/qpwgraph/metadata.xml b/media-sound/qpwgraph/metadata.xml
index d07baf2f954e..6f30248e5496 100644
--- a/media-sound/qpwgraph/metadata.xml
+++ b/media-sound/qpwgraph/metadata.xml
@@ -13,7 +13,4 @@
 		<remote-id type="freedesktop-gitlab">rncbc/qpwgraph</remote-id>
 		<bugs-to>https://gitlab.freedesktop.org/rncbc/qpwgraph/-/issues</bugs-to>
 	</upstream>
-	<use>
-		<flag name="trayicon">Build support for tray icon</flag>
-	</use>
 </pkgmetadata>

diff --git a/media-sound/qpwgraph/qpwgraph-0.7.8.ebuild b/media-sound/qpwgraph/qpwgraph-0.7.8.ebuild
index f673a08cd124..f559461abba8 100644
--- a/media-sound/qpwgraph/qpwgraph-0.7.8.ebuild
+++ b/media-sound/qpwgraph/qpwgraph-0.7.8.ebuild
@@ -20,7 +20,7 @@ fi
 LICENSE="GPL-2"
 SLOT="0"
 
-IUSE="alsa trayicon"
+IUSE="alsa"
 
 BDEPEND="
 	dev-qt/qttools:6[linguist]
@@ -36,7 +36,7 @@ RDEPEND="${DEPEND}"
 src_configure() {
 	local mycmakeargs=(
 		-DCONFIG_ALSA_MIDI=$(usex alsa)
-		-DCONFIG_SYSTEM_TRAY=$(usex trayicon)
+		-DCONFIG_SYSTEM_TRAY=1
 		-DCONFIG_WAYLAND=1
 		-DCONFIG_QT6=1
 	)

diff --git a/media-sound/qpwgraph/qpwgraph-9999.ebuild b/media-sound/qpwgraph/qpwgraph-9999.ebuild
index f673a08cd124..f559461abba8 100644
--- a/media-sound/qpwgraph/qpwgraph-9999.ebuild
+++ b/media-sound/qpwgraph/qpwgraph-9999.ebuild
@@ -20,7 +20,7 @@ fi
 LICENSE="GPL-2"
 SLOT="0"
 
-IUSE="alsa trayicon"
+IUSE="alsa"
 
 BDEPEND="
 	dev-qt/qttools:6[linguist]
@@ -36,7 +36,7 @@ RDEPEND="${DEPEND}"
 src_configure() {
 	local mycmakeargs=(
 		-DCONFIG_ALSA_MIDI=$(usex alsa)
-		-DCONFIG_SYSTEM_TRAY=$(usex trayicon)
+		-DCONFIG_SYSTEM_TRAY=1
 		-DCONFIG_WAYLAND=1
 		-DCONFIG_QT6=1
 	)


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/qpwgraph/
@ 2024-10-01 18:27 Andreas Sturmlechner
  0 siblings, 0 replies; 9+ messages in thread
From: Andreas Sturmlechner @ 2024-10-01 18:27 UTC (permalink / raw
  To: gentoo-commits

commit:     d16c57c24c32da15268b7814705e98c1d25252a4
Author:     Adel KARA SLIMANE <adel.ks <AT> zegrapher <DOT> com>
AuthorDate: Fri Sep 20 18:53:43 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Oct  1 18:27:02 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d16c57c2

media-sound/qpwgraph: drop qt5 support

Signed-off-by: Adel KARA SLIMANE <adel.ks <AT> zegrapher.com>
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 media-sound/qpwgraph/qpwgraph-0.7.8.ebuild | 21 +++++----------------
 media-sound/qpwgraph/qpwgraph-9999.ebuild  | 23 ++++++-----------------
 2 files changed, 11 insertions(+), 33 deletions(-)

diff --git a/media-sound/qpwgraph/qpwgraph-0.7.8.ebuild b/media-sound/qpwgraph/qpwgraph-0.7.8.ebuild
index 37b4e0ba45ae..4095739e23ac 100644
--- a/media-sound/qpwgraph/qpwgraph-0.7.8.ebuild
+++ b/media-sound/qpwgraph/qpwgraph-0.7.8.ebuild
@@ -20,27 +20,16 @@ fi
 LICENSE="GPL-2"
 SLOT="0"
 
-IUSE="alsa trayicon qt6 wayland"
+IUSE="alsa trayicon wayland"
 
 BDEPEND="
-	!qt6? ( dev-qt/linguist-tools:5 )
-	qt6? ( dev-qt/qttools:6[linguist] )
+	dev-qt/qttools:6[linguist]
 "
 DEPEND="
+	dev-qt/qtbase:6[gui,network,widgets,xml]
+	dev-qt/qtsvg:6
 	media-video/pipewire:=
 	alsa? ( media-libs/alsa-lib )
-	!qt6? (
-		dev-qt/qtcore:5
-		dev-qt/qtgui:5
-		dev-qt/qtnetwork:5
-		dev-qt/qtsvg:5
-		dev-qt/qtwidgets:5
-		dev-qt/qtxml:5
-	)
-	qt6? (
-		dev-qt/qtbase:6[gui,widgets,xml,network]
-		dev-qt/qtsvg:6
-	)
 "
 RDEPEND="${DEPEND}"
 
@@ -49,7 +38,7 @@ src_configure() {
 		-DCONFIG_ALSA_MIDI=$(usex alsa)
 		-DCONFIG_SYSTEM_TRAY=$(usex trayicon)
 		-DCONFIG_WAYLAND=$(usex wayland)
-		-DCONFIG_QT6=$(usex qt6)
+		-DCONFIG_QT6=1
 	)
 	cmake_src_configure
 }

diff --git a/media-sound/qpwgraph/qpwgraph-9999.ebuild b/media-sound/qpwgraph/qpwgraph-9999.ebuild
index 744009584113..4095739e23ac 100644
--- a/media-sound/qpwgraph/qpwgraph-9999.ebuild
+++ b/media-sound/qpwgraph/qpwgraph-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2023 Gentoo Authors
+# Copyright 2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -20,27 +20,16 @@ fi
 LICENSE="GPL-2"
 SLOT="0"
 
-IUSE="alsa trayicon qt6 wayland"
+IUSE="alsa trayicon wayland"
 
 BDEPEND="
-	!qt6? ( dev-qt/linguist-tools:5 )
-	qt6? ( dev-qt/qttools:6[linguist] )
+	dev-qt/qttools:6[linguist]
 "
 DEPEND="
+	dev-qt/qtbase:6[gui,network,widgets,xml]
+	dev-qt/qtsvg:6
 	media-video/pipewire:=
 	alsa? ( media-libs/alsa-lib )
-	!qt6? (
-		dev-qt/qtcore:5
-		dev-qt/qtgui:5
-		dev-qt/qtnetwork:5
-		dev-qt/qtsvg:5
-		dev-qt/qtwidgets:5
-		dev-qt/qtxml:5
-	)
-	qt6? (
-		dev-qt/qtbase:6[gui,widgets,xml,network]
-		dev-qt/qtsvg:6
-	)
 "
 RDEPEND="${DEPEND}"
 
@@ -49,7 +38,7 @@ src_configure() {
 		-DCONFIG_ALSA_MIDI=$(usex alsa)
 		-DCONFIG_SYSTEM_TRAY=$(usex trayicon)
 		-DCONFIG_WAYLAND=$(usex wayland)
-		-DCONFIG_QT6=$(usex qt6)
+		-DCONFIG_QT6=1
 	)
 	cmake_src_configure
 }


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/qpwgraph/
@ 2024-10-01 18:27 Andreas Sturmlechner
  0 siblings, 0 replies; 9+ messages in thread
From: Andreas Sturmlechner @ 2024-10-01 18:27 UTC (permalink / raw
  To: gentoo-commits

commit:     05e34dd2c9c704a45fb43399fa612d32af9aa731
Author:     Adel KARA SLIMANE <adel.ks <AT> zegrapher <DOT> com>
AuthorDate: Sat Sep 21 15:05:41 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Oct  1 18:27:02 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05e34dd2

media-sound/qpwgraph: drop wayland useflag

disabling it translates to a cmake build option that overrides
QT_QPA_PLATFORM env var in main() function. Which we
don't want to be touched by the program itself

Signed-off-by: Adel KARA SLIMANE <adel.ks <AT> zegrapher.com>
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 media-sound/qpwgraph/qpwgraph-0.7.8.ebuild | 4 ++--
 media-sound/qpwgraph/qpwgraph-9999.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/media-sound/qpwgraph/qpwgraph-0.7.8.ebuild b/media-sound/qpwgraph/qpwgraph-0.7.8.ebuild
index 4095739e23ac..f673a08cd124 100644
--- a/media-sound/qpwgraph/qpwgraph-0.7.8.ebuild
+++ b/media-sound/qpwgraph/qpwgraph-0.7.8.ebuild
@@ -20,7 +20,7 @@ fi
 LICENSE="GPL-2"
 SLOT="0"
 
-IUSE="alsa trayicon wayland"
+IUSE="alsa trayicon"
 
 BDEPEND="
 	dev-qt/qttools:6[linguist]
@@ -37,7 +37,7 @@ src_configure() {
 	local mycmakeargs=(
 		-DCONFIG_ALSA_MIDI=$(usex alsa)
 		-DCONFIG_SYSTEM_TRAY=$(usex trayicon)
-		-DCONFIG_WAYLAND=$(usex wayland)
+		-DCONFIG_WAYLAND=1
 		-DCONFIG_QT6=1
 	)
 	cmake_src_configure

diff --git a/media-sound/qpwgraph/qpwgraph-9999.ebuild b/media-sound/qpwgraph/qpwgraph-9999.ebuild
index 4095739e23ac..f673a08cd124 100644
--- a/media-sound/qpwgraph/qpwgraph-9999.ebuild
+++ b/media-sound/qpwgraph/qpwgraph-9999.ebuild
@@ -20,7 +20,7 @@ fi
 LICENSE="GPL-2"
 SLOT="0"
 
-IUSE="alsa trayicon wayland"
+IUSE="alsa trayicon"
 
 BDEPEND="
 	dev-qt/qttools:6[linguist]
@@ -37,7 +37,7 @@ src_configure() {
 	local mycmakeargs=(
 		-DCONFIG_ALSA_MIDI=$(usex alsa)
 		-DCONFIG_SYSTEM_TRAY=$(usex trayicon)
-		-DCONFIG_WAYLAND=$(usex wayland)
+		-DCONFIG_WAYLAND=1
 		-DCONFIG_QT6=1
 	)
 	cmake_src_configure


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/qpwgraph/
@ 2024-10-01 18:27 Andreas Sturmlechner
  0 siblings, 0 replies; 9+ messages in thread
From: Andreas Sturmlechner @ 2024-10-01 18:27 UTC (permalink / raw
  To: gentoo-commits

commit:     2c593bf6c6184f478394820b24891bec56dac1c6
Author:     Adel KARA SLIMANE <adel.ks <AT> zegrapher <DOT> com>
AuthorDate: Fri Sep 20 18:50:34 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Oct  1 18:27:01 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c593bf6

media-sound/qpwgraph: drop 0.6.2

Signed-off-by: Adel KARA SLIMANE <adel.ks <AT> zegrapher.com>
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 media-sound/qpwgraph/Manifest              |  1 -
 media-sound/qpwgraph/qpwgraph-0.6.2.ebuild | 55 ------------------------------
 2 files changed, 56 deletions(-)

diff --git a/media-sound/qpwgraph/Manifest b/media-sound/qpwgraph/Manifest
index 34097dce74cf..c671604255c4 100644
--- a/media-sound/qpwgraph/Manifest
+++ b/media-sound/qpwgraph/Manifest
@@ -1,2 +1 @@
-DIST qpwgraph-v0.6.2.tar.bz2 213346 BLAKE2B eb2984c0b72d6478a865cad22f9cfb2fcf4098a2d86bd42d69946ccc14780a1c27e8843518b7fc25769bf157090170efe33ff3b95f7df9823ac57c53b465a9ca SHA512 229bc94691206b5bd236c5b998009b799e00c2ca6dd5eb5a1aa7c3ff0c88713d13705700961d536bac82aca6c4ecd8776cd18307f61f9ddc7f5abbdc4e429693
 DIST qpwgraph-v0.7.8.tar.bz2 228111 BLAKE2B 079e5e91d23bd0ded1670b2ab514f5b93f5085dfb76f12e944ff04460544ee858fdde6bacfd3c7d3ad448b880d46e42d8223d0e0562c1752b00631008f47424c SHA512 982cafa0f4d2e17b84de992455d10cb591d77ce8e2c1f052864c3c57de0ecaa67f8d9880a03cf851f5cea24db65ece6a2a42d873bcca4bc43e1de7843548e8f9

diff --git a/media-sound/qpwgraph/qpwgraph-0.6.2.ebuild b/media-sound/qpwgraph/qpwgraph-0.6.2.ebuild
deleted file mode 100644
index 37b4e0ba45ae..000000000000
--- a/media-sound/qpwgraph/qpwgraph-0.6.2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake xdg
-
-DESCRIPTION="PipeWire Graph Qt GUI Interface"
-HOMEPAGE="https://gitlab.freedesktop.org/rncbc/qpwgraph"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://gitlab.freedesktop.org/rncbc/qpwgraph"
-else
-	SRC_URI="https://gitlab.freedesktop.org/rncbc/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2"
-	S="${WORKDIR}/${PN}-v${PV}"
-	KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-
-IUSE="alsa trayicon qt6 wayland"
-
-BDEPEND="
-	!qt6? ( dev-qt/linguist-tools:5 )
-	qt6? ( dev-qt/qttools:6[linguist] )
-"
-DEPEND="
-	media-video/pipewire:=
-	alsa? ( media-libs/alsa-lib )
-	!qt6? (
-		dev-qt/qtcore:5
-		dev-qt/qtgui:5
-		dev-qt/qtnetwork:5
-		dev-qt/qtsvg:5
-		dev-qt/qtwidgets:5
-		dev-qt/qtxml:5
-	)
-	qt6? (
-		dev-qt/qtbase:6[gui,widgets,xml,network]
-		dev-qt/qtsvg:6
-	)
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-	local mycmakeargs=(
-		-DCONFIG_ALSA_MIDI=$(usex alsa)
-		-DCONFIG_SYSTEM_TRAY=$(usex trayicon)
-		-DCONFIG_WAYLAND=$(usex wayland)
-		-DCONFIG_QT6=$(usex qt6)
-	)
-	cmake_src_configure
-}


^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2024-10-01 18:27 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-03 19:13 [gentoo-commits] repo/gentoo:master commit in: media-sound/qpwgraph/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2023-10-14  5:45 Sam James
2024-01-20 12:23 Sam James
2024-04-26  6:55 Joonas Niilola
2024-10-01 18:27 Andreas Sturmlechner
2024-10-01 18:27 Andreas Sturmlechner
2024-10-01 18:27 Andreas Sturmlechner
2024-10-01 18:27 Andreas Sturmlechner
2024-10-01 18:27 Andreas Sturmlechner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox