Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/qt5ct/
Date: Sat, 03 Jul 2021 06:27:04
Message-Id: 1625293606.4e40ca3370eebf41003bdf52c044bb964ff611cf.mgorny@gentoo
1 commit: 4e40ca3370eebf41003bdf52c044bb964ff611cf
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 3 06:21:43 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 3 06:26:46 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e40ca33
7
8 x11-misc/qt5ct: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 x11-misc/qt5ct/Manifest | 1 -
13 x11-misc/qt5ct/qt5ct-1.1.ebuild | 52 -----------------------------------------
14 2 files changed, 53 deletions(-)
15
16 diff --git a/x11-misc/qt5ct/Manifest b/x11-misc/qt5ct/Manifest
17 index e8352ff5257..8e33534161d 100644
18 --- a/x11-misc/qt5ct/Manifest
19 +++ b/x11-misc/qt5ct/Manifest
20 @@ -1,2 +1 @@
21 -DIST qt5ct-1.1.tar.bz2 79890 BLAKE2B e816d76ea35b2133891ccf63be47a227d95dc9783b6f2ac18ee7a7c67bae545fbdc7109103e63c18f093458942ae0b9bab3d1847c40abea9761ab0c314de6357 SHA512 0df00c0680aefb0eada1ddb70886fd63641c403ab42843f8d209413a56895dce0a88eb88a98d09d23a30df3b15ca1d595237592958769a1be86719f2a16cbdf7
22 DIST qt5ct-1.2.tar.bz2 76052 BLAKE2B bff9dcd6176f856f262f908101f51be5bc5fa56cbf221fb6e1b66cf49867d721f4c1d5707bcd71cb20b1d27d53f5352bcaaa32ed7298f9fe349ac8a90b4a4e23 SHA512 044582440fc3ed8424970a30d7e1562396f9a1651f2c50adbdcb6ec73b35fb8dd23de419df29b92d21a45fea9af4e562b1294f5bfc329419f831775954f8ed6f
23
24 diff --git a/x11-misc/qt5ct/qt5ct-1.1.ebuild b/x11-misc/qt5ct/qt5ct-1.1.ebuild
25 deleted file mode 100644
26 index 5ec0690f1e1..00000000000
27 --- a/x11-misc/qt5ct/qt5ct-1.1.ebuild
28 +++ /dev/null
29 @@ -1,52 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -inherit qmake-utils
36 -
37 -DESCRIPTION="Qt5 configuration tool, similar to qtconfig for Qt4"
38 -HOMEPAGE="https://sourceforge.net/projects/qt5ct/"
39 -SRC_URI="https://download.sourceforge.net/qt5ct/${P}.tar.bz2"
40 -
41 -LICENSE="BSD-2"
42 -SLOT="0"
43 -KEYWORDS="amd64 ~arm x86"
44 -IUSE="+dbus"
45 -
46 -RDEPEND="
47 - dev-qt/qtconcurrent:5
48 - dev-qt/qtcore:5
49 - dev-qt/qtgui:5=
50 - dev-qt/qtwidgets:5
51 - dbus? (
52 - dev-qt/qtdbus:5
53 - dev-qt/qtgui:5[dbus]
54 - )
55 -"
56 -DEPEND="${RDEPEND}
57 - dev-qt/linguist-tools:5
58 -"
59 -
60 -src_configure() {
61 - eqmake5 DISABLE_DBUS=$(usex dbus 0 1)
62 -}
63 -
64 -src_install() {
65 - emake INSTALL_ROOT="${D}" install
66 - einstalldocs
67 -
68 - newenvd - 98qt5ct <<< 'QT_QPA_PLATFORMTHEME=qt5ct'
69 -}
70 -
71 -pkg_postinst() {
72 - if [[ -z ${REPLACING_VERSIONS} ]]; then
73 - ewarn "qt5ct configuration won't be applied to the currently running sessions."
74 - ewarn "Please relogin."
75 - fi
76 - if ! has_version 'dev-qt/qtsvg:5'; then
77 - elog
78 - elog "For SVG icon themes, please install 'dev-qt/qtsvg:5'."
79 - elog
80 - fi
81 -}