diff options
author | Jimi Huotari <chiitoo@gentoo.org> | 2021-03-22 11:39:45 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-03-26 20:43:39 +0100 |
commit | 423bb4fbecf175f4606babfacbd294f296ded2f8 (patch) | |
tree | 1706ac15e66a3ee8a1fa91226895c6179b190ff0 /lxqt-base/lxqt-qtplugin | |
parent | virtual/dist-kernel: Stabilize 5.4.105 x86, #777150 (diff) | |
download | gentoo-423bb4fbecf175f4606babfacbd294f296ded2f8.tar.gz gentoo-423bb4fbecf175f4606babfacbd294f296ded2f8.tar.bz2 gentoo-423bb4fbecf175f4606babfacbd294f296ded2f8.zip |
lxqt-base: remove 0.15.* and other old versions/files
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Jimi Huotari <chiitoo@gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/20057
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'lxqt-base/lxqt-qtplugin')
4 files changed, 0 insertions, 98 deletions
diff --git a/lxqt-base/lxqt-qtplugin/Manifest b/lxqt-base/lxqt-qtplugin/Manifest index 19cdd1318f7c..87e17f41a489 100644 --- a/lxqt-base/lxqt-qtplugin/Manifest +++ b/lxqt-base/lxqt-qtplugin/Manifest @@ -1,2 +1 @@ -DIST lxqt-qtplugin-0.15.1.tar.xz 23100 BLAKE2B 91f6a90f435a33fd19863f9989b0603590c51f5921ad0837c025437b6fbd50105c70a47028137562af1deb6892fadea05ca3924eee8e2ba8b91a41069ad2ca47 SHA512 6fc19cf5f763d7879e5a052c5638b5b396f659f4e199493c8b87cdb661c910921ecda865de2900a047c96dd63c3ef6dbfa486d1dbe0257c26984a25a139dce2f DIST lxqt-qtplugin-0.16.0.tar.xz 23640 BLAKE2B 53bb3e2f9dd9a72a148858af2b7b5729aeb4337494695ccf936c1c2ce13fd6e46fce95b738c000def6b8871b1f045de651fdc1d5aa3acf900dedc1d02ce59d7c SHA512 8dc6174a5b2a43332b40509b466095912d31407e70d5d3487243de3a25fd07e925fae8f46359f6b69f2e4d7e920a7ba0ae5982a8d7ad9129ffacb4d62e108203 diff --git a/lxqt-base/lxqt-qtplugin/files/lxqt-qtplugin-0.15.1-adjust-highlight-colour.patch b/lxqt-base/lxqt-qtplugin/files/lxqt-qtplugin-0.15.1-adjust-highlight-colour.patch deleted file mode 100644 index b25b3254173d..000000000000 --- a/lxqt-base/lxqt-qtplugin/files/lxqt-qtplugin-0.15.1-adjust-highlight-colour.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 5858386839d499c032d62c9d10301dc09421de27 Mon Sep 17 00:00:00 2001 -From: Tsu Jan <tsujan2000@gmail.com> -Date: Mon, 8 Jun 2020 01:49:41 +0430 -Subject: [PATCH] Enforce Fusion's highlight color when setting window color - -Because Qt's default highlight color is `#000080` while that of Fusion is `#3c8ce6`. Not only the latter is more elegant but also the patch fixes the color change after restarting apps. - -Also, the highlighted text color is set to white for the sake of certainty. ---- - src/lxqtplatformtheme.cpp | 3 +++ - 1 file changed, 3 insertions(+) - -diff --git a/src/lxqtplatformtheme.cpp b/src/lxqtplatformtheme.cpp -index 76f6483..3edc5b1 100644 ---- a/src/lxqtplatformtheme.cpp -+++ b/src/lxqtplatformtheme.cpp -@@ -134,6 +134,9 @@ void LXQtPlatformTheme::loadSettings() { - if(LXQtPalette_) - delete LXQtPalette_; - LXQtPalette_ = new QPalette(winColor_); -+ // Qt's default highlight color and that of Fusion may be different. This is a workaround: -+ LXQtPalette_->setColor(QPalette::Highlight, QColor(60, 140, 230)); -+ LXQtPalette_->setColor(QPalette::HighlightedText, QColor(255, 255, 255)); - } - - // SystemFont diff --git a/lxqt-base/lxqt-qtplugin/files/lxqt-qtplugin-0.15.1-no-widget-reset.patch b/lxqt-base/lxqt-qtplugin/files/lxqt-qtplugin-0.15.1-no-widget-reset.patch deleted file mode 100644 index 85258c851f74..000000000000 --- a/lxqt-base/lxqt-qtplugin/files/lxqt-qtplugin-0.15.1-no-widget-reset.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 8cc32d94b4c9de74b5bcf27fae2d10e6b2b11caf Mon Sep 17 00:00:00 2001 -From: Tsu Jan <tsujan2000@gmail.com> -Date: Mon, 1 Jun 2020 22:20:22 +0430 -Subject: [PATCH] Do not reset widget palettes on changing style -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Generally, resetting a widget's palette from outside its code is a bad practice because the palette may have been changed for a reason. - -If the custom palette of a widget needs an update when the style changes, the program itself is responsible for that; otherwise, the program has a bug — as in libfm-qt's places view (which I'll fix soon) and Dolphin's main view (which will never be fixed). ---- - src/lxqtplatformtheme.cpp | 4 ---- - 1 file changed, 4 deletions(-) - -diff --git a/src/lxqtplatformtheme.cpp b/src/lxqtplatformtheme.cpp -index 2df9f8f..76f6483 100644 ---- a/src/lxqtplatformtheme.cpp -+++ b/src/lxqtplatformtheme.cpp -@@ -234,10 +234,6 @@ void LXQtPlatformTheme::onSettingsChanged() { - // Qt5 added a QEvent::ThemeChange event. - QEvent event(QEvent::ThemeChange); - QApplication::sendEvent(widget, &event); -- // Also, set the palette because it may not be updated for some widgets. -- // WARNING: The app palette should be used, not LXQtPalette_, because -- // some widget styles have their own palettes. -- widget->setPalette(QApplication::palette()); - } - } - diff --git a/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-0.15.1.ebuild b/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-0.15.1.ebuild deleted file mode 100644 index 1c04c29f50f3..000000000000 --- a/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-0.15.1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="LXQt system integration plugin for Qt" -HOMEPAGE="https://lxqt.github.io/" - -if [[ ${PV} = *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" -else - SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" - KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86" -fi - -LICENSE="LGPL-2.1+" -SLOT="0" - -BDEPEND=" - dev-qt/linguist-tools:5 - >=dev-util/lxqt-build-tools-0.7.0 -" -DEPEND=" - dev-libs/libdbusmenu-qt:=[qt5(+)] - >=dev-libs/libqtxdg-3.5.0 - dev-qt/qtcore:5 - dev-qt/qtdbus:5 - dev-qt/qtgui:5= - dev-qt/qtwidgets:5 - dev-qt/qtx11extras:5 - =x11-libs/libfm-qt-$(ver_cut 1-2)* -" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}/${PN}-0.15.1-no-widget-reset.patch" # Fixed in next release. - "${FILESDIR}/${PN}-0.15.1-adjust-highlight-colour.patch" # Fixed in next release. -) |