* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2017-07-21 8:46 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2017-07-21 8:46 UTC (permalink / raw
To: gentoo-commits
commit: 972483cac6332bf7b3103ef8ce55003011c9b970
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 21 08:41:41 2017 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Fri Jul 21 08:46:40 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=972483ca
x11-themes/adwaita-qt: Package adwaita-qt themes for better integration with Gnome
Package-Manager: Portage-2.3.6, Repoman-2.3.2
x11-themes/adwaita-qt/Manifest | 1 +
x11-themes/adwaita-qt/adwaita-qt-1.0.ebuild | 56 +++++++++++++++++++++++++++++
x11-themes/adwaita-qt/metadata.xml | 7 ++++
3 files changed, 64 insertions(+)
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
new file mode 100644
index 00000000000..1e60bdfd145
--- /dev/null
+++ b/x11-themes/adwaita-qt/Manifest
@@ -0,0 +1 @@
+DIST adwaita-qt-1.0.tar.gz 565625 SHA256 c2c0c71b131d0e3e58ee108570796cf70b35dccaa64ce17915d4486de5e91513 SHA512 35993a9f99f9d41812d448d679a9e7a8cb15e8ed9b23a2ea9a33c61c1bfc98a226f8bea2fce3ff0dab29420ff10c4e4a4a800c9b989475cc66c4042257fe154c WHIRLPOOL a45d838d2cf39237065ed8f7b650678c69ec80683b6f1e215d2252fb3e15dc16d5e1c5ed1ff2bd9c3bed2e37abf96f068a54f458336d39c4dffe049306c78993
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.0.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.0.ebuild
new file mode 100644
index 00000000000..7b1729cb1b8
--- /dev/null
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.0.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit cmake-utils
+
+DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
+HOMEPAGE="https://github.com/MartinBriza/adwaita-qt"
+SRC_URI="https://github.com/MartinBriza/${PN}/archive/${PV}/${P}.tar.gz"
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="GPL-2 LGPL-2"
+SLOT="0"
+
+IUSE="gnome qt4 +qt5"
+REQUIRED_USE="|| ( qt4 qt5 )"
+
+RDEPEND="
+ gnome? ( x11-themes/QGnomePlatform )
+ qt4? (
+ dev-qt/qtgui:4
+ dev-qt/qtdbus:4
+ )
+ qt5? (
+ dev-qt/qtwidgets:5
+ dev-qt/qtdbus:5
+ )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+ if use qt4; then
+ BUILD_DIR="${WORKDIR}/${PN}_qt4"
+ local mycmakeargs=( -DUSE_QT4=ON )
+ cmake-utils_src_configure
+ fi
+ if use qt5; then
+ BUILD_DIR="${WORKDIR}/${PN}_qt5"
+ local mycmakeargs=( -DUSE_QT4=OFF )
+ cmake-utils_src_configure
+ fi
+}
+
+src_compile() {
+ local _d
+ for _d in "${WORKDIR}"/${PN}_qt*; do
+ cmake-utils_src_compile -C "${_d}"
+ done
+}
+
+src_install() {
+ local _d
+ for _d in "${WORKDIR}"/${PN}_qt*; do
+ cmake-utils_src_install -C "${_d}"
+ done
+}
diff --git a/x11-themes/adwaita-qt/metadata.xml b/x11-themes/adwaita-qt/metadata.xml
new file mode 100644
index 00000000000..020b40648ee
--- /dev/null
+++ b/x11-themes/adwaita-qt/metadata.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>pacho@gentoo.org</email>
+ </maintainer>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2017-09-08 13:46 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2017-09-08 13:46 UTC (permalink / raw
To: gentoo-commits
commit: 2d67052cb0d3660cd35fcad6472f8a248a2d4cc6
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 8 13:45:27 2017 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Fri Sep 8 13:46:16 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d67052c
x11-themes/adwaita-qt: Stabilize
Package-Manager: Portage-2.3.8, Repoman-2.3.3
x11-themes/adwaita-qt/adwaita-qt-1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.0.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.0.ebuild
index 7b1729cb1b8..a01e83da0c5 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.0.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.0.ebuild
@@ -8,7 +8,7 @@ DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME
HOMEPAGE="https://github.com/MartinBriza/adwaita-qt"
SRC_URI="https://github.com/MartinBriza/${PN}/archive/${PV}/${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2018-05-27 11:40 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2018-05-27 11:40 UTC (permalink / raw
To: gentoo-commits
commit: 3a8a4b76e7cd2c17159269183bc6e7c2a3eac121
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun May 27 11:29:39 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun May 27 11:40:17 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a8a4b76
x11-themes/adwaita-qt: Drop QT4 support (#656612)
Package-Manager: Portage-2.3.38, Repoman-2.3.9
x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild | 42 ++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild
new file mode 100644
index 00000000000..e01fc3aea41
--- /dev/null
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit cmake-utils
+
+DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
+HOMEPAGE="https://github.com/MartinBriza/adwaita-qt"
+SRC_URI="https://github.com/MartinBriza/${PN}/archive/${PV}/${P}.tar.gz"
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="GPL-2 LGPL-2"
+SLOT="0"
+
+IUSE="gnome"
+
+RDEPEND="
+ gnome? ( x11-themes/QGnomePlatform )
+ dev-qt/qtwidgets:5
+ dev-qt/qtdbus:5
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+ BUILD_DIR="${WORKDIR}/${PN}_qt5"
+ local mycmakeargs=( -DUSE_QT4=OFF )
+ cmake-utils_src_configure
+}
+
+src_compile() {
+ local _d
+ for _d in "${WORKDIR}"/${PN}_qt*; do
+ cmake-utils_src_compile -C "${_d}"
+ done
+}
+
+src_install() {
+ local _d
+ for _d in "${WORKDIR}"/${PN}_qt*; do
+ cmake-utils_src_install -C "${_d}"
+ done
+}
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2018-06-11 8:13 Agostino Sarubbo
0 siblings, 0 replies; 49+ messages in thread
From: Agostino Sarubbo @ 2018-06-11 8:13 UTC (permalink / raw
To: gentoo-commits
commit: aff9987989f93924d1eee624dddb28f3665d2dfd
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 11 08:12:15 2018 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Jun 11 08:12:15 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aff99879
x11-themes/adwaita-qt: amd64 stable wrt bug #656612
Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="amd64"
x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild
index 3527aa7fe58..c90b5408967 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild
@@ -8,7 +8,7 @@ DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME
HOMEPAGE="https://github.com/MartinBriza/adwaita-qt"
SRC_URI="https://github.com/MartinBriza/${PN}/archive/${PV}/${P}.tar.gz"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2018-06-17 21:17 Andreas Sturmlechner
0 siblings, 0 replies; 49+ messages in thread
From: Andreas Sturmlechner @ 2018-06-17 21:17 UTC (permalink / raw
To: gentoo-commits
commit: e2d0633afa8a55a1ee3a59edeb2687ef789b7f2e
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 13 17:46:47 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Jun 17 21:16:35 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2d0633a
x11-themes/adwaita-qt: Drop old Qt4-based
Package-Manager: Portage-2.3.40, Repoman-2.3.9
x11-themes/adwaita-qt/adwaita-qt-1.0.ebuild | 56 -----------------------------
1 file changed, 56 deletions(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.0.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.0.ebuild
deleted file mode 100644
index a01e83da0c5..00000000000
--- a/x11-themes/adwaita-qt/adwaita-qt-1.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit cmake-utils
-
-DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
-HOMEPAGE="https://github.com/MartinBriza/adwaita-qt"
-SRC_URI="https://github.com/MartinBriza/${PN}/archive/${PV}/${P}.tar.gz"
-
-KEYWORDS="amd64 x86"
-LICENSE="GPL-2 LGPL-2"
-SLOT="0"
-
-IUSE="gnome qt4 +qt5"
-REQUIRED_USE="|| ( qt4 qt5 )"
-
-RDEPEND="
- gnome? ( x11-themes/QGnomePlatform )
- qt4? (
- dev-qt/qtgui:4
- dev-qt/qtdbus:4
- )
- qt5? (
- dev-qt/qtwidgets:5
- dev-qt/qtdbus:5
- )
-"
-DEPEND="${RDEPEND}"
-
-src_configure() {
- if use qt4; then
- BUILD_DIR="${WORKDIR}/${PN}_qt4"
- local mycmakeargs=( -DUSE_QT4=ON )
- cmake-utils_src_configure
- fi
- if use qt5; then
- BUILD_DIR="${WORKDIR}/${PN}_qt5"
- local mycmakeargs=( -DUSE_QT4=OFF )
- cmake-utils_src_configure
- fi
-}
-
-src_compile() {
- local _d
- for _d in "${WORKDIR}"/${PN}_qt*; do
- cmake-utils_src_compile -C "${_d}"
- done
-}
-
-src_install() {
- local _d
- for _d in "${WORKDIR}"/${PN}_qt*; do
- cmake-utils_src_install -C "${_d}"
- done
-}
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2019-06-27 7:29 Sergei Trofimovich
0 siblings, 0 replies; 49+ messages in thread
From: Sergei Trofimovich @ 2019-06-27 7:29 UTC (permalink / raw
To: gentoo-commits
commit: e093693850bde79613ec308b7f539125752cb050
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 27 07:29:03 2019 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Thu Jun 27 07:29:03 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0936938
x11-themes/adwaita-qt: keyworded 1.0-r1 for ppc64, bug #676874
Package-Manager: Portage-2.3.67, Repoman-2.3.16
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild
index c90b5408967..ab20e91c260 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -8,7 +8,7 @@ DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME
HOMEPAGE="https://github.com/MartinBriza/adwaita-qt"
SRC_URI="https://github.com/MartinBriza/${PN}/archive/${PV}/${P}.tar.gz"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~ppc64 x86"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2019-07-31 7:52 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2019-07-31 7:52 UTC (permalink / raw
To: gentoo-commits
commit: 9cbd01c3f756d959157cf13b8d39a48c2753878a
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 31 07:52:13 2019 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Jul 31 07:52:13 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cbd01c3
x11-themes/adwaita-qt: Bump to 1.1.0
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/Manifest | 1 +
x11-themes/adwaita-qt/adwaita-qt-1.1.0.ebuild | 42 +++++++++++++++++++++++++++
2 files changed, 43 insertions(+)
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
index 784c2045f66..3da6bbbceef 100644
--- a/x11-themes/adwaita-qt/Manifest
+++ b/x11-themes/adwaita-qt/Manifest
@@ -1 +1,2 @@
DIST adwaita-qt-1.0.tar.gz 565625 BLAKE2B 73dba06dd785131d8bb949b5dcb195994d415e295b196228fd6145687431a3fd4984489c81322cfd1437fa8de3a97e41b30b49bba35baa30b379e02770b52928 SHA512 35993a9f99f9d41812d448d679a9e7a8cb15e8ed9b23a2ea9a33c61c1bfc98a226f8bea2fce3ff0dab29420ff10c4e4a4a800c9b989475cc66c4042257fe154c
+DIST adwaita-qt-1.1.0.tar.gz 435576 BLAKE2B e85e918e2527cc26f7804f1b03e75163b8c30d46402e3de3dca7afb93ac7abd81fe5e10b4d858859cf9abf443ec57cf74cc1ab578a45798dcb73d4b17da08cc5 SHA512 5203b64cb9e4038579c68ae8f52bc8c2fcdaf0ab46ce134f2a92b318493cc69718ce4d69968f1da20fcdf5f5492c38a6a225475f74f75390ada1337d35504a01
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.1.0.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.1.0.ebuild
new file mode 100644
index 00000000000..5e4cc7643b7
--- /dev/null
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.1.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit cmake-utils
+
+DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
+HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
+SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
+
+KEYWORDS="~amd64 ~ppc64 ~x86"
+LICENSE="GPL-2 LGPL-2"
+SLOT="0"
+
+IUSE="gnome"
+
+RDEPEND="
+ gnome? ( x11-themes/QGnomePlatform )
+ dev-qt/qtwidgets:5
+ dev-qt/qtdbus:5
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+ BUILD_DIR="${WORKDIR}/${PN}_qt5"
+ local mycmakeargs=( -DUSE_QT4=OFF )
+ cmake-utils_src_configure
+}
+
+src_compile() {
+ local _d
+ for _d in "${WORKDIR}"/${PN}_qt*; do
+ cmake-utils_src_compile -C "${_d}"
+ done
+}
+
+src_install() {
+ local _d
+ for _d in "${WORKDIR}"/${PN}_qt*; do
+ cmake-utils_src_install -C "${_d}"
+ done
+}
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2019-11-20 11:16 Agostino Sarubbo
0 siblings, 0 replies; 49+ messages in thread
From: Agostino Sarubbo @ 2019-11-20 11:16 UTC (permalink / raw
To: gentoo-commits
commit: 13c294d87724911fbc8c26392acd782631c6f128
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 20 11:15:34 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Nov 20 11:15:34 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13c294d8
x11-themes/adwaita-qt: amd64 stable wrt bug #700674
Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.1.0.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.1.0.ebuild
index 5e4cc7643b7..035979c31be 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.1.0.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.1.0.ebuild
@@ -8,7 +8,7 @@ DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME
HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 ~x86"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2019-11-20 15:40 Agostino Sarubbo
0 siblings, 0 replies; 49+ messages in thread
From: Agostino Sarubbo @ 2019-11-20 15:40 UTC (permalink / raw
To: gentoo-commits
commit: 8cfa90407ee0e00e39a564419361b88db3626706
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 20 15:40:31 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Nov 20 15:40:31 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cfa9040
x11-themes/adwaita-qt: x86 stable wrt bug #700674
Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.1.0.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.1.0.ebuild
index 035979c31be..d2bd6b3baad 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.1.0.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.1.0.ebuild
@@ -8,7 +8,7 @@ DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME
HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
-KEYWORDS="amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 x86"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2019-12-05 7:54 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2019-12-05 7:54 UTC (permalink / raw
To: gentoo-commits
commit: 68a69c4b86b401aa428cd5d6190238a01fb327eb
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 5 07:50:32 2019 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Dec 5 07:50:32 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68a69c4b
x11-themes/adwaita-qt: Drop old
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/Manifest | 1 -
x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild | 42 --------------------------
2 files changed, 43 deletions(-)
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
index 3da6bbbceef..74c4878b7a5 100644
--- a/x11-themes/adwaita-qt/Manifest
+++ b/x11-themes/adwaita-qt/Manifest
@@ -1,2 +1 @@
-DIST adwaita-qt-1.0.tar.gz 565625 BLAKE2B 73dba06dd785131d8bb949b5dcb195994d415e295b196228fd6145687431a3fd4984489c81322cfd1437fa8de3a97e41b30b49bba35baa30b379e02770b52928 SHA512 35993a9f99f9d41812d448d679a9e7a8cb15e8ed9b23a2ea9a33c61c1bfc98a226f8bea2fce3ff0dab29420ff10c4e4a4a800c9b989475cc66c4042257fe154c
DIST adwaita-qt-1.1.0.tar.gz 435576 BLAKE2B e85e918e2527cc26f7804f1b03e75163b8c30d46402e3de3dca7afb93ac7abd81fe5e10b4d858859cf9abf443ec57cf74cc1ab578a45798dcb73d4b17da08cc5 SHA512 5203b64cb9e4038579c68ae8f52bc8c2fcdaf0ab46ce134f2a92b318493cc69718ce4d69968f1da20fcdf5f5492c38a6a225475f74f75390ada1337d35504a01
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild
deleted file mode 100644
index ab20e91c260..00000000000
--- a/x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit cmake-utils
-
-DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
-HOMEPAGE="https://github.com/MartinBriza/adwaita-qt"
-SRC_URI="https://github.com/MartinBriza/${PN}/archive/${PV}/${P}.tar.gz"
-
-KEYWORDS="amd64 ~ppc64 x86"
-LICENSE="GPL-2 LGPL-2"
-SLOT="0"
-
-IUSE="gnome"
-
-RDEPEND="
- gnome? ( x11-themes/QGnomePlatform )
- dev-qt/qtwidgets:5
- dev-qt/qtdbus:5
-"
-DEPEND="${RDEPEND}"
-
-src_configure() {
- BUILD_DIR="${WORKDIR}/${PN}_qt5"
- local mycmakeargs=( -DUSE_QT4=OFF )
- cmake-utils_src_configure
-}
-
-src_compile() {
- local _d
- for _d in "${WORKDIR}"/${PN}_qt*; do
- cmake-utils_src_compile -C "${_d}"
- done
-}
-
-src_install() {
- local _d
- for _d in "${WORKDIR}"/${PN}_qt*; do
- cmake-utils_src_install -C "${_d}"
- done
-}
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2019-12-15 15:22 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2019-12-15 15:22 UTC (permalink / raw
To: gentoo-commits
commit: ef1e92dff276bba9a7bdb7dc2fade0ee0fe34082
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 15 14:48:16 2019 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Dec 15 15:22:28 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef1e92df
x11-themes/adwaita-qt: Bump to 1.1.1
Package-Manager: Portage-2.3.81, Repoman-2.3.19
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/Manifest | 1 +
x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild | 43 +++++++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
index 74c4878b7a5..47c572071c0 100644
--- a/x11-themes/adwaita-qt/Manifest
+++ b/x11-themes/adwaita-qt/Manifest
@@ -1 +1,2 @@
DIST adwaita-qt-1.1.0.tar.gz 435576 BLAKE2B e85e918e2527cc26f7804f1b03e75163b8c30d46402e3de3dca7afb93ac7abd81fe5e10b4d858859cf9abf443ec57cf74cc1ab578a45798dcb73d4b17da08cc5 SHA512 5203b64cb9e4038579c68ae8f52bc8c2fcdaf0ab46ce134f2a92b318493cc69718ce4d69968f1da20fcdf5f5492c38a6a225475f74f75390ada1337d35504a01
+DIST adwaita-qt-1.1.1.tar.gz 435566 BLAKE2B c8ca8df84ce06311b0937d994a859bb6e71a4a45570c179bdf3ded144bee06c93d8d80b300db3786b1bcc8db7f2b1d78423c8d8b0456079c4563924b2a036abc SHA512 6d11fc8eecc94da4f2e3798ee5147258f277032b23a82d5bf8d3414943ac89c5ebd056d519338959c72a8a45d1638ab8cfeac01b3f3fd1118b4c89eb0c8b5608
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild
new file mode 100644
index 00000000000..bfb8d37af0b
--- /dev/null
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit cmake-utils
+
+DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
+HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
+SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
+
+KEYWORDS="~amd64 ~ppc64 ~x86"
+LICENSE="GPL-2 LGPL-2"
+SLOT="0"
+
+IUSE="gnome"
+
+RDEPEND="
+ gnome? ( x11-themes/QGnomePlatform )
+ dev-qt/qtwidgets:5
+ dev-qt/qtdbus:5
+"
+DEPEND="${RDEPEND}"
+BDEPEND="${RDEPEND}"
+
+src_configure() {
+ BUILD_DIR="${WORKDIR}/${PN}_qt5"
+ local mycmakeargs=( -DUSE_QT4=OFF )
+ cmake-utils_src_configure
+}
+
+src_compile() {
+ local _d
+ for _d in "${WORKDIR}"/${PN}_qt*; do
+ cmake-utils_src_compile -C "${_d}"
+ done
+}
+
+src_install() {
+ local _d
+ for _d in "${WORKDIR}"/${PN}_qt*; do
+ cmake-utils_src_install -C "${_d}"
+ done
+}
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2020-01-12 20:33 Andreas Sturmlechner
0 siblings, 0 replies; 49+ messages in thread
From: Andreas Sturmlechner @ 2020-01-12 20:33 UTC (permalink / raw
To: gentoo-commits
commit: 4b20a852f5a6da035070bcab11cc5b1dc5e7ec00
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 12 15:08:00 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Jan 12 20:33:09 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b20a852
x11-themes/adwaita-qt: Switch to cmake.eclass, fix RDEPEND, bogus BDEPEND
Closes: https://bugs.gentoo.org/705292
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild | 26 ++++++++++++++------------
1 file changed, 14 insertions(+), 12 deletions(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild
index bfb8d37af0b..c290d5c603d 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild
@@ -1,43 +1,45 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit cmake-utils
+
+inherit cmake
DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
-KEYWORDS="~amd64 ~ppc64 ~x86"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
-
+KEYWORDS="~amd64 ~ppc64 ~x86"
IUSE="gnome"
-RDEPEND="
- gnome? ( x11-themes/QGnomePlatform )
- dev-qt/qtwidgets:5
+DEPEND="
+ dev-qt/qtcore:5
dev-qt/qtdbus:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+"
+RDEPEND="${DEPEND}
+ gnome? ( x11-themes/QGnomePlatform )
"
-DEPEND="${RDEPEND}"
-BDEPEND="${RDEPEND}"
src_configure() {
BUILD_DIR="${WORKDIR}/${PN}_qt5"
local mycmakeargs=( -DUSE_QT4=OFF )
- cmake-utils_src_configure
+ cmake_src_configure
}
src_compile() {
local _d
for _d in "${WORKDIR}"/${PN}_qt*; do
- cmake-utils_src_compile -C "${_d}"
+ cmake_src_compile -C "${_d}"
done
}
src_install() {
local _d
for _d in "${WORKDIR}"/${PN}_qt*; do
- cmake-utils_src_install -C "${_d}"
+ cmake_src_install -C "${_d}"
done
}
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2020-01-20 12:52 Agostino Sarubbo
0 siblings, 0 replies; 49+ messages in thread
From: Agostino Sarubbo @ 2020-01-20 12:52 UTC (permalink / raw
To: gentoo-commits
commit: 7a702116e7d26b09c2daba911820ea6e3454e5ed
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 20 12:50:57 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Jan 20 12:50:57 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a702116
x11-themes/adwaita-qt: amd64 stable wrt bug #705838
Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild
index c290d5c603d..5b4ba4c91f7 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 ~x86"
IUSE="gnome"
DEPEND="
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2020-01-21 10:42 Agostino Sarubbo
0 siblings, 0 replies; 49+ messages in thread
From: Agostino Sarubbo @ 2020-01-21 10:42 UTC (permalink / raw
To: gentoo-commits
commit: 41038db111ba3f8c9123445bcffcedf125ae14d2
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 21 10:41:04 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Jan 21 10:41:04 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41038db1
x11-themes/adwaita-qt: x86 stable wrt bug #705838
Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild
index 5b4ba4c91f7..662921101d5 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 x86"
IUSE="gnome"
DEPEND="
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2020-01-21 19:48 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2020-01-21 19:48 UTC (permalink / raw
To: gentoo-commits
commit: ded479339de5a5a3be993b4ada1d052a6e4eeecc
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 21 19:46:39 2020 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Tue Jan 21 19:48:01 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ded47933
x11-themes/adwaita-qt: Drop old
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/Manifest | 1 -
x11-themes/adwaita-qt/adwaita-qt-1.1.0.ebuild | 42 ---------------------------
2 files changed, 43 deletions(-)
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
index 47c572071c0..996ba6a39f7 100644
--- a/x11-themes/adwaita-qt/Manifest
+++ b/x11-themes/adwaita-qt/Manifest
@@ -1,2 +1 @@
-DIST adwaita-qt-1.1.0.tar.gz 435576 BLAKE2B e85e918e2527cc26f7804f1b03e75163b8c30d46402e3de3dca7afb93ac7abd81fe5e10b4d858859cf9abf443ec57cf74cc1ab578a45798dcb73d4b17da08cc5 SHA512 5203b64cb9e4038579c68ae8f52bc8c2fcdaf0ab46ce134f2a92b318493cc69718ce4d69968f1da20fcdf5f5492c38a6a225475f74f75390ada1337d35504a01
DIST adwaita-qt-1.1.1.tar.gz 435566 BLAKE2B c8ca8df84ce06311b0937d994a859bb6e71a4a45570c179bdf3ded144bee06c93d8d80b300db3786b1bcc8db7f2b1d78423c8d8b0456079c4563924b2a036abc SHA512 6d11fc8eecc94da4f2e3798ee5147258f277032b23a82d5bf8d3414943ac89c5ebd056d519338959c72a8a45d1638ab8cfeac01b3f3fd1118b4c89eb0c8b5608
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.1.0.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.1.0.ebuild
deleted file mode 100644
index d2bd6b3baad..00000000000
--- a/x11-themes/adwaita-qt/adwaita-qt-1.1.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit cmake-utils
-
-DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
-HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
-SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
-
-KEYWORDS="amd64 ~ppc64 x86"
-LICENSE="GPL-2 LGPL-2"
-SLOT="0"
-
-IUSE="gnome"
-
-RDEPEND="
- gnome? ( x11-themes/QGnomePlatform )
- dev-qt/qtwidgets:5
- dev-qt/qtdbus:5
-"
-DEPEND="${RDEPEND}"
-
-src_configure() {
- BUILD_DIR="${WORKDIR}/${PN}_qt5"
- local mycmakeargs=( -DUSE_QT4=OFF )
- cmake-utils_src_configure
-}
-
-src_compile() {
- local _d
- for _d in "${WORKDIR}"/${PN}_qt*; do
- cmake-utils_src_compile -C "${_d}"
- done
-}
-
-src_install() {
- local _d
- for _d in "${WORKDIR}"/${PN}_qt*; do
- cmake-utils_src_install -C "${_d}"
- done
-}
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2020-05-20 20:17 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2020-05-20 20:17 UTC (permalink / raw
To: gentoo-commits
commit: 1d6fcfb42f0273ab495d4e07b0c75fc80de557d6
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Wed May 20 20:16:50 2020 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed May 20 20:16:50 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d6fcfb4
x11-themes/adwaita-qt: Bump to 1.1.3
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/Manifest | 1 +
x11-themes/adwaita-qt/adwaita-qt-1.1.3.ebuild | 45 +++++++++++++++++++++++++++
2 files changed, 46 insertions(+)
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
index 996ba6a39f7..82dca94e74a 100644
--- a/x11-themes/adwaita-qt/Manifest
+++ b/x11-themes/adwaita-qt/Manifest
@@ -1 +1,2 @@
DIST adwaita-qt-1.1.1.tar.gz 435566 BLAKE2B c8ca8df84ce06311b0937d994a859bb6e71a4a45570c179bdf3ded144bee06c93d8d80b300db3786b1bcc8db7f2b1d78423c8d8b0456079c4563924b2a036abc SHA512 6d11fc8eecc94da4f2e3798ee5147258f277032b23a82d5bf8d3414943ac89c5ebd056d519338959c72a8a45d1638ab8cfeac01b3f3fd1118b4c89eb0c8b5608
+DIST adwaita-qt-1.1.3.tar.gz 436159 BLAKE2B cebb1996d5ce7aa1147c097aa791e28b8f95dd8003eb344cc49c58b860c1f41806c152a11c420d420e13a83707c76009961b391ed2bacfcc921978ad05ad0d04 SHA512 82abdd2320cbfcd6983d0ea8b07615ee2d675849d03b6fa61c8c18dcf5974136d80612cb308a5502714827b2e9358f2ee66091a2d9a19851969d8070c9a454bb
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.1.3.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.1.3.ebuild
new file mode 100644
index 00000000000..c290d5c603d
--- /dev/null
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.1.3.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
+HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
+SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE="gnome"
+
+DEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtdbus:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+"
+RDEPEND="${DEPEND}
+ gnome? ( x11-themes/QGnomePlatform )
+"
+
+src_configure() {
+ BUILD_DIR="${WORKDIR}/${PN}_qt5"
+ local mycmakeargs=( -DUSE_QT4=OFF )
+ cmake_src_configure
+}
+
+src_compile() {
+ local _d
+ for _d in "${WORKDIR}"/${PN}_qt*; do
+ cmake_src_compile -C "${_d}"
+ done
+}
+
+src_install() {
+ local _d
+ for _d in "${WORKDIR}"/${PN}_qt*; do
+ cmake_src_install -C "${_d}"
+ done
+}
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2020-05-31 12:42 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2020-05-31 12:42 UTC (permalink / raw
To: gentoo-commits
commit: e0e7950a00afc612df17ddd53dfb259e874a3654
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun May 31 11:26:48 2020 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun May 31 12:42:20 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0e7950a
x11-themes/adwaita-qt: Bump to 1.1.4
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/Manifest | 1 +
x11-themes/adwaita-qt/adwaita-qt-1.1.4.ebuild | 45 +++++++++++++++++++++++++++
2 files changed, 46 insertions(+)
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
index 82dca94e74a..c2e8722a6db 100644
--- a/x11-themes/adwaita-qt/Manifest
+++ b/x11-themes/adwaita-qt/Manifest
@@ -1,2 +1,3 @@
DIST adwaita-qt-1.1.1.tar.gz 435566 BLAKE2B c8ca8df84ce06311b0937d994a859bb6e71a4a45570c179bdf3ded144bee06c93d8d80b300db3786b1bcc8db7f2b1d78423c8d8b0456079c4563924b2a036abc SHA512 6d11fc8eecc94da4f2e3798ee5147258f277032b23a82d5bf8d3414943ac89c5ebd056d519338959c72a8a45d1638ab8cfeac01b3f3fd1118b4c89eb0c8b5608
DIST adwaita-qt-1.1.3.tar.gz 436159 BLAKE2B cebb1996d5ce7aa1147c097aa791e28b8f95dd8003eb344cc49c58b860c1f41806c152a11c420d420e13a83707c76009961b391ed2bacfcc921978ad05ad0d04 SHA512 82abdd2320cbfcd6983d0ea8b07615ee2d675849d03b6fa61c8c18dcf5974136d80612cb308a5502714827b2e9358f2ee66091a2d9a19851969d8070c9a454bb
+DIST adwaita-qt-1.1.4.tar.gz 436392 BLAKE2B 2a8ab80a2189cc7bbc21bb83c409b16c8824364cc768765246876dedab8ac4073f0325d28dd916b2173bb3cd7396bb2c4b19b07c8932d589200d91f3ea48e2b9 SHA512 78390787c4b080608036605c6c713bbd5d482b039796e76974ca8c034e0d8af694704e063d53f99a3e5e7ac4d48f6325ff1c90d67fbeb4bc9e49792485e11cb1
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.1.4.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.1.4.ebuild
new file mode 100644
index 00000000000..c290d5c603d
--- /dev/null
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.1.4.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
+HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
+SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE="gnome"
+
+DEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtdbus:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+"
+RDEPEND="${DEPEND}
+ gnome? ( x11-themes/QGnomePlatform )
+"
+
+src_configure() {
+ BUILD_DIR="${WORKDIR}/${PN}_qt5"
+ local mycmakeargs=( -DUSE_QT4=OFF )
+ cmake_src_configure
+}
+
+src_compile() {
+ local _d
+ for _d in "${WORKDIR}"/${PN}_qt*; do
+ cmake_src_compile -C "${_d}"
+ done
+}
+
+src_install() {
+ local _d
+ for _d in "${WORKDIR}"/${PN}_qt*; do
+ cmake_src_install -C "${_d}"
+ done
+}
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2020-05-31 12:42 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2020-05-31 12:42 UTC (permalink / raw
To: gentoo-commits
commit: 5b9549820ca8966cfc534a42c65f087cd150c404
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun May 31 11:27:05 2020 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun May 31 12:42:21 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b954982
x11-themes/adwaita-qt: Drop old
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/Manifest | 1 -
x11-themes/adwaita-qt/adwaita-qt-1.1.3.ebuild | 45 ---------------------------
2 files changed, 46 deletions(-)
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
index c2e8722a6db..3422d8893d7 100644
--- a/x11-themes/adwaita-qt/Manifest
+++ b/x11-themes/adwaita-qt/Manifest
@@ -1,3 +1,2 @@
DIST adwaita-qt-1.1.1.tar.gz 435566 BLAKE2B c8ca8df84ce06311b0937d994a859bb6e71a4a45570c179bdf3ded144bee06c93d8d80b300db3786b1bcc8db7f2b1d78423c8d8b0456079c4563924b2a036abc SHA512 6d11fc8eecc94da4f2e3798ee5147258f277032b23a82d5bf8d3414943ac89c5ebd056d519338959c72a8a45d1638ab8cfeac01b3f3fd1118b4c89eb0c8b5608
-DIST adwaita-qt-1.1.3.tar.gz 436159 BLAKE2B cebb1996d5ce7aa1147c097aa791e28b8f95dd8003eb344cc49c58b860c1f41806c152a11c420d420e13a83707c76009961b391ed2bacfcc921978ad05ad0d04 SHA512 82abdd2320cbfcd6983d0ea8b07615ee2d675849d03b6fa61c8c18dcf5974136d80612cb308a5502714827b2e9358f2ee66091a2d9a19851969d8070c9a454bb
DIST adwaita-qt-1.1.4.tar.gz 436392 BLAKE2B 2a8ab80a2189cc7bbc21bb83c409b16c8824364cc768765246876dedab8ac4073f0325d28dd916b2173bb3cd7396bb2c4b19b07c8932d589200d91f3ea48e2b9 SHA512 78390787c4b080608036605c6c713bbd5d482b039796e76974ca8c034e0d8af694704e063d53f99a3e5e7ac4d48f6325ff1c90d67fbeb4bc9e49792485e11cb1
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.1.3.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.1.3.ebuild
deleted file mode 100644
index c290d5c603d..00000000000
--- a/x11-themes/adwaita-qt/adwaita-qt-1.1.3.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
-HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
-SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
-IUSE="gnome"
-
-DEPEND="
- dev-qt/qtcore:5
- dev-qt/qtdbus:5
- dev-qt/qtgui:5
- dev-qt/qtwidgets:5
-"
-RDEPEND="${DEPEND}
- gnome? ( x11-themes/QGnomePlatform )
-"
-
-src_configure() {
- BUILD_DIR="${WORKDIR}/${PN}_qt5"
- local mycmakeargs=( -DUSE_QT4=OFF )
- cmake_src_configure
-}
-
-src_compile() {
- local _d
- for _d in "${WORKDIR}"/${PN}_qt*; do
- cmake_src_compile -C "${_d}"
- done
-}
-
-src_install() {
- local _d
- for _d in "${WORKDIR}"/${PN}_qt*; do
- cmake_src_install -C "${_d}"
- done
-}
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2020-06-21 20:31 Thomas Deutschmann
0 siblings, 0 replies; 49+ messages in thread
From: Thomas Deutschmann @ 2020-06-21 20:31 UTC (permalink / raw
To: gentoo-commits
commit: 7217a673f369996a25f1730c8bfd83ba4c3d0af7
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 21 19:51:16 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Jun 21 20:31:00 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7217a673
x11-themes/adwaita-qt: x86 stable (bug #726764)
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.1.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.1.4.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.1.4.ebuild
index c290d5c603d..83d5ee52a95 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.1.4.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.1.4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~ppc64 x86"
IUSE="gnome"
DEPEND="
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2020-07-14 19:16 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2020-07-14 19:16 UTC (permalink / raw
To: gentoo-commits
commit: f8874cc4fc92e27249628871097359b243ad87f6
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 14 19:15:02 2020 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Tue Jul 14 19:16:08 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8874cc4
x11-themes/adwaita-qt: amd64 stable, bug #726764
Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.1.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.1.4.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.1.4.ebuild
index 83d5ee52a95..662921101d5 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.1.4.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.1.4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc64 x86"
+KEYWORDS="amd64 ~ppc64 x86"
IUSE="gnome"
DEPEND="
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2021-02-14 16:23 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2021-02-14 16:23 UTC (permalink / raw
To: gentoo-commits
commit: 4eb56f12541bdd5f2ec7928d9bcc74b2b6c4cd75
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 14 16:13:11 2021 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Feb 14 16:23:09 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4eb56f12
x11-themes/adwaita-qt: Drop old
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/Manifest | 1 -
x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild | 45 ---------------------------
2 files changed, 46 deletions(-)
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
index 54ad95351d8..327547dc2c0 100644
--- a/x11-themes/adwaita-qt/Manifest
+++ b/x11-themes/adwaita-qt/Manifest
@@ -1,3 +1,2 @@
-DIST adwaita-qt-1.1.1.tar.gz 435566 BLAKE2B c8ca8df84ce06311b0937d994a859bb6e71a4a45570c179bdf3ded144bee06c93d8d80b300db3786b1bcc8db7f2b1d78423c8d8b0456079c4563924b2a036abc SHA512 6d11fc8eecc94da4f2e3798ee5147258f277032b23a82d5bf8d3414943ac89c5ebd056d519338959c72a8a45d1638ab8cfeac01b3f3fd1118b4c89eb0c8b5608
DIST adwaita-qt-1.1.4.tar.gz 436392 BLAKE2B 2a8ab80a2189cc7bbc21bb83c409b16c8824364cc768765246876dedab8ac4073f0325d28dd916b2173bb3cd7396bb2c4b19b07c8932d589200d91f3ea48e2b9 SHA512 78390787c4b080608036605c6c713bbd5d482b039796e76974ca8c034e0d8af694704e063d53f99a3e5e7ac4d48f6325ff1c90d67fbeb4bc9e49792485e11cb1
DIST adwaita-qt-1.2.0.tar.gz 438425 BLAKE2B 752d00197f107b0c94d15dd3c0a1f5f55f5b388b077ce8cfaac5dd01651bea6b97e24e85e600298aa9d19bb6c0ea1cfbecef41248eb78a8cb60b284a5ede10e4 SHA512 313697ad6474dc15eae8e6650cd6eb2e31dc3005978c6de5aa92003f3c426f9a04523bb839922f9acaca35495566dedb049df9582d1a6666dcf97e8429a7a778
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild
deleted file mode 100644
index 662921101d5..00000000000
--- a/x11-themes/adwaita-qt/adwaita-qt-1.1.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
-HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
-SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc64 x86"
-IUSE="gnome"
-
-DEPEND="
- dev-qt/qtcore:5
- dev-qt/qtdbus:5
- dev-qt/qtgui:5
- dev-qt/qtwidgets:5
-"
-RDEPEND="${DEPEND}
- gnome? ( x11-themes/QGnomePlatform )
-"
-
-src_configure() {
- BUILD_DIR="${WORKDIR}/${PN}_qt5"
- local mycmakeargs=( -DUSE_QT4=OFF )
- cmake_src_configure
-}
-
-src_compile() {
- local _d
- for _d in "${WORKDIR}"/${PN}_qt*; do
- cmake_src_compile -C "${_d}"
- done
-}
-
-src_install() {
- local _d
- for _d in "${WORKDIR}"/${PN}_qt*; do
- cmake_src_install -C "${_d}"
- done
-}
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2021-02-14 16:23 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2021-02-14 16:23 UTC (permalink / raw
To: gentoo-commits
commit: 2505e214dff1f4e9edf9549123279a48b27b5cc5
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 14 16:12:59 2021 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Feb 14 16:23:09 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2505e214
x11-themes/adwaita-qt: Bump to 1.2.0
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/Manifest | 1 +
x11-themes/adwaita-qt/adwaita-qt-1.2.0.ebuild | 26 ++++++++++++++++++++++++++
2 files changed, 27 insertions(+)
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
index 3422d8893d7..54ad95351d8 100644
--- a/x11-themes/adwaita-qt/Manifest
+++ b/x11-themes/adwaita-qt/Manifest
@@ -1,2 +1,3 @@
DIST adwaita-qt-1.1.1.tar.gz 435566 BLAKE2B c8ca8df84ce06311b0937d994a859bb6e71a4a45570c179bdf3ded144bee06c93d8d80b300db3786b1bcc8db7f2b1d78423c8d8b0456079c4563924b2a036abc SHA512 6d11fc8eecc94da4f2e3798ee5147258f277032b23a82d5bf8d3414943ac89c5ebd056d519338959c72a8a45d1638ab8cfeac01b3f3fd1118b4c89eb0c8b5608
DIST adwaita-qt-1.1.4.tar.gz 436392 BLAKE2B 2a8ab80a2189cc7bbc21bb83c409b16c8824364cc768765246876dedab8ac4073f0325d28dd916b2173bb3cd7396bb2c4b19b07c8932d589200d91f3ea48e2b9 SHA512 78390787c4b080608036605c6c713bbd5d482b039796e76974ca8c034e0d8af694704e063d53f99a3e5e7ac4d48f6325ff1c90d67fbeb4bc9e49792485e11cb1
+DIST adwaita-qt-1.2.0.tar.gz 438425 BLAKE2B 752d00197f107b0c94d15dd3c0a1f5f55f5b388b077ce8cfaac5dd01651bea6b97e24e85e600298aa9d19bb6c0ea1cfbecef41248eb78a8cb60b284a5ede10e4 SHA512 313697ad6474dc15eae8e6650cd6eb2e31dc3005978c6de5aa92003f3c426f9a04523bb839922f9acaca35495566dedb049df9582d1a6666dcf97e8429a7a778
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.2.0.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.2.0.ebuild
new file mode 100644
index 00000000000..367904b8a9e
--- /dev/null
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.2.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
+HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
+SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE="gnome"
+
+DEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtdbus:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtx11extras:5
+"
+RDEPEND="${DEPEND}
+ gnome? ( x11-themes/QGnomePlatform )
+"
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2021-02-14 16:23 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2021-02-14 16:23 UTC (permalink / raw
To: gentoo-commits
commit: 73bacd2958cc4808cf67b639a6323b3ecd07767d
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 14 16:15:14 2021 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Feb 14 16:23:10 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73bacd29
x11-themes/adwaita-qt: New QGnomeplatform needs adwaita-qt
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.2.0.ebuild | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.2.0.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.2.0.ebuild
index 367904b8a9e..008c282fd64 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.2.0.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.2.0.ebuild
@@ -21,6 +21,5 @@ DEPEND="
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5
"
-RDEPEND="${DEPEND}
- gnome? ( x11-themes/QGnomePlatform )
-"
+RDEPEND="${DEPEND}"
+PDEPEND="gnome? ( x11-themes/QGnomePlatform )"
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2021-03-28 8:33 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2021-03-28 8:33 UTC (permalink / raw
To: gentoo-commits
commit: 8adc38e3d5de90ca45d922606af510ed0a9699ad
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 28 08:32:45 2021 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Mar 28 08:33:31 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8adc38e3
x11-themes/adwaita-qt: Bump to 1.2.1
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/Manifest | 1 +
x11-themes/adwaita-qt/adwaita-qt-1.2.1.ebuild | 25 +++++++++++++++++++++++++
2 files changed, 26 insertions(+)
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
index 327547dc2c0..c9ec50c5d91 100644
--- a/x11-themes/adwaita-qt/Manifest
+++ b/x11-themes/adwaita-qt/Manifest
@@ -1,2 +1,3 @@
DIST adwaita-qt-1.1.4.tar.gz 436392 BLAKE2B 2a8ab80a2189cc7bbc21bb83c409b16c8824364cc768765246876dedab8ac4073f0325d28dd916b2173bb3cd7396bb2c4b19b07c8932d589200d91f3ea48e2b9 SHA512 78390787c4b080608036605c6c713bbd5d482b039796e76974ca8c034e0d8af694704e063d53f99a3e5e7ac4d48f6325ff1c90d67fbeb4bc9e49792485e11cb1
DIST adwaita-qt-1.2.0.tar.gz 438425 BLAKE2B 752d00197f107b0c94d15dd3c0a1f5f55f5b388b077ce8cfaac5dd01651bea6b97e24e85e600298aa9d19bb6c0ea1cfbecef41248eb78a8cb60b284a5ede10e4 SHA512 313697ad6474dc15eae8e6650cd6eb2e31dc3005978c6de5aa92003f3c426f9a04523bb839922f9acaca35495566dedb049df9582d1a6666dcf97e8429a7a778
+DIST adwaita-qt-1.2.1.tar.gz 438614 BLAKE2B 783372158d67e51cf869b3f4c0732735c68ccf6d43ce354de41609878e582509becd97348c749c1e3b4ef1c73a5b1acda1dd3251d8d567a720d0b8286d154fb6 SHA512 a4482d9ae8e9f1ae4f6baa411d68f5f7b2ccafd157635c5e142723414f28bd0a5b3331d3ba16e17404159d410fff029b779447e8832d69c020a1fa1d40d926da
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.2.1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.2.1.ebuild
new file mode 100644
index 00000000000..008c282fd64
--- /dev/null
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.2.1.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
+HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
+SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE="gnome"
+
+DEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtdbus:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtx11extras:5
+"
+RDEPEND="${DEPEND}"
+PDEPEND="gnome? ( x11-themes/QGnomePlatform )"
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2021-05-20 13:12 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2021-05-20 13:12 UTC (permalink / raw
To: gentoo-commits
commit: e1c1cf99ab50f716cb082b973fbd69a493148aba
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu May 20 13:12:32 2021 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu May 20 13:12:32 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1c1cf99
x11-themes/adwaita-qt: Drop old
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/Manifest | 1 -
x11-themes/adwaita-qt/adwaita-qt-1.2.0.ebuild | 25 -------------------------
2 files changed, 26 deletions(-)
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
index 47bdf0f39d8..018f39abc70 100644
--- a/x11-themes/adwaita-qt/Manifest
+++ b/x11-themes/adwaita-qt/Manifest
@@ -1,4 +1,3 @@
DIST adwaita-qt-1.1.4.tar.gz 436392 BLAKE2B 2a8ab80a2189cc7bbc21bb83c409b16c8824364cc768765246876dedab8ac4073f0325d28dd916b2173bb3cd7396bb2c4b19b07c8932d589200d91f3ea48e2b9 SHA512 78390787c4b080608036605c6c713bbd5d482b039796e76974ca8c034e0d8af694704e063d53f99a3e5e7ac4d48f6325ff1c90d67fbeb4bc9e49792485e11cb1
-DIST adwaita-qt-1.2.0.tar.gz 438425 BLAKE2B 752d00197f107b0c94d15dd3c0a1f5f55f5b388b077ce8cfaac5dd01651bea6b97e24e85e600298aa9d19bb6c0ea1cfbecef41248eb78a8cb60b284a5ede10e4 SHA512 313697ad6474dc15eae8e6650cd6eb2e31dc3005978c6de5aa92003f3c426f9a04523bb839922f9acaca35495566dedb049df9582d1a6666dcf97e8429a7a778
DIST adwaita-qt-1.2.1.tar.gz 438614 BLAKE2B 783372158d67e51cf869b3f4c0732735c68ccf6d43ce354de41609878e582509becd97348c749c1e3b4ef1c73a5b1acda1dd3251d8d567a720d0b8286d154fb6 SHA512 a4482d9ae8e9f1ae4f6baa411d68f5f7b2ccafd157635c5e142723414f28bd0a5b3331d3ba16e17404159d410fff029b779447e8832d69c020a1fa1d40d926da
DIST adwaita-qt-1.3.0.tar.gz 438816 BLAKE2B d362a619481c4bbf1aa08286390e91a4028f79dcda20ca27443e50ee32f5de89a01e0dfc5df153b6f1b4dfc5185b7de54e8614a4559b2511b83a174ed09ae144 SHA512 77f2554826ceb31f2972f272424a8626b83085df4638cdde707837671479ed3bb28c86fae3cd878daefc0c887aca1a58f8b30d0eed9577f9a306af6db703261b
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.2.0.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.2.0.ebuild
deleted file mode 100644
index 008c282fd64..00000000000
--- a/x11-themes/adwaita-qt/adwaita-qt-1.2.0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
-HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
-SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
-IUSE="gnome"
-
-DEPEND="
- dev-qt/qtcore:5
- dev-qt/qtdbus:5
- dev-qt/qtgui:5
- dev-qt/qtwidgets:5
- dev-qt/qtx11extras:5
-"
-RDEPEND="${DEPEND}"
-PDEPEND="gnome? ( x11-themes/QGnomePlatform )"
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2021-05-20 13:12 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2021-05-20 13:12 UTC (permalink / raw
To: gentoo-commits
commit: bf3745d312404dd39ba078c5713f9def67c16b8f
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu May 20 13:12:15 2021 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu May 20 13:12:15 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf3745d3
x11-themes/adwaita-qt: Bump to 1.3.0
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/Manifest | 1 +
x11-themes/adwaita-qt/adwaita-qt-1.3.0.ebuild | 25 +++++++++++++++++++++++++
2 files changed, 26 insertions(+)
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
index c9ec50c5d91..47bdf0f39d8 100644
--- a/x11-themes/adwaita-qt/Manifest
+++ b/x11-themes/adwaita-qt/Manifest
@@ -1,3 +1,4 @@
DIST adwaita-qt-1.1.4.tar.gz 436392 BLAKE2B 2a8ab80a2189cc7bbc21bb83c409b16c8824364cc768765246876dedab8ac4073f0325d28dd916b2173bb3cd7396bb2c4b19b07c8932d589200d91f3ea48e2b9 SHA512 78390787c4b080608036605c6c713bbd5d482b039796e76974ca8c034e0d8af694704e063d53f99a3e5e7ac4d48f6325ff1c90d67fbeb4bc9e49792485e11cb1
DIST adwaita-qt-1.2.0.tar.gz 438425 BLAKE2B 752d00197f107b0c94d15dd3c0a1f5f55f5b388b077ce8cfaac5dd01651bea6b97e24e85e600298aa9d19bb6c0ea1cfbecef41248eb78a8cb60b284a5ede10e4 SHA512 313697ad6474dc15eae8e6650cd6eb2e31dc3005978c6de5aa92003f3c426f9a04523bb839922f9acaca35495566dedb049df9582d1a6666dcf97e8429a7a778
DIST adwaita-qt-1.2.1.tar.gz 438614 BLAKE2B 783372158d67e51cf869b3f4c0732735c68ccf6d43ce354de41609878e582509becd97348c749c1e3b4ef1c73a5b1acda1dd3251d8d567a720d0b8286d154fb6 SHA512 a4482d9ae8e9f1ae4f6baa411d68f5f7b2ccafd157635c5e142723414f28bd0a5b3331d3ba16e17404159d410fff029b779447e8832d69c020a1fa1d40d926da
+DIST adwaita-qt-1.3.0.tar.gz 438816 BLAKE2B d362a619481c4bbf1aa08286390e91a4028f79dcda20ca27443e50ee32f5de89a01e0dfc5df153b6f1b4dfc5185b7de54e8614a4559b2511b83a174ed09ae144 SHA512 77f2554826ceb31f2972f272424a8626b83085df4638cdde707837671479ed3bb28c86fae3cd878daefc0c887aca1a58f8b30d0eed9577f9a306af6db703261b
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.3.0.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.3.0.ebuild
new file mode 100644
index 00000000000..008c282fd64
--- /dev/null
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.3.0.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
+HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
+SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE="gnome"
+
+DEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtdbus:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtx11extras:5
+"
+RDEPEND="${DEPEND}"
+PDEPEND="gnome? ( x11-themes/QGnomePlatform )"
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2021-05-20 16:20 Sam James
0 siblings, 0 replies; 49+ messages in thread
From: Sam James @ 2021-05-20 16:20 UTC (permalink / raw
To: gentoo-commits
commit: 2fba04557af4abc84825b6e00406d93cb38b0b8c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu May 20 16:20:41 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu May 20 16:20:41 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fba0455
x11-themes/adwaita-qt: Stabilize 1.2.1 x86, #791211
Signed-off-by: Sam James <sam <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.2.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.2.1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.2.1.ebuild
index 31e66f05b0e..c8407ccd926 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.2.1.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.2.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 x86"
IUSE="gnome"
DEPEND="
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2021-05-20 16:20 Sam James
0 siblings, 0 replies; 49+ messages in thread
From: Sam James @ 2021-05-20 16:20 UTC (permalink / raw
To: gentoo-commits
commit: 58728d771deef428b21603c7b9005c876fab520a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu May 20 16:19:55 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu May 20 16:19:55 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58728d77
x11-themes/adwaita-qt: Stabilize 1.2.1 amd64, #791211
Signed-off-by: Sam James <sam <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.2.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.2.1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.2.1.ebuild
index 008c282fd64..31e66f05b0e 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.2.1.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.2.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 ~x86"
IUSE="gnome"
DEPEND="
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2021-06-06 18:12 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2021-06-06 18:12 UTC (permalink / raw
To: gentoo-commits
commit: 40e655d700102fa94e17ec2463aeaf10dbf18fbd
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 6 18:08:22 2021 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Jun 6 18:12:39 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40e655d7
x11-themes/adwaita-qt: Drop old
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/Manifest | 2 --
x11-themes/adwaita-qt/adwaita-qt-1.1.4.ebuild | 45 ---------------------------
x11-themes/adwaita-qt/adwaita-qt-1.3.0.ebuild | 25 ---------------
3 files changed, 72 deletions(-)
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
index c1963e6062e..046284aa15a 100644
--- a/x11-themes/adwaita-qt/Manifest
+++ b/x11-themes/adwaita-qt/Manifest
@@ -1,4 +1,2 @@
-DIST adwaita-qt-1.1.4.tar.gz 436392 BLAKE2B 2a8ab80a2189cc7bbc21bb83c409b16c8824364cc768765246876dedab8ac4073f0325d28dd916b2173bb3cd7396bb2c4b19b07c8932d589200d91f3ea48e2b9 SHA512 78390787c4b080608036605c6c713bbd5d482b039796e76974ca8c034e0d8af694704e063d53f99a3e5e7ac4d48f6325ff1c90d67fbeb4bc9e49792485e11cb1
DIST adwaita-qt-1.2.1.tar.gz 438614 BLAKE2B 783372158d67e51cf869b3f4c0732735c68ccf6d43ce354de41609878e582509becd97348c749c1e3b4ef1c73a5b1acda1dd3251d8d567a720d0b8286d154fb6 SHA512 a4482d9ae8e9f1ae4f6baa411d68f5f7b2ccafd157635c5e142723414f28bd0a5b3331d3ba16e17404159d410fff029b779447e8832d69c020a1fa1d40d926da
-DIST adwaita-qt-1.3.0.tar.gz 438816 BLAKE2B d362a619481c4bbf1aa08286390e91a4028f79dcda20ca27443e50ee32f5de89a01e0dfc5df153b6f1b4dfc5185b7de54e8614a4559b2511b83a174ed09ae144 SHA512 77f2554826ceb31f2972f272424a8626b83085df4638cdde707837671479ed3bb28c86fae3cd878daefc0c887aca1a58f8b30d0eed9577f9a306af6db703261b
DIST adwaita-qt-1.3.1.tar.gz 438788 BLAKE2B 8c5585f51eeca86225f9162d47e6d7bee6e912120af0a692a85417b9d7c95b32a08e9329e3a60190148832cceeb154fcca932dafc84b4e9d26ced3a661c3eca4 SHA512 2f6f0e76a7ea35151ea6a2c7f6d8f4714b738935bfecf10be9abb243bee6f297bbe7a31593ca2a17eea1767b26d4d420aadb5ba2c4c11792169579eab4bdd439
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.1.4.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.1.4.ebuild
deleted file mode 100644
index 662921101d5..00000000000
--- a/x11-themes/adwaita-qt/adwaita-qt-1.1.4.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
-HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
-SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc64 x86"
-IUSE="gnome"
-
-DEPEND="
- dev-qt/qtcore:5
- dev-qt/qtdbus:5
- dev-qt/qtgui:5
- dev-qt/qtwidgets:5
-"
-RDEPEND="${DEPEND}
- gnome? ( x11-themes/QGnomePlatform )
-"
-
-src_configure() {
- BUILD_DIR="${WORKDIR}/${PN}_qt5"
- local mycmakeargs=( -DUSE_QT4=OFF )
- cmake_src_configure
-}
-
-src_compile() {
- local _d
- for _d in "${WORKDIR}"/${PN}_qt*; do
- cmake_src_compile -C "${_d}"
- done
-}
-
-src_install() {
- local _d
- for _d in "${WORKDIR}"/${PN}_qt*; do
- cmake_src_install -C "${_d}"
- done
-}
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.3.0.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.3.0.ebuild
deleted file mode 100644
index 008c282fd64..00000000000
--- a/x11-themes/adwaita-qt/adwaita-qt-1.3.0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
-HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
-SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
-IUSE="gnome"
-
-DEPEND="
- dev-qt/qtcore:5
- dev-qt/qtdbus:5
- dev-qt/qtgui:5
- dev-qt/qtwidgets:5
- dev-qt/qtx11extras:5
-"
-RDEPEND="${DEPEND}"
-PDEPEND="gnome? ( x11-themes/QGnomePlatform )"
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2021-06-06 18:12 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2021-06-06 18:12 UTC (permalink / raw
To: gentoo-commits
commit: e3ff0d0a4576fe302510bb73e51a51c3b1927121
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 6 18:08:04 2021 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Jun 6 18:12:38 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3ff0d0a
x11-themes/adwaita-qt: Bump to 1.3.1
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/Manifest | 1 +
x11-themes/adwaita-qt/adwaita-qt-1.3.1.ebuild | 25 +++++++++++++++++++++++++
2 files changed, 26 insertions(+)
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
index 018f39abc70..c1963e6062e 100644
--- a/x11-themes/adwaita-qt/Manifest
+++ b/x11-themes/adwaita-qt/Manifest
@@ -1,3 +1,4 @@
DIST adwaita-qt-1.1.4.tar.gz 436392 BLAKE2B 2a8ab80a2189cc7bbc21bb83c409b16c8824364cc768765246876dedab8ac4073f0325d28dd916b2173bb3cd7396bb2c4b19b07c8932d589200d91f3ea48e2b9 SHA512 78390787c4b080608036605c6c713bbd5d482b039796e76974ca8c034e0d8af694704e063d53f99a3e5e7ac4d48f6325ff1c90d67fbeb4bc9e49792485e11cb1
DIST adwaita-qt-1.2.1.tar.gz 438614 BLAKE2B 783372158d67e51cf869b3f4c0732735c68ccf6d43ce354de41609878e582509becd97348c749c1e3b4ef1c73a5b1acda1dd3251d8d567a720d0b8286d154fb6 SHA512 a4482d9ae8e9f1ae4f6baa411d68f5f7b2ccafd157635c5e142723414f28bd0a5b3331d3ba16e17404159d410fff029b779447e8832d69c020a1fa1d40d926da
DIST adwaita-qt-1.3.0.tar.gz 438816 BLAKE2B d362a619481c4bbf1aa08286390e91a4028f79dcda20ca27443e50ee32f5de89a01e0dfc5df153b6f1b4dfc5185b7de54e8614a4559b2511b83a174ed09ae144 SHA512 77f2554826ceb31f2972f272424a8626b83085df4638cdde707837671479ed3bb28c86fae3cd878daefc0c887aca1a58f8b30d0eed9577f9a306af6db703261b
+DIST adwaita-qt-1.3.1.tar.gz 438788 BLAKE2B 8c5585f51eeca86225f9162d47e6d7bee6e912120af0a692a85417b9d7c95b32a08e9329e3a60190148832cceeb154fcca932dafc84b4e9d26ced3a661c3eca4 SHA512 2f6f0e76a7ea35151ea6a2c7f6d8f4714b738935bfecf10be9abb243bee6f297bbe7a31593ca2a17eea1767b26d4d420aadb5ba2c4c11792169579eab4bdd439
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.3.1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.3.1.ebuild
new file mode 100644
index 00000000000..008c282fd64
--- /dev/null
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.3.1.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
+HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
+SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE="gnome"
+
+DEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtdbus:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtx11extras:5
+"
+RDEPEND="${DEPEND}"
+PDEPEND="gnome? ( x11-themes/QGnomePlatform )"
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2021-07-09 6:26 Agostino Sarubbo
0 siblings, 0 replies; 49+ messages in thread
From: Agostino Sarubbo @ 2021-07-09 6:26 UTC (permalink / raw
To: gentoo-commits
commit: 1f8de380590194dec10fb68ae7a1ab79e6507e0c
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 9 06:25:14 2021 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jul 9 06:25:14 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f8de380
x11-themes/adwaita-qt: amd64 stable wrt bug #801202
Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.3.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.3.1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.3.1.ebuild
index 008c282fd64..31e66f05b0e 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.3.1.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.3.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 ~x86"
IUSE="gnome"
DEPEND="
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2021-07-11 20:51 Sam James
0 siblings, 0 replies; 49+ messages in thread
From: Sam James @ 2021-07-11 20:51 UTC (permalink / raw
To: gentoo-commits
commit: b59f83200b3804fb33722065972f3a6416923652
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 11 20:50:39 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jul 11 20:50:39 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b59f8320
x11-themes/adwaita-qt: Stabilize 1.3.1 x86, #801202
Signed-off-by: Sam James <sam <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.3.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.3.1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.3.1.ebuild
index 31e66f05b0e..c8407ccd926 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.3.1.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.3.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 x86"
IUSE="gnome"
DEPEND="
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2021-08-25 12:31 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2021-08-25 12:31 UTC (permalink / raw
To: gentoo-commits
commit: c3e9403eb477e1202d08addf582c354f76c371c7
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 25 12:28:39 2021 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Aug 25 12:31:20 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3e9403e
x11-themes/adwaita-qt: Bump to 1.4.0
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/Manifest | 1 +
x11-themes/adwaita-qt/adwaita-qt-1.4.0.ebuild | 25 +++++++++++++++++++++++++
2 files changed, 26 insertions(+)
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
index 046284aa15a..3b5767c9adf 100644
--- a/x11-themes/adwaita-qt/Manifest
+++ b/x11-themes/adwaita-qt/Manifest
@@ -1,2 +1,3 @@
DIST adwaita-qt-1.2.1.tar.gz 438614 BLAKE2B 783372158d67e51cf869b3f4c0732735c68ccf6d43ce354de41609878e582509becd97348c749c1e3b4ef1c73a5b1acda1dd3251d8d567a720d0b8286d154fb6 SHA512 a4482d9ae8e9f1ae4f6baa411d68f5f7b2ccafd157635c5e142723414f28bd0a5b3331d3ba16e17404159d410fff029b779447e8832d69c020a1fa1d40d926da
DIST adwaita-qt-1.3.1.tar.gz 438788 BLAKE2B 8c5585f51eeca86225f9162d47e6d7bee6e912120af0a692a85417b9d7c95b32a08e9329e3a60190148832cceeb154fcca932dafc84b4e9d26ced3a661c3eca4 SHA512 2f6f0e76a7ea35151ea6a2c7f6d8f4714b738935bfecf10be9abb243bee6f297bbe7a31593ca2a17eea1767b26d4d420aadb5ba2c4c11792169579eab4bdd439
+DIST adwaita-qt-1.4.0.tar.gz 1543503 BLAKE2B 2fa9d6fe0736ce0e922f030db21c4e78b303758ea0cd55db48ddc5155ce9443f0460e2c7ed1314e0e8113d018377c422f2ca7df05f78b270c928a92a62b97fc1 SHA512 870076ec219fcaa8d5e24df5076b0dfe147ad2ba4562bccdced03cb0539a49590a59aee8bb029926b36e50d619906974ca70528f835ddc9067e14cdfb0648671
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.4.0.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.4.0.ebuild
new file mode 100644
index 00000000000..008c282fd64
--- /dev/null
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.4.0.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
+HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
+SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE="gnome"
+
+DEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtdbus:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtx11extras:5
+"
+RDEPEND="${DEPEND}"
+PDEPEND="gnome? ( x11-themes/QGnomePlatform )"
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2021-08-25 12:31 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2021-08-25 12:31 UTC (permalink / raw
To: gentoo-commits
commit: cacd0123524d0fc523492b45bbef33760fdf7501
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 25 12:28:58 2021 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Aug 25 12:31:20 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cacd0123
x11-themes/adwaita-qt: Drop old
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/Manifest | 1 -
x11-themes/adwaita-qt/adwaita-qt-1.2.1.ebuild | 25 -------------------------
2 files changed, 26 deletions(-)
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
index 3b5767c9adf..7cab3a08dd4 100644
--- a/x11-themes/adwaita-qt/Manifest
+++ b/x11-themes/adwaita-qt/Manifest
@@ -1,3 +1,2 @@
-DIST adwaita-qt-1.2.1.tar.gz 438614 BLAKE2B 783372158d67e51cf869b3f4c0732735c68ccf6d43ce354de41609878e582509becd97348c749c1e3b4ef1c73a5b1acda1dd3251d8d567a720d0b8286d154fb6 SHA512 a4482d9ae8e9f1ae4f6baa411d68f5f7b2ccafd157635c5e142723414f28bd0a5b3331d3ba16e17404159d410fff029b779447e8832d69c020a1fa1d40d926da
DIST adwaita-qt-1.3.1.tar.gz 438788 BLAKE2B 8c5585f51eeca86225f9162d47e6d7bee6e912120af0a692a85417b9d7c95b32a08e9329e3a60190148832cceeb154fcca932dafc84b4e9d26ced3a661c3eca4 SHA512 2f6f0e76a7ea35151ea6a2c7f6d8f4714b738935bfecf10be9abb243bee6f297bbe7a31593ca2a17eea1767b26d4d420aadb5ba2c4c11792169579eab4bdd439
DIST adwaita-qt-1.4.0.tar.gz 1543503 BLAKE2B 2fa9d6fe0736ce0e922f030db21c4e78b303758ea0cd55db48ddc5155ce9443f0460e2c7ed1314e0e8113d018377c422f2ca7df05f78b270c928a92a62b97fc1 SHA512 870076ec219fcaa8d5e24df5076b0dfe147ad2ba4562bccdced03cb0539a49590a59aee8bb029926b36e50d619906974ca70528f835ddc9067e14cdfb0648671
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.2.1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.2.1.ebuild
deleted file mode 100644
index c8407ccd926..00000000000
--- a/x11-themes/adwaita-qt/adwaita-qt-1.2.1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
-HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
-SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc64 x86"
-IUSE="gnome"
-
-DEPEND="
- dev-qt/qtcore:5
- dev-qt/qtdbus:5
- dev-qt/qtgui:5
- dev-qt/qtwidgets:5
- dev-qt/qtx11extras:5
-"
-RDEPEND="${DEPEND}"
-PDEPEND="gnome? ( x11-themes/QGnomePlatform )"
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2021-11-11 10:44 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2021-11-11 10:44 UTC (permalink / raw
To: gentoo-commits
commit: 3cd1f0981cdcd6fc00d07cf9e765f390aa5c471b
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 11 09:58:55 2021 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Nov 11 10:44:25 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cd1f098
x11-themes/adwaita-qt: Bump to 1.4.1
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/Manifest | 1 +
x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild | 33 +++++++++++++++++++++++++++
2 files changed, 34 insertions(+)
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
index 7cab3a08dd4..ae2f24776da 100644
--- a/x11-themes/adwaita-qt/Manifest
+++ b/x11-themes/adwaita-qt/Manifest
@@ -1,2 +1,3 @@
DIST adwaita-qt-1.3.1.tar.gz 438788 BLAKE2B 8c5585f51eeca86225f9162d47e6d7bee6e912120af0a692a85417b9d7c95b32a08e9329e3a60190148832cceeb154fcca932dafc84b4e9d26ced3a661c3eca4 SHA512 2f6f0e76a7ea35151ea6a2c7f6d8f4714b738935bfecf10be9abb243bee6f297bbe7a31593ca2a17eea1767b26d4d420aadb5ba2c4c11792169579eab4bdd439
DIST adwaita-qt-1.4.0.tar.gz 1543503 BLAKE2B 2fa9d6fe0736ce0e922f030db21c4e78b303758ea0cd55db48ddc5155ce9443f0460e2c7ed1314e0e8113d018377c422f2ca7df05f78b270c928a92a62b97fc1 SHA512 870076ec219fcaa8d5e24df5076b0dfe147ad2ba4562bccdced03cb0539a49590a59aee8bb029926b36e50d619906974ca70528f835ddc9067e14cdfb0648671
+DIST adwaita-qt-1.4.1.tar.gz 1543217 BLAKE2B 8e85ad8361856ad937c865603b4caf0e1c40b81b2cbe4a572f7e5a04d18877efdf1b8b8317f0c811f5e3ed270ba62481dd207ad9b67170930131f6e8d9b8b389 SHA512 efdc64addbd2ee4b4eb133323540a2c662cb882e42aa0573dace9044acc7638658badac3581d6cae7a3f17905692e4e8f768b6a8e3c1b4575d7e1999c1e9fe63
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
new file mode 100644
index 00000000000..da733d1f004
--- /dev/null
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
+HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
+SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE="gnome"
+
+DEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtdbus:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtx11extras:5
+"
+RDEPEND="${DEPEND}"
+PDEPEND="gnome? ( x11-themes/QGnomePlatform )"
+
+src_configure() {
+ local mycmakeargs=(
+ -DUSE_QT6=false
+ )
+ cmake_src_configure
+}
+
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2021-11-11 10:44 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2021-11-11 10:44 UTC (permalink / raw
To: gentoo-commits
commit: ccc5f07e0a3aa8f0854dfaf70946ddd05578d989
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 11 10:02:22 2021 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Nov 11 10:44:27 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccc5f07e
x11-themes/adwaita-qt: Make repoman happier
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild | 1 -
1 file changed, 1 deletion(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
index 72734956f8c..68e8f44fb93 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
@@ -29,4 +29,3 @@ src_configure() {
)
cmake_src_configure
}
-
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2021-11-11 10:44 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2021-11-11 10:44 UTC (permalink / raw
To: gentoo-commits
commit: 4587087930fd82d36da81315fc4b3c5cc1b415a2
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 11 10:02:06 2021 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Nov 11 10:44:26 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45870879
x11-themes/adwaita-qt: Bump eapi
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
index da733d1f004..72734956f8c 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
@@ -1,8 +1,7 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
-
+EAPI=8
inherit cmake
DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2021-12-14 15:45 Jakov Smolić
0 siblings, 0 replies; 49+ messages in thread
From: Jakov Smolić @ 2021-12-14 15:45 UTC (permalink / raw
To: gentoo-commits
commit: 58dd926d2a69519386c62e72f852e9a6c60de62b
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 14 15:44:14 2021 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Dec 14 15:45:00 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58dd926d
x11-themes/adwaita-qt: Stabilize 1.4.1 amd64, #829167
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
index 5ae4cd9c2a78..7e7d6a0e61ef 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc64 x86"
+KEYWORDS="amd64 ~ppc64 x86"
IUSE="gnome"
DEPEND="
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2021-12-14 15:45 Jakov Smolić
0 siblings, 0 replies; 49+ messages in thread
From: Jakov Smolić @ 2021-12-14 15:45 UTC (permalink / raw
To: gentoo-commits
commit: 5eae85a5647a26d74b210c3a0913f314d62cfcfa
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 14 15:43:16 2021 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Dec 14 15:44:56 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5eae85a5
x11-themes/adwaita-qt: Stabilize 1.4.1 x86, #829167
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
index 68e8f44fb938..5ae4cd9c2a78 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~ppc64 x86"
IUSE="gnome"
DEPEND="
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2022-01-13 2:00 Georgy Yakovlev
0 siblings, 0 replies; 49+ messages in thread
From: Georgy Yakovlev @ 2022-01-13 2:00 UTC (permalink / raw
To: gentoo-commits
commit: 26bbfc8b8a51926135d9368c80cf5821a6bf7367
Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 13 01:52:02 2022 +0000
Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Thu Jan 13 02:00:45 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26bbfc8b
x11-themes/adwaita-qt: keyword 1.4.1 for ~arm64
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
index 7e7d6a0e61ef..b02503632d0a 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86"
IUSE="gnome"
DEPEND="
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2022-10-02 8:03 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2022-10-02 8:03 UTC (permalink / raw
To: gentoo-commits
commit: c25da6a7fafecfc718c8715b49b547c29f55be82
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 2 07:57:58 2022 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Oct 2 07:57:58 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c25da6a7
x11-themes/adwaita-qt: add 1.4.2
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/Manifest | 1 +
x11-themes/adwaita-qt/adwaita-qt-1.4.2.ebuild | 31 +++++++++++++++++++++++++++
2 files changed, 32 insertions(+)
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
index ae2f24776da0..98ec6f9403d9 100644
--- a/x11-themes/adwaita-qt/Manifest
+++ b/x11-themes/adwaita-qt/Manifest
@@ -1,3 +1,4 @@
DIST adwaita-qt-1.3.1.tar.gz 438788 BLAKE2B 8c5585f51eeca86225f9162d47e6d7bee6e912120af0a692a85417b9d7c95b32a08e9329e3a60190148832cceeb154fcca932dafc84b4e9d26ced3a661c3eca4 SHA512 2f6f0e76a7ea35151ea6a2c7f6d8f4714b738935bfecf10be9abb243bee6f297bbe7a31593ca2a17eea1767b26d4d420aadb5ba2c4c11792169579eab4bdd439
DIST adwaita-qt-1.4.0.tar.gz 1543503 BLAKE2B 2fa9d6fe0736ce0e922f030db21c4e78b303758ea0cd55db48ddc5155ce9443f0460e2c7ed1314e0e8113d018377c422f2ca7df05f78b270c928a92a62b97fc1 SHA512 870076ec219fcaa8d5e24df5076b0dfe147ad2ba4562bccdced03cb0539a49590a59aee8bb029926b36e50d619906974ca70528f835ddc9067e14cdfb0648671
DIST adwaita-qt-1.4.1.tar.gz 1543217 BLAKE2B 8e85ad8361856ad937c865603b4caf0e1c40b81b2cbe4a572f7e5a04d18877efdf1b8b8317f0c811f5e3ed270ba62481dd207ad9b67170930131f6e8d9b8b389 SHA512 efdc64addbd2ee4b4eb133323540a2c662cb882e42aa0573dace9044acc7638658badac3581d6cae7a3f17905692e4e8f768b6a8e3c1b4575d7e1999c1e9fe63
+DIST adwaita-qt-1.4.2.tar.gz 1543173 BLAKE2B 5b089092c5d809e4dab5cd30b86e289e9b151f165ab613eb092da1607f9058b465cc42addfb0722ac0f6a5d944f6881b9f94b8e31f3a1ed9be779bea8cec2461 SHA512 ef2245cd1b08f2d5c23a534427c7a301cbb3a8b573a1870db48dfc82961417097465e02c696c311e5dd6f9fe1c03a27879c6b08aba5532d2f41ab9d0dcbd7f15
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.4.2.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.4.2.ebuild
new file mode 100644
index 000000000000..cba1b3bb0681
--- /dev/null
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.4.2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit cmake
+
+DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
+HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
+SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+IUSE="gnome"
+
+DEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtdbus:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtx11extras:5
+"
+RDEPEND="${DEPEND}"
+PDEPEND="gnome? ( x11-themes/QGnomePlatform )"
+
+src_configure() {
+ local mycmakeargs=(
+ -DUSE_QT6=false
+ )
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2022-10-02 8:03 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2022-10-02 8:03 UTC (permalink / raw
To: gentoo-commits
commit: 2fed2bd73b73befdf3ad2f480a330f074fe6e3f5
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 2 07:58:11 2022 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Oct 2 07:58:11 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fed2bd7
x11-themes/adwaita-qt: drop 1.3.1, 1.4.0
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/Manifest | 2 --
x11-themes/adwaita-qt/adwaita-qt-1.3.1.ebuild | 25 -------------------------
x11-themes/adwaita-qt/adwaita-qt-1.4.0.ebuild | 25 -------------------------
3 files changed, 52 deletions(-)
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
index 98ec6f9403d9..50cbcb89e989 100644
--- a/x11-themes/adwaita-qt/Manifest
+++ b/x11-themes/adwaita-qt/Manifest
@@ -1,4 +1,2 @@
-DIST adwaita-qt-1.3.1.tar.gz 438788 BLAKE2B 8c5585f51eeca86225f9162d47e6d7bee6e912120af0a692a85417b9d7c95b32a08e9329e3a60190148832cceeb154fcca932dafc84b4e9d26ced3a661c3eca4 SHA512 2f6f0e76a7ea35151ea6a2c7f6d8f4714b738935bfecf10be9abb243bee6f297bbe7a31593ca2a17eea1767b26d4d420aadb5ba2c4c11792169579eab4bdd439
-DIST adwaita-qt-1.4.0.tar.gz 1543503 BLAKE2B 2fa9d6fe0736ce0e922f030db21c4e78b303758ea0cd55db48ddc5155ce9443f0460e2c7ed1314e0e8113d018377c422f2ca7df05f78b270c928a92a62b97fc1 SHA512 870076ec219fcaa8d5e24df5076b0dfe147ad2ba4562bccdced03cb0539a49590a59aee8bb029926b36e50d619906974ca70528f835ddc9067e14cdfb0648671
DIST adwaita-qt-1.4.1.tar.gz 1543217 BLAKE2B 8e85ad8361856ad937c865603b4caf0e1c40b81b2cbe4a572f7e5a04d18877efdf1b8b8317f0c811f5e3ed270ba62481dd207ad9b67170930131f6e8d9b8b389 SHA512 efdc64addbd2ee4b4eb133323540a2c662cb882e42aa0573dace9044acc7638658badac3581d6cae7a3f17905692e4e8f768b6a8e3c1b4575d7e1999c1e9fe63
DIST adwaita-qt-1.4.2.tar.gz 1543173 BLAKE2B 5b089092c5d809e4dab5cd30b86e289e9b151f165ab613eb092da1607f9058b465cc42addfb0722ac0f6a5d944f6881b9f94b8e31f3a1ed9be779bea8cec2461 SHA512 ef2245cd1b08f2d5c23a534427c7a301cbb3a8b573a1870db48dfc82961417097465e02c696c311e5dd6f9fe1c03a27879c6b08aba5532d2f41ab9d0dcbd7f15
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.3.1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.3.1.ebuild
deleted file mode 100644
index c8407ccd926e..000000000000
--- a/x11-themes/adwaita-qt/adwaita-qt-1.3.1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
-HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
-SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc64 x86"
-IUSE="gnome"
-
-DEPEND="
- dev-qt/qtcore:5
- dev-qt/qtdbus:5
- dev-qt/qtgui:5
- dev-qt/qtwidgets:5
- dev-qt/qtx11extras:5
-"
-RDEPEND="${DEPEND}"
-PDEPEND="gnome? ( x11-themes/QGnomePlatform )"
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.4.0.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.4.0.ebuild
deleted file mode 100644
index 008c282fd64b..000000000000
--- a/x11-themes/adwaita-qt/adwaita-qt-1.4.0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
-HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
-SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
-IUSE="gnome"
-
-DEPEND="
- dev-qt/qtcore:5
- dev-qt/qtdbus:5
- dev-qt/qtgui:5
- dev-qt/qtwidgets:5
- dev-qt/qtx11extras:5
-"
-RDEPEND="${DEPEND}"
-PDEPEND="gnome? ( x11-themes/QGnomePlatform )"
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2022-12-01 22:24 Jakov Smolić
0 siblings, 0 replies; 49+ messages in thread
From: Jakov Smolić @ 2022-12-01 22:24 UTC (permalink / raw
To: gentoo-commits
commit: ad21477c35354566769f955358317983ac9fbc1e
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 1 22:24:20 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Thu Dec 1 22:24:20 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad21477c
x11-themes/adwaita-qt: Stabilize 1.4.2 amd64, #883929
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.4.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.4.2.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.4.2.ebuild
index cba1b3bb0681..e8609faa8744 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.4.2.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.4.2.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
IUSE="gnome"
DEPEND="
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2022-12-01 22:28 Jakov Smolić
0 siblings, 0 replies; 49+ messages in thread
From: Jakov Smolić @ 2022-12-01 22:28 UTC (permalink / raw
To: gentoo-commits
commit: f1897d2d164c10ee200d251d51099ed81769ffa2
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 1 22:28:07 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Thu Dec 1 22:28:07 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1897d2d
x11-themes/adwaita-qt: Stabilize 1.4.2 x86, #883929
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.4.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.4.2.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.4.2.ebuild
index e8609faa8744..b02503632d0a 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.4.2.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.4.2.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86"
IUSE="gnome"
DEPEND="
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2023-04-20 13:25 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2023-04-20 13:25 UTC (permalink / raw
To: gentoo-commits
commit: bfba98da1c64c3ffb1575fac1887a579728b3ad4
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 20 13:25:18 2023 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Apr 20 13:25:18 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfba98da
x11-themes/adwaita-qt: drop 1.4.1
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/Manifest | 1 -
x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild | 31 ---------------------------
2 files changed, 32 deletions(-)
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
index 50cbcb89e989..15634a503660 100644
--- a/x11-themes/adwaita-qt/Manifest
+++ b/x11-themes/adwaita-qt/Manifest
@@ -1,2 +1 @@
-DIST adwaita-qt-1.4.1.tar.gz 1543217 BLAKE2B 8e85ad8361856ad937c865603b4caf0e1c40b81b2cbe4a572f7e5a04d18877efdf1b8b8317f0c811f5e3ed270ba62481dd207ad9b67170930131f6e8d9b8b389 SHA512 efdc64addbd2ee4b4eb133323540a2c662cb882e42aa0573dace9044acc7638658badac3581d6cae7a3f17905692e4e8f768b6a8e3c1b4575d7e1999c1e9fe63
DIST adwaita-qt-1.4.2.tar.gz 1543173 BLAKE2B 5b089092c5d809e4dab5cd30b86e289e9b151f165ab613eb092da1607f9058b465cc42addfb0722ac0f6a5d944f6881b9f94b8e31f3a1ed9be779bea8cec2461 SHA512 ef2245cd1b08f2d5c23a534427c7a301cbb3a8b573a1870db48dfc82961417097465e02c696c311e5dd6f9fe1c03a27879c6b08aba5532d2f41ab9d0dcbd7f15
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
deleted file mode 100644
index b02503632d0a..000000000000
--- a/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit cmake
-
-DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
-HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
-SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
-IUSE="gnome"
-
-DEPEND="
- dev-qt/qtcore:5
- dev-qt/qtdbus:5
- dev-qt/qtgui:5
- dev-qt/qtwidgets:5
- dev-qt/qtx11extras:5
-"
-RDEPEND="${DEPEND}"
-PDEPEND="gnome? ( x11-themes/QGnomePlatform )"
-
-src_configure() {
- local mycmakeargs=(
- -DUSE_QT6=false
- )
- cmake_src_configure
-}
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2023-04-20 13:26 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2023-04-20 13:26 UTC (permalink / raw
To: gentoo-commits
commit: 1019dc9b36bc72c1e7780c94d59658003f2a0a72
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 20 13:25:56 2023 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Apr 20 13:25:56 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1019dc9b
x11-themes/adwaita-qt: add github upstream metadata
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/metadata.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/x11-themes/adwaita-qt/metadata.xml b/x11-themes/adwaita-qt/metadata.xml
index 572c7daf2ccf..843235f0a72e 100644
--- a/x11-themes/adwaita-qt/metadata.xml
+++ b/x11-themes/adwaita-qt/metadata.xml
@@ -4,4 +4,7 @@
<maintainer type="person">
<email>pacho@gentoo.org</email>
</maintainer>
+ <upstream>
+ <remote-id type="github">FedoraQt/adwaita-qt</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2023-11-10 16:39 Pacho Ramos
0 siblings, 0 replies; 49+ messages in thread
From: Pacho Ramos @ 2023-11-10 16:39 UTC (permalink / raw
To: gentoo-commits
commit: 80f12f41e23424ae361e2c4f667e35b5581fa724
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 10 16:37:56 2023 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Fri Nov 10 16:38:59 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80f12f41
x11-themes/adwaita-qt: Support qt6
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.4.2-r1.ebuild | 55 ++++++++++++++++++++++++
1 file changed, 55 insertions(+)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.4.2-r1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.4.2-r1.ebuild
new file mode 100644
index 000000000000..87e4cf45f272
--- /dev/null
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.4.2-r1.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit cmake
+
+DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
+HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
+SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+IUSE="gnome +qt5 qt6"
+REQUIRED_USE="|| ( qt5 qt6 )"
+
+DEPEND="
+ qt5? (
+ dev-qt/qtcore:5
+ dev-qt/qtdbus:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtx11extras:5
+ )
+ qt6? ( dev-qt/qtbase:6[dbus,gui,widgets] )
+"
+RDEPEND="${DEPEND}"
+PDEPEND="gnome? ( x11-themes/QGnomePlatform )"
+
+src_configure() {
+ if use qt5; then
+ BUILD_DIR="${WORKDIR}/${PN}_qt5"
+ local mycmakeargs=(-DUSE_QT6=OFF)
+ cmake_src_configure
+ fi
+ if use qt6; then
+ BUILD_DIR="${WORKDIR}/${PN}_qt6"
+ local mycmakeargs=(-DUSE_QT6=ON)
+ cmake_src_configure
+ fi
+}
+
+src_compile() {
+ local _d
+ for _d in "${WORKDIR}"/${PN}_qt*; do
+ cmake_src_compile -C "${_d}"
+ done
+}
+
+src_install() {
+ local _d
+ for _d in "${WORKDIR}"/${PN}_qt*; do
+ cmake_src_install -C "${_d}"
+ done
+}
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2024-03-11 16:17 Viorel Munteanu
0 siblings, 0 replies; 49+ messages in thread
From: Viorel Munteanu @ 2024-03-11 16:17 UTC (permalink / raw
To: gentoo-commits
commit: 10868a93a65a4ec0168faf664484fbcfa206409d
Author: Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Sun Mar 10 17:11:55 2024 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Mon Mar 11 16:11:47 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10868a93
x11-themes/adwaita-qt: Stabilize 1.4.2-r1 amd64, #925312
Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.4.2-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.4.2-r1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.4.2-r1.ebuild
index 87e4cf45f272..a56f02a04d34 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.4.2-r1.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.4.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
IUSE="gnome +qt5 qt6"
REQUIRED_USE="|| ( qt5 qt6 )"
^ permalink raw reply related [flat|nested] 49+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
@ 2024-03-11 16:17 Viorel Munteanu
0 siblings, 0 replies; 49+ messages in thread
From: Viorel Munteanu @ 2024-03-11 16:17 UTC (permalink / raw
To: gentoo-commits
commit: 472e410d4083f889486cd4b1d788d133d14f2fdf
Author: Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Sun Mar 10 18:35:45 2024 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Mon Mar 11 16:11:48 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=472e410d
x11-themes/adwaita-qt: Stabilize 1.4.2-r1 x86, #925312
Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>
x11-themes/adwaita-qt/adwaita-qt-1.4.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.4.2-r1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.4.2-r1.ebuild
index a56f02a04d34..e49f30ed16d3 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.4.2-r1.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.4.2-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86"
IUSE="gnome +qt5 qt6"
REQUIRED_USE="|| ( qt5 qt6 )"
^ permalink raw reply related [flat|nested] 49+ messages in thread
end of thread, other threads:[~2024-03-11 16:17 UTC | newest]
Thread overview: 49+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-14 15:45 [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/ Jakov Smolić
-- strict thread matches above, loose matches on Subject: below --
2024-03-11 16:17 Viorel Munteanu
2024-03-11 16:17 Viorel Munteanu
2023-11-10 16:39 Pacho Ramos
2023-04-20 13:26 Pacho Ramos
2023-04-20 13:25 Pacho Ramos
2022-12-01 22:28 Jakov Smolić
2022-12-01 22:24 Jakov Smolić
2022-10-02 8:03 Pacho Ramos
2022-10-02 8:03 Pacho Ramos
2022-01-13 2:00 Georgy Yakovlev
2021-12-14 15:45 Jakov Smolić
2021-11-11 10:44 Pacho Ramos
2021-11-11 10:44 Pacho Ramos
2021-11-11 10:44 Pacho Ramos
2021-08-25 12:31 Pacho Ramos
2021-08-25 12:31 Pacho Ramos
2021-07-11 20:51 Sam James
2021-07-09 6:26 Agostino Sarubbo
2021-06-06 18:12 Pacho Ramos
2021-06-06 18:12 Pacho Ramos
2021-05-20 16:20 Sam James
2021-05-20 16:20 Sam James
2021-05-20 13:12 Pacho Ramos
2021-05-20 13:12 Pacho Ramos
2021-03-28 8:33 Pacho Ramos
2021-02-14 16:23 Pacho Ramos
2021-02-14 16:23 Pacho Ramos
2021-02-14 16:23 Pacho Ramos
2020-07-14 19:16 Pacho Ramos
2020-06-21 20:31 Thomas Deutschmann
2020-05-31 12:42 Pacho Ramos
2020-05-31 12:42 Pacho Ramos
2020-05-20 20:17 Pacho Ramos
2020-01-21 19:48 Pacho Ramos
2020-01-21 10:42 Agostino Sarubbo
2020-01-20 12:52 Agostino Sarubbo
2020-01-12 20:33 Andreas Sturmlechner
2019-12-15 15:22 Pacho Ramos
2019-12-05 7:54 Pacho Ramos
2019-11-20 15:40 Agostino Sarubbo
2019-11-20 11:16 Agostino Sarubbo
2019-07-31 7:52 Pacho Ramos
2019-06-27 7:29 Sergei Trofimovich
2018-06-17 21:17 Andreas Sturmlechner
2018-06-11 8:13 Agostino Sarubbo
2018-05-27 11:40 Pacho Ramos
2017-09-08 13:46 Pacho Ramos
2017-07-21 8:46 Pacho Ramos
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox