Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/qt5ct/
Date: Sun, 13 May 2018 19:15:33
Message-Id: 1526238923.de28d560cc0d70fedd429e4b30c423bec63cc7c0.johu@gentoo
1 commit: de28d560cc0d70fedd429e4b30c423bec63cc7c0
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 13 19:14:40 2018 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Sun May 13 19:15:23 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de28d560
7
8 x11-misc/qt5ct: Remove 0.31
9
10 Overshadowed by 0.35.
11
12 Package-Manager: Portage-2.3.36, Repoman-2.3.9
13
14 x11-misc/qt5ct/Manifest | 1 -
15 x11-misc/qt5ct/metadata.xml | 1 -
16 x11-misc/qt5ct/qt5ct-0.31.ebuild | 49 ----------------------------------------
17 3 files changed, 51 deletions(-)
18
19 diff --git a/x11-misc/qt5ct/Manifest b/x11-misc/qt5ct/Manifest
20 index d3120c352ba..cea98635911 100644
21 --- a/x11-misc/qt5ct/Manifest
22 +++ b/x11-misc/qt5ct/Manifest
23 @@ -1,2 +1 @@
24 -DIST qt5ct-0.31.tar.bz2 55724 BLAKE2B 54602ee9ed46f790f3a8bc15fa66467382b5830b9a218739bb24483f1f18fe8be8c6a375d83e0b6c02b14bec002aa1e7bf757d6608eb908da0dcf7ced2f6b59d SHA512 9162106febf93b94b8ba847157d20386568bc898d15c6123636ef9d9c50bce3ca4706fbfbfd82053dccf545f91ca40d387d1e9a5bbb6773810a1d931417eaa4e
25 DIST qt5ct-0.35.tar.bz2 62547 BLAKE2B dd61f151e1c6c58095889b90cb30bb2baaf21fd8f181af37ee43c1d00404655d57c941cee905e737aff29122ae3f588d5c7ba46dc80ca76d749cc2dd66f35d57 SHA512 2bd24221d391c420e73488738ff10762d27eb21fb28dc69da27dcbfface0cd0f16049768b55867a059c93da07eddb76da1bc63aefd516e07e5049c847da3970a
26
27 diff --git a/x11-misc/qt5ct/metadata.xml b/x11-misc/qt5ct/metadata.xml
28 index a5fe4940379..86b995aa803 100644
29 --- a/x11-misc/qt5ct/metadata.xml
30 +++ b/x11-misc/qt5ct/metadata.xml
31 @@ -15,7 +15,6 @@
32 </longdescription>
33 <use>
34 <flag name="dbus">Enable system tray and global menu support</flag>
35 - <flag name="systray">Enable system tray support</flag>
36 </use>
37 <upstream>
38 <remote-id type="sourceforge">qt5ct</remote-id>
39
40 diff --git a/x11-misc/qt5ct/qt5ct-0.31.ebuild b/x11-misc/qt5ct/qt5ct-0.31.ebuild
41 deleted file mode 100644
42 index a774818defb..00000000000
43 --- a/x11-misc/qt5ct/qt5ct-0.31.ebuild
44 +++ /dev/null
45 @@ -1,49 +0,0 @@
46 -# Copyright 1999-2017 Gentoo Foundation
47 -# Distributed under the terms of the GNU General Public License v2
48 -
49 -EAPI=6
50 -
51 -inherit qmake-utils
52 -
53 -DESCRIPTION="Qt5 configuration tool, similar to qtconfig for Qt4"
54 -HOMEPAGE="https://sourceforge.net/projects/qt5ct/"
55 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
56 -
57 -LICENSE="BSD-2"
58 -SLOT="0"
59 -KEYWORDS="amd64"
60 -IUSE="+systray"
61 -
62 -RDEPEND="
63 - dev-qt/qtcore:5
64 - dev-qt/qtgui:5=
65 - dev-qt/qtwidgets:5
66 - systray? ( dev-qt/qtgui:5[dbus] )
67 -"
68 -DEPEND="${RDEPEND}
69 - dev-qt/linguist-tools:5
70 -"
71 -
72 -src_configure() {
73 - eqmake5 DEFINES="$(usex systray '' QT_NO_SYSTEMTRAYICON)" ${PN}.pro
74 -}
75 -
76 -src_install() {
77 - emake INSTALL_ROOT="${D}" install
78 - einstalldocs
79 -
80 - echo 'QT_QPA_PLATFORMTHEME=qt5ct' > "${T}"/98${PN} || die
81 - doenvd "${T}"/98${PN}
82 -}
83 -
84 -pkg_postinst() {
85 - if [[ -z ${REPLACING_VERSIONS} ]]; then
86 - ewarn "qt5ct configuration won't be applied to the currently running sessions."
87 - ewarn "Please relogin."
88 - fi
89 - if ! has_version 'dev-qt/qtsvg:5'; then
90 - elog
91 - elog "For SVG icon themes, please install 'dev-qt/qtsvg:5'."
92 - elog
93 - fi
94 -}