public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-misc/openrgb-plugin-skin/
@ 2021-06-22 23:00 Patrick McLean
  0 siblings, 0 replies; 16+ messages in thread
From: Patrick McLean @ 2021-06-22 23:00 UTC (permalink / raw
  To: gentoo-commits

commit:     8cad25395e919a3905450e081e6c3e0f900c6858
Author:     Alexey Sokolov <sokolov <AT> google <DOT> com>
AuthorDate: Tue Jun 22 21:16:04 2021 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Tue Jun 22 23:00:01 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cad2539

app-misc/openrgb-plugin-skin: new package

https://gitlab.com/OpenRGBDevelopers/openrgbskinplugin

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 app-misc/openrgb-plugin-skin/Manifest              |  1 +
 app-misc/openrgb-plugin-skin/metadata.xml          | 15 +++++++
 .../openrgb-plugin-skin-0_p20210601.ebuild         | 46 ++++++++++++++++++++++
 3 files changed, 62 insertions(+)

diff --git a/app-misc/openrgb-plugin-skin/Manifest b/app-misc/openrgb-plugin-skin/Manifest
new file mode 100644
index 00000000000..7e97f83b58c
--- /dev/null
+++ b/app-misc/openrgb-plugin-skin/Manifest
@@ -0,0 +1 @@
+DIST openrgbskinplugin-3d937cf5112a98052f98a106dc0f5de1eafc20ea.tar.bz2 14673 BLAKE2B e9ba7e072882a995d9d37274e612f0ad404c369bafb4e59db379f43242873f08f36adc5521277c2bac4e730c35cde561e535e30e5a37155bfe0fa408d5ba3b45 SHA512 1a23b843230da6778079873949e72280efe46c6c015eb27456283bae5d88b539d8a5f69e6f1580400e1cfa746bcd36b6a1ae597f510b0c331d16f56b6ae28670

diff --git a/app-misc/openrgb-plugin-skin/metadata.xml b/app-misc/openrgb-plugin-skin/metadata.xml
new file mode 100644
index 00000000000..33a23a62059
--- /dev/null
+++ b/app-misc/openrgb-plugin-skin/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>chutzpah@gentoo.org</email>
+		<name>Patrick McLean</name>
+	</maintainer>
+	<maintainer type="person" proxied="yes">
+		<email>alexey+gentoo@asokolov.org</email>
+		<name>Alexey Sokolov</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="gitlab">OpenRGBDevelopers/openrgbskinplugin</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20210601.ebuild b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20210601.ebuild
new file mode 100644
index 00000000000..82292356f05
--- /dev/null
+++ b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20210601.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit qmake-utils
+
+MY_GIT_COMMIT="3d937cf5112a98052f98a106dc0f5de1eafc20ea"
+SRC_URI="https://gitlab.com/OpenRGBDevelopers/openrgbskinplugin/-/archive/${MY_GIT_COMMIT}/openrgbskinplugin-${MY_GIT_COMMIT}.tar.bz2"
+S="${WORKDIR}/openrgbskinplugin-${MY_GIT_COMMIT}"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Plugin for OpenRGB that allows you to customize the look and feel of OpenRGB"
+HOMEPAGE="https://gitlab.com/OpenRGBDevelopers/openrgbskinplugin"
+LICENSE="GPL-2"
+SLOT="0"
+
+RDEPEND="
+	>=app-misc/openrgb-0.6-r1:=
+	dev-qt/qtcore:5
+	dev-qt/qtgui:5
+	dev-qt/qtwidgets:5
+"
+DEPEND="
+	${RDEPEND}
+	dev-cpp/nlohmann_json
+"
+
+src_prepare() {
+	default
+	rm -r OpenRGB || die
+}
+
+src_configure() {
+	eqmake5 \
+		INCLUDEPATH+="${ESYSROOT}/usr/include/nlohmann" \
+		INCLUDEPATH+="${ESYSROOT}/usr/include/OpenRGB" \
+		INCLUDEPATH+="${ESYSROOT}/usr/include/OpenRGB/RGBController" \
+		INCLUDEPATH+="${ESYSROOT}/usr/include/OpenRGB/i2c_smbus" \
+		INCLUDEPATH+="${ESYSROOT}/usr/include/OpenRGB/net_port"
+}
+
+src_install() {
+	exeinto /usr/$(get_libdir)/OpenRGB/plugins
+	doexe libOpenRGBSkinPlugin.so.1.0.0
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/openrgb-plugin-skin/
@ 2021-09-22  0:05 Patrick McLean
  0 siblings, 0 replies; 16+ messages in thread
From: Patrick McLean @ 2021-09-22  0:05 UTC (permalink / raw
  To: gentoo-commits

commit:     9fc797f6d777eed80351c09d1f5e27dab4f2e131
Author:     Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
AuthorDate: Tue Sep 14 20:11:40 2021 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Wed Sep 22 00:05:19 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fc797f6

app-misc/openrgb-plugin-skin: limit to openrgb 0.6

They changed plugin API in the upcoming new version

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 ...kin-0_p20210601.ebuild => openrgb-plugin-skin-0_p20210601-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20210601.ebuild b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20210601-r1.ebuild
similarity index 97%
rename from app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20210601.ebuild
rename to app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20210601-r1.ebuild
index 82292356f05..84910baffe1 100644
--- a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20210601.ebuild
+++ b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20210601-r1.ebuild
@@ -16,7 +16,7 @@ LICENSE="GPL-2"
 SLOT="0"
 
 RDEPEND="
-	>=app-misc/openrgb-0.6-r1:=
+	=app-misc/openrgb-0.6*:=
 	dev-qt/qtcore:5
 	dev-qt/qtgui:5
 	dev-qt/qtwidgets:5


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/openrgb-plugin-skin/
@ 2022-01-11 22:15 Patrick McLean
  0 siblings, 0 replies; 16+ messages in thread
From: Patrick McLean @ 2022-01-11 22:15 UTC (permalink / raw
  To: gentoo-commits

commit:     257c8ada2bcb432dd034036678e24b83869f5c46
Author:     Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
AuthorDate: Tue Jan 11 21:48:11 2022 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Tue Jan 11 22:15:52 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=257c8ada

app-misc/openrgb-plugin-skin: update to openrgb 0.7

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 app-misc/openrgb-plugin-skin/Manifest              |  1 +
 app-misc/openrgb-plugin-skin/metadata.xml          |  2 +-
 .../openrgb-plugin-skin-0_p20211230.ebuild         | 44 ++++++++++++++++++++++
 3 files changed, 46 insertions(+), 1 deletion(-)

diff --git a/app-misc/openrgb-plugin-skin/Manifest b/app-misc/openrgb-plugin-skin/Manifest
index 7e97f83b58c1..8e078750a974 100644
--- a/app-misc/openrgb-plugin-skin/Manifest
+++ b/app-misc/openrgb-plugin-skin/Manifest
@@ -1 +1,2 @@
 DIST openrgbskinplugin-3d937cf5112a98052f98a106dc0f5de1eafc20ea.tar.bz2 14673 BLAKE2B e9ba7e072882a995d9d37274e612f0ad404c369bafb4e59db379f43242873f08f36adc5521277c2bac4e730c35cde561e535e30e5a37155bfe0fa408d5ba3b45 SHA512 1a23b843230da6778079873949e72280efe46c6c015eb27456283bae5d88b539d8a5f69e6f1580400e1cfa746bcd36b6a1ae597f510b0c331d16f56b6ae28670
+DIST openrgbskinplugin-ebb80f7bd0e1efaa995f60454f3c049a4607bc3b.tar.bz2 22843 BLAKE2B 30c88b143b3df829c543744b20424df24bde9dda10f770fb78d653609111801a4d1d3fe16ed3e3c15ad953f41113db5d4da40bc66f7ec57418b2e934cd9a2e32 SHA512 a70c0157072b6b638a5a4f3f48f41c73f422d0ac356174479901cd3d088faf6fe96e594b2a39b15de305e0355fd0d252dafc4a30b9216d57058ad2cde7f5a3e3

diff --git a/app-misc/openrgb-plugin-skin/metadata.xml b/app-misc/openrgb-plugin-skin/metadata.xml
index 4c8060bdf70c..4f1ad006ed77 100644
--- a/app-misc/openrgb-plugin-skin/metadata.xml
+++ b/app-misc/openrgb-plugin-skin/metadata.xml
@@ -10,6 +10,6 @@
 		<name>Alexey Sokolov</name>
 	</maintainer>
 	<upstream>
-		<remote-id type="gitlab">OpenRGBDevelopers/openrgbskinplugin</remote-id>
+		<remote-id type="gitlab">OpenRGBDevelopers/OpenRGBSkinPlugin</remote-id>
 	</upstream>
 </pkgmetadata>

diff --git a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20211230.ebuild b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20211230.ebuild
new file mode 100644
index 000000000000..16fd02edcd94
--- /dev/null
+++ b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20211230.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit qmake-utils
+
+MY_GIT_COMMIT="ebb80f7bd0e1efaa995f60454f3c049a4607bc3b"
+SRC_URI="https://gitlab.com/OpenRGBDevelopers/openrgbskinplugin/-/archive/${MY_GIT_COMMIT}/openrgbskinplugin-${MY_GIT_COMMIT}.tar.bz2"
+S="${WORKDIR}/OpenRGBSkinPlugin-${MY_GIT_COMMIT}"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Plugin for OpenRGB that allows you to customize the look and feel of OpenRGB"
+HOMEPAGE="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin"
+LICENSE="GPL-2"
+SLOT="0"
+
+RDEPEND="
+	>=app-misc/openrgb-0.7:=
+	dev-qt/qtcore:5
+	dev-qt/qtgui:5
+	dev-qt/qtwidgets:5
+"
+DEPEND="
+	${RDEPEND}
+	dev-cpp/nlohmann_json
+"
+
+src_prepare() {
+	default
+	rm -r OpenRGB || die
+	ln -s "${ESYSROOT}/usr/include/OpenRGB" . || die
+	sed -e '/^GIT_/d' -i *.pro || die
+}
+
+src_configure() {
+	eqmake5 \
+		INCLUDEPATH+="${ESYSROOT}/usr/include/nlohmann"
+}
+
+src_install() {
+	exeinto /usr/$(get_libdir)/OpenRGB/plugins
+	doexe libOpenRGBSkinPlugin.so.1.0.0
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/openrgb-plugin-skin/
@ 2022-08-04  8:03 Agostino Sarubbo
  0 siblings, 0 replies; 16+ messages in thread
From: Agostino Sarubbo @ 2022-08-04  8:03 UTC (permalink / raw
  To: gentoo-commits

commit:     3d29c81d9906ee5620780da1989711e482b0a908
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Aug  4 08:02:34 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Aug  4 08:02:34 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d29c81d

app-misc/openrgb-plugin-skin: amd64 stable wrt bug #861791

Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20211230.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20211230.ebuild b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20211230.ebuild
index 16fd02edcd94..3e8d07f3bf37 100644
--- a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20211230.ebuild
+++ b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20211230.ebuild
@@ -8,7 +8,7 @@ inherit qmake-utils
 MY_GIT_COMMIT="ebb80f7bd0e1efaa995f60454f3c049a4607bc3b"
 SRC_URI="https://gitlab.com/OpenRGBDevelopers/openrgbskinplugin/-/archive/${MY_GIT_COMMIT}/openrgbskinplugin-${MY_GIT_COMMIT}.tar.bz2"
 S="${WORKDIR}/OpenRGBSkinPlugin-${MY_GIT_COMMIT}"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 DESCRIPTION="Plugin for OpenRGB that allows you to customize the look and feel of OpenRGB"
 HOMEPAGE="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin"


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/openrgb-plugin-skin/
@ 2022-08-26 23:57 Patrick McLean
  0 siblings, 0 replies; 16+ messages in thread
From: Patrick McLean @ 2022-08-26 23:57 UTC (permalink / raw
  To: gentoo-commits

commit:     bb4f98cc5b05989453b49ec45425d65fcb058b18
Author:     Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
AuthorDate: Mon Aug 22 23:44:44 2022 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Fri Aug 26 23:57:01 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb4f98cc

app-misc/openrgb-plugin-skin: drop old

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 app-misc/openrgb-plugin-skin/Manifest              |  1 -
 .../openrgb-plugin-skin-0_p20210601-r1.ebuild      | 46 ----------------------
 2 files changed, 47 deletions(-)

diff --git a/app-misc/openrgb-plugin-skin/Manifest b/app-misc/openrgb-plugin-skin/Manifest
index 8e078750a974..bd96dd514474 100644
--- a/app-misc/openrgb-plugin-skin/Manifest
+++ b/app-misc/openrgb-plugin-skin/Manifest
@@ -1,2 +1 @@
-DIST openrgbskinplugin-3d937cf5112a98052f98a106dc0f5de1eafc20ea.tar.bz2 14673 BLAKE2B e9ba7e072882a995d9d37274e612f0ad404c369bafb4e59db379f43242873f08f36adc5521277c2bac4e730c35cde561e535e30e5a37155bfe0fa408d5ba3b45 SHA512 1a23b843230da6778079873949e72280efe46c6c015eb27456283bae5d88b539d8a5f69e6f1580400e1cfa746bcd36b6a1ae597f510b0c331d16f56b6ae28670
 DIST openrgbskinplugin-ebb80f7bd0e1efaa995f60454f3c049a4607bc3b.tar.bz2 22843 BLAKE2B 30c88b143b3df829c543744b20424df24bde9dda10f770fb78d653609111801a4d1d3fe16ed3e3c15ad953f41113db5d4da40bc66f7ec57418b2e934cd9a2e32 SHA512 a70c0157072b6b638a5a4f3f48f41c73f422d0ac356174479901cd3d088faf6fe96e594b2a39b15de305e0355fd0d252dafc4a30b9216d57058ad2cde7f5a3e3

diff --git a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20210601-r1.ebuild b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20210601-r1.ebuild
deleted file mode 100644
index 84910baffe1e..000000000000
--- a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20210601-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit qmake-utils
-
-MY_GIT_COMMIT="3d937cf5112a98052f98a106dc0f5de1eafc20ea"
-SRC_URI="https://gitlab.com/OpenRGBDevelopers/openrgbskinplugin/-/archive/${MY_GIT_COMMIT}/openrgbskinplugin-${MY_GIT_COMMIT}.tar.bz2"
-S="${WORKDIR}/openrgbskinplugin-${MY_GIT_COMMIT}"
-KEYWORDS="~amd64"
-
-DESCRIPTION="Plugin for OpenRGB that allows you to customize the look and feel of OpenRGB"
-HOMEPAGE="https://gitlab.com/OpenRGBDevelopers/openrgbskinplugin"
-LICENSE="GPL-2"
-SLOT="0"
-
-RDEPEND="
-	=app-misc/openrgb-0.6*:=
-	dev-qt/qtcore:5
-	dev-qt/qtgui:5
-	dev-qt/qtwidgets:5
-"
-DEPEND="
-	${RDEPEND}
-	dev-cpp/nlohmann_json
-"
-
-src_prepare() {
-	default
-	rm -r OpenRGB || die
-}
-
-src_configure() {
-	eqmake5 \
-		INCLUDEPATH+="${ESYSROOT}/usr/include/nlohmann" \
-		INCLUDEPATH+="${ESYSROOT}/usr/include/OpenRGB" \
-		INCLUDEPATH+="${ESYSROOT}/usr/include/OpenRGB/RGBController" \
-		INCLUDEPATH+="${ESYSROOT}/usr/include/OpenRGB/i2c_smbus" \
-		INCLUDEPATH+="${ESYSROOT}/usr/include/OpenRGB/net_port"
-}
-
-src_install() {
-	exeinto /usr/$(get_libdir)/OpenRGB/plugins
-	doexe libOpenRGBSkinPlugin.so.1.0.0
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/openrgb-plugin-skin/
@ 2023-01-05 14:31 Maciej Barć
  0 siblings, 0 replies; 16+ messages in thread
From: Maciej Barć @ 2023-01-05 14:31 UTC (permalink / raw
  To: gentoo-commits

commit:     f5baead509954d12ce3b4e50aa07875791279533
Author:     Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
AuthorDate: Sun Dec 25 17:58:35 2022 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Thu Jan  5 14:31:10 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5baead5

app-misc/openrgb-plugin-skin: add 0.8

Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-misc/openrgb-plugin-skin/Manifest              |  1 +
 .../openrgb-plugin-skin-0.8.ebuild                 | 43 ++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/app-misc/openrgb-plugin-skin/Manifest b/app-misc/openrgb-plugin-skin/Manifest
index bd96dd514474..ef0adc69ffdd 100644
--- a/app-misc/openrgb-plugin-skin/Manifest
+++ b/app-misc/openrgb-plugin-skin/Manifest
@@ -1 +1,2 @@
+DIST OpenRGBSkinPlugin-release_0.8.tar.bz2 22711 BLAKE2B 25325c6be5cf619940e79e4f431871478e3026188d7aba4b8220a99afda8f75d18ffeafa0f905110d4ce44f5d7e28208f3d7b358cfadfcd4719a22f1ef5cf70d SHA512 89b9a4bcda4600ea7dbd05972bba7c5f8d917606b3def4971e6ccff84d8510ca420747dd85d3395bfea29e62adc775b592f9cbe20a6966776a46e15593f2cf59
 DIST openrgbskinplugin-ebb80f7bd0e1efaa995f60454f3c049a4607bc3b.tar.bz2 22843 BLAKE2B 30c88b143b3df829c543744b20424df24bde9dda10f770fb78d653609111801a4d1d3fe16ed3e3c15ad953f41113db5d4da40bc66f7ec57418b2e934cd9a2e32 SHA512 a70c0157072b6b638a5a4f3f48f41c73f422d0ac356174479901cd3d088faf6fe96e594b2a39b15de305e0355fd0d252dafc4a30b9216d57058ad2cde7f5a3e3

diff --git a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.8.ebuild b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.8.ebuild
new file mode 100644
index 000000000000..8a3da828c824
--- /dev/null
+++ b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.8.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit qmake-utils
+
+SRC_URI="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin/-/archive/release_${PV}/OpenRGBSkinPlugin-release_${PV}.tar.bz2"
+S="${WORKDIR}/OpenRGBSkinPlugin-release_${PV}"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Plugin for OpenRGB that allows you to customize the look and feel of OpenRGB"
+HOMEPAGE="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin"
+LICENSE="GPL-2"
+SLOT="0"
+
+RDEPEND="
+	>=app-misc/openrgb-0.8:=
+	dev-qt/qtcore:5
+	dev-qt/qtgui:5
+	dev-qt/qtwidgets:5
+"
+DEPEND="
+	${RDEPEND}
+	dev-cpp/nlohmann_json
+"
+
+src_prepare() {
+	default
+	rm -r OpenRGB || die
+	ln -s "${ESYSROOT}/usr/include/OpenRGB" . || die
+	sed -e '/^GIT_/d' -i *.pro || die
+}
+
+src_configure() {
+	eqmake5 \
+		INCLUDEPATH+="${ESYSROOT}/usr/include/nlohmann"
+}
+
+src_install() {
+	exeinto /usr/$(get_libdir)/OpenRGB/plugins
+	doexe libOpenRGBSkinPlugin.so.1.0.0
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/openrgb-plugin-skin/
@ 2023-02-26 19:25 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2023-02-26 19:25 UTC (permalink / raw
  To: gentoo-commits

commit:     47214d5a342b34c08bb62ff92d31355023ec1d47
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 26 19:25:23 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 26 19:25:23 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47214d5a

app-misc/openrgb-plugin-skin: Stabilize 0.8 amd64, #897886

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.8.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.8.ebuild b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.8.ebuild
index 8a3da828c824..b611a886e87b 100644
--- a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.8.ebuild
+++ b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020-2022 Gentoo Authors
+# Copyright 2020-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -7,7 +7,7 @@ inherit qmake-utils
 
 SRC_URI="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin/-/archive/release_${PV}/OpenRGBSkinPlugin-release_${PV}.tar.bz2"
 S="${WORKDIR}/OpenRGBSkinPlugin-release_${PV}"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 DESCRIPTION="Plugin for OpenRGB that allows you to customize the look and feel of OpenRGB"
 HOMEPAGE="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin"


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/openrgb-plugin-skin/
@ 2023-02-27  9:04 Joonas Niilola
  0 siblings, 0 replies; 16+ messages in thread
From: Joonas Niilola @ 2023-02-27  9:04 UTC (permalink / raw
  To: gentoo-commits

commit:     9024c900773e129d40745d3a45eac5b082a05271
Author:     Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
AuthorDate: Sun Feb 26 23:59:54 2023 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Feb 27 09:04:08 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9024c900

app-misc/openrgb-plugin-skin: drop 0_p20211230

Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 app-misc/openrgb-plugin-skin/Manifest              |  1 -
 .../openrgb-plugin-skin-0_p20211230.ebuild         | 44 ----------------------
 2 files changed, 45 deletions(-)

diff --git a/app-misc/openrgb-plugin-skin/Manifest b/app-misc/openrgb-plugin-skin/Manifest
index ef0adc69ffdd..eb03452e78df 100644
--- a/app-misc/openrgb-plugin-skin/Manifest
+++ b/app-misc/openrgb-plugin-skin/Manifest
@@ -1,2 +1 @@
 DIST OpenRGBSkinPlugin-release_0.8.tar.bz2 22711 BLAKE2B 25325c6be5cf619940e79e4f431871478e3026188d7aba4b8220a99afda8f75d18ffeafa0f905110d4ce44f5d7e28208f3d7b358cfadfcd4719a22f1ef5cf70d SHA512 89b9a4bcda4600ea7dbd05972bba7c5f8d917606b3def4971e6ccff84d8510ca420747dd85d3395bfea29e62adc775b592f9cbe20a6966776a46e15593f2cf59
-DIST openrgbskinplugin-ebb80f7bd0e1efaa995f60454f3c049a4607bc3b.tar.bz2 22843 BLAKE2B 30c88b143b3df829c543744b20424df24bde9dda10f770fb78d653609111801a4d1d3fe16ed3e3c15ad953f41113db5d4da40bc66f7ec57418b2e934cd9a2e32 SHA512 a70c0157072b6b638a5a4f3f48f41c73f422d0ac356174479901cd3d088faf6fe96e594b2a39b15de305e0355fd0d252dafc4a30b9216d57058ad2cde7f5a3e3

diff --git a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20211230.ebuild b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20211230.ebuild
deleted file mode 100644
index 3e8d07f3bf37..000000000000
--- a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0_p20211230.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit qmake-utils
-
-MY_GIT_COMMIT="ebb80f7bd0e1efaa995f60454f3c049a4607bc3b"
-SRC_URI="https://gitlab.com/OpenRGBDevelopers/openrgbskinplugin/-/archive/${MY_GIT_COMMIT}/openrgbskinplugin-${MY_GIT_COMMIT}.tar.bz2"
-S="${WORKDIR}/OpenRGBSkinPlugin-${MY_GIT_COMMIT}"
-KEYWORDS="amd64"
-
-DESCRIPTION="Plugin for OpenRGB that allows you to customize the look and feel of OpenRGB"
-HOMEPAGE="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin"
-LICENSE="GPL-2"
-SLOT="0"
-
-RDEPEND="
-	>=app-misc/openrgb-0.7:=
-	dev-qt/qtcore:5
-	dev-qt/qtgui:5
-	dev-qt/qtwidgets:5
-"
-DEPEND="
-	${RDEPEND}
-	dev-cpp/nlohmann_json
-"
-
-src_prepare() {
-	default
-	rm -r OpenRGB || die
-	ln -s "${ESYSROOT}/usr/include/OpenRGB" . || die
-	sed -e '/^GIT_/d' -i *.pro || die
-}
-
-src_configure() {
-	eqmake5 \
-		INCLUDEPATH+="${ESYSROOT}/usr/include/nlohmann"
-}
-
-src_install() {
-	exeinto /usr/$(get_libdir)/OpenRGB/plugins
-	doexe libOpenRGBSkinPlugin.so.1.0.0
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/openrgb-plugin-skin/
@ 2023-07-17 12:33 Maciej Barć
  0 siblings, 0 replies; 16+ messages in thread
From: Maciej Barć @ 2023-07-17 12:33 UTC (permalink / raw
  To: gentoo-commits

commit:     c98a7c6a8d1dc238837a94a2e723592f1d2e127f
Author:     Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
AuthorDate: Sun Jul 16 11:05:38 2023 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon Jul 17 12:33:36 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c98a7c6a

app-misc/openrgb-plugin-skin: add 0.9

Bug: https://bugs.gentoo.org/910405
Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-misc/openrgb-plugin-skin/Manifest              |  1 +
 .../openrgb-plugin-skin-0.9.ebuild                 | 48 ++++++++++++++++++++++
 2 files changed, 49 insertions(+)

diff --git a/app-misc/openrgb-plugin-skin/Manifest b/app-misc/openrgb-plugin-skin/Manifest
index eb03452e78df..5aa5302a16fd 100644
--- a/app-misc/openrgb-plugin-skin/Manifest
+++ b/app-misc/openrgb-plugin-skin/Manifest
@@ -1 +1,2 @@
 DIST OpenRGBSkinPlugin-release_0.8.tar.bz2 22711 BLAKE2B 25325c6be5cf619940e79e4f431871478e3026188d7aba4b8220a99afda8f75d18ffeafa0f905110d4ce44f5d7e28208f3d7b358cfadfcd4719a22f1ef5cf70d SHA512 89b9a4bcda4600ea7dbd05972bba7c5f8d917606b3def4971e6ccff84d8510ca420747dd85d3395bfea29e62adc775b592f9cbe20a6966776a46e15593f2cf59
+DIST OpenRGBSkinPlugin-release_0.9.tar.bz2 22781 BLAKE2B 46a342927f589c1b9bdbdfc094d8f85007897c5cfac9265d6a8efbafdd5bdb8f3f92927b052e4a52310cf5e2a7404590c16964c0c041ab6035dff24ee41b8e33 SHA512 51a6b11ca95679d9abbb600e77c50eac59138b2f9e080e5eba1606405f95446da0582327e2d071740e1cb1845604e895286cc06512b0769ae1d57937e2df818c

diff --git a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9.ebuild b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9.ebuild
new file mode 100644
index 000000000000..67cebc546436
--- /dev/null
+++ b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9.ebuild
@@ -0,0 +1,48 @@
+# Copyright 2020-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit qmake-utils
+
+SRC_URI="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin/-/archive/release_${PV}/OpenRGBSkinPlugin-release_${PV}.tar.bz2"
+S="${WORKDIR}/OpenRGBSkinPlugin-release_${PV}"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Plugin for OpenRGB that allows you to customize the look and feel of OpenRGB"
+HOMEPAGE="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin"
+LICENSE="GPL-2"
+SLOT="0"
+
+RDEPEND="
+	>=app-misc/openrgb-0.9:=
+	dev-qt/qtcore:5
+	dev-qt/qtgui:5
+	dev-qt/qtwidgets:5
+"
+DEPEND="
+	${RDEPEND}
+	dev-cpp/nlohmann_json
+"
+
+src_prepare() {
+	default
+	rm -r OpenRGB || die
+	ln -s "${ESYSROOT}/usr/include/OpenRGB" . || die
+	sed -e '/^GIT_/d' -i *.pro || die
+
+	# Because of -Wl,--export-dynamic in app-misc/openrgb, this resources.qrc
+	# conflicts with the openrgb's one. So rename it.
+	sed -e 's/resources.qrc/resources_skin_plugin.qrc/' -i *.pro || die
+	mv --no-clobber resources.qrc resources_skin_plugin.qrc || die
+}
+
+src_configure() {
+	eqmake5 \
+		INCLUDEPATH+="${ESYSROOT}/usr/include/nlohmann"
+}
+
+src_install() {
+	exeinto /usr/$(get_libdir)/OpenRGB/plugins
+	doexe libOpenRGBSkinPlugin.so.1.0.0
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/openrgb-plugin-skin/
@ 2023-08-21  3:50 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2023-08-21  3:50 UTC (permalink / raw
  To: gentoo-commits

commit:     05be25e79ca9cb4bd0052bfe25473afde269d392
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 21 03:48:18 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 21 03:48:18 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05be25e7

app-misc/openrgb-plugin-skin: Stabilize 0.9 amd64, #912663

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9.ebuild b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9.ebuild
index 67cebc546436..86c340899dde 100644
--- a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9.ebuild
+++ b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9.ebuild
@@ -7,7 +7,7 @@ inherit qmake-utils
 
 SRC_URI="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin/-/archive/release_${PV}/OpenRGBSkinPlugin-release_${PV}.tar.bz2"
 S="${WORKDIR}/OpenRGBSkinPlugin-release_${PV}"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 DESCRIPTION="Plugin for OpenRGB that allows you to customize the look and feel of OpenRGB"
 HOMEPAGE="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin"


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/openrgb-plugin-skin/
@ 2025-01-06 16:31 Patrick McLean
  0 siblings, 0 replies; 16+ messages in thread
From: Patrick McLean @ 2025-01-06 16:31 UTC (permalink / raw
  To: gentoo-commits

commit:     d9e8ce0d6df77b3cb952f685f8059b033af0e196
Author:     Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
AuthorDate: Fri Jan  3 09:32:11 2025 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Mon Jan  6 16:31:13 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9e8ce0d

app-misc/openrgb-plugin-skin: drop 0.8

Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 app-misc/openrgb-plugin-skin/Manifest              |  1 -
 .../openrgb-plugin-skin-0.8.ebuild                 | 43 ----------------------
 2 files changed, 44 deletions(-)

diff --git a/app-misc/openrgb-plugin-skin/Manifest b/app-misc/openrgb-plugin-skin/Manifest
index 5aa5302a16fd..a5059b959638 100644
--- a/app-misc/openrgb-plugin-skin/Manifest
+++ b/app-misc/openrgb-plugin-skin/Manifest
@@ -1,2 +1 @@
-DIST OpenRGBSkinPlugin-release_0.8.tar.bz2 22711 BLAKE2B 25325c6be5cf619940e79e4f431871478e3026188d7aba4b8220a99afda8f75d18ffeafa0f905110d4ce44f5d7e28208f3d7b358cfadfcd4719a22f1ef5cf70d SHA512 89b9a4bcda4600ea7dbd05972bba7c5f8d917606b3def4971e6ccff84d8510ca420747dd85d3395bfea29e62adc775b592f9cbe20a6966776a46e15593f2cf59
 DIST OpenRGBSkinPlugin-release_0.9.tar.bz2 22781 BLAKE2B 46a342927f589c1b9bdbdfc094d8f85007897c5cfac9265d6a8efbafdd5bdb8f3f92927b052e4a52310cf5e2a7404590c16964c0c041ab6035dff24ee41b8e33 SHA512 51a6b11ca95679d9abbb600e77c50eac59138b2f9e080e5eba1606405f95446da0582327e2d071740e1cb1845604e895286cc06512b0769ae1d57937e2df818c

diff --git a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.8.ebuild b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.8.ebuild
deleted file mode 100644
index b611a886e87b..000000000000
--- a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.8.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 2020-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit qmake-utils
-
-SRC_URI="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin/-/archive/release_${PV}/OpenRGBSkinPlugin-release_${PV}.tar.bz2"
-S="${WORKDIR}/OpenRGBSkinPlugin-release_${PV}"
-KEYWORDS="amd64"
-
-DESCRIPTION="Plugin for OpenRGB that allows you to customize the look and feel of OpenRGB"
-HOMEPAGE="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin"
-LICENSE="GPL-2"
-SLOT="0"
-
-RDEPEND="
-	>=app-misc/openrgb-0.8:=
-	dev-qt/qtcore:5
-	dev-qt/qtgui:5
-	dev-qt/qtwidgets:5
-"
-DEPEND="
-	${RDEPEND}
-	dev-cpp/nlohmann_json
-"
-
-src_prepare() {
-	default
-	rm -r OpenRGB || die
-	ln -s "${ESYSROOT}/usr/include/OpenRGB" . || die
-	sed -e '/^GIT_/d' -i *.pro || die
-}
-
-src_configure() {
-	eqmake5 \
-		INCLUDEPATH+="${ESYSROOT}/usr/include/nlohmann"
-}
-
-src_install() {
-	exeinto /usr/$(get_libdir)/OpenRGB/plugins
-	doexe libOpenRGBSkinPlugin.so.1.0.0
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/openrgb-plugin-skin/
@ 2025-01-06 16:31 Patrick McLean
  0 siblings, 0 replies; 16+ messages in thread
From: Patrick McLean @ 2025-01-06 16:31 UTC (permalink / raw
  To: gentoo-commits

commit:     815f98cf475127787bd3c45a4aedd4c0febea049
Author:     Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
AuthorDate: Fri Jan  3 09:34:43 2025 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Mon Jan  6 16:31:13 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=815f98cf

app-misc/openrgb-plugin-skin: prepare for future qt6

Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9.ebuild | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9.ebuild b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9.ebuild
index 86c340899dde..f040e847341e 100644
--- a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9.ebuild
+++ b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9.ebuild
@@ -1,21 +1,22 @@
-# Copyright 2020-2023 Gentoo Authors
+# Copyright 2020-2025 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
 inherit qmake-utils
 
+DESCRIPTION="Plugin for OpenRGB that allows you to customize the look and feel of OpenRGB"
+HOMEPAGE="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin"
+
 SRC_URI="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin/-/archive/release_${PV}/OpenRGBSkinPlugin-release_${PV}.tar.bz2"
 S="${WORKDIR}/OpenRGBSkinPlugin-release_${PV}"
-KEYWORDS="amd64"
 
-DESCRIPTION="Plugin for OpenRGB that allows you to customize the look and feel of OpenRGB"
-HOMEPAGE="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin"
 LICENSE="GPL-2"
 SLOT="0"
+KEYWORDS="amd64"
 
 RDEPEND="
-	>=app-misc/openrgb-0.9:=
+	>=app-misc/openrgb-0.9:=[-qt6(-)]
 	dev-qt/qtcore:5
 	dev-qt/qtgui:5
 	dev-qt/qtwidgets:5


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/openrgb-plugin-skin/
@ 2025-08-17  7:54 Andreas Sturmlechner
  0 siblings, 0 replies; 16+ messages in thread
From: Andreas Sturmlechner @ 2025-08-17  7:54 UTC (permalink / raw
  To: gentoo-commits

commit:     835d41117f5a8f17ee9fcce7148256eb0b88fc3c
Author:     Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
AuthorDate: Sat May 24 20:11:28 2025 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Aug 17 07:54:50 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=835d4111

app-misc/openrgb-plugin-skin: 0.9 depend on <1.0

Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Part-of: https://github.com/gentoo/gentoo/pull/41163
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 ...penrgb-plugin-skin-0.9.ebuild => openrgb-plugin-skin-0.9-r1.ebuild} | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9.ebuild b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9-r1.ebuild
similarity index 95%
rename from app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9.ebuild
rename to app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9-r1.ebuild
index f040e847341e..6664d945edb8 100644
--- a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9.ebuild
+++ b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9-r1.ebuild
@@ -16,7 +16,8 @@ SLOT="0"
 KEYWORDS="amd64"
 
 RDEPEND="
-	>=app-misc/openrgb-0.9:=[-qt6(-)]
+	>=app-misc/openrgb-0.9:=
+	<app-misc/openrgb-0.9_p20250802
 	dev-qt/qtcore:5
 	dev-qt/qtgui:5
 	dev-qt/qtwidgets:5


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/openrgb-plugin-skin/
@ 2025-09-17 21:21 Andreas Sturmlechner
  0 siblings, 0 replies; 16+ messages in thread
From: Andreas Sturmlechner @ 2025-09-17 21:21 UTC (permalink / raw
  To: gentoo-commits

commit:     75bd150b837cd0e0353670a6c6b9c742ded94cce
Author:     Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
AuthorDate: Mon Sep 15 23:04:47 2025 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Sep 17 21:20:25 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75bd150b

app-misc/openrgb-plugin-skin: add 1.0_rc2

Bug: https://bugs.gentoo.org/942035
Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Part-of: https://github.com/gentoo/gentoo/pull/43803
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 app-misc/openrgb-plugin-skin/Manifest              |  1 +
 .../openrgb-plugin-skin-1.0_rc2.ebuild             | 49 ++++++++++++++++++++++
 2 files changed, 50 insertions(+)

diff --git a/app-misc/openrgb-plugin-skin/Manifest b/app-misc/openrgb-plugin-skin/Manifest
index 5f072ab7b28b..c0d65443a046 100644
--- a/app-misc/openrgb-plugin-skin/Manifest
+++ b/app-misc/openrgb-plugin-skin/Manifest
@@ -1,2 +1,3 @@
 DIST OpenRGBSkinPlugin-release_0.9.tar.bz2 22781 BLAKE2B 46a342927f589c1b9bdbdfc094d8f85007897c5cfac9265d6a8efbafdd5bdb8f3f92927b052e4a52310cf5e2a7404590c16964c0c041ab6035dff24ee41b8e33 SHA512 51a6b11ca95679d9abbb600e77c50eac59138b2f9e080e5eba1606405f95446da0582327e2d071740e1cb1845604e895286cc06512b0769ae1d57937e2df818c
+DIST OpenRGBSkinPlugin-release_candidate_1.0rc2.tar.bz2 84621 BLAKE2B 254d774b8e23bba35807231a8397d630f6086cba52f874091a2263fe7cb222f24d7d830c9b0053a981ec7df5f80ee47c4eee0d8fd4743d26b4b0aed4359d56be SHA512 848e4d77beb0a5aea3e9c2cffdf2f7e3af43ab37156596fdefcc511e9c01eec6f05b686f4370beb9a5f7f298bd1bb0206ed2cd67b09eb85370c5e52a951cf51f
 DIST openrgb-plugin-skin-0.9_p20250723.tar.bz2 84554 BLAKE2B f54449151296975f9f486b4433a563e99f2be5bc6bc3e735ba24632b550a65cd3b47dc5f7d63acc21627aca4ea2a0ab074c2add087bbfd24b3ab85b5e48c2cf4 SHA512 36bc7b14d7d62c5149ea376b4bdf68f97205235ec5a875f178b7a04f0b7477d8bcd196816974fbe38e8d80d162a257a198c0113518ccb612e44a8919db4e1891

diff --git a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-1.0_rc2.ebuild b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-1.0_rc2.ebuild
new file mode 100644
index 000000000000..4b5baab213f6
--- /dev/null
+++ b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-1.0_rc2.ebuild
@@ -0,0 +1,49 @@
+# Copyright 2020-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit qmake-utils
+
+DESCRIPTION="Plugin for OpenRGB that allows you to customize the look and feel of OpenRGB"
+HOMEPAGE="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin"
+
+MY_PV=$(ver_rs 2 "")
+SRC_URI="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin/-/archive/release_candidate_${MY_PV}/OpenRGBSkinPlugin-release_candidate_${MY_PV}.tar.bz2"
+S="${WORKDIR}/OpenRGBSkinPlugin-release_candidate_${MY_PV}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	>=app-misc/openrgb-0.9_p20250802:=
+	dev-qt/qtbase:6[gui,widgets]
+"
+DEPEND="
+	${RDEPEND}
+	dev-cpp/nlohmann_json
+"
+
+PATCHES=( "${FILESDIR}"/0.9_p20250723-build-system.patch )
+
+src_prepare() {
+	default
+	rm -r OpenRGB || die
+	ln -s "${ESYSROOT}/usr/include/OpenRGB" . || die
+	sed -e '/^GIT_/d' -i *.pro || die
+
+	# Because of -Wl,--export-dynamic in app-misc/openrgb, this resources.qrc
+	# conflicts with the openrgb's one. So rename it.
+	sed -e 's/resources.qrc/resources_skin_plugin.qrc/' -i *.pro || die
+	mv --no-clobber resources.qrc resources_skin_plugin.qrc || die
+}
+
+src_configure() {
+	eqmake6 INCLUDEPATH+="${ESYSROOT}/usr/include/nlohmann"
+}
+
+src_install() {
+	exeinto /usr/$(get_libdir)/openrgb/plugins
+	doexe libOpenRGBSkinPlugin.so
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/openrgb-plugin-skin/
@ 2025-10-02  2:58 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2025-10-02  2:58 UTC (permalink / raw
  To: gentoo-commits

commit:     cccfbd02bb278f4d8a04ec0d1dccbae9f0e979fc
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Oct  2 02:57:24 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Oct  2 02:57:24 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cccfbd02

app-misc/openrgb-plugin-skin: Stabilize 1.0_rc2 amd64, #942035

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/openrgb-plugin-skin/openrgb-plugin-skin-1.0_rc2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-1.0_rc2.ebuild b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-1.0_rc2.ebuild
index 4b5baab213f6..3f000a735168 100644
--- a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-1.0_rc2.ebuild
+++ b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-1.0_rc2.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/OpenRGBSkinPlugin-release_candidate_${MY_PV}"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 RDEPEND="
 	>=app-misc/openrgb-0.9_p20250802:=


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/openrgb-plugin-skin/
@ 2025-10-02 18:06 Andreas Sturmlechner
  0 siblings, 0 replies; 16+ messages in thread
From: Andreas Sturmlechner @ 2025-10-02 18:06 UTC (permalink / raw
  To: gentoo-commits

commit:     dc52aa93bd6953f173bb9366ad57ca6d71ed6f94
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Oct  2 16:01:38 2025 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Oct  2 18:06:18 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc52aa93

app-misc/openrgb-plugin-skin: drop 0.9-r1, 0.9_p20250723

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 app-misc/openrgb-plugin-skin/Manifest              |  2 -
 .../openrgb-plugin-skin-0.9-r1.ebuild              | 50 ----------------------
 .../openrgb-plugin-skin-0.9_p20250723.ebuild       | 49 ---------------------
 3 files changed, 101 deletions(-)

diff --git a/app-misc/openrgb-plugin-skin/Manifest b/app-misc/openrgb-plugin-skin/Manifest
index c0d65443a046..c982c33d6f46 100644
--- a/app-misc/openrgb-plugin-skin/Manifest
+++ b/app-misc/openrgb-plugin-skin/Manifest
@@ -1,3 +1 @@
-DIST OpenRGBSkinPlugin-release_0.9.tar.bz2 22781 BLAKE2B 46a342927f589c1b9bdbdfc094d8f85007897c5cfac9265d6a8efbafdd5bdb8f3f92927b052e4a52310cf5e2a7404590c16964c0c041ab6035dff24ee41b8e33 SHA512 51a6b11ca95679d9abbb600e77c50eac59138b2f9e080e5eba1606405f95446da0582327e2d071740e1cb1845604e895286cc06512b0769ae1d57937e2df818c
 DIST OpenRGBSkinPlugin-release_candidate_1.0rc2.tar.bz2 84621 BLAKE2B 254d774b8e23bba35807231a8397d630f6086cba52f874091a2263fe7cb222f24d7d830c9b0053a981ec7df5f80ee47c4eee0d8fd4743d26b4b0aed4359d56be SHA512 848e4d77beb0a5aea3e9c2cffdf2f7e3af43ab37156596fdefcc511e9c01eec6f05b686f4370beb9a5f7f298bd1bb0206ed2cd67b09eb85370c5e52a951cf51f
-DIST openrgb-plugin-skin-0.9_p20250723.tar.bz2 84554 BLAKE2B f54449151296975f9f486b4433a563e99f2be5bc6bc3e735ba24632b550a65cd3b47dc5f7d63acc21627aca4ea2a0ab074c2add087bbfd24b3ab85b5e48c2cf4 SHA512 36bc7b14d7d62c5149ea376b4bdf68f97205235ec5a875f178b7a04f0b7477d8bcd196816974fbe38e8d80d162a257a198c0113518ccb612e44a8919db4e1891

diff --git a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9-r1.ebuild b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9-r1.ebuild
deleted file mode 100644
index 6664d945edb8..000000000000
--- a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 2020-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit qmake-utils
-
-DESCRIPTION="Plugin for OpenRGB that allows you to customize the look and feel of OpenRGB"
-HOMEPAGE="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin"
-
-SRC_URI="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin/-/archive/release_${PV}/OpenRGBSkinPlugin-release_${PV}.tar.bz2"
-S="${WORKDIR}/OpenRGBSkinPlugin-release_${PV}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64"
-
-RDEPEND="
-	>=app-misc/openrgb-0.9:=
-	<app-misc/openrgb-0.9_p20250802
-	dev-qt/qtcore:5
-	dev-qt/qtgui:5
-	dev-qt/qtwidgets:5
-"
-DEPEND="
-	${RDEPEND}
-	dev-cpp/nlohmann_json
-"
-
-src_prepare() {
-	default
-	rm -r OpenRGB || die
-	ln -s "${ESYSROOT}/usr/include/OpenRGB" . || die
-	sed -e '/^GIT_/d' -i *.pro || die
-
-	# Because of -Wl,--export-dynamic in app-misc/openrgb, this resources.qrc
-	# conflicts with the openrgb's one. So rename it.
-	sed -e 's/resources.qrc/resources_skin_plugin.qrc/' -i *.pro || die
-	mv --no-clobber resources.qrc resources_skin_plugin.qrc || die
-}
-
-src_configure() {
-	eqmake5 \
-		INCLUDEPATH+="${ESYSROOT}/usr/include/nlohmann"
-}
-
-src_install() {
-	exeinto /usr/$(get_libdir)/OpenRGB/plugins
-	doexe libOpenRGBSkinPlugin.so.1.0.0
-}

diff --git a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9_p20250723.ebuild b/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9_p20250723.ebuild
deleted file mode 100644
index 657f6d233a49..000000000000
--- a/app-misc/openrgb-plugin-skin/openrgb-plugin-skin-0.9_p20250723.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 2020-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit qmake-utils
-
-DESCRIPTION="Plugin for OpenRGB that allows you to customize the look and feel of OpenRGB"
-HOMEPAGE="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin"
-
-MY_COMMIT="21c546a5cfd7edd19bd5c1b679c024cd689e4980"
-SRC_URI="https://gitlab.com/OpenRGBDevelopers/OpenRGBSkinPlugin/-/archive/${MY_COMMIT}/OpenRGBSkinPlugin-${MY_COMMIT}.tar.bz2 -> ${P}.tar.bz2"
-S="${WORKDIR}/OpenRGBSkinPlugin-${MY_COMMIT}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-	>=app-misc/openrgb-0.9_p20250802:=
-	dev-qt/qtbase:6[gui,widgets]
-"
-DEPEND="
-	${RDEPEND}
-	dev-cpp/nlohmann_json
-"
-
-PATCHES=( "${FILESDIR}"/${PV}-build-system.patch )
-
-src_prepare() {
-	default
-	rm -r OpenRGB || die
-	ln -s "${ESYSROOT}/usr/include/OpenRGB" . || die
-	sed -e '/^GIT_/d' -i *.pro || die
-
-	# Because of -Wl,--export-dynamic in app-misc/openrgb, this resources.qrc
-	# conflicts with the openrgb's one. So rename it.
-	sed -e 's/resources.qrc/resources_skin_plugin.qrc/' -i *.pro || die
-	mv --no-clobber resources.qrc resources_skin_plugin.qrc || die
-}
-
-src_configure() {
-	eqmake6 INCLUDEPATH+="${ESYSROOT}/usr/include/nlohmann"
-}
-
-src_install() {
-	exeinto /usr/$(get_libdir)/openrgb/plugins
-	doexe libOpenRGBSkinPlugin.so
-}


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

end of thread, other threads:[~2025-10-02 18:06 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-17 21:21 [gentoo-commits] repo/gentoo:master commit in: app-misc/openrgb-plugin-skin/ Andreas Sturmlechner
  -- strict thread matches above, loose matches on Subject: below --
2025-10-02 18:06 Andreas Sturmlechner
2025-10-02  2:58 Sam James
2025-08-17  7:54 Andreas Sturmlechner
2025-01-06 16:31 Patrick McLean
2025-01-06 16:31 Patrick McLean
2023-08-21  3:50 Sam James
2023-07-17 12:33 Maciej Barć
2023-02-27  9:04 Joonas Niilola
2023-02-26 19:25 Sam James
2023-01-05 14:31 Maciej Barć
2022-08-26 23:57 Patrick McLean
2022-08-04  8:03 Agostino Sarubbo
2022-01-11 22:15 Patrick McLean
2021-09-22  0:05 Patrick McLean
2021-06-22 23:00 Patrick McLean

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