diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-10-05 20:20:07 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-10-09 21:00:26 +0200 |
commit | 7d0e4253cbbeaf1d16f495576c1352f091ad1f50 (patch) | |
tree | 00dbdff7152a7648a5a2ed5f2b3e92b5a92b6b12 /kde-plasma/plasma-workspace | |
parent | kde-plasma/plasma-thunderbolt: drop 5.18.5* (diff) | |
download | gentoo-7d0e4253cbbeaf1d16f495576c1352f091ad1f50.tar.gz gentoo-7d0e4253cbbeaf1d16f495576c1352f091ad1f50.tar.bz2 gentoo-7d0e4253cbbeaf1d16f495576c1352f091ad1f50.zip |
kde-plasma/plasma-workspace: drop 5.18.5*
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-plasma/plasma-workspace')
4 files changed, 0 insertions, 415 deletions
diff --git a/kde-plasma/plasma-workspace/Manifest b/kde-plasma/plasma-workspace/Manifest index 71fc132e9e16..764bc8aa0d6b 100644 --- a/kde-plasma/plasma-workspace/Manifest +++ b/kde-plasma/plasma-workspace/Manifest @@ -1,2 +1 @@ -DIST plasma-workspace-5.18.5.tar.xz 5696256 BLAKE2B 7aaf19ff75eb796bbd687e6c63b9703431ecc567bc52c2c173718d45b3946b22572b3a097f7fb7e9726cedcb98cfbb2f20c580efefa4d9cb9d4f2473abeac636 SHA512 870cf89649d9498831f4ef9b21d3c07504b7fc7b09b95dd7e0a1d356b41fbfceed1c4f27aa258bcf1e23cfe915d31701c155325fcd4944f9cc957a287ebc1ee2 DIST plasma-workspace-5.19.5.tar.xz 5682264 BLAKE2B 435ea4c73fe50fb78911efb607f1a22ce6fe4a8f089b90b44374e7932d4f0111069dbce0168eedb61de09affdae3549563365bf85b4bbafb33fc69fad6b343e8 SHA512 4cab64c1f817f391a61ae15e37bf1fc936ddd3fb3b234e281a3e5750b67dab05c1c156789446096cbde719bf972e876757c1c5ae78adde4e85f3591fa8df5df9 diff --git a/kde-plasma/plasma-workspace/files/plasma-workspace-5.18.5-sddm-theme-prevent-logo-leaking.patch b/kde-plasma/plasma-workspace/files/plasma-workspace-5.18.5-sddm-theme-prevent-logo-leaking.patch deleted file mode 100644 index 7cbe139a1669..000000000000 --- a/kde-plasma/plasma-workspace/files/plasma-workspace-5.18.5-sddm-theme-prevent-logo-leaking.patch +++ /dev/null @@ -1,94 +0,0 @@ -From 68601675d13bdf44248991a56e888093e58c56c3 Mon Sep 17 00:00:00 2001 -From: Filip Fila <filipfila.kde@gmail.com> -Date: Wed, 13 May 2020 18:08:27 +0200 -Subject: [sddm-theme] Prevent the logo from leaking in after a fadeout - -Summary: -Even when the vendor logo is turned off it can be briefly seen when the login screen changes from the fadeout state back into normal. - -Comments in other code say that "OpacityAnimator when starting from 0 is buggy (it shows one frame with opacity 1)" so this patch replaces it with NumberAnimation. - -There's also a minor fix included - placing the drop shadow sooner in the hierarchy because it should be drawn underneath an object, not in front of it. - -Test Plan: -Reduce the fadeout time to something small and then: - -`sddm-greeter --test-mode --theme /usr/share/sddm/themes/breeze` - -Reviewers: ngraham, cblack, #plasma, mart - -Reviewed By: ngraham, #plasma, mart - -Subscribers: mart, plasma-devel - -Tags: #plasma - -Differential Revision: https://phabricator.kde.org/D29351 ---- - sddm-theme/Main.qml | 44 +++++++++++++++++++++++--------------------- - 1 file changed, 23 insertions(+), 21 deletions(-) - -diff --git a/sddm-theme/Main.qml b/sddm-theme/Main.qml -index 6746238..9910e7f 100644 ---- a/sddm-theme/Main.qml -+++ b/sddm-theme/Main.qml -@@ -411,26 +411,6 @@ PlasmaCore.ColorScope { - } - } - -- Image { -- id: logo -- visible: config.showlogo == "shown" -- source: config.logo -- anchors.horizontalCenter: parent.horizontalCenter -- anchors.bottom: footer.top -- anchors.bottomMargin: units.largeSpacing -- asynchronous: true -- sourceSize.height: height -- opacity: loginScreenRoot.uiVisible ? 0 : 1 -- fillMode: Image.PreserveAspectFit -- height: Math.round(units.gridUnit * 3.5) -- Behavior on opacity { -- OpacityAnimator { -- duration: units.longDuration -- easing.type: Easing.InOutQuad -- } -- } -- } -- - DropShadow { - id: logoShadow - anchors.fill: logo -@@ -444,7 +424,29 @@ PlasmaCore.ColorScope { - color: "black" // matches Breeze window decoration and desktopcontainment - opacity: loginScreenRoot.uiVisible ? 0 : 1 - Behavior on opacity { -- OpacityAnimator { -+ //OpacityAnimator when starting from 0 is buggy (it shows one frame with opacity 1)" -+ NumberAnimation { -+ duration: units.longDuration -+ easing.type: Easing.InOutQuad -+ } -+ } -+ } -+ -+ Image { -+ id: logo -+ visible: config.showlogo == "shown" -+ source: config.logo -+ anchors.horizontalCenter: parent.horizontalCenter -+ anchors.bottom: footer.top -+ anchors.bottomMargin: units.largeSpacing -+ asynchronous: true -+ sourceSize.height: height -+ opacity: loginScreenRoot.uiVisible ? 0 : 1 -+ fillMode: Image.PreserveAspectFit -+ height: Math.round(units.gridUnit * 3.5) -+ Behavior on opacity { -+ // OpacityAnimator when starting from 0 is buggy (it shows one frame with opacity 1)" -+ NumberAnimation { - duration: units.longDuration - easing.type: Easing.InOutQuad - } --- -cgit v1.1 diff --git a/kde-plasma/plasma-workspace/files/plasma-workspace-5.18.5-stop-multiplying-duration-values.patch b/kde-plasma/plasma-workspace/files/plasma-workspace-5.18.5-stop-multiplying-duration-values.patch deleted file mode 100644 index 83539c14c043..000000000000 --- a/kde-plasma/plasma-workspace/files/plasma-workspace-5.18.5-stop-multiplying-duration-values.patch +++ /dev/null @@ -1,93 +0,0 @@ -From 2958702524348e9e4fcbdf490be731e92b353dad Mon Sep 17 00:00:00 2001 -From: Nate Graham <nate@kde.org> -Date: Tue, 24 Mar 2020 08:10:54 -0600 -Subject: Stop multiplying duration values - -Summary: -After D28144, some animations are now too long because they were inappropriately -multiplying a duration value. That's no longer necessary, so let's remove the -multiplication. - -Depends on D28144 - -Test Plan: Various things that were a bit too slow before feel just right now - -Reviewers: #vdg, #plasma, cblack - -Reviewed By: #vdg, #plasma, cblack - -Subscribers: cblack, plasma-devel - -Tags: #plasma - -Differential Revision: https://phabricator.kde.org/D28238 ---- - applets/devicenotifier/package/contents/ui/FullRepresentation.qml | 2 +- - applets/systemtray/package/contents/ui/ExpanderArrow.qml | 2 +- - lookandfeel/contents/components/ActionButton.qml | 4 ++-- - lookandfeel/contents/components/UserDelegate.qml | 2 +- - 4 files changed, 5 insertions(+), 5 deletions(-) - -diff --git a/applets/devicenotifier/package/contents/ui/FullRepresentation.qml b/applets/devicenotifier/package/contents/ui/FullRepresentation.qml -index d15e47c..80b9c73 100644 ---- a/applets/devicenotifier/package/contents/ui/FullRepresentation.qml -+++ b/applets/devicenotifier/package/contents/ui/FullRepresentation.qml -@@ -225,7 +225,7 @@ MouseArea { - popupIconTimer.restart() - } - } -- Behavior on height { NumberAnimation { duration: units.shortDuration * 3 } } -+ Behavior on height { NumberAnimation { duration: units.shortDuration } } - } - } - } -diff --git a/applets/systemtray/package/contents/ui/ExpanderArrow.qml b/applets/systemtray/package/contents/ui/ExpanderArrow.qml -index 9baf654..729f56b 100644 ---- a/applets/systemtray/package/contents/ui/ExpanderArrow.qml -+++ b/applets/systemtray/package/contents/ui/ExpanderArrow.qml -@@ -37,7 +37,7 @@ PlasmaCore.ToolTipArea { - anchors.fill: parent - onClicked: root.expanded = !root.expanded - -- readonly property int arrowAnimationDuration: units.shortDuration * 3 -+ readonly property int arrowAnimationDuration: units.shortDuration - - PlasmaCore.Svg { - id: arrowSvg -diff --git a/lookandfeel/contents/components/ActionButton.qml b/lookandfeel/contents/components/ActionButton.qml -index 9fbd2a8..7a66c56 100644 ---- a/lookandfeel/contents/components/ActionButton.qml -+++ b/lookandfeel/contents/components/ActionButton.qml -@@ -44,7 +44,7 @@ Item { - opacity: activeFocus || containsMouse ? 1 : 0.85 - Behavior on opacity { - PropertyAnimation { // OpacityAnimator makes it turn black at random intervals -- duration: units.longDuration * 2 -+ duration: units.longDuration - easing.type: Easing.InOutQuad - } - } -@@ -59,7 +59,7 @@ Item { - opacity: activeFocus || containsMouse ? (softwareRendering ? 0.8 : 0.15) : (softwareRendering ? 0.6 : 0) - Behavior on opacity { - PropertyAnimation { // OpacityAnimator makes it turn black at random intervals -- duration: units.longDuration * 3 -+ duration: units.longDuration - easing.type: Easing.InOutQuad - } - } -diff --git a/lookandfeel/contents/components/UserDelegate.qml b/lookandfeel/contents/components/UserDelegate.qml -index 8882e39..cdb55f1 100644 ---- a/lookandfeel/contents/components/UserDelegate.qml -+++ b/lookandfeel/contents/components/UserDelegate.qml -@@ -72,7 +72,7 @@ Item { - Behavior on width { - PropertyAnimation { - from: faceSize -- duration: units.longDuration * 2; -+ duration: units.longDuration; - } - } - width: isCurrent ? faceSize : faceSize - units.largeSpacing --- -cgit v1.1 diff --git a/kde-plasma/plasma-workspace/plasma-workspace-5.18.5-r1.ebuild b/kde-plasma/plasma-workspace/plasma-workspace-5.18.5-r1.ebuild deleted file mode 100644 index a47bf9b9589e..000000000000 --- a/kde-plasma/plasma-workspace/plasma-workspace-5.18.5-r1.ebuild +++ /dev/null @@ -1,227 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -ECM_HANDBOOK="forceoptional" -ECM_TEST="forceoptional" -KFMIN=5.66.0 -PVCUT=$(ver_cut 1-3) -QTMIN=5.12.3 -VIRTUALX_REQUIRED="test" -inherit ecm kde.org - -DESCRIPTION="KDE Plasma workspace" - -LICENSE="GPL-2" # TODO: CHECK -SLOT="5" -KEYWORDS="amd64 ~arm arm64 ~ppc64 x86" -IUSE="appstream +calendar geolocation gps qalculate qrcode +semantic-desktop systemd telemetry" - -REQUIRED_USE="gps? ( geolocation )" - -# drop qtgui subslot operator when QT_MINIMAL >= 5.14.0 -COMMON_DEPEND=" - >=dev-qt/qtdbus-${QTMIN}:5 - >=dev-qt/qtdeclarative-${QTMIN}:5[widgets] - >=dev-qt/qtgui-${QTMIN}:5=[jpeg] - >=dev-qt/qtnetwork-${QTMIN}:5 - >=dev-qt/qtsql-${QTMIN}:5 - >=dev-qt/qtwidgets-${QTMIN}:5 - >=dev-qt/qtx11extras-${QTMIN}:5 - >=dev-qt/qtxml-${QTMIN}:5 - >=kde-frameworks/kactivities-${KFMIN}:5 - >=kde-frameworks/kactivities-stats-${KFMIN}:5 - >=kde-frameworks/kauth-${KFMIN}:5 - >=kde-frameworks/kbookmarks-${KFMIN}:5 - >=kde-frameworks/kcompletion-${KFMIN}:5 - >=kde-frameworks/kconfig-${KFMIN}:5 - >=kde-frameworks/kconfigwidgets-${KFMIN}:5 - >=kde-frameworks/kcoreaddons-${KFMIN}:5 - >=kde-frameworks/kcrash-${KFMIN}:5 - >=kde-frameworks/kdbusaddons-${KFMIN}:5 - >=kde-frameworks/kdeclarative-${KFMIN}:5 - >=kde-frameworks/kded-${KFMIN}:5 - >=kde-frameworks/kdelibs4support-${KFMIN}:5 - >=kde-frameworks/kglobalaccel-${KFMIN}:5 - >=kde-frameworks/kguiaddons-${KFMIN}:5 - >=kde-frameworks/ki18n-${KFMIN}:5 - >=kde-frameworks/kiconthemes-${KFMIN}:5 - >=kde-frameworks/kidletime-${KFMIN}:5 - >=kde-frameworks/kio-${KFMIN}:5 - >=kde-frameworks/kitemmodels-${KFMIN}:5 - >=kde-frameworks/kitemviews-${KFMIN}:5 - >=kde-frameworks/kjobwidgets-${KFMIN}:5 - >=kde-frameworks/knewstuff-${KFMIN}:5 - >=kde-frameworks/knotifications-${KFMIN}:5 - >=kde-frameworks/knotifyconfig-${KFMIN}:5 - >=kde-frameworks/kpackage-${KFMIN}:5 - >=kde-frameworks/kpeople-${KFMIN}:5 - >=kde-frameworks/krunner-${KFMIN}:5 - >=kde-frameworks/kservice-${KFMIN}:5 - >=kde-frameworks/ktexteditor-${KFMIN}:5 - >=kde-frameworks/ktextwidgets-${KFMIN}:5 - >=kde-frameworks/kwallet-${KFMIN}:5 - >=kde-frameworks/kwayland-${KFMIN}:5 - >=kde-frameworks/kwidgetsaddons-${KFMIN}:5 - >=kde-frameworks/kwindowsystem-${KFMIN}:5 - >=kde-frameworks/kxmlgui-${KFMIN}:5 - >=kde-frameworks/plasma-${KFMIN}:5 - >=kde-frameworks/solid-${KFMIN}:5 - >=kde-plasma/kscreenlocker-${PVCUT}:5 - >=kde-plasma/kwin-${PVCUT}:5 - >=kde-plasma/libkscreen-${PVCUT}:5 - >=kde-plasma/libksysguard-${PVCUT}:5 - >=kde-plasma/libkworkspace-${PVCUT}:5 - media-libs/phonon[qt5(+)] - sys-libs/zlib - x11-libs/libICE - x11-libs/libSM - x11-libs/libX11 - x11-libs/libXau - x11-libs/libxcb - x11-libs/libXfixes - x11-libs/libXrender - x11-libs/libXtst - x11-libs/xcb-util - x11-libs/xcb-util-image - appstream? ( dev-libs/appstream[qt5] ) - calendar? ( >=kde-frameworks/kholidays-${KFMIN}:5 ) - geolocation? ( >=kde-frameworks/networkmanager-qt-${KFMIN}:5 ) - gps? ( sci-geosciences/gpsd ) - qalculate? ( sci-libs/libqalculate:= ) - qrcode? ( >=kde-frameworks/prison-${KFMIN}:5 ) - semantic-desktop? ( >=kde-frameworks/baloo-${KFMIN}:5 ) - telemetry? ( dev-libs/kuserfeedback:5 ) -" -DEPEND="${COMMON_DEPEND} - >=dev-qt/qtconcurrent-${QTMIN}:5 - x11-base/xorg-proto -" -RDEPEND="${COMMON_DEPEND} - app-text/iso-codes - >=dev-qt/qdbus-${QTMIN}:5 - >=dev-qt/qtgraphicaleffects-${QTMIN}:5 - >=dev-qt/qtpaths-${QTMIN}:5 - >=dev-qt/qtquickcontrols-${QTMIN}:5[widgets] - >=dev-qt/qtquickcontrols2-${QTMIN}:5 - >=kde-apps/kio-extras-19.04.3:5 - >=kde-frameworks/kquickcharts-${KFMIN}:5 - >=kde-frameworks/kdesu-${KFMIN}:5 - >=kde-frameworks/kirigami-${KFMIN}:5 - >=kde-plasma/ksysguard-${PVCUT}:5 - >=kde-plasma/milou-${PVCUT}:5 - >=kde-plasma/plasma-integration-${PVCUT}:5 - x11-apps/xmessage - x11-apps/xprop - x11-apps/xrdb - x11-apps/xsetroot - systemd? ( sys-apps/dbus[user-session] ) - !systemd? ( sys-apps/dbus ) - !<kde-plasma/plasma-desktop-5.16.80:5 -" -PDEPEND=" - >=kde-plasma/kde-cli-tools-${PVCUT}:5 -" - -PATCHES=( - "${FILESDIR}/${PN}-5.14.2-split-libkworkspace.patch" # downstream patch - - "${FILESDIR}/${P}-sddm-theme-prevent-logo-leaking.patch" # in Plasma/5.18 - - # Fix animation duration w/ KDE Frameworks 5.70 (Plasma/5.19 backport): - # https://pointieststick.com/2020/05/10/why-the-animations-in-your-plasma-5-18-feel-slow-now-and-when-it-will-be-fixed/ - "${FILESDIR}/${P}-stop-multiplying-duration-values.patch" -) - -RESTRICT+=" test" - -pkg_setup() { - ecm_pkg_setup - - local md5 - local srcfile=/etc/plasma/XX/10-agent-XX.sh - local newdir="${EPREFIX}"/etc/xdg/plasma-workspace - - if [[ -f "${EROOT}"${srcfile//XX/startup} ]]; then - md5=$(md5sum "${EROOT}"${srcfile//XX/startup}) - if [[ ${md5%% *} != 90caaabb40b56bfbe65388841a6dd6ca ]]; then - elog "Existing modified ${EPREFIX}${srcfile//XX/startup} detected." - elog "Copying to ${newdir}/env/10-agent-startup.sh..." - cp -v "${EROOT}"${srcfile//XX/startup} "${T}"/ || die - fi - fi - - if [[ -f "${EROOT}"${srcfile//XX/shutdown} ]]; then - md5=$(md5sum "${EROOT}"${srcfile//XX/shutdown}) - if [[ ${md5%% *} != d7bffa0273f92abd999c7c3c43dbc23d ]]; then - elog "Existing modified ${EPREFIX}${srcfile//XX/shutdown} detected." - elog "Copying to ${newdir}/shutdown/10-agent-shutdown.sh..." - cp -v "${EROOT}"${srcfile//XX/shutdown} "${T}"/ || die - fi - fi -} - -src_prepare() { - ecm_src_prepare - - if [[ ! -f "${T}"/10-agent-startup.sh ]]; then - cp "${FILESDIR}"/10-agent-startup.sh "${T}"/ || die - fi - if [[ ! -f "${T}"/10-agent-shutdown.sh ]]; then - cp "${FILESDIR}"/10-agent-shutdown.sh "${T}"/ || die - fi - - cmake_comment_add_subdirectory libkworkspace - # delete colliding libkworkspace translations - if [[ ${KDE_BUILD_TYPE} = release ]]; then - find po -type f -name "*po" -and -name "libkworkspace*" -delete || die - fi -} - -src_configure() { - local mycmakeargs=( - -DBUILD_xembed-sni-proxy=OFF - $(cmake_use_find_package appstream AppStreamQt) - $(cmake_use_find_package calendar KF5Holidays) - $(cmake_use_find_package geolocation KF5NetworkManagerQt) - $(cmake_use_find_package qalculate Qalculate) - $(cmake_use_find_package qrcode KF5Prison) - $(cmake_use_find_package semantic-desktop KF5Baloo) - $(cmake_use_find_package telemetry KUserFeedback) - ) - - use geolocation && mycmakeargs+=( $(cmake_use_find_package gps libgps) ) - - ecm_src_configure -} - -src_install() { - ecm_src_install - - # default startup and shutdown scripts - insinto /etc/xdg/plasma-workspace/env - doins "${T}"/10-agent-startup.sh - - insinto /etc/xdg/plasma-workspace/shutdown - doins "${T}"/10-agent-shutdown.sh - fperms +x /etc/xdg/plasma-workspace/shutdown/10-agent-shutdown.sh -} - -pkg_postinst () { - ecm_pkg_postinst - - # Clean up pre-5.17.4 scripts - if [[ -e "${EROOT}"/etc/plasma/startup/10-agent-startup.sh ]]; then - rm "${EROOT}"/etc/plasma/startup/10-agent-startup.sh || die - elog "Removed obsolete ${EPREFIX}/etc/plasma/startup/10-agent-startup.sh" - fi - if [[ -e "${EROOT}"/etc/plasma/shutdown/10-agent-shutdown.sh ]]; then - rm "${EROOT}"/etc/plasma/shutdown/10-agent-shutdown.sh || die - elog "Removed obsolete ${EPREFIX}/etc/plasma/shutdown/10-agent-shutdown.sh" - fi - - elog "To enable gpg-agent and/or ssh-agent in Plasma sessions," - elog "edit ${EPREFIX}/etc/xdg/plasma-workspace/env/10-agent-startup.sh" - elog "and ${EPREFIX}/etc/xdg/plasma-workspace/shutdown/10-agent-shutdown.sh" -} |