Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-qt/
Date: Sun, 31 May 2020 12:42:45
Message-Id: 1590928941.5b9549820ca8966cfc534a42c65f087cd150c404.pacho@gentoo
1 commit: 5b9549820ca8966cfc534a42c65f087cd150c404
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 31 11:27:05 2020 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun May 31 12:42:21 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b954982
7
8 x11-themes/adwaita-qt: Drop old
9
10 Package-Manager: Portage-2.3.100, Repoman-2.3.22
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 x11-themes/adwaita-qt/Manifest | 1 -
14 x11-themes/adwaita-qt/adwaita-qt-1.1.3.ebuild | 45 ---------------------------
15 2 files changed, 46 deletions(-)
16
17 diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest
18 index c2e8722a6db..3422d8893d7 100644
19 --- a/x11-themes/adwaita-qt/Manifest
20 +++ b/x11-themes/adwaita-qt/Manifest
21 @@ -1,3 +1,2 @@
22 DIST adwaita-qt-1.1.1.tar.gz 435566 BLAKE2B c8ca8df84ce06311b0937d994a859bb6e71a4a45570c179bdf3ded144bee06c93d8d80b300db3786b1bcc8db7f2b1d78423c8d8b0456079c4563924b2a036abc SHA512 6d11fc8eecc94da4f2e3798ee5147258f277032b23a82d5bf8d3414943ac89c5ebd056d519338959c72a8a45d1638ab8cfeac01b3f3fd1118b4c89eb0c8b5608
23 -DIST adwaita-qt-1.1.3.tar.gz 436159 BLAKE2B cebb1996d5ce7aa1147c097aa791e28b8f95dd8003eb344cc49c58b860c1f41806c152a11c420d420e13a83707c76009961b391ed2bacfcc921978ad05ad0d04 SHA512 82abdd2320cbfcd6983d0ea8b07615ee2d675849d03b6fa61c8c18dcf5974136d80612cb308a5502714827b2e9358f2ee66091a2d9a19851969d8070c9a454bb
24 DIST adwaita-qt-1.1.4.tar.gz 436392 BLAKE2B 2a8ab80a2189cc7bbc21bb83c409b16c8824364cc768765246876dedab8ac4073f0325d28dd916b2173bb3cd7396bb2c4b19b07c8932d589200d91f3ea48e2b9 SHA512 78390787c4b080608036605c6c713bbd5d482b039796e76974ca8c034e0d8af694704e063d53f99a3e5e7ac4d48f6325ff1c90d67fbeb4bc9e49792485e11cb1
25
26 diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.1.3.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.1.3.ebuild
27 deleted file mode 100644
28 index c290d5c603d..00000000000
29 --- a/x11-themes/adwaita-qt/adwaita-qt-1.1.3.ebuild
30 +++ /dev/null
31 @@ -1,45 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -inherit cmake
38 -
39 -DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell"
40 -HOMEPAGE="https://github.com/FedoraQt/adwaita-qt"
41 -SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz"
42 -
43 -LICENSE="GPL-2 LGPL-2"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~ppc64 ~x86"
46 -IUSE="gnome"
47 -
48 -DEPEND="
49 - dev-qt/qtcore:5
50 - dev-qt/qtdbus:5
51 - dev-qt/qtgui:5
52 - dev-qt/qtwidgets:5
53 -"
54 -RDEPEND="${DEPEND}
55 - gnome? ( x11-themes/QGnomePlatform )
56 -"
57 -
58 -src_configure() {
59 - BUILD_DIR="${WORKDIR}/${PN}_qt5"
60 - local mycmakeargs=( -DUSE_QT4=OFF )
61 - cmake_src_configure
62 -}
63 -
64 -src_compile() {
65 - local _d
66 - for _d in "${WORKDIR}"/${PN}_qt*; do
67 - cmake_src_compile -C "${_d}"
68 - done
69 -}
70 -
71 -src_install() {
72 - local _d
73 - for _d in "${WORKDIR}"/${PN}_qt*; do
74 - cmake_src_install -C "${_d}"
75 - done
76 -}