commit:     7f63d37441b153484c68648d17af8170c4dfafa0
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  3 08:44:56 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jan  3 08:48:02 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f63d374

x11-misc/qt5ct: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 x11-misc/qt5ct/Manifest                            |  1 -
 .../files/qt5ct-0.35-fix-qtdbus-automagic.patch    | 39 ----------------
 x11-misc/qt5ct/qt5ct-0.35.ebuild                   | 54 ----------------------
 3 files changed, 94 deletions(-)

diff --git a/x11-misc/qt5ct/Manifest b/x11-misc/qt5ct/Manifest
index a9504943ff9..3d94c4a497a 100644
--- a/x11-misc/qt5ct/Manifest
+++ b/x11-misc/qt5ct/Manifest
@@ -1,2 +1 @@
-DIST qt5ct-0.35.tar.bz2 62547 BLAKE2B 
dd61f151e1c6c58095889b90cb30bb2baaf21fd8f181af37ee43c1d00404655d57c941cee905e737aff29122ae3f588d5c7ba46dc80ca76d749cc2dd66f35d57
 SHA512 
2bd24221d391c420e73488738ff10762d27eb21fb28dc69da27dcbfface0cd0f16049768b55867a059c93da07eddb76da1bc63aefd516e07e5049c847da3970a
 DIST qt5ct-0.41.tar.bz2 73009 BLAKE2B 
de6360feb16a82b262c13e6a3cbe226b7be7c3e95b1f1262b3802de59fc3bb8820c935b170a15a88e80164e6167f6259777c65fda6a3f8fbf1d115a63ddcc1f2
 SHA512 
a94f9996dc2198d3c8c9af8610912d12b915b8c547a49c36f7bc083b6f237b318d7903e91fb6fcfe06996a319c361104c1923e6d0c49446b6fb66a1e44fae009

diff --git a/x11-misc/qt5ct/files/qt5ct-0.35-fix-qtdbus-automagic.patch 
b/x11-misc/qt5ct/files/qt5ct-0.35-fix-qtdbus-automagic.patch
deleted file mode 100644
index 2363e559370..00000000000
--- a/x11-misc/qt5ct/files/qt5ct-0.35-fix-qtdbus-automagic.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-Index: src/qt5ct/qt5ct.pro
-===================================================================
-diff --git a/src/qt5ct/qt5ct.pro b/src/qt5ct/qt5ct.pro
---- a/src/qt5ct/qt5ct.pro      (revision 485)
-+++ b/src/qt5ct/qt5ct.pro      (revision 486)
-@@ -5,7 +5,7 @@
- QT += widgets
-
- greaterThan(QT_MINOR_VERSION, 8) {
--  QT += gui-private theme_support-private
-+  QT += gui-private
- }
-
- SOURCES += \
-Index: src/qt5ct-qtplugin/qt5ct-qtplugin.pro
-===================================================================
-diff --git a/src/qt5ct-qtplugin/qt5ct-qtplugin.pro 
b/src/qt5ct-qtplugin/qt5ct-qtplugin.pro
---- a/src/qt5ct-qtplugin/qt5ct-qtplugin.pro    (revision 485)
-+++ b/src/qt5ct-qtplugin/qt5ct-qtplugin.pro    (revision 486)
-@@ -4,13 +4,14 @@
- TARGET = qt5ct
- CONFIG += plugin
-
--greaterThan(QT_MINOR_VERSION, 7) {
--  QT += gui-private theme_support-private
--} else {
--  QT += gui-private platformsupport-private
--}
-+QT += gui-private
-
- !equals(DISABLE_DBUS, 1):qtHaveModule(dbus):greaterThan(QT_MINOR_VERSION, 5) {
-+    greaterThan(QT_MINOR_VERSION, 7) {
-+        QT += theme_support-private
-+    } else {
-+        QT += platformsupport-private
-+    }
-     QT += dbus
-     message(D-Bus support: Enabled)
- } else {

diff --git a/x11-misc/qt5ct/qt5ct-0.35.ebuild b/x11-misc/qt5ct/qt5ct-0.35.ebuild
deleted file mode 100644
index 267aa5d9890..00000000000
--- a/x11-misc/qt5ct/qt5ct-0.35.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit qmake-utils
-
-DESCRIPTION="Qt5 configuration tool, similar to qtconfig for Qt4"
-HOMEPAGE="https://sourceforge.net/projects/qt5ct/";
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64"
-IUSE="+dbus"
-
-RDEPEND="
-       dev-qt/qtcore:5
-       dev-qt/qtgui:5=
-       dev-qt/qtwidgets:5
-       dbus? (
-               dev-qt/qtdbus:5
-               dev-qt/qtgui:5[dbus]
-       )
-"
-DEPEND="${RDEPEND}
-       dev-qt/linguist-tools:5
-"
-
-PATCHES=( "${FILESDIR}/${P}-fix-qtdbus-automagic.patch" )
-
-src_configure() {
-       eqmake5 DISABLE_DBUS=$(usex !dbus 1 0)
-}
-
-src_install() {
-       emake INSTALL_ROOT="${D}" install
-       einstalldocs
-
-       echo 'QT_QPA_PLATFORMTHEME=qt5ct' > "${T}"/98${PN} || die
-       doenvd "${T}"/98${PN}
-}
-
-pkg_postinst() {
-       if [[ -z ${REPLACING_VERSIONS} ]]; then
-               ewarn "qt5ct configuration won't be applied to the currently 
running sessions."
-               ewarn "Please relogin."
-       fi
-       if ! has_version 'dev-qt/qtsvg:5'; then
-               elog
-               elog "For SVG icon themes, please install 'dev-qt/qtsvg:5'."
-               elog
-       fi
-}

Reply via email to