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: Sun, 29 Dec 2019 20:51:54
Message-Id: 1577652553.434086a408d8d32c079a87370c57f5cedc268474.mgorny@gentoo
1 commit: 434086a408d8d32c079a87370c57f5cedc268474
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 29 20:49:13 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 29 20:49:13 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=434086a4
7
8 x11-misc/qt5ct: Remove redundant version
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 x11-misc/qt5ct/Manifest | 1 -
13 x11-misc/qt5ct/qt5ct-0.36.ebuild | 51 ----------------------------------------
14 2 files changed, 52 deletions(-)
15
16 diff --git a/x11-misc/qt5ct/Manifest b/x11-misc/qt5ct/Manifest
17 index c3738b43d33..a9504943ff9 100644
18 --- a/x11-misc/qt5ct/Manifest
19 +++ b/x11-misc/qt5ct/Manifest
20 @@ -1,3 +1,2 @@
21 DIST qt5ct-0.35.tar.bz2 62547 BLAKE2B dd61f151e1c6c58095889b90cb30bb2baaf21fd8f181af37ee43c1d00404655d57c941cee905e737aff29122ae3f588d5c7ba46dc80ca76d749cc2dd66f35d57 SHA512 2bd24221d391c420e73488738ff10762d27eb21fb28dc69da27dcbfface0cd0f16049768b55867a059c93da07eddb76da1bc63aefd516e07e5049c847da3970a
22 -DIST qt5ct-0.36.tar.bz2 68181 BLAKE2B b2bf21a1e3f4c6045af5f2e633c2a839bdb49165eb7f3a7d84021faa1c178e4ab84556460c2aa5e2b530fa32fdf29e0f7d3b37c9c839b7bbc7cfc8b77dffbb70 SHA512 dfd6f85328fe8f14c8f2349bc0cac698e549350e2c000a73ac26474ca38ec5f44fd4ebed9b6976fc3423dda8322fd80355eafa6ecbec17495d1e2278c3189a88
23 DIST qt5ct-0.41.tar.bz2 73009 BLAKE2B de6360feb16a82b262c13e6a3cbe226b7be7c3e95b1f1262b3802de59fc3bb8820c935b170a15a88e80164e6167f6259777c65fda6a3f8fbf1d115a63ddcc1f2 SHA512 a94f9996dc2198d3c8c9af8610912d12b915b8c547a49c36f7bc083b6f237b318d7903e91fb6fcfe06996a319c361104c1923e6d0c49446b6fb66a1e44fae009
24
25 diff --git a/x11-misc/qt5ct/qt5ct-0.36.ebuild b/x11-misc/qt5ct/qt5ct-0.36.ebuild
26 deleted file mode 100644
27 index d69df2963cd..00000000000
28 --- a/x11-misc/qt5ct/qt5ct-0.36.ebuild
29 +++ /dev/null
30 @@ -1,51 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit qmake-utils
37 -
38 -DESCRIPTION="Qt5 configuration tool, similar to qtconfig for Qt4"
39 -HOMEPAGE="https://sourceforge.net/projects/qt5ct/"
40 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
41 -
42 -LICENSE="BSD-2"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~x86"
45 -IUSE="+dbus"
46 -
47 -RDEPEND="
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 1 0)
62 -}
63 -
64 -src_install() {
65 - emake INSTALL_ROOT="${D}" install
66 - einstalldocs
67 -
68 - newenvd - 98${PN} <<< '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 -}