diff --git a/classes/kde-plasma.bbclass b/classes/kde-plasma.bbclass index b29a395f..ccbfeb04 100644 --- a/classes/kde-plasma.bbclass +++ b/classes/kde-plasma.bbclass @@ -1,6 +1,6 @@ inherit kde-base -PLASMA_VERSION = "5.17.0" +PLASMA_VERSION = "5.17.1" SRC_URI = "${KDE_MIRROR}/stable/plasma/${PLASMA_VERSION}/${BPN}-${PV}.tar.xz" diff --git a/recipes-kde/plasma/tier1/kdecoration/kdecoration.bb b/recipes-kde/plasma/tier1/kdecoration/kdecoration.bb index 9f299625..a360be26 100644 --- a/recipes-kde/plasma/tier1/kdecoration/kdecoration.bb +++ b/recipes-kde/plasma/tier1/kdecoration/kdecoration.bb @@ -9,5 +9,5 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "7a6be92e4efd687996ce8d4e7068842a" -SRC_URI[sha256sum] = "d6d25e6894d941001af035497388aa998599d89df0ca2847c8aa6275b9bf9266" +SRC_URI[md5sum] = "c0d35ee2afaa24bf167f5ab0081d6485" +SRC_URI[sha256sum] = "4f8f7d851b19e141e91eadb4ddbf2fef2d6496839a929349a1568d618bb0be39" diff --git a/recipes-kde/plasma/tier3/kactivitymanagerd/kactivitymanagerd.bb b/recipes-kde/plasma/tier3/kactivitymanagerd/kactivitymanagerd.bb index 99d6ed3d..71e8add9 100644 --- a/recipes-kde/plasma/tier3/kactivitymanagerd/kactivitymanagerd.bb +++ b/recipes-kde/plasma/tier3/kactivitymanagerd/kactivitymanagerd.bb @@ -24,8 +24,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "8e5518bfe06fc61955598c6a0b86e4a3" -SRC_URI[sha256sum] = "23ef9043a968d0f6920b1ca677673c09282c94482be1bfdf5fb38e7b2d09fe3f" +SRC_URI[md5sum] = "6d9cb874b3e7c802486f0e641c6f020e" +SRC_URI[sha256sum] = "2eac1a41622e6632c3a569f1b8d5043f6414611c4dbeba2521eabebebd8e50b3" SRC_URI += "file://0001-replace-try_run-by-try_compile-in-compiler-feature-c.patch" # Workaround diff --git a/recipes-kde/plasma/tier3/plasma-workspace/files/0002-align-phonon-path.patch b/recipes-kde/plasma/tier3/plasma-workspace/files/0001-align-phonon-path.patch similarity index 100% rename from recipes-kde/plasma/tier3/plasma-workspace/files/0002-align-phonon-path.patch rename to recipes-kde/plasma/tier3/plasma-workspace/files/0001-align-phonon-path.patch diff --git a/recipes-kde/plasma/tier3/plasma-workspace/files/0001-fix-build-for-QT_NO_SESSIONMANAGER.patch b/recipes-kde/plasma/tier3/plasma-workspace/files/0001-fix-build-for-QT_NO_SESSIONMANAGER.patch deleted file mode 100644 index 264e0f53..00000000 --- a/recipes-kde/plasma/tier3/plasma-workspace/files/0001-fix-build-for-QT_NO_SESSIONMANAGER.patch +++ /dev/null @@ -1,139 +0,0 @@ -From 5b89ba2442a8829a8a5f5af5247d838d1a2750e8 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Andreas=20M=C3=BCller?= -Date: Wed, 4 Jul 2018 23:32:58 +0200 -Subject: [PATCH] fix build for QT_NO_SESSIONMANAGER -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Upstream-Status: Pending - -Signed-off-by: Andreas Müller ---- - klipper/main.cpp | 4 ++++ - krunner/main.cpp | 4 ++++ - shell/main.cpp | 4 ++++ - xembed-sni-proxy/main.cpp | 4 ++++ - 4 files changed, 16 insertions(+) - -diff --git a/klipper/main.cpp b/klipper/main.cpp -index 36539b63..522608a4 100644 ---- a/klipper/main.cpp -+++ b/klipper/main.cpp -@@ -27,7 +27,9 @@ - - #include - #include -+#ifndef QT_NO_SESSIONMANAGER - #include -+#endif - - #include "tray.h" - #include "klipper.h" -@@ -73,6 +75,7 @@ extern "C" int Q_DECL_EXPORT kdemain(int argc, char *argv[]) - - KAboutData::setApplicationData(aboutData); - -+#ifndef QT_NO_SESSIONMANAGER - QGuiApplication::setFallbackSessionManagementEnabled(false); - - auto disableSessionManagement = [](QSessionManager &sm) { -@@ -81,6 +84,7 @@ extern "C" int Q_DECL_EXPORT kdemain(int argc, char *argv[]) - QObject::connect(&app, &QGuiApplication::commitDataRequest, disableSessionManagement); - QObject::connect(&app, &QGuiApplication::saveStateRequest, disableSessionManagement); - app.setQuitOnLastWindowClosed( false ); -+#endif - - QCommandLineParser parser; - aboutData.setupCommandLine(&parser); -diff --git a/krunner/main.cpp b/krunner/main.cpp -index e0395cf..9dce8c5 100644 ---- a/krunner/main.cpp -+++ b/krunner/main.cpp -@@ -24,7 +24,9 @@ - #include - #include - #include -+#ifndef QT_NO_SESSIONMANAGER - #include -+#endif - #include - #include - -@@ -91,6 +93,7 @@ int main(int argc, char **argv) - - KDBusService service(KDBusService::Unique); - -+#ifndef QT_NO_SESSIONMANAGER - QGuiApplication::setFallbackSessionManagementEnabled(false); - - auto disableSessionManagement = [](QSessionManager &sm) { -@@ -98,6 +101,7 @@ int main(int argc, char **argv) - }; - QObject::connect(&app, &QGuiApplication::commitDataRequest, disableSessionManagement); - QObject::connect(&app, &QGuiApplication::saveStateRequest, disableSessionManagement); -+#endif - - View view; - view.setVisible(false); -diff --git a/shell/main.cpp b/shell/main.cpp -index 6e241360..97908501 100644 ---- a/shell/main.cpp -+++ b/shell/main.cpp -@@ -21,7 +21,9 @@ - #include - #include - #include -+#ifndef QT_NO_SESSIONMANAGER - #include -+#endif - #include - #include - #include -@@ -123,6 +125,7 @@ int main(int argc, char *argv[]) - cliOptions.process(app); - aboutData.processCommandLine(&cliOptions); - -+#ifndef QT_NO_SESSIONMANAGER - QGuiApplication::setFallbackSessionManagementEnabled(false); - - auto disableSessionManagement = [](QSessionManager &sm) { -@@ -130,6 +133,7 @@ int main(int argc, char *argv[]) - }; - QObject::connect(&app, &QGuiApplication::commitDataRequest, disableSessionManagement); - QObject::connect(&app, &QGuiApplication::saveStateRequest, disableSessionManagement); -+#endif - - ShellManager::s_fixedShell = cliOptions.value(shellPluginOption); - -diff --git a/xembed-sni-proxy/main.cpp b/xembed-sni-proxy/main.cpp -index 8b007823..a41b795e 100644 ---- a/xembed-sni-proxy/main.cpp -+++ b/xembed-sni-proxy/main.cpp -@@ -19,7 +19,9 @@ - */ - - #include -+#ifndef QT_NO_SESSIONMANAGER - #include -+#endif - - #include "fdoselectionmanager.h" - -@@ -49,11 +51,13 @@ int main(int argc, char ** argv) - qFatal("xembed-sni-proxy is only useful XCB. Aborting"); - } - -+#ifndef QT_NO_SESSIONMANAGER - auto disableSessionManagement = [](QSessionManager &sm) { - sm.setRestartHint(QSessionManager::RestartNever); - }; - QObject::connect(&app, &QGuiApplication::commitDataRequest, disableSessionManagement); - QObject::connect(&app, &QGuiApplication::saveStateRequest, disableSessionManagement); -+#endif - - app.setQuitOnLastWindowClosed(false); - --- -2.14.3 - diff --git a/recipes-kde/plasma/tier3/plasma-workspace/plasma-workspace.bb b/recipes-kde/plasma/tier3/plasma-workspace/plasma-workspace.bb index 21087b44..53896aae 100644 --- a/recipes-kde/plasma/tier3/plasma-workspace/plasma-workspace.bb +++ b/recipes-kde/plasma/tier3/plasma-workspace/plasma-workspace.bb @@ -49,13 +49,9 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "c378aebe24ed165e8e971eb47db632b0" -SRC_URI[sha256sum] = "4480ccf0b9168bdd10d4a5fa3ee40e5e77f10c12713f9de55c5d19e23fe993f0" - -SRC_URI += " \ - file://0001-fix-build-for-QT_NO_SESSIONMANAGER.patch \ - file://0002-align-phonon-path.patch \ -" +SRC_URI[md5sum] = "ea4064d3b5efffac6101862b4032690b" +SRC_URI[sha256sum] = "21c69bca0b358073fb0b945e79727d65f104dda54c6cfd643719fdd603831616" +SRC_URI += "file://0001-align-phonon-path.patch" # REVISIT FILES_${PN} += " \ diff --git a/recipes-kde/plasma/untier/bluedevil/bluedevil.bb b/recipes-kde/plasma/untier/bluedevil/bluedevil.bb index a976acb2..efc35d46 100644 --- a/recipes-kde/plasma/untier/bluedevil/bluedevil.bb +++ b/recipes-kde/plasma/untier/bluedevil/bluedevil.bb @@ -25,8 +25,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "04e7356e93bf552829794bc7aadbc74d" -SRC_URI[sha256sum] = "c4576b72dead133483e8faab787ea5daf96217216b324df529ca5381a5aac929" +SRC_URI[md5sum] = "c21e61271877dfc8ebe7f3de98a0afc1" +SRC_URI[sha256sum] = "3baebc20877469f1205bb3c6368740acd0f76e70e45879a8c3764b7bd0f1259e" FILES_${PN} += " \ ${datadir}/bluedevilwizard \ diff --git a/recipes-kde/plasma/untier/breeze-gtk/breeze-gtk.bb b/recipes-kde/plasma/untier/breeze-gtk/breeze-gtk.bb index 5653f02d..47cad40d 100644 --- a/recipes-kde/plasma/untier/breeze-gtk/breeze-gtk.bb +++ b/recipes-kde/plasma/untier/breeze-gtk/breeze-gtk.bb @@ -9,8 +9,8 @@ inherit kde-plasma python3native DEPENDS += "sassc-native cairo breeze python3-pycairo-native" PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "c947d414522db82e726ce77ba3122163" -SRC_URI[sha256sum] = "bba00e94bad2b6f9baae19b1edba076785f45a94b591dd4b34f7b9104348cc3a" +SRC_URI[md5sum] = "73f7d4ad4a050aee9ef983b6e52be109" +SRC_URI[sha256sum] = "95f2173920bf7d36b408912c624d2a1ef64b7a10798cf3a4fdc2bd8f1e5def4d" FILES_${PN} += " \ ${datadir}/kconf_update \ diff --git a/recipes-kde/plasma/untier/breeze/breeze.bb b/recipes-kde/plasma/untier/breeze/breeze.bb index 35c23f44..60baa146 100644 --- a/recipes-kde/plasma/untier/breeze/breeze.bb +++ b/recipes-kde/plasma/untier/breeze/breeze.bb @@ -27,8 +27,8 @@ DEPENDS += "\ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "26ac83ff47abf9bb4789b64dd4544073" -SRC_URI[sha256sum] = "9d32ceffe33b776fcb7ec92d99088503a97c49e4b6216153438d5f7b93af8345" +SRC_URI[md5sum] = "f5e63e724631ef8f7eda89549446d6b4" +SRC_URI[sha256sum] = "79c717f34ccaad10e68c5de8b5363f0bee73986de3e06a4cd8b7902159761ce6" FILES_${PN} += " \ ${datadir}/color-schemes \ diff --git a/recipes-kde/plasma/untier/discover/discover.bb b/recipes-kde/plasma/untier/discover/discover.bb index 8a0a617a..8b09bb6c 100644 --- a/recipes-kde/plasma/untier/discover/discover.bb +++ b/recipes-kde/plasma/untier/discover/discover.bb @@ -8,8 +8,8 @@ LIC_FILES_CHKSUM = " \ inherit kde-plasma gtk-icon-cache PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "a597dc9f164661b6c4f057bcc96457b9" -SRC_URI[sha256sum] = "1d33f40cb259552d7083aaf7cbbb18da3f8ecd321e74ca4b7fe206352dca5daf" +SRC_URI[md5sum] = "b51363005a093de8178a2da0032983ce" +SRC_URI[sha256sum] = "44459f1c658d8db7f416ca4eb3b2bc1853e40196756a4c59b763bc120b82c4f5" DEPENDS += " \ qtdeclarative \ diff --git a/recipes-kde/plasma/untier/kde-cli-tools/kde-cli-tools.bb b/recipes-kde/plasma/untier/kde-cli-tools/kde-cli-tools.bb index 08021008..d3e3e7ea 100644 --- a/recipes-kde/plasma/untier/kde-cli-tools/kde-cli-tools.bb +++ b/recipes-kde/plasma/untier/kde-cli-tools/kde-cli-tools.bb @@ -27,8 +27,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "cbb4668046ee001dc6c01075c7120103" -SRC_URI[sha256sum] = "1d554bc8c68b9a7ec7e467bcd38b64ed706c5c6a6de566c4b205b536f5490744" +SRC_URI[md5sum] = "14cd95900fa2392247eb5dd58cc58ab0" +SRC_URI[sha256sum] = "e24c91347b57f97b489cf444d79b3bb8703a9879c05f656b312f83b1291f67ae" # do not move so-libs to -dev package FILES_SOLIBSDEV = "" diff --git a/recipes-kde/plasma/untier/kde-gtk-config/kde-gtk-config.bb b/recipes-kde/plasma/untier/kde-gtk-config/kde-gtk-config.bb index 86c9b508..fb014fe8 100644 --- a/recipes-kde/plasma/untier/kde-gtk-config/kde-gtk-config.bb +++ b/recipes-kde/plasma/untier/kde-gtk-config/kde-gtk-config.bb @@ -24,8 +24,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "6eb2196231d954989820508d32ba1e75" -SRC_URI[sha256sum] = "a6eb212078877ef37cd103d92d2d342d6306c5c1f16778586dd271ecb75a3bd6" +SRC_URI[md5sum] = "0ddb77c12142939c8bd98548a95c5fac" +SRC_URI[sha256sum] = "1502cbd17d9bda1b956f6ce930cb6a5c3ae98c4f84e833f8f48db4155f83c8b0" CFLAGS += "-isystem ${STAGING_INCDIR}/harfbuzz" CXXFLAGS += "-isystem ${STAGING_INCDIR}/harfbuzz" diff --git a/recipes-kde/plasma/untier/kdeplasma-addons/kdeplasma-addons.bb b/recipes-kde/plasma/untier/kdeplasma-addons/kdeplasma-addons.bb index 1fecec00..1fc08538 100644 --- a/recipes-kde/plasma/untier/kdeplasma-addons/kdeplasma-addons.bb +++ b/recipes-kde/plasma/untier/kdeplasma-addons/kdeplasma-addons.bb @@ -34,8 +34,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "be9bb150c31b1d04315c6ae476bf2916" -SRC_URI[sha256sum] = "d4c6ab840f61dcdc52b925045614f9de4089dc2fdf89726fd7c8638c521eb42e" +SRC_URI[md5sum] = "d4ac3780715a3ec22139150900433412" +SRC_URI[sha256sum] = "f1e7685c3efa5625d8f3e05477bb25f5c2c25fc1f045a4fbafcd04851e94b7f0" FILES_${PN} += " \ ${datadir}/icons \ diff --git a/recipes-kde/plasma/untier/kgamma5/kgamma5.bb b/recipes-kde/plasma/untier/kgamma5/kgamma5.bb index 9d9a17d6..eb734d01 100644 --- a/recipes-kde/plasma/untier/kgamma5/kgamma5.bb +++ b/recipes-kde/plasma/untier/kgamma5/kgamma5.bb @@ -19,8 +19,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "abe5f63bfaee5209a0771a1d1249ff3b" -SRC_URI[sha256sum] = "5d4c7cfc63896746a994128db03037bff666132e8e35378de60ac91a3959493d" +SRC_URI[md5sum] = "1751d6ecbcb369bfa29582f79d5e96e1" +SRC_URI[sha256sum] = "42c70927d3ff0d224a13ba6f1e4b7ae47b9863fa9372e18a02dd653868de3ba8" FILES_${PN} += " \ ${datadir}/kgamma \ diff --git a/recipes-kde/plasma/untier/khotkeys/khotkeys.bb b/recipes-kde/plasma/untier/khotkeys/khotkeys.bb index f044862b..a607ff7f 100644 --- a/recipes-kde/plasma/untier/khotkeys/khotkeys.bb +++ b/recipes-kde/plasma/untier/khotkeys/khotkeys.bb @@ -31,8 +31,8 @@ DEPENDS += "\ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "9ef75b5a7501514ce83bed9a6a785c7a" -SRC_URI[sha256sum] = "da7d2a1db9f49b34ea5b24ec9bd6450142cb4e708c9a8f478adc94eb7f190d69" +SRC_URI[md5sum] = "a0d6f900d33127395cb6776f6053393a" +SRC_URI[sha256sum] = "1d7bf7af83f9d33122de3fe33d831d0db5be30de2cab3a7ca3f8f086098b9f72" FILES_${PN} += " \ ${datadir}/kservices5 \ diff --git a/recipes-kde/plasma/untier/kinfocenter/kinfocenter.bb b/recipes-kde/plasma/untier/kinfocenter/kinfocenter.bb index efb967de..30a59ce3 100644 --- a/recipes-kde/plasma/untier/kinfocenter/kinfocenter.bb +++ b/recipes-kde/plasma/untier/kinfocenter/kinfocenter.bb @@ -38,8 +38,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "b093ef4c0d7d0eccf5d26f18f8c3edb3" -SRC_URI[sha256sum] = "f9866450a795b6c458011de457f27e51258803459d5d384b7366f13f9a1c8d7e" +SRC_URI[md5sum] = "fa06862ecdcd3712274e29785eb45403" +SRC_URI[sha256sum] = "2bab780dfc5ef242e2b5decd3a213294323db5830d7afad09a5db011ce470a8e" SRC_URI += "file://0001-fix-build-in-x11-less-environments.patch" FILES_${PN} += " \ diff --git a/recipes-kde/plasma/untier/kmenuedit/kmenuedit.bb b/recipes-kde/plasma/untier/kmenuedit/kmenuedit.bb index dee12bb9..9e71a588 100644 --- a/recipes-kde/plasma/untier/kmenuedit/kmenuedit.bb +++ b/recipes-kde/plasma/untier/kmenuedit/kmenuedit.bb @@ -30,8 +30,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "f93d66bb0e71bc70310bf64a5eaa4140" -SRC_URI[sha256sum] = "c8c433e8d4e3e13a5ace0ebc265756441aa01a07b1e68e45ce71387f128cc706" +SRC_URI[md5sum] = "f781f8d6697c0016471487fe489a71fd" +SRC_URI[sha256sum] = "90bd4c403ee3ce21616f5016401a1851d8e7375a1e9cd6b04f0213ccce15eb76" # do not move so-libs to -dev package FILES_SOLIBSDEV = "" diff --git a/recipes-kde/plasma/untier/kscreen/kscreen.bb b/recipes-kde/plasma/untier/kscreen/kscreen.bb index 7a9095ff..9d458709 100644 --- a/recipes-kde/plasma/untier/kscreen/kscreen.bb +++ b/recipes-kde/plasma/untier/kscreen/kscreen.bb @@ -28,8 +28,8 @@ DEPENDS += "\ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "244d653fd0e529e71f14b512aba2fd89" -SRC_URI[sha256sum] = "9a1e689f0b8ac69fd9c471a5f4f54a846c1ec8a1914ab9b71754a81cd4c5d6ee" +SRC_URI[md5sum] = "acd7f9263c43067ea3875c1d2a8db43a" +SRC_URI[sha256sum] = "859dbdd7e6ff8d1a68f2cc004ac2c9ac647cb0a2c71af8a56abeb260fb8a60ca" FILES_${PN} += " \ ${datadir}/k*_kscreen \ diff --git a/recipes-kde/plasma/untier/kscreenlocker/kscreenlocker.bb b/recipes-kde/plasma/untier/kscreenlocker/kscreenlocker.bb index 39e65a3d..4f11475b 100644 --- a/recipes-kde/plasma/untier/kscreenlocker/kscreenlocker.bb +++ b/recipes-kde/plasma/untier/kscreenlocker/kscreenlocker.bb @@ -29,8 +29,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "7c4bc920667746b600bc2238aa3f6fe6" -SRC_URI[sha256sum] = "2047e1dad90fd1c298ab23c7668fa60fd1189b1d232aca0ed5976d086ac1f3cb" +SRC_URI[md5sum] = "c801795dcdcd61f807c29aba48aac834" +SRC_URI[sha256sum] = "56a0ed3284c3ce087d3230789bac5b02505e7ed9795fa37ce9934bc5090673e4" SRC_URI += "file://kde.pam" diff --git a/recipes-kde/plasma/untier/ksshaskpass/ksshaskpass.bb b/recipes-kde/plasma/untier/ksshaskpass/ksshaskpass.bb index 65dff90b..98e4aa69 100644 --- a/recipes-kde/plasma/untier/ksshaskpass/ksshaskpass.bb +++ b/recipes-kde/plasma/untier/ksshaskpass/ksshaskpass.bb @@ -21,5 +21,5 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "434f0ba5e9a053f20a698048b1b8fa06" -SRC_URI[sha256sum] = "75ed318ebac038b6309b78f10dd1ef6e23935e93f7575372e2c2c4bbe607febb" +SRC_URI[md5sum] = "bce049da226d42f232c0825a398bf7f3" +SRC_URI[sha256sum] = "ce003264a9a756924bf6c360fd20bf0f5f212f5469fc5d291de2269d10764f24" diff --git a/recipes-kde/plasma/untier/ksysguard/ksysguard.bb b/recipes-kde/plasma/untier/ksysguard/ksysguard.bb index 143f5d98..a92c226c 100644 --- a/recipes-kde/plasma/untier/ksysguard/ksysguard.bb +++ b/recipes-kde/plasma/untier/ksysguard/ksysguard.bb @@ -28,8 +28,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "0578f80427baae5d068855fcb9621070" -SRC_URI[sha256sum] = "4181535cc74f73c0a75fcf7a377595bd0381125a6f5537b116327b94402013d5" +SRC_URI[md5sum] = "1be5d411611dd93a121fe5964864ef80" +SRC_URI[sha256sum] = "44bd28b6bdddd9208392334ed6bba4b17b42f70c65dfe7668aecab7c67111c9e" # do not move so-libs to -dev package FILES_SOLIBSDEV = "" diff --git a/recipes-kde/plasma/untier/kwallet-pam/kwallet-pam.bb b/recipes-kde/plasma/untier/kwallet-pam/kwallet-pam.bb index 2ad8c988..c10d3ee4 100644 --- a/recipes-kde/plasma/untier/kwallet-pam/kwallet-pam.bb +++ b/recipes-kde/plasma/untier/kwallet-pam/kwallet-pam.bb @@ -15,8 +15,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "718cb60927e63eaecdfb02824d8f9fd5" -SRC_URI[sha256sum] = "224af4870be35075f4aec8bf9984eff7ef65d1656a2c5ca2ba1fdb5efcc574bc" +SRC_URI[md5sum] = "749be40fe23b781dfcf845f2e37fa4aa" +SRC_URI[sha256sum] = "f4a713e5b03d979678904476b0c5759f7c30dc8bf1d883bd8044e2755985c49f" SRC_URI += " \ file://0001-use-pkgconfig-to-find-libgcrypt.patch \ " diff --git a/recipes-kde/plasma/untier/kwayland-integration/kwayland-integration.bb b/recipes-kde/plasma/untier/kwayland-integration/kwayland-integration.bb index 63068026..3d5b76da 100644 --- a/recipes-kde/plasma/untier/kwayland-integration/kwayland-integration.bb +++ b/recipes-kde/plasma/untier/kwayland-integration/kwayland-integration.bb @@ -14,8 +14,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "957501803ec62d7f09b0d728e2e5442f" -SRC_URI[sha256sum] = "6cf410dd8286e9d6b26e10d8ba297d36d13c93a329c463326b47f0bffeb3c4c2" +SRC_URI[md5sum] = "96a6ba2397121d32bdb465e3d0aa1d62" +SRC_URI[sha256sum] = "39aad4ef15bf960626a11be52b0056cbd945f53409275e668665ea6369f8ab90" FILES_${PN} += " \ ${OE_QMAKE_PATH_PLUGINS} \ diff --git a/recipes-kde/plasma/untier/kwin/kwin.bb b/recipes-kde/plasma/untier/kwin/kwin.bb index edfb309e..8d0a0a51 100644 --- a/recipes-kde/plasma/untier/kwin/kwin.bb +++ b/recipes-kde/plasma/untier/kwin/kwin.bb @@ -54,8 +54,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "60bcf3538e6f2a086665d664647ec9b5" -SRC_URI[sha256sum] = "d99443978a0f5f12d93d1d877312144d9387762933e12ac614992ae6e92daed7" +SRC_URI[md5sum] = "08175e02d964293232f41aed47a48f8f" +SRC_URI[sha256sum] = "9be622116d4a39b699f43e147a31872d1d8a80eda5b5426d7e4272d8cfacdcd5" SRC_URI += " \ file://0001-Make-building-of-QPA-wayland-plugin-an-option.patch \ diff --git a/recipes-kde/plasma/untier/kwrited/kwrited.bb b/recipes-kde/plasma/untier/kwrited/kwrited.bb index df9fa37f..5c4d3fc9 100644 --- a/recipes-kde/plasma/untier/kwrited/kwrited.bb +++ b/recipes-kde/plasma/untier/kwrited/kwrited.bb @@ -16,8 +16,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "4fd6d7ae9258db3fa07e1ccf29919ccf" -SRC_URI[sha256sum] = "514bbfbd3e4ab1ea764eb61b5f62606f6359d74d55908ee7296ad8491fc6e361" +SRC_URI[md5sum] = "541d88cacb3b5e709414b6bedbde411d" +SRC_URI[sha256sum] = "7434553cd7b60380c5960d0f6e8bf363f544d45ef7e1aed1b9b3c98bceeb1bf2" SRC_URI += " \ file://0001-fix-build-for-qtbase-without-session-management.patch \ diff --git a/recipes-kde/plasma/untier/libkscreen/libkscreen.bb b/recipes-kde/plasma/untier/libkscreen/libkscreen.bb index f782e65e..8011591b 100644 --- a/recipes-kde/plasma/untier/libkscreen/libkscreen.bb +++ b/recipes-kde/plasma/untier/libkscreen/libkscreen.bb @@ -10,8 +10,8 @@ inherit kde-plasma DEPENDS += "${@bb.utils.contains("DISTRO_FEATURES", "x11", "virtual/libx11 qtx11extras", "", d)}" PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "87e862906d3b3abb7701f3b1e8e844f6" -SRC_URI[sha256sum] = "80f72afc9a2409dfe80853c007b596e4c1bcc92bee95741b894646ef3176dd7e" +SRC_URI[md5sum] = "4821d41c0f3249e28034853e25bddc76" +SRC_URI[sha256sum] = "299e8e2d8be71674666002d850383ec01bfc794fcb180811c2e2cd70a5574078" SRC_URI += " \ file://0001-fix-configuration-build-on-x-less-systems.patch \ diff --git a/recipes-kde/plasma/untier/libksysguard/libksysguard.bb b/recipes-kde/plasma/untier/libksysguard/libksysguard.bb index 965b138c..bff21a83 100644 --- a/recipes-kde/plasma/untier/libksysguard/libksysguard.bb +++ b/recipes-kde/plasma/untier/libksysguard/libksysguard.bb @@ -27,8 +27,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "c0ea69386308b1ee5d7cb6a9132161c1" -SRC_URI[sha256sum] = "87370f4c16ba489e988f39e53015a677b1e30070e79888b07f9826695ec7e9ac" +SRC_URI[md5sum] = "8283b3ecbd892ab4f395428e4893df85" +SRC_URI[sha256sum] = "b0f9e057d4b1424c56958e0f2d1af9cd88081277d8785e616df6a55f19539f81" FILES_${PN} += " \ ${datadir}/dbus-1 \ diff --git a/recipes-kde/plasma/untier/milou/milou.bb b/recipes-kde/plasma/untier/milou/milou.bb index aba7c53c..2372b518 100644 --- a/recipes-kde/plasma/untier/milou/milou.bb +++ b/recipes-kde/plasma/untier/milou/milou.bb @@ -23,8 +23,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "45424c10d6c9b8618653021981eab4ab" -SRC_URI[sha256sum] = "d8e94ecf18f2f41e3bcb66ae324996dc1db6c3addc4a506e060c7874c2764107" +SRC_URI[md5sum] = "3c6e02dc7f56bcacf50e1a7e60abe05d" +SRC_URI[sha256sum] = "131b1b5e5718415018db0dff193343bd8cd3732dce941b2780f1bd3544fbde6a" FILES_${PN} += " \ ${datadir}/k*5 \ diff --git a/recipes-kde/plasma/untier/oxygen/oxygen.bb b/recipes-kde/plasma/untier/oxygen/oxygen.bb index 325eb60d..50abf1db 100644 --- a/recipes-kde/plasma/untier/oxygen/oxygen.bb +++ b/recipes-kde/plasma/untier/oxygen/oxygen.bb @@ -25,8 +25,8 @@ DEPENDS += " \ PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "174b329dcf9e2166a5b8129d911084d9" -SRC_URI[sha256sum] = "0ed752fc90634277d40f816a0ce0717b4708ced1e88596ab890112991c9614d2" +SRC_URI[md5sum] = "46b1b5f269018b6b4bf5081c3c94c164" +SRC_URI[sha256sum] = "5271d6ccf0d876ac32bfb6928cf5d4d3c72b42e0973ef484a2fab379d3264ad0" SRC_URI += "file://0001-kstyle-add-an-option-BUILD_OXYGEN_SETTINGS-disabled-.patch" PACKAGECONFIG ??= "" diff --git a/recipes-kde/plasma/untier/plasma-browser-integration/plasma-browser-integration.bb b/recipes-kde/plasma/untier/plasma-browser-integration/plasma-browser-integration.bb index 5e6f123c..9835accf 100644 --- a/recipes-kde/plasma/untier/plasma-browser-integration/plasma-browser-integration.bb +++ b/recipes-kde/plasma/untier/plasma-browser-integration/plasma-browser-integration.bb @@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = "file://COPYING-GPL3;md5=d32239bcb673463ab874e80d47fae504" inherit kde-plasma gettext PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "a9847228f5be4aa80ba8504e007c1585" -SRC_URI[sha256sum] = "2b91669492f30fa7fcc082e31499f99e93a21365e27ebae3a14ead7ddeaa28d4" +SRC_URI[md5sum] = "3b9eb48d6a4f99965757009281821ee4" +SRC_URI[sha256sum] = "b44949dab234b3377ae9bc6a8fc8e77577a7859186343f89bd796f1bf07bc827" DEPENDS += " \ kauth-native \ diff --git a/recipes-kde/plasma/untier/plasma-desktop/plasma-desktop.bb b/recipes-kde/plasma/untier/plasma-desktop/plasma-desktop.bb index 39c6e0e9..6d271953 100644 --- a/recipes-kde/plasma/untier/plasma-desktop/plasma-desktop.bb +++ b/recipes-kde/plasma/untier/plasma-desktop/plasma-desktop.bb @@ -50,8 +50,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "53d69ee0a4ae37c11c2eec8f2246dae6" -SRC_URI[sha256sum] = "f4a913a60fee4597a7a6c98a263f9a7a40f7663f3903b4042a7f90a686dc8aa0" +SRC_URI[md5sum] = "620e2db19b904cfb6192a1ad420382ba" +SRC_URI[sha256sum] = "0bc6622f1d359f748b0d29e3ec69fed99f313258243b25344a729383abda6f8a" SRC_URI += "file://0001-Ensure-xkb_base-is-not-empty-instead-of-checking-if-.patch" diff --git a/recipes-kde/plasma/untier/plasma-integration/plasma-integration.bb b/recipes-kde/plasma/untier/plasma-integration/plasma-integration.bb index d4d9d81f..cffb97a6 100644 --- a/recipes-kde/plasma/untier/plasma-integration/plasma-integration.bb +++ b/recipes-kde/plasma/untier/plasma-integration/plasma-integration.bb @@ -26,8 +26,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "ccba9f576c29c93cc2ac9a1c34baa28e" -SRC_URI[sha256sum] = "d6011bd9a94e6c8e96f9b0fbbf7f17d8170be93a24edb1e7b0ff6ac6e28429ff" +SRC_URI[md5sum] = "6e4e21b5d36cfaec4ad3fc0e45e51f43" +SRC_URI[sha256sum] = "05a1d8c3fd46caf9ffaa2195eb59ffe7586bc8294f33d8afcc7a3b6288fe6fbe" FILES_${PN} += " \ ${datadir}/kconf_update \ diff --git a/recipes-kde/plasma/untier/plasma-nm/plasma-nm.bb b/recipes-kde/plasma/untier/plasma-nm/plasma-nm.bb index 296cacc5..6a0dacda 100644 --- a/recipes-kde/plasma/untier/plasma-nm/plasma-nm.bb +++ b/recipes-kde/plasma/untier/plasma-nm/plasma-nm.bb @@ -45,8 +45,8 @@ DEPENDS += " \ # MobileBroadbandProviderInfo PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "2db55f5ed7e5d8259cdd87bb578d4cc8" -SRC_URI[sha256sum] = "322516acabb5a49c613f951c5049f6a15edf2b54340f08bca3c86a5b1bd6e56b" +SRC_URI[md5sum] = "0d6e8377ae55e5ad3eb0d5b69ef4e670" +SRC_URI[sha256sum] = "32b5de845924636ba103dc2641be8ce8cbb7709f186ebae2d33df8f2017820ef" # do not move so-libs to -dev package FILES_SOLIBSDEV = "" diff --git a/recipes-kde/plasma/untier/plasma-pa/plasma-pa.bb b/recipes-kde/plasma/untier/plasma-pa/plasma-pa.bb index ab3ee9cb..64f93bb7 100644 --- a/recipes-kde/plasma/untier/plasma-pa/plasma-pa.bb +++ b/recipes-kde/plasma/untier/plasma-pa/plasma-pa.bb @@ -25,8 +25,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "d3e3b38c3a615973bdb35d41cc58010c" -SRC_URI[sha256sum] = "da660d75ea0a4589ee3730a2697665c791e6525f35813cbf90c48408607b1ee6" +SRC_URI[md5sum] = "7d3e3426f63961c7e8734ced5008066d" +SRC_URI[sha256sum] = "f9f4544bee4a2e2bd4197b019b5c6ffb969bbdd27afe3e1ef02b681e9a0ed769" FILES_SOLIBSDEV = "" diff --git a/recipes-kde/plasma/untier/plasma-vault/plasma-vault.bb b/recipes-kde/plasma/untier/plasma-vault/plasma-vault.bb index 65d928f4..8724a03f 100644 --- a/recipes-kde/plasma/untier/plasma-vault/plasma-vault.bb +++ b/recipes-kde/plasma/untier/plasma-vault/plasma-vault.bb @@ -9,8 +9,8 @@ LIC_FILES_CHKSUM = " \ inherit kde-plasma gtk-icon-cache PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "a7b870fda91ecdf386999ee765613756" -SRC_URI[sha256sum] = "d63cba4e3a89a10571f120d75405a837964c0176351ce78bed04f58b37f58fd6" +SRC_URI[md5sum] = "3ee61cf88e9e1be6d7df960abe7fefe2" +SRC_URI[sha256sum] = "a71ef24566ae6a0d61e21dfb65aac11381ffaa340c16b47d2db887c4690ea71b" DEPENDS += " \ kauth-native \ diff --git a/recipes-kde/plasma/untier/plasma-workspace-wallpapers/plasma-workspace-wallpapers.bb b/recipes-kde/plasma/untier/plasma-workspace-wallpapers/plasma-workspace-wallpapers.bb index 5ac54d32..d22dc43b 100644 --- a/recipes-kde/plasma/untier/plasma-workspace-wallpapers/plasma-workspace-wallpapers.bb +++ b/recipes-kde/plasma/untier/plasma-workspace-wallpapers/plasma-workspace-wallpapers.bb @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = " \ inherit kde-plasma PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "b68a7d75f28d7a4516cbfaee24d93733" -SRC_URI[sha256sum] = "67d3e69d9ad6292cf6b70ab7f35fe0a88d2a626efd0a1c4fa70b5c0049d1c973" +SRC_URI[md5sum] = "56e5035e7fc73a525e95cc8ecc4e84b6" +SRC_URI[sha256sum] = "a44582a816998b41de4800b52cd461ce09ef2c7ca5a9b65b02d489e78a241eab" FILES_${PN} += "${datadir}/wallpapers" diff --git a/recipes-kde/plasma/untier/polkit-kde-agent-1/polkit-kde-agent-1.bb b/recipes-kde/plasma/untier/polkit-kde-agent-1/polkit-kde-agent-1.bb index 7fa4419d..f55e23b7 100644 --- a/recipes-kde/plasma/untier/polkit-kde-agent-1/polkit-kde-agent-1.bb +++ b/recipes-kde/plasma/untier/polkit-kde-agent-1/polkit-kde-agent-1.bb @@ -23,8 +23,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "d4fa5ba078399cefd65fe7c70619b546" -SRC_URI[sha256sum] = "9bbe7faa06a25768ba5dcdb3a084afeb8d9d3e284388d0c6138bd4cd51a418f0" +SRC_URI[md5sum] = "ac301b5926ed361f6714892ac5ae9b20" +SRC_URI[sha256sum] = "629bf387adb01dca1701eab641ac81b217ad8d1f07af687c3cd2bdb007e1888c" SRC_URI += "file://0001-fix-build-for-QT_NO_SESSIONMANAGER.patch" diff --git a/recipes-kde/plasma/untier/powerdevil/powerdevil.bb b/recipes-kde/plasma/untier/powerdevil/powerdevil.bb index 09075169..ff14e947 100644 --- a/recipes-kde/plasma/untier/powerdevil/powerdevil.bb +++ b/recipes-kde/plasma/untier/powerdevil/powerdevil.bb @@ -30,8 +30,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "3802dd3c22a4347fcf0299136d551705" -SRC_URI[sha256sum] = "ea0ebd64c9f315f890421ae2ff0d7d756b61071331868ff9a63e47a9cba59fe5" +SRC_URI[md5sum] = "615cd8c3cba8c2f8dbcc6e4e7136a114" +SRC_URI[sha256sum] = "8939331967e4df70aadf3d411deec3ab1ea0c820192fd893a72d8590ce98b3d7" FILES_${PN} += " \ ${datadir}/k*5 \ diff --git a/recipes-kde/plasma/untier/sddm-kcm/sddm-kcm.bb b/recipes-kde/plasma/untier/sddm-kcm/sddm-kcm.bb index 4b98ecf6..4d788746 100644 --- a/recipes-kde/plasma/untier/sddm-kcm/sddm-kcm.bb +++ b/recipes-kde/plasma/untier/sddm-kcm/sddm-kcm.bb @@ -22,8 +22,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "f1bb8fddb7e34ad3f4d38f02bb989461" -SRC_URI[sha256sum] = "3ab6da7692df4b35c088f45657dfe2430797021c7c7fd6091747d7fd9ca594d7" +SRC_URI[md5sum] = "2a7d7624e5097e102e84f16a6ae6de2c" +SRC_URI[sha256sum] = "9151adc1111fe327078c80af64f0fef3145bed8b9721f9adc53815ab968f97fe" RDEPENDS_${PN} = "sddm" diff --git a/recipes-kde/plasma/untier/systemsettings/systemsettings.bb b/recipes-kde/plasma/untier/systemsettings/systemsettings.bb index 23b6b675..06fa5d61 100644 --- a/recipes-kde/plasma/untier/systemsettings/systemsettings.bb +++ b/recipes-kde/plasma/untier/systemsettings/systemsettings.bb @@ -33,8 +33,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "9073fc9e8d64bcd255b2ff4f49586b4e" -SRC_URI[sha256sum] = "7b3d93bd3cd4c33b878aabff4bd9c8134ca7395a0290e59260464cf5d69f17f3" +SRC_URI[md5sum] = "c613cb64f4db172f82a5af449c31cc22" +SRC_URI[sha256sum] = "849ea4f09b0baae8987a082512d34c507a7c70ddbb706be762dced9a868e08bd" FILES_${PN} += " \ ${datadir}/k*5 \ diff --git a/recipes-kde/plasma/untier/user-manager/user-manager.bb b/recipes-kde/plasma/untier/user-manager/user-manager.bb index bab82a9e..39b489dd 100644 --- a/recipes-kde/plasma/untier/user-manager/user-manager.bb +++ b/recipes-kde/plasma/untier/user-manager/user-manager.bb @@ -16,8 +16,8 @@ DEPENDS += " \ " PV = "${PLASMA_VERSION}" -SRC_URI[md5sum] = "b5f5abce69256003a1fe918e0d23986d" -SRC_URI[sha256sum] = "659fab189915140e136c426d6a22852f9685ab85f1fec07a44faaa7a663c8d3d" +SRC_URI[md5sum] = "54e6838b85c6336fd57787fb2c970082" +SRC_URI[sha256sum] = "80948463723365292b1c9a5442cde734172b75f9b918429da7f783a2c619e87a" FILES_${PN} += " \ ${datadir}/kservices5 \