From 7e0e55309c2d2301f1bbd96de9bcc7171830c556 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Tue, 13 Aug 2019 23:49:29 +0200 Subject: [PATCH 01/13] connectagram; initial add 1.2.10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- recipes-gottcode/connectagram/connectagram.bb | 24 +++++++++++++++++++ .../packagegroups/gottcode-world.bb | 1 + 2 files changed, 25 insertions(+) create mode 100644 recipes-gottcode/connectagram/connectagram.bb diff --git a/recipes-gottcode/connectagram/connectagram.bb b/recipes-gottcode/connectagram/connectagram.bb new file mode 100644 index 00000000..076048c1 --- /dev/null +++ b/recipes-gottcode/connectagram/connectagram.bb @@ -0,0 +1,24 @@ +SUMMARY = "Connectagram is a word unscrambling game" +HOMEPAGE = "https://gottcode.org/connectagram/" +LICENSE = "GPLv3" +LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" + +inherit qmake5 qt5-translation gtk-icon-cache + +DEPENDS = "qttools-native qtbase hicolor-icon-theme" + +SRC_URI = "http://gottcode.org/${BPN}/${BPN}-${PV}-src.tar.bz2" +SRC_URI[md5sum] = "db3ad80358b31df292d69b067c5657c6" +SRC_URI[sha256sum] = "04dbe12f52e68a0fececad1bbab08e279d7fd2f438e126bfc6d047daf1a55b75" +PV = "1.2.10" + +EXTRA_QMAKEVARS_PRE += "PREFIX=${prefix}" + +FILES_${PN} += " \ + ${datadir}/metainfo \ +" + +# WIP: qt5-translation expects *.qm to work properly so pack word data in PN for now +FILES_${PN} += " \ + ${datadir}/connectagram/data \ +" diff --git a/recipes-gottcode/packagegroups/gottcode-world.bb b/recipes-gottcode/packagegroups/gottcode-world.bb index cf287dbf..88617e18 100644 --- a/recipes-gottcode/packagegroups/gottcode-world.bb +++ b/recipes-gottcode/packagegroups/gottcode-world.bb @@ -5,6 +5,7 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda inherit packagegroup RDEPENDS_${PN} = " \ + connectagram \ focuswriter \ gottet \ hexalate \ From f8f9597e008e5b7c7973d21d0e4304726dc06b3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Wed, 14 Aug 2019 00:52:24 +0200 Subject: [PATCH 02/13] grantlee: fix build with Qt 5.13 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- .../0002-Fix-build-with-Qt-5.13-GCC-8.2.patch | 34 +++++++++++++++++++ recipes-support/grantlee/grantlee_5.1.0.bb | 1 + 2 files changed, 35 insertions(+) create mode 100644 recipes-support/grantlee/files/0002-Fix-build-with-Qt-5.13-GCC-8.2.patch diff --git a/recipes-support/grantlee/files/0002-Fix-build-with-Qt-5.13-GCC-8.2.patch b/recipes-support/grantlee/files/0002-Fix-build-with-Qt-5.13-GCC-8.2.patch new file mode 100644 index 00000000..40ff6e5b --- /dev/null +++ b/recipes-support/grantlee/files/0002-Fix-build-with-Qt-5.13-GCC-8.2.patch @@ -0,0 +1,34 @@ +From 1b4f22431ae35dfd11f07a5ae88a1b4db3de2a85 Mon Sep 17 00:00:00 2001 +From: Michael Pyne +Date: Tue, 18 Dec 2018 17:47:21 -0500 +Subject: [PATCH] Fix build with Qt 5.13 / GCC 8.2. + +At this point Grantlee doesn't build for me because QList is an +incomplete type. I think the compiler is right to complain, so I fix by +including the appropriate header. + +Fixes issue #47. + +Upstream-Status: Applied [1] + +[1] https://github.com/steveire/grantlee/commit/1b4f22431ae35dfd11f07a5ae88a1b4db3de2a85 +--- + templates/lib/lexer_p.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/templates/lib/lexer_p.h b/templates/lib/lexer_p.h +index 275aeea..1ae451a 100644 +--- a/templates/lib/lexer_p.h ++++ b/templates/lib/lexer_p.h +@@ -24,7 +24,7 @@ + #include "textprocessingmachine_p.h" + #include "token.h" + +-template class QList; ++#include + + namespace Grantlee + { +-- +2.21.0 + diff --git a/recipes-support/grantlee/grantlee_5.1.0.bb b/recipes-support/grantlee/grantlee_5.1.0.bb index a305e37d..bd2fa812 100644 --- a/recipes-support/grantlee/grantlee_5.1.0.bb +++ b/recipes-support/grantlee/grantlee_5.1.0.bb @@ -6,6 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1" SRC_URI = " \ http://downloads.grantlee.org/${BPN}-${PV}.tar.gz \ file://0001-rework-qCWarning-to-fix-build-with-gcc-6.patch \ + file://0002-Fix-build-with-Qt-5.13-GCC-8.2.patch \ " SRC_URI[md5sum] = "57989ae9f7c113e682ef1713a6f1e92a" SRC_URI[sha256sum] = "ea2e402466c74bb533eee2c7252209ec61cd93a5d236fecd625b4a0eb13a1478" From 4199d9771fee84ce23621c0c94e4f1d9b4906ded Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Sat, 17 Aug 2019 23:09:48 +0200 Subject: [PATCH 03/13] kde-kf5: upgrade 5.60.0 -> 5.61.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- classes/kde-kf5-porting-aids.bbclass | 2 +- classes/kde-kf5.bbclass | 4 +- .../kf5/porting-aids-tier1/kjs/kjs.inc | 4 +- .../kdelibs4support/kdelibs4support.inc | 4 +- .../porting-aids-tier3/kdewebkit/kdewebkit.bb | 6 +- .../kf5/porting-aids-tier3/khtml/khtml.bb | 4 +- .../porting-aids-tier3/kjsembed/kjsembed.bb | 4 +- .../kf5/porting-aids-tier3/kross/kross.bb | 4 +- recipes-kde/kf5/tier1/attica/attica.bb | 4 +- recipes-kde/kf5/tier1/bluez-qt/bluez-qt.bb | 4 +- .../kf5/tier1/breeze-icons/breeze-icons.inc | 4 +- recipes-kde/kf5/tier1/karchive/karchive.inc | 4 +- recipes-kde/kf5/tier1/kcodecs/kcodecs.bb | 4 +- recipes-kde/kf5/tier1/kconfig/kconfig.inc | 4 +- .../kf5/tier1/kcoreaddons/kcoreaddons.inc | 4 +- .../kf5/tier1/kdbusaddons/kdbusaddons.bb | 4 +- recipes-kde/kf5/tier1/kdnssd/kdnssd.bb | 4 +- .../kf5/tier1/kguiaddons/kguiaddons.bb | 4 +- recipes-kde/kf5/tier1/kholidays/kholidays.bb | 4 +- recipes-kde/kf5/tier1/ki18n/ki18n.inc | 4 +- recipes-kde/kf5/tier1/kidletime/kidletime.bb | 4 +- recipes-kde/kf5/tier1/kirigami/kirigami2.bb | 4 +- .../kf5/tier1/kitemmodels/kitemmodels.bb | 4 +- .../kf5/tier1/kitemviews/kitemviews.bb | 4 +- recipes-kde/kf5/tier1/kplotting/kplotting.bb | 4 +- recipes-kde/kf5/tier1/kwayland/kwayland.bb | 4 +- .../tier1/kwidgetsaddons/kwidgetsaddons.bb | 4 +- .../kf5/tier1/kwindowsystem/kwindowsystem.bb | 4 +- .../tier1/modemmanager-qt/modemmanager-qt.bb | 4 +- .../networkmanager-qt/networkmanager-qt.bb | 4 +- .../kf5/tier1/oxygen-icons/oxygen-icons5.bb | 4 +- recipes-kde/kf5/tier1/prison/prison.bb | 4 +- recipes-kde/kf5/tier1/solid/solid.bb | 4 +- recipes-kde/kf5/tier1/sonnet/sonnet.inc | 4 +- ...ild-data-and-install-katehighlightin.patch | 41 -------- ...tive-install-katehighlightingindexer.patch | 28 ++++++ .../syntax-highlighting-native.bb | 2 +- .../syntax-highlighting.inc | 4 +- .../kf5/tier1/threadweaver/threadweaver.bb | 4 +- .../kactivities-stats/kactivities-stats.bb | 4 +- recipes-kde/kf5/tier2/kauth/kauth.inc | 4 +- .../kf5/tier2/kcompletion/kcompletion.bb | 4 +- recipes-kde/kf5/tier2/kcrash/kcrash.bb | 4 +- recipes-kde/kf5/tier2/kdoctools/kdoctools.inc | 4 +- ...rs-Hide-warnings-from-system-headers.patch | 97 ------------------- ...not-include-taglib-as-system-library.patch | 44 --------- .../kf5/tier2/kfilemetadata/kfilemetadata.bb | 7 +- .../kf5/tier2/kimageformats/kimageformats.bb | 4 +- .../kf5/tier2/kjobwidgets/kjobwidgets.bb | 4 +- .../tier2/knotifications/knotifications.bb | 4 +- recipes-kde/kf5/tier2/kpackage/kpackage.inc | 4 +- recipes-kde/kf5/tier2/kpty/kpty.bb | 4 +- .../tier2/kunitconversion/kunitconversion.bb | 4 +- .../kf5/tier2/syndication/syndication.bb | 4 +- recipes-kde/kf5/tier3/baloo/baloo.bb | 4 +- .../kf5/tier3/kactivities/kactivities.bb | 4 +- .../kf5/tier3/kbookmarks/kbookmarks.bb | 4 +- recipes-kde/kf5/tier3/kcmutils/kcmutils.bb | 4 +- .../tier3/kconfigwidgets/kconfigwidgets.bb | 4 +- .../kf5/tier3/kdeclarative/kdeclarative.bb | 4 +- recipes-kde/kf5/tier3/kded/kded.bb | 4 +- ...tting-and-kdewebkit-support-optional.patch | 64 ------------ ...lugin-executable-so-that-it-can-be-.patch} | 0 .../tier3/kdesignerplugin/kdesignerplugin.bb | 10 +- .../tier3/kdesignerplugin/kdesignerplugin.inc | 4 +- recipes-kde/kf5/tier3/kdesu/kdesu.bb | 4 +- .../kf5/tier3/kemoticons/kemoticons.bb | 4 +- .../kf5/tier3/kglobalaccel/kglobalaccel.bb | 4 +- .../kf5/tier3/kiconthemes/kiconthemes.bb | 4 +- recipes-kde/kf5/tier3/kinit/kinit.bb | 4 +- recipes-kde/kf5/tier3/kio/kio.bb | 4 +- recipes-kde/kf5/tier3/knewstuff/knewstuff.bb | 4 +- .../kf5/tier3/knotifyconfig/knotifyconfig.bb | 4 +- recipes-kde/kf5/tier3/kparts/kparts.bb | 4 +- recipes-kde/kf5/tier3/kpeople/kpeople.bb | 4 +- recipes-kde/kf5/tier3/krunner/krunner.bb | 4 +- recipes-kde/kf5/tier3/kservice/kservice.bb | 4 +- .../kf5/tier3/ktexteditor/ktexteditor.bb | 4 +- .../kf5/tier3/ktextwidgets/ktextwidgets.bb | 4 +- recipes-kde/kf5/tier3/kwallet/kwallet.bb | 4 +- recipes-kde/kf5/tier3/kxmlgui/kxmlgui.bb | 4 +- .../kf5/tier3/kxmlrpcclient/kxmlrpcclient.bb | 4 +- .../plasma-framework/plasma-framework.bb | 4 +- recipes-kde/kf5/tier3/purpose/purpose.bb | 4 +- .../qqc2-desktop-style/qqc2-desktop-style.bb | 4 +- .../frameworkintegration.bb | 4 +- .../extra-cmake-modules.bb | 4 +- 87 files changed, 192 insertions(+), 413 deletions(-) delete mode 100644 recipes-kde/kf5/tier1/syntax-highlighting/files/0001-native-do-not-build-data-and-install-katehighlightin.patch create mode 100644 recipes-kde/kf5/tier1/syntax-highlighting/files/0001-native-install-katehighlightingindexer.patch delete mode 100644 recipes-kde/kf5/tier2/kfilemetadata/files/0001-Revert-extractors-Hide-warnings-from-system-headers.patch delete mode 100644 recipes-kde/kf5/tier2/kfilemetadata/files/0002-Do-not-include-taglib-as-system-library.patch delete mode 100644 recipes-kde/kf5/tier3/kdesignerplugin/files/0001-make-kplotting-and-kdewebkit-support-optional.patch rename recipes-kde/kf5/tier3/kdesignerplugin/files/{0002-set-kgendesignerplugin-executable-so-that-it-can-be-.patch => 0001-set-kgendesignerplugin-executable-so-that-it-can-be-.patch} (100%) diff --git a/classes/kde-kf5-porting-aids.bbclass b/classes/kde-kf5-porting-aids.bbclass index 748ef78d..c5484f4e 100644 --- a/classes/kde-kf5-porting-aids.bbclass +++ b/classes/kde-kf5-porting-aids.bbclass @@ -1,3 +1,3 @@ inherit kde-kf5 -SRC_URI = "${KDE_MIRROR}/stable/frameworks/5.60/portingAids/${BPN}-${PV}.tar.xz" +SRC_URI = "${KDE_MIRROR}/stable/frameworks/5.61/portingAids/${BPN}-${PV}.tar.xz" diff --git a/classes/kde-kf5.bbclass b/classes/kde-kf5.bbclass index 284ea26a..4e127c8f 100644 --- a/classes/kde-kf5.bbclass +++ b/classes/kde-kf5.bbclass @@ -1,5 +1,5 @@ inherit kde-base -KF5_VERSION = "5.60.0" +KF5_VERSION = "5.61.0" -SRC_URI = "${KDE_MIRROR}/stable/frameworks/5.60/${BPN}-${PV}.tar.xz" +SRC_URI = "${KDE_MIRROR}/stable/frameworks/5.61/${BPN}-${PV}.tar.xz" diff --git a/recipes-kde/kf5/porting-aids-tier1/kjs/kjs.inc b/recipes-kde/kf5/porting-aids-tier1/kjs/kjs.inc index eae790eb..42a3c273 100644 --- a/recipes-kde/kf5/porting-aids-tier1/kjs/kjs.inc +++ b/recipes-kde/kf5/porting-aids-tier1/kjs/kjs.inc @@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1" inherit kde-kf5-porting-aids perlnative PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "43732f9ed73d445d86d00297e9a9cf4e" -SRC_URI[sha256sum] = "9f4beaf9d773afbd73de5a9adf1f481c9b95fb02cc7cfe8ec050625c13811355" +SRC_URI[md5sum] = "c95e4ec5fb82dc53627ddcddd5b5ec10" +SRC_URI[sha256sum] = "968e1592c98ee260d80644bf4631bf09479512e48fa878887ee3b9d6d57d3d17" SRC_URI += "file://0001-create_hash_table-avoid-polution-of-files-with-build.patch" DEPENDS += " \ diff --git a/recipes-kde/kf5/porting-aids-tier3/kdelibs4support/kdelibs4support.inc b/recipes-kde/kf5/porting-aids-tier3/kdelibs4support/kdelibs4support.inc index b13c8019..382981f5 100644 --- a/recipes-kde/kf5/porting-aids-tier3/kdelibs4support/kdelibs4support.inc +++ b/recipes-kde/kf5/porting-aids-tier3/kdelibs4support/kdelibs4support.inc @@ -8,8 +8,8 @@ LIC_FILES_CHKSUM = " \ inherit kde-kf5-porting-aids perlnative PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "d6e1642be773e68edf50abdd4af69b14" -SRC_URI[sha256sum] = "91b207b3d46c6bc5e97b9b89717db1ef7c4359c65bc4595794143ba78ce92a60" +SRC_URI[md5sum] = "7ee8ec810e00830dfeeb924c1b9242d0" +SRC_URI[sha256sum] = "ae6f7c10e1fe67ded687f38a8ab3c8d483ae06ae69344bd1e683af752cf40b5c" EXTRA_OECMAKE += "-DBUILD_TESTING=OFF" diff --git a/recipes-kde/kf5/porting-aids-tier3/kdewebkit/kdewebkit.bb b/recipes-kde/kf5/porting-aids-tier3/kdewebkit/kdewebkit.bb index ab27a7b4..b42c9fa5 100644 --- a/recipes-kde/kf5/porting-aids-tier3/kdewebkit/kdewebkit.bb +++ b/recipes-kde/kf5/porting-aids-tier3/kdewebkit/kdewebkit.bb @@ -20,5 +20,7 @@ DEPENDS += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "4c144d0de38bd6f7e7e8a0a9589ee2dd" -SRC_URI[sha256sum] = "bf16bf33dfdecc5e4e50bacc5ce142774c5c1522639d3d0042779734767f12fb" +SRC_URI[md5sum] = "9075fbe8ca7afcd8ca263dbe41a823b4" +SRC_URI[sha256sum] = "1ee2a00ee3d95df9270e8c3d434568cda8f42151e361bc07fe374bf0f7afe211" + +FILES_${PN} += "${libdir}/plugins" diff --git a/recipes-kde/kf5/porting-aids-tier3/khtml/khtml.bb b/recipes-kde/kf5/porting-aids-tier3/khtml/khtml.bb index 5d416175..e07d09ad 100644 --- a/recipes-kde/kf5/porting-aids-tier3/khtml/khtml.bb +++ b/recipes-kde/kf5/porting-aids-tier3/khtml/khtml.bb @@ -37,8 +37,8 @@ DEPENDS += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "0db0a677e7fd00405ccb63994355bd42" -SRC_URI[sha256sum] = "c18a5fa51cbf9f9a0a0f104e2fc0581abdb99a5bd36f8426ef129ea848414037" +SRC_URI[md5sum] = "fe66740ed0df257c1695eb0abd8ca9ed" +SRC_URI[sha256sum] = "5d8612b584eecf96959d56bb75b1470b3b34ff7176cef7a0a15bc2531b21720b" do_compile_append() { # gperf-native sets absolut debug comments/links in header diff --git a/recipes-kde/kf5/porting-aids-tier3/kjsembed/kjsembed.bb b/recipes-kde/kf5/porting-aids-tier3/kjsembed/kjsembed.bb index aa13f940..0da2e024 100644 --- a/recipes-kde/kf5/porting-aids-tier3/kjsembed/kjsembed.bb +++ b/recipes-kde/kf5/porting-aids-tier3/kjsembed/kjsembed.bb @@ -16,5 +16,5 @@ DEPENDS += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "940dd5ebce78989830e8b306f3738f92" -SRC_URI[sha256sum] = "91c8767a533ee414cd0b4789270881495a8e06482d68bda988cc5fdeb987c421" +SRC_URI[md5sum] = "8895a81c6b993e901de031c67a261464" +SRC_URI[sha256sum] = "d8e0afad638574c31c89d716d78456ce51ffe6dd03eae6787bc9b4f8b52d5b44" diff --git a/recipes-kde/kf5/porting-aids-tier3/kross/kross.bb b/recipes-kde/kf5/porting-aids-tier3/kross/kross.bb index 3dd4e5b4..ad9e170d 100644 --- a/recipes-kde/kf5/porting-aids-tier3/kross/kross.bb +++ b/recipes-kde/kf5/porting-aids-tier3/kross/kross.bb @@ -25,8 +25,8 @@ DEPENDS += "\ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "babd193992c4865ea2eeba9f0c91f988" -SRC_URI[sha256sum] = "e83f3388ca8e89057e272b3b98233f294528ed0dcb62a6edb6cf37b7a1891f45" +SRC_URI[md5sum] = "f7d9d1b5089dddafd9a55bdec47d1fbf" +SRC_URI[sha256sum] = "103837799febbd62365a6445db046a2ee4add13d7d250abf925872cac642986e" FILES_${PN} += " \ ${OE_QMAKE_PATH_PLUGINS} \ diff --git a/recipes-kde/kf5/tier1/attica/attica.bb b/recipes-kde/kf5/tier1/attica/attica.bb index 22b65375..a193df60 100644 --- a/recipes-kde/kf5/tier1/attica/attica.bb +++ b/recipes-kde/kf5/tier1/attica/attica.bb @@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = " \ inherit kde-kf5 -SRC_URI[md5sum] = "51e0f8be234e1c310205d5c6f782e537" -SRC_URI[sha256sum] = "6658a886950ab87d779991b4c39beeff250f5aff64c71ee98b5c472a219ac6de" +SRC_URI[md5sum] = "9ad93d635ed42f46ea5d0ba3d4922431" +SRC_URI[sha256sum] = "9d3ad34c17223333b5a77144cc5a9d941cbb7baa01ab4a2ffe34ae9398c90dde" PV = "${KF5_VERSION}" diff --git a/recipes-kde/kf5/tier1/bluez-qt/bluez-qt.bb b/recipes-kde/kf5/tier1/bluez-qt/bluez-qt.bb index 5102b3e1..e7e703c6 100644 --- a/recipes-kde/kf5/tier1/bluez-qt/bluez-qt.bb +++ b/recipes-kde/kf5/tier1/bluez-qt/bluez-qt.bb @@ -7,8 +7,8 @@ inherit kde-kf5 DEPENDS += "qtdeclarative" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "a84ced1bdca1522b3b67e024dca63b26" -SRC_URI[sha256sum] = "328aba853ec0c034e777261d9e3ac3202ad941ffde844392e196afaed04be0d4" +SRC_URI[md5sum] = "5596cd4e9a134cce689d24887912edfe" +SRC_URI[sha256sum] = "0ea647de61fcc18a85c660fa8e05fe93072a713a8d00a018ba8e99ea790e5d27" EXTRA_OECMAKE += "-DBUILD_TESTING=OFF" diff --git a/recipes-kde/kf5/tier1/breeze-icons/breeze-icons.inc b/recipes-kde/kf5/tier1/breeze-icons/breeze-icons.inc index 8b5be731..f246716b 100644 --- a/recipes-kde/kf5/tier1/breeze-icons/breeze-icons.inc +++ b/recipes-kde/kf5/tier1/breeze-icons/breeze-icons.inc @@ -7,8 +7,8 @@ LIC_FILES_CHKSUM = " \ inherit kde-kf5 gtk-icon-cache -SRC_URI[md5sum] = "22b5dd5c8cb259e55fc7f716dabfb8fb" -SRC_URI[sha256sum] = "99d0cbda6a38766079166633a06493929222c6443e8718c1a2db4aeb5b5f20b7" +SRC_URI[md5sum] = "bd2441e04540b82849fc3144dcd6dbca" +SRC_URI[sha256sum] = "1d260a01a2617f5f755d2eb38423af19bf4a1a2ccfa9339b441b4f6be6381c30" SRC_URI += "file://0001-Force-build-of-Qt-binary-resource-files.patch" PV = "${KF5_VERSION}" diff --git a/recipes-kde/kf5/tier1/karchive/karchive.inc b/recipes-kde/kf5/tier1/karchive/karchive.inc index 07dbc8c1..042b049d 100644 --- a/recipes-kde/kf5/tier1/karchive/karchive.inc +++ b/recipes-kde/kf5/tier1/karchive/karchive.inc @@ -10,7 +10,7 @@ inherit kde-kf5 DEPENDS += "bzip2 xz zlib" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "cb8d65acddcd0eb582a77773b2de0e46" -SRC_URI[sha256sum] = "4e3d2a6ba551c6ada44a6517150e031df92691919119bc3b5eb4efc741ff7564" +SRC_URI[md5sum] = "d8c20050abd157c665b5a6cd41a70d51" +SRC_URI[sha256sum] = "457ed420449630625cb161fcc9bedc7c6a16527f48d6db4008aea76cdb948387" EXTRA_OECMAKE += "-DBUILD_TESTING=OFF" diff --git a/recipes-kde/kf5/tier1/kcodecs/kcodecs.bb b/recipes-kde/kf5/tier1/kcodecs/kcodecs.bb index ee22dec3..02f61765 100644 --- a/recipes-kde/kf5/tier1/kcodecs/kcodecs.bb +++ b/recipes-kde/kf5/tier1/kcodecs/kcodecs.bb @@ -10,8 +10,8 @@ inherit kde-kf5 DEPENDS += "gperf-native" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "7e9d9482b52b729328e06321e2989152" -SRC_URI[sha256sum] = "cf8d5e5d47cbee31ea45faa1ca4d6043d3f8d9cbff2e5d40ce749a0b2cec50df" +SRC_URI[md5sum] = "a0996305dec1ffc5228a2b03b688ba22" +SRC_URI[sha256sum] = "4604323e44c1be7547f25b43b71bd541048c3d036a7fc5ca74e5ece9792ff5ee" do_compile_append() { # gperf-native sets absolut debug comments/links in header diff --git a/recipes-kde/kf5/tier1/kconfig/kconfig.inc b/recipes-kde/kf5/tier1/kconfig/kconfig.inc index bd85f6c8..5242aec9 100644 --- a/recipes-kde/kf5/tier1/kconfig/kconfig.inc +++ b/recipes-kde/kf5/tier1/kconfig/kconfig.inc @@ -7,8 +7,8 @@ LIC_FILES_CHKSUM = " \ inherit kde-kf5 cmake_lib PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "7f80691fc6b32e04f3ea13be77edb5af" -SRC_URI[sha256sum] = "541acceead9ca516e3562109e7e94351ce378c234bea968c8dfde78f00559233" +SRC_URI[md5sum] = "5aa453b71070a63837ba2b0e6f199fae" +SRC_URI[sha256sum] = "94c0e292a5d57e014aa745be6b59a989118ead1252d56c768f2719b5c6471372" # REVISIT remove ugly hack for wayland-only environments SRC_URI += " \ diff --git a/recipes-kde/kf5/tier1/kcoreaddons/kcoreaddons.inc b/recipes-kde/kf5/tier1/kcoreaddons/kcoreaddons.inc index 6a15a54c..82bed81c 100644 --- a/recipes-kde/kf5/tier1/kcoreaddons/kcoreaddons.inc +++ b/recipes-kde/kf5/tier1/kcoreaddons/kcoreaddons.inc @@ -7,5 +7,5 @@ LIC_FILES_CHKSUM = " \ inherit kde-kf5 mime PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "84410b718286b24577b78bc07084739d" -SRC_URI[sha256sum] = "c78e41596e65fec08b1f7b212dd584cb61b5a9fe89c1bb312e06238fac3e137d" +SRC_URI[md5sum] = "b0b128fde7ab143de3f638d063411700" +SRC_URI[sha256sum] = "6a4ea2eca77944c24fe63d2f7111913db721533d5971497cb5bdd2cac896e813" diff --git a/recipes-kde/kf5/tier1/kdbusaddons/kdbusaddons.bb b/recipes-kde/kf5/tier1/kdbusaddons/kdbusaddons.bb index 19ee77e6..2630dc70 100644 --- a/recipes-kde/kf5/tier1/kdbusaddons/kdbusaddons.bb +++ b/recipes-kde/kf5/tier1/kdbusaddons/kdbusaddons.bb @@ -11,5 +11,5 @@ DEPENDS += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "aa5b30d820742d541a6bec3579f90dd1" -SRC_URI[sha256sum] = "996a9c41d6290e9520dfaa88a97a476f29b2992a135024ab0ad2bc707b0df881" +SRC_URI[md5sum] = "3d979f571e2b622e3e5e5cae0742ac0a" +SRC_URI[sha256sum] = "f24fadc71670591bb679cde68147e53819f6c3d56126ecbafe59688fc47b347d" diff --git a/recipes-kde/kf5/tier1/kdnssd/kdnssd.bb b/recipes-kde/kf5/tier1/kdnssd/kdnssd.bb index 1b7f01a5..eafa41fc 100644 --- a/recipes-kde/kf5/tier1/kdnssd/kdnssd.bb +++ b/recipes-kde/kf5/tier1/kdnssd/kdnssd.bb @@ -10,5 +10,5 @@ inherit kde-kf5 DEPENDS += "avahi" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "b405fec215786e15a798948a07a592f9" -SRC_URI[sha256sum] = "8313b1a418559032a110f07b8816afd676770e0897d72d1d8cc353349a281964" +SRC_URI[md5sum] = "d89166c11d9d253c93bebf28e7687576" +SRC_URI[sha256sum] = "02d70e5ee18697867c1a12373c1dbe31e1efba1fcb1e26bba3c75472cd3b271d" diff --git a/recipes-kde/kf5/tier1/kguiaddons/kguiaddons.bb b/recipes-kde/kf5/tier1/kguiaddons/kguiaddons.bb index 42632d00..4304b8d1 100644 --- a/recipes-kde/kf5/tier1/kguiaddons/kguiaddons.bb +++ b/recipes-kde/kf5/tier1/kguiaddons/kguiaddons.bb @@ -12,5 +12,5 @@ DEPENDS += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "4a524ebb83ce9b1b39a54d0aa39e7466" -SRC_URI[sha256sum] = "228dc1715a35979072381658ca244795e989ea941e703559de398fdea793c548" +SRC_URI[md5sum] = "2c4769e8ca0dda1faa4f38484e6d889d" +SRC_URI[sha256sum] = "40cefa421b5ad5cf211875a35408ba526a5fb34e5ba19ebbda718dbf6b742520" diff --git a/recipes-kde/kf5/tier1/kholidays/kholidays.bb b/recipes-kde/kf5/tier1/kholidays/kholidays.bb index 5fcf1e6c..f95296b7 100644 --- a/recipes-kde/kf5/tier1/kholidays/kholidays.bb +++ b/recipes-kde/kf5/tier1/kholidays/kholidays.bb @@ -6,8 +6,8 @@ LIC_FILES_CHKSUM = " \ inherit kde-kf5 -SRC_URI[md5sum] = "5579896a41729bff9fa94e4e46f0b72c" -SRC_URI[sha256sum] = "af1954758e946b62e387e2197f128e7ae53b6054717f35bcabc674bec19b2d14" +SRC_URI[md5sum] = "591b24c0a31a5b9ba86a73e6cffdf4a9" +SRC_URI[sha256sum] = "ce3d879824a3e429b468008c1ccec5de44c07299d412ea32f9a2a814c27c08c1" PV = "${KF5_VERSION}" diff --git a/recipes-kde/kf5/tier1/ki18n/ki18n.inc b/recipes-kde/kf5/tier1/ki18n/ki18n.inc index d796c8e7..2ec3c09d 100644 --- a/recipes-kde/kf5/tier1/ki18n/ki18n.inc +++ b/recipes-kde/kf5/tier1/ki18n/ki18n.inc @@ -8,5 +8,5 @@ LIC_FILES_CHKSUM = " \ inherit kde-kf5 PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "0cf6a6c0a4aa8427763a1d8bb61a88e2" -SRC_URI[sha256sum] = "b94598e6cb40019c9db403cb392b647d798692899467883f2f9419e1de5782c3" +SRC_URI[md5sum] = "576b52330b4f520613b1d0e59a28f24c" +SRC_URI[sha256sum] = "d8c0594268b386ee42823360aa937c664cf04eedac8232bc18a653a9c52491d9" diff --git a/recipes-kde/kf5/tier1/kidletime/kidletime.bb b/recipes-kde/kf5/tier1/kidletime/kidletime.bb index d4605285..ddb0ce57 100644 --- a/recipes-kde/kf5/tier1/kidletime/kidletime.bb +++ b/recipes-kde/kf5/tier1/kidletime/kidletime.bb @@ -10,7 +10,7 @@ inherit kde-kf5 DEPENDS += "${@bb.utils.contains("DISTRO_FEATURES", "x11", "libxcb qtx11extras libxscrnsaver", "", d)}" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "54923408c39459922b616b92ce2678c9" -SRC_URI[sha256sum] = "e7c4ca5ca3e847c37add4c81b3d430f4c4bf0214433a234a32d766c9199adb27" +SRC_URI[md5sum] = "53e175bb8168badcf7621f8fc118dd5e" +SRC_URI[sha256sum] = "8fb302dcc5b891ac2f06b5278bd6e08043772f3325bc209175c945280621fca2" FILES_${PN} += "${OE_QMAKE_PATH_PLUGINS}" diff --git a/recipes-kde/kf5/tier1/kirigami/kirigami2.bb b/recipes-kde/kf5/tier1/kirigami/kirigami2.bb index 32e4a400..55a7ebfe 100644 --- a/recipes-kde/kf5/tier1/kirigami/kirigami2.bb +++ b/recipes-kde/kf5/tier1/kirigami/kirigami2.bb @@ -13,8 +13,8 @@ DEPENDS += " \ PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "a324faf4223316f6bd92973d2efdaa4e" -SRC_URI[sha256sum] = "f016481d393041513dda11345e9ee84723587fa4be9f17391ed1a5868477e153" +SRC_URI[md5sum] = "bf7a57a1088076a79e7992ca9be53018" +SRC_URI[sha256sum] = "afdbe922f0627330319f22834d6631af13edb0081c687422d36acb8697a88c30" FILES_${PN} += " \ ${OE_QMAKE_PATH_QML} \ diff --git a/recipes-kde/kf5/tier1/kitemmodels/kitemmodels.bb b/recipes-kde/kf5/tier1/kitemmodels/kitemmodels.bb index 1ed4f5eb..86526ec2 100644 --- a/recipes-kde/kf5/tier1/kitemmodels/kitemmodels.bb +++ b/recipes-kde/kf5/tier1/kitemmodels/kitemmodels.bb @@ -9,5 +9,5 @@ inherit kde-kf5 DEPENDS += "qtdeclarative" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "5ac5d11f5edc55d11b4ed81ead58a9bf" -SRC_URI[sha256sum] = "364799922efa153d5bd6c326a8c3311d7170356807be1e67eb4d5135ec62f5ff" +SRC_URI[md5sum] = "958f070cc6d0928dbee067ddca301b59" +SRC_URI[sha256sum] = "47db271ba24904933629ed00f7a4f916a19969967dcfbfd59ae5e98f08f89d68" diff --git a/recipes-kde/kf5/tier1/kitemviews/kitemviews.bb b/recipes-kde/kf5/tier1/kitemviews/kitemviews.bb index 26856736..6beaf0f1 100644 --- a/recipes-kde/kf5/tier1/kitemviews/kitemviews.bb +++ b/recipes-kde/kf5/tier1/kitemviews/kitemviews.bb @@ -8,5 +8,5 @@ LIC_FILES_CHKSUM = " \ inherit kde-kf5 PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "f9ebdaf2965265d0da9ebbc79bbba592" -SRC_URI[sha256sum] = "e43c1479bd5a8c90ba8e396a34299e0a96143ad6cdfd1edef0be5839fb95437f" +SRC_URI[md5sum] = "2ba2ab1e56617c798f359155e44582c6" +SRC_URI[sha256sum] = "0447b361444a853409f65e2fb5650cc95eb799ca54a5d7e15cd6d8ca527002da" diff --git a/recipes-kde/kf5/tier1/kplotting/kplotting.bb b/recipes-kde/kf5/tier1/kplotting/kplotting.bb index 19f75954..7f49f08f 100644 --- a/recipes-kde/kf5/tier1/kplotting/kplotting.bb +++ b/recipes-kde/kf5/tier1/kplotting/kplotting.bb @@ -5,5 +5,5 @@ LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1" inherit kde-kf5 PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "54c6fb70ddd04f37e5f063e8d0960b1b" -SRC_URI[sha256sum] = "75e8c21c2417a65cb423d11e4abd28a93a9cf9e3b2f01695cdedf9ee4b2fa7a0" +SRC_URI[md5sum] = "fe93d2709c8051599af633dda8aabe06" +SRC_URI[sha256sum] = "95781b50bef0e081e48b472b4fcbbcd3301ec45245498261e4a3ec8e42b892ba" diff --git a/recipes-kde/kf5/tier1/kwayland/kwayland.bb b/recipes-kde/kf5/tier1/kwayland/kwayland.bb index 853e30e3..051df953 100644 --- a/recipes-kde/kf5/tier1/kwayland/kwayland.bb +++ b/recipes-kde/kf5/tier1/kwayland/kwayland.bb @@ -9,5 +9,5 @@ inherit kde-kf5 cmake_auto_align_paths DEPENDS += "wayland wayland-native" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "ebd69263c6d65ef59b3a70b7ae2bbae8" -SRC_URI[sha256sum] = "a0645594c2dc7c121b11eecf1c1d31448d110d13dab200caadddb7e1d836d905" +SRC_URI[md5sum] = "fab6a981a5c604d45466bdfce204848f" +SRC_URI[sha256sum] = "42d3bc629710e09074006af288986b00683853660648c9364fb09d49db3f0e07" diff --git a/recipes-kde/kf5/tier1/kwidgetsaddons/kwidgetsaddons.bb b/recipes-kde/kf5/tier1/kwidgetsaddons/kwidgetsaddons.bb index 5ebf0355..2e2fb683 100644 --- a/recipes-kde/kf5/tier1/kwidgetsaddons/kwidgetsaddons.bb +++ b/recipes-kde/kf5/tier1/kwidgetsaddons/kwidgetsaddons.bb @@ -10,5 +10,5 @@ inherit kde-kf5 DEPENDS += "qttools" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "e788ac09828cadec194ebf186156b205" -SRC_URI[sha256sum] = "2e74d3897290c43871836a55ce0dbf4e6f3563f97016827d7ffccf0e5342a39d" +SRC_URI[md5sum] = "706a9a215db46a8e086d63525763ce14" +SRC_URI[sha256sum] = "5abc169f431fba18418f23ff1749414d8318baff868a7b821916cc44508c6891" diff --git a/recipes-kde/kf5/tier1/kwindowsystem/kwindowsystem.bb b/recipes-kde/kf5/tier1/kwindowsystem/kwindowsystem.bb index 922fd65e..e65698b1 100644 --- a/recipes-kde/kf5/tier1/kwindowsystem/kwindowsystem.bb +++ b/recipes-kde/kf5/tier1/kwindowsystem/kwindowsystem.bb @@ -9,8 +9,8 @@ inherit kde-kf5 cmake_auto_align_paths cmake_lib DEPENDS += "${@bb.utils.contains("DISTRO_FEATURES", "x11", "virtual/libx11 qtx11extras libxrender", "", d)}" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "e4ccac16de6c18728219c83528a8ee17" -SRC_URI[sha256sum] = "3bdce23b75b4b1d1eea69fb2035ff5be94ea2c1b7bb3d4e529a9b1740b106315" +SRC_URI[md5sum] = "7f890d4583f0bb3e7f668ea8c8fbfc2d" +SRC_URI[sha256sum] = "17958b612e751e838aa7a0d4f8c7a8a8d83d3f4ace5498fe1f2b8650a2d8f984" CMAKE_ALIGN_SYSROOT[1] = "KF5WindowSystem, -S${includedir}, -s${_IMPORT_PREFIX}/include" diff --git a/recipes-kde/kf5/tier1/modemmanager-qt/modemmanager-qt.bb b/recipes-kde/kf5/tier1/modemmanager-qt/modemmanager-qt.bb index 38bc71c5..3fad160a 100644 --- a/recipes-kde/kf5/tier1/modemmanager-qt/modemmanager-qt.bb +++ b/recipes-kde/kf5/tier1/modemmanager-qt/modemmanager-qt.bb @@ -7,8 +7,8 @@ inherit kde-kf5 pkgconfig cmake_auto_align_paths cmake_lib DEPENDS += "modemmanager" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "43693095957a309dfb210dfb81cfacf1" -SRC_URI[sha256sum] = "461b99099376d1210dad7867627c67b2a64af908a4fca0aeed75fc36059cad4e" +SRC_URI[md5sum] = "b1854ae5022c5a41533f0dcac2ca2cb9" +SRC_URI[sha256sum] = "c9883a3aac7415045a03f0bda435a2a5ff7523538868b72dffa8e4b40e88502a" CMAKE_ALIGN_SYSROOT[1] = "KF5ModemManagerQt, -S${includedir}, -s${_IMPORT_PREFIX}/include" diff --git a/recipes-kde/kf5/tier1/networkmanager-qt/networkmanager-qt.bb b/recipes-kde/kf5/tier1/networkmanager-qt/networkmanager-qt.bb index 7c2a4db4..991d1cad 100644 --- a/recipes-kde/kf5/tier1/networkmanager-qt/networkmanager-qt.bb +++ b/recipes-kde/kf5/tier1/networkmanager-qt/networkmanager-qt.bb @@ -7,8 +7,8 @@ inherit kde-kf5 pkgconfig cmake_auto_align_paths cmake_lib DEPENDS += "networkmanager" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "8242f78a39142afafbfce3b09a1fe974" -SRC_URI[sha256sum] = "fae1d2e36e0c79095cfa3d907c86c47272226a6952ab93139b750f29e9215a65" +SRC_URI[md5sum] = "74814129eed17c2611dfdce10369b965" +SRC_URI[sha256sum] = "1ded63af93957a04292e965ecce06388f183d3adc555b4f3d33337ee15d858c3" CMAKE_ALIGN_SYSROOT[1] = "KF5NetworkManagerQt, -S${includedir}, -s${_IMPORT_PREFIX}/include" CMAKE_ALIGN_SYSROOT[2] = "KF5NetworkManagerQt, -S;${libdir}, -S;${_IMPORT_PREFIX}/${baselib}" diff --git a/recipes-kde/kf5/tier1/oxygen-icons/oxygen-icons5.bb b/recipes-kde/kf5/tier1/oxygen-icons/oxygen-icons5.bb index f76d30e1..e2a62c19 100644 --- a/recipes-kde/kf5/tier1/oxygen-icons/oxygen-icons5.bb +++ b/recipes-kde/kf5/tier1/oxygen-icons/oxygen-icons5.bb @@ -6,8 +6,8 @@ LIC_FILES_CHKSUM = " \ inherit kde-kf5 gtk-icon-cache -SRC_URI[md5sum] = "d8df70afbad34688c65d98894f9f1a85" -SRC_URI[sha256sum] = "dca378431ec83106859736938dcc81156435b71ead564ff7ddfda85311b94e5f" +SRC_URI[md5sum] = "a08326c6e10855f47e5f1b63c31f2f0e" +SRC_URI[sha256sum] = "1ca8f6e42186d069cb4f0581914b147cabc3be3e720c382e77048be134bb1b26" PV = "${KF5_VERSION}" diff --git a/recipes-kde/kf5/tier1/prison/prison.bb b/recipes-kde/kf5/tier1/prison/prison.bb index 11c89b3c..5c52b714 100644 --- a/recipes-kde/kf5/tier1/prison/prison.bb +++ b/recipes-kde/kf5/tier1/prison/prison.bb @@ -11,7 +11,7 @@ DEPENDS += " \ libdmtx \ " -SRC_URI[md5sum] = "e049ed74bc0a048aae9eee0639f06cb1" -SRC_URI[sha256sum] = "1b8149b8965c287f7fddfd91fb1d9cf95f150dda5b70b19480452c2e855945b5" +SRC_URI[md5sum] = "af2125c297606f167ce8b9a182e30526" +SRC_URI[sha256sum] = "9ebab1755e9d7cb01b2aa6e8b63640eb112d8557073423abdb94faecb42d87ab" PV = "${KF5_VERSION}" diff --git a/recipes-kde/kf5/tier1/solid/solid.bb b/recipes-kde/kf5/tier1/solid/solid.bb index f72e150b..48226b58 100644 --- a/recipes-kde/kf5/tier1/solid/solid.bb +++ b/recipes-kde/kf5/tier1/solid/solid.bb @@ -9,8 +9,8 @@ inherit kde-kf5 DEPENDS += "bison-native qtdeclarative" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "08e4b5b41fef66de9fb82d9e44cdfd4f" -SRC_URI[sha256sum] = "bf3dbf22dc63946cf83cd69882f0d5fb8bf938c90252b85c849ef644caebac8a" +SRC_URI[md5sum] = "c9236f64de78c54d148270e85cd15a3d" +SRC_URI[sha256sum] = "c3a032086eacbb836fc102bd77236285ad5a808c0537ff55dbacda539ba3eacf" FILES_${PN} += "${OE_QMAKE_PATH_QML}" diff --git a/recipes-kde/kf5/tier1/sonnet/sonnet.inc b/recipes-kde/kf5/tier1/sonnet/sonnet.inc index f533cbef..14e2373e 100644 --- a/recipes-kde/kf5/tier1/sonnet/sonnet.inc +++ b/recipes-kde/kf5/tier1/sonnet/sonnet.inc @@ -5,5 +5,5 @@ LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1" inherit kde-kf5 PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "2ca92137613156e24367eb3349e0e5b8" -SRC_URI[sha256sum] = "f6734ac4a8dcef69f159ce0810a66ebbc2bdb8f67aac58376e8af35eb7c3dfc3" +SRC_URI[md5sum] = "720d552ccb814fe0038342c8425163f2" +SRC_URI[sha256sum] = "4c8818897ea5dac25e0120acfd4e15c44adf2ee76749870b8f70178f1a3d8b29" diff --git a/recipes-kde/kf5/tier1/syntax-highlighting/files/0001-native-do-not-build-data-and-install-katehighlightin.patch b/recipes-kde/kf5/tier1/syntax-highlighting/files/0001-native-do-not-build-data-and-install-katehighlightin.patch deleted file mode 100644 index cb45fbf8..00000000 --- a/recipes-kde/kf5/tier1/syntax-highlighting/files/0001-native-do-not-build-data-and-install-katehighlightin.patch +++ /dev/null @@ -1,41 +0,0 @@ -From 967a2dc9a0df33091991b1e9405fdeb4d2c078d9 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Andreas=20M=C3=BCller?= -Date: Fri, 6 Oct 2017 21:52:04 +0200 -Subject: [PATCH] native: do not build data and install katehighlightingindexer -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Upstream-Status: Inappropriate [embedded-specific] - -Signed-off-by: Andreas Müller ---- - CMakeLists.txt | 1 - - src/indexer/CMakeLists.txt | 2 ++ - 2 files changed, 2 insertions(+), 1 deletion(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index d503995..17637d1 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -65,7 +65,6 @@ endif() - # Actually build the stuff - # - include_directories(${CMAKE_CURRENT_BINARY_DIR}) --add_subdirectory(data) - add_subdirectory(src) - if(TARGET Qt5::Gui) - add_subdirectory(examples) -diff --git a/src/indexer/CMakeLists.txt b/src/indexer/CMakeLists.txt -index acb1647..a083c5d 100644 ---- a/src/indexer/CMakeLists.txt -+++ b/src/indexer/CMakeLists.txt -@@ -11,3 +11,5 @@ else() - target_link_libraries(katehighlightingindexer Qt5::Core) - endif() - endif() -+ -+install(TARGETS katehighlightingindexer DESTINATION "${CMAKE_INSTALL_BINDIR}") --- -2.9.5 - diff --git a/recipes-kde/kf5/tier1/syntax-highlighting/files/0001-native-install-katehighlightingindexer.patch b/recipes-kde/kf5/tier1/syntax-highlighting/files/0001-native-install-katehighlightingindexer.patch new file mode 100644 index 00000000..864ac2b3 --- /dev/null +++ b/recipes-kde/kf5/tier1/syntax-highlighting/files/0001-native-install-katehighlightingindexer.patch @@ -0,0 +1,28 @@ +From 1f09ebf9e47db90ede7dea36c6b79a6cec65fd92 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Andreas=20M=C3=BCller?= +Date: Sat, 17 Aug 2019 22:34:37 +0200 +Subject: [PATCH] native: install katehighlightingindexer +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Upstream-Status: Inappropriate [embedded-specific] + +Signed-off-by: Andreas Müller +--- + src/indexer/CMakeLists.txt | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/src/indexer/CMakeLists.txt b/src/indexer/CMakeLists.txt +index 9fa26b2..89e549d 100644 +--- a/src/indexer/CMakeLists.txt ++++ b/src/indexer/CMakeLists.txt +@@ -34,3 +34,5 @@ else() + target_link_libraries(katehighlightingindexer Qt5::Core) + endif() + endif() ++ ++install(TARGETS katehighlightingindexer DESTINATION "${CMAKE_INSTALL_BINDIR}") +-- +2.21.0 + diff --git a/recipes-kde/kf5/tier1/syntax-highlighting/syntax-highlighting-native.bb b/recipes-kde/kf5/tier1/syntax-highlighting/syntax-highlighting-native.bb index a6e421ec..03a40c3a 100644 --- a/recipes-kde/kf5/tier1/syntax-highlighting/syntax-highlighting-native.bb +++ b/recipes-kde/kf5/tier1/syntax-highlighting/syntax-highlighting-native.bb @@ -3,7 +3,7 @@ require ${BPN}.inc inherit native SRC_URI += " \ - file://0001-native-do-not-build-data-and-install-katehighlightin.patch \ + file://0001-native-install-katehighlightingindexer.patch \ " EXTRA_OECMAKE += "-DKSYNTAXHIGHLIGHTING_USE_GUI=OFF" diff --git a/recipes-kde/kf5/tier1/syntax-highlighting/syntax-highlighting.inc b/recipes-kde/kf5/tier1/syntax-highlighting/syntax-highlighting.inc index aab930a2..154cbc99 100644 --- a/recipes-kde/kf5/tier1/syntax-highlighting/syntax-highlighting.inc +++ b/recipes-kde/kf5/tier1/syntax-highlighting/syntax-highlighting.inc @@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = " \ inherit kde-kf5 perlnative -SRC_URI[md5sum] = "db65057619ecd72a118e739b8a3d2c63" -SRC_URI[sha256sum] = "45ada4dca20641654a2d076ecb45b9ef78a4aa8032afe54ade33f140cdca504d" +SRC_URI[md5sum] = "4036e7bcb0c3fb6c5907d0efac365234" +SRC_URI[sha256sum] = "475392c03534d7b5301ff2e02461444e463ad4def985da81ad4b315660416721" PV = "${KF5_VERSION}" diff --git a/recipes-kde/kf5/tier1/threadweaver/threadweaver.bb b/recipes-kde/kf5/tier1/threadweaver/threadweaver.bb index db6cf8d6..fdc9b008 100644 --- a/recipes-kde/kf5/tier1/threadweaver/threadweaver.bb +++ b/recipes-kde/kf5/tier1/threadweaver/threadweaver.bb @@ -5,5 +5,5 @@ LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1" inherit kde-kf5 PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "81cfb42e1c9824bf2d7c7f0491bee8dd" -SRC_URI[sha256sum] = "8bf6520e006dadacc82735242500c73810ff3ed4e3053c8352724c9d45f4a122" +SRC_URI[md5sum] = "0be971c196d328f766c6c2b60aae0b21" +SRC_URI[sha256sum] = "e7a0cecfaa60c7a8e4bdd4dfe842fb54a344d331a6c62316c147d8dc2a5e5843" diff --git a/recipes-kde/kf5/tier2/kactivities-stats/kactivities-stats.bb b/recipes-kde/kf5/tier2/kactivities-stats/kactivities-stats.bb index 1c369e60..4deb2054 100644 --- a/recipes-kde/kf5/tier2/kactivities-stats/kactivities-stats.bb +++ b/recipes-kde/kf5/tier2/kactivities-stats/kactivities-stats.bb @@ -20,5 +20,5 @@ DEPENDS += " \ CXXFLAGS += "-DBOOST_DISABLE_ASSERTS" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "620ca68051b8e364e13269cdde122f14" -SRC_URI[sha256sum] = "f7374d1d2fe94bae935796193a62e46ee1963a39e11b183cc0a40baedb973788" +SRC_URI[md5sum] = "f98a2e990aa25b0e56ee0b50f8baf1e8" +SRC_URI[sha256sum] = "9062eb0f189f1b50674e65a7db9a4b821c628acd1ac650000cebbf1f7bdf0068" diff --git a/recipes-kde/kf5/tier2/kauth/kauth.inc b/recipes-kde/kf5/tier2/kauth/kauth.inc index 70c8ee8b..d1af1d2f 100644 --- a/recipes-kde/kf5/tier2/kauth/kauth.inc +++ b/recipes-kde/kf5/tier2/kauth/kauth.inc @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = " \ inherit kde-kf5 PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "00330dac282b372701a3f81de66c2e01" -SRC_URI[sha256sum] = "50a2a2eb90d7529bb6fc4ddd77e37ef5b25c612b18487cc63d8d086d5ec28916" +SRC_URI[md5sum] = "73863244f37c68ff2042fd7039da9480" +SRC_URI[sha256sum] = "b04458f32046b2dd61b48118646180df63d2c843cb2d53560aaa15168df087f1" EXTRA_OECMAKE += "-DAUTOTESTS=OFF" diff --git a/recipes-kde/kf5/tier2/kcompletion/kcompletion.bb b/recipes-kde/kf5/tier2/kcompletion/kcompletion.bb index 65900e92..e6fa1176 100644 --- a/recipes-kde/kf5/tier2/kcompletion/kcompletion.bb +++ b/recipes-kde/kf5/tier2/kcompletion/kcompletion.bb @@ -9,5 +9,5 @@ inherit kde-kf5 DEPENDS += "kconfig kconfig-native kwidgetsaddons" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "30d0925015e0e80de704aef5571d6897" -SRC_URI[sha256sum] = "d5afb075661dfe2da5e300bd73dee89f92736f39859be711f186310bed245f7c" +SRC_URI[md5sum] = "39c8b31802d32fe59bc9487a542bdb18" +SRC_URI[sha256sum] = "68697be65d6c9e0053fc3e504170d23c3162c05a0a9027249c575bc6dc8bd3ec" diff --git a/recipes-kde/kf5/tier2/kcrash/kcrash.bb b/recipes-kde/kf5/tier2/kcrash/kcrash.bb index 4f20fc27..34bf704d 100644 --- a/recipes-kde/kf5/tier2/kcrash/kcrash.bb +++ b/recipes-kde/kf5/tier2/kcrash/kcrash.bb @@ -11,5 +11,5 @@ REQUIRED_DISTRO_FEATURE = "x11" DEPENDS += "kcoreaddons kcoreaddons-native kwindowsystem virtual/libx11" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "1509f9fe4d665ca4c8fd660a3feaf92c" -SRC_URI[sha256sum] = "4f45a5ac0620a0fbf4b983ac3d3e68053a3a0f94bae86076f3bc3ec82ecac299" +SRC_URI[md5sum] = "afd0f85ae16277ab081d4cac99ac2d05" +SRC_URI[sha256sum] = "83e6333ea0cd7d1ded3fa84f126e3c86a010d7bdb7fd183e7c5d42a8b8e74db8" diff --git a/recipes-kde/kf5/tier2/kdoctools/kdoctools.inc b/recipes-kde/kf5/tier2/kdoctools/kdoctools.inc index f182409e..b96b2504 100644 --- a/recipes-kde/kf5/tier2/kdoctools/kdoctools.inc +++ b/recipes-kde/kf5/tier2/kdoctools/kdoctools.inc @@ -11,8 +11,8 @@ inherit kde-kf5 perlnative DEPENDS += "docbook-xml-dtd4 docbook-xsl-stylesheets liburi-perl-native" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "1c4ceaa9e577e0a92890273e09f6b686" -SRC_URI[sha256sum] = "b231ea9857c5c1335fbf1a63907311a136651d93af4a4143e0b4caad833ae834" +SRC_URI[md5sum] = "1857490f170337542bae5cda72f27b85" +SRC_URI[sha256sum] = "e48d8f8f075171c6b83189999a10552c772c6a7e9a115a2643414f9ecec77c6f" # allarch packages do only install into machine sysroot # for xml4 diff --git a/recipes-kde/kf5/tier2/kfilemetadata/files/0001-Revert-extractors-Hide-warnings-from-system-headers.patch b/recipes-kde/kf5/tier2/kfilemetadata/files/0001-Revert-extractors-Hide-warnings-from-system-headers.patch deleted file mode 100644 index 8c70ed34..00000000 --- a/recipes-kde/kf5/tier2/kfilemetadata/files/0001-Revert-extractors-Hide-warnings-from-system-headers.patch +++ /dev/null @@ -1,97 +0,0 @@ -From 0db1a4aa854b5c82230bfcc7f5c939fcc5ed18f5 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Andreas=20M=C3=BCller?= -Date: Sun, 27 May 2018 22:57:40 +0200 -Subject: [PATCH] Revert "extractors: Hide warnings from system headers" -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -This reverts commit b680861aa2ed973eb6694a9dda1c327107323062. - -It causes in OE-builds: - -| In file included from /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/kfilemetadata/5.46.0-r0/recipe-sysroot/usr/include/c++/7.3.0/bits/stl_algo.h:59:0, -| from /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/kfilemetadata/5.46.0-r0/recipe-sysroot/usr/include/c++/7.3.0/algorithm:62, -| from /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/kfilemetadata/5.46.0-r0/recipe-sysroot/usr/include/qt5/QtCore/qglobal.h:109, -| from /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/kfilemetadata/5.46.0-r0/recipe-sysroot/usr/include/qt5/QtCore/qalgorithms.h:43, -| from /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/kfilemetadata/5.46.0-r0/recipe-sysroot/usr/include/qt5/QtCore/qlist.h:43, -| from /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/kfilemetadata/5.46.0-r0/recipe-sysroot/usr/include/qt5/QtCore/qstringlist.h:41, -| from /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/kfilemetadata/5.46.0-r0/recipe-sysroot/usr/include/qt5/QtCore/QStringList:1, -| from /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/kfilemetadata/5.46.0-r0/kfilemetadata-5.46.0/src/extractorplugin.h:24, -| from /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/kfilemetadata/5.46.0-r0/kfilemetadata-5.46.0/src/extractors/exiv2extractor.h:24, -| from /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/kfilemetadata/5.46.0-r0/kfilemetadata-5.46.0/src/extractors/exiv2extractor.cpp:21: -| /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/kfilemetadata/5.46.0-r0/recipe-sysroot/usr/include/c++/7.3.0/cstdlib:75:15: fatal error: stdlib.h: No such file or directory -| #include_next - ^~~~~~~~~~ - -and - -| In file included from /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/kfilemetadata/5.46.0-r0/recipe-sysroot/usr/include/c++/7.3.0/bits/stl_algo.h:59:0, -| from /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/kfilemetadata/5.46.0-r0/recipe-sysroot/usr/include/c++/7.3.0/algorithm:62, -| from /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/kfilemetadata/5.46.0-r0/recipe-sysroot/usr/include/qt5/QtCore/qglobal.h:109, -| from /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/kfilemetadata/5.46.0-r0/recipe-sysroot/usr/include/qt5/QtCore/qalgorithms.h:43, -| from /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/kfilemetadata/5.46.0-r0/recipe-sysroot/usr/include/qt5/QtCore/qlist.h:43, -| from /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/kfilemetadata/5.46.0-r0/recipe-sysroot/usr/include/qt5/QtCore/qstringlist.h:41, -| from /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/kfilemetadata/5.46.0-r0/recipe-sysroot/usr/include/qt5/QtCore/QStringList:1, -| from /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/kfilemetadata/5.46.0-r0/kfilemetadata-5.46.0/src/extractorplugin.h:24, -| from src/extractors/kfilemetadata_exiv2extractor_autogen/EWIEGA46WW/../../../../../kfilemetadata-5.46.0/src/extractors/exiv2extractor.h:24, -| from src/extractors/kfilemetadata_exiv2extractor_autogen/EWIEGA46WW/moc_exiv2extractor.cpp:9, -| from src/extractors/kfilemetadata_exiv2extractor_autogen/mocs_compilation.cpp:2: -| /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/kfilemetadata/5.46.0-r0/recipe-sysroot/usr/include/c++/7.3.0/cstdlib:75:15: fatal error: stdlib.h: No such file or directory -| #include_next - ^~~~~~~~~~ - -Upstream-Status: Pending - -Signed-off-by: Andreas Müller ---- - src/extractors/CMakeLists.txt | 9 +++++---- - 1 file changed, 5 insertions(+), 4 deletions(-) - -diff --git a/src/extractors/CMakeLists.txt b/src/extractors/CMakeLists.txt -index 15399f7..5c9fd60 100644 ---- a/src/extractors/CMakeLists.txt -+++ b/src/extractors/CMakeLists.txt -@@ -16,8 +16,8 @@ if(Poppler_Qt5_FOUND) - endif() - - if(TAGLIB_FOUND) -+ include_directories( ${TAGLIB_INCLUDES} ) - add_library(kfilemetadata_taglibextractor MODULE taglibextractor.cpp ${debug_SRCS}) -- target_include_directories(kfilemetadata_taglibextractor SYSTEM PRIVATE ${TAGLIB_INCLUDES}) - target_link_libraries( kfilemetadata_taglibextractor - KF5::FileMetaData - ${TAGLIB_LIBRARIES} -@@ -45,8 +45,8 @@ if(LibExiv2_FOUND) - endif() - - if(FFMPEG_FOUND) -+ include_directories( ${FFMPEG_INCLUDE_DIRS} ) - add_library(kfilemetadata_ffmpegextractor MODULE ffmpegextractor.cpp) -- target_include_directories(kfilemetadata_ffmpegextractor SYSTEM PRIVATE ${AVCODEC_INCLUDE_DIRS} ${AVFORMAT_INCLUDE_DIRS} ${AVUTIL_INCLUDE_DIRS}) - target_link_libraries(kfilemetadata_ffmpegextractor - KF5::FileMetaData - ${AVCODEC_LIBRARIES} -@@ -63,8 +63,9 @@ endif() - - - if(EPUB_FOUND) -+ include_directories( ${EPUB_INCLUDE_DIR} ) -+ - add_library(kfilemetadata_epubextractor MODULE epubextractor.cpp) -- target_include_directories(kfilemetadata_epubextractor SYSTEM PRIVATE ${EPUB_INCLUDE_DIR}) - target_link_libraries(kfilemetadata_epubextractor - KF5::FileMetaData - ${EPUB_LIBRARIES} -@@ -202,7 +203,7 @@ DESTINATION ${PLUGIN_INSTALL_DIR}/kf5/kfilemetadata) - # - if (QMOBIPOCKET_FOUND) - add_library(kfilemetadata_mobiextractor MODULE mobiextractor.cpp) -- target_include_directories(kfilemetadata_mobiextractor SYSTEM PRIVATE ${QMOBIPOCKET_INCLUDE_DIR}) -+ include_directories(${QMOBIPOCKET_INCLUDE_DIR}) - target_link_libraries(kfilemetadata_mobiextractor - KF5::FileMetaData - ${QMOBIPOCKET_LIBRARIES} --- -2.14.5 - diff --git a/recipes-kde/kf5/tier2/kfilemetadata/files/0002-Do-not-include-taglib-as-system-library.patch b/recipes-kde/kf5/tier2/kfilemetadata/files/0002-Do-not-include-taglib-as-system-library.patch deleted file mode 100644 index e4aaefd7..00000000 --- a/recipes-kde/kf5/tier2/kfilemetadata/files/0002-Do-not-include-taglib-as-system-library.patch +++ /dev/null @@ -1,44 +0,0 @@ -From 5dc359caa176d40245e8b1f7bdc0a0ff6d769383 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Andreas=20M=C3=BCller?= -Date: Mon, 11 Mar 2019 14:14:26 +0100 -Subject: [PATCH] Do not include taglib as system library -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Upstream-Status: Pending - -Signed-off-by: Andreas Müller ---- - src/CMakeLists.txt | 2 +- - src/writers/CMakeLists.txt | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt -index de087a4..62a13e0 100644 ---- a/src/CMakeLists.txt -+++ b/src/CMakeLists.txt -@@ -43,7 +43,7 @@ target_link_libraries(KF5FileMetaData - ) - - if(TAGLIB_FOUND) -- target_include_directories(KF5FileMetaData SYSTEM PRIVATE ${TAGLIB_INCLUDES}) -+ target_include_directories(KF5FileMetaData PRIVATE ${TAGLIB_INCLUDES}) - - target_link_libraries(KF5FileMetaData - PRIVATE -diff --git a/src/writers/CMakeLists.txt b/src/writers/CMakeLists.txt -index a57c123..1e1d2af 100644 ---- a/src/writers/CMakeLists.txt -+++ b/src/writers/CMakeLists.txt -@@ -1,6 +1,6 @@ - if(TAGLIB_FOUND) - add_library(kfilemetadata_taglibwriter MODULE taglibwriter.cpp ${debug_SRCS}) -- target_include_directories(kfilemetadata_taglibwriter SYSTEM PRIVATE ${TAGLIB_INCLUDES}) -+ target_include_directories(kfilemetadata_taglibwriter PRIVATE ${TAGLIB_INCLUDES}) - - target_link_libraries( kfilemetadata_taglibwriter - KF5::FileMetaData --- -2.21.0 - diff --git a/recipes-kde/kf5/tier2/kfilemetadata/kfilemetadata.bb b/recipes-kde/kf5/tier2/kfilemetadata/kfilemetadata.bb index 0114f972..6b38846a 100644 --- a/recipes-kde/kf5/tier2/kfilemetadata/kfilemetadata.bb +++ b/recipes-kde/kf5/tier2/kfilemetadata/kfilemetadata.bb @@ -9,11 +9,8 @@ LIC_FILES_CHKSUM = " \ inherit kde-kf5 pkgconfig gettext PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "a2e12f7d2cfe18ac3c6fee74214f068b" -SRC_URI[sha256sum] = "6d2ddfe0b16d73a139573dd02766825b21b958af16f51682c1f4cb816b3929f8" -SRC_URI += " \ - file://0001-Revert-extractors-Hide-warnings-from-system-headers.patch \ -" +SRC_URI[md5sum] = "911774517abc301a303e2e429c875d74" +SRC_URI[sha256sum] = "15f20af053c71c1e5ba6c6ade90b7cce27645b27ee30f1e6e73038e81a2c958e" # TODO: optionals PACKAGECONFIG (poppler-qt5 / exiv2 / ffmpeg / epub) DEPENDS += " \ diff --git a/recipes-kde/kf5/tier2/kimageformats/kimageformats.bb b/recipes-kde/kf5/tier2/kimageformats/kimageformats.bb index 20ea47e8..ecb8e0f4 100644 --- a/recipes-kde/kf5/tier2/kimageformats/kimageformats.bb +++ b/recipes-kde/kf5/tier2/kimageformats/kimageformats.bb @@ -12,8 +12,8 @@ DEPENDS += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "bd8b91a8a86d438cf8ee28b0012b0d7c" -SRC_URI[sha256sum] = "4e2fd48a2c5b7ee3af0b82bce9aaa0847e840b881bbb307c049bb8c881302635" +SRC_URI[md5sum] = "1d2789d6aebf2eb315a151631056b3a6" +SRC_URI[sha256sum] = "5a81359a043e201b29e205dd93559de077e0317d26712cb1c07e624d76aeb207" FILES_${PN} += " \ ${OE_QMAKE_PATH_PLUGINS} \ diff --git a/recipes-kde/kf5/tier2/kjobwidgets/kjobwidgets.bb b/recipes-kde/kf5/tier2/kjobwidgets/kjobwidgets.bb index fc091ed5..0e6bf517 100644 --- a/recipes-kde/kf5/tier2/kjobwidgets/kjobwidgets.bb +++ b/recipes-kde/kf5/tier2/kjobwidgets/kjobwidgets.bb @@ -10,7 +10,7 @@ DEPENDS += "kcoreaddons kcoreaddons-native kwidgetsaddons \ ${@bb.utils.contains("DISTRO_FEATURES", "x11", "qtx11extras", "", d)}" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "03b511db466b456db8543b8732ecdb8a" -SRC_URI[sha256sum] = "b9d2a044a17eff6ced2cf6c4bd06661a0d64cbeea2b18248cdac4f969ea69353" +SRC_URI[md5sum] = "fa63977264e16079fd69c694ef61122e" +SRC_URI[sha256sum] = "5246c2a230e3b4e9d7ba87c5a6b13b5f96fef6af0d1262f27f91fa0c619cf378" FILES_${PN} += "${datadir}/dbus-1" diff --git a/recipes-kde/kf5/tier2/knotifications/knotifications.bb b/recipes-kde/kf5/tier2/knotifications/knotifications.bb index c0550c0e..2e1ed83e 100644 --- a/recipes-kde/kf5/tier2/knotifications/knotifications.bb +++ b/recipes-kde/kf5/tier2/knotifications/knotifications.bb @@ -22,7 +22,7 @@ DEPENDS += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "95761f0597f907f9b2ba607a5ef6ac4a" -SRC_URI[sha256sum] = "fbed417c689b8abf08e1f29df5094cab55b193ce03483658dfb8cdbea3f2d928" +SRC_URI[md5sum] = "a31859ea6498b2c9df2354c12877f0a9" +SRC_URI[sha256sum] = "f72ce6394465316a5324e38afb07f4f71d5f8e281d09b5cf340246c9905568ac" FILES_${PN} += "${datadir}/dbus-1 ${datadir}/kservicetypes5" diff --git a/recipes-kde/kf5/tier2/kpackage/kpackage.inc b/recipes-kde/kf5/tier2/kpackage/kpackage.inc index 33aa994f..5e1d64aa 100644 --- a/recipes-kde/kf5/tier2/kpackage/kpackage.inc +++ b/recipes-kde/kf5/tier2/kpackage/kpackage.inc @@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = " \ inherit kde-kf5 PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "319f7b14242a54445da1df6c6938fb3d" -SRC_URI[sha256sum] = "18d951c2ae16cfe2765dfec3ff42ce88f4b716b242294690efe8ff727395406d" +SRC_URI[md5sum] = "84eaf54cdb480a108257772a77296514" +SRC_URI[sha256sum] = "8ff82d14fe0dd92ac774d5cd9cd6334b01574f0f5c584266f97359dde5db9a5f" EXTRA_OECMAKE += "-DBUILD_TESTING=OFF" diff --git a/recipes-kde/kf5/tier2/kpty/kpty.bb b/recipes-kde/kf5/tier2/kpty/kpty.bb index 1029941b..bdfc3ae2 100644 --- a/recipes-kde/kf5/tier2/kpty/kpty.bb +++ b/recipes-kde/kf5/tier2/kpty/kpty.bb @@ -10,5 +10,5 @@ inherit kde-kf5 gettext DEPENDS += "kcoreaddons kcoreaddons-native ki18n" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "a3ec717d5460e92e3e40fae3253237d6" -SRC_URI[sha256sum] = "757daec3b77395cdf390b35419972641b2ca18c986b39b98ccf8fb3384547338" +SRC_URI[md5sum] = "33b46dcce54439c3b9d05fff2788abad" +SRC_URI[sha256sum] = "b91a88c00d3387927d1f6886a04e6e5bcc615ee1d0e72f647d51320ebf73471c" diff --git a/recipes-kde/kf5/tier2/kunitconversion/kunitconversion.bb b/recipes-kde/kf5/tier2/kunitconversion/kunitconversion.bb index 5dff9e3b..51804e0f 100644 --- a/recipes-kde/kf5/tier2/kunitconversion/kunitconversion.bb +++ b/recipes-kde/kf5/tier2/kunitconversion/kunitconversion.bb @@ -7,5 +7,5 @@ inherit kde-kf5 gettext DEPENDS += "ki18n" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "c866421ae6caa2de41ba862d5a30b577" -SRC_URI[sha256sum] = "0e377f67b6977787861aba971167aedfaa0e4c023609d505ea2d57357c082a79" +SRC_URI[md5sum] = "5ec7713d7b7d2360903014e628b596bd" +SRC_URI[sha256sum] = "e5ffa3ff954c46b2416823467fcecd37c6ddb8304529703bc9cc3a24b74b6c24" diff --git a/recipes-kde/kf5/tier2/syndication/syndication.bb b/recipes-kde/kf5/tier2/syndication/syndication.bb index 153ba72c..9b0b17a5 100644 --- a/recipes-kde/kf5/tier2/syndication/syndication.bb +++ b/recipes-kde/kf5/tier2/syndication/syndication.bb @@ -12,5 +12,5 @@ DEPENDS += " \ kcodecs \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "09a13fd121a487144178a8384d0106d0" -SRC_URI[sha256sum] = "67bf74432d362af7e7d21984f6915b047b596a8a0ac789cbf724ea7c4f8943d9" +SRC_URI[md5sum] = "fd8a4690fb00e3e627554394d948a1f7" +SRC_URI[sha256sum] = "2803b2960dd23492ad002e0f23563c9f06500ddc144dd0be2e3e0ef2f6c1f576" diff --git a/recipes-kde/kf5/tier3/baloo/baloo.bb b/recipes-kde/kf5/tier3/baloo/baloo.bb index 87d7c1fc..8f7899f4 100644 --- a/recipes-kde/kf5/tier3/baloo/baloo.bb +++ b/recipes-kde/kf5/tier3/baloo/baloo.bb @@ -25,8 +25,8 @@ DEPENDS += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "8d16dc04d79a5a497ad7e5e0db4d49cc" -SRC_URI[sha256sum] = "d96a19ff94caf3e3b10e8d5f165e276829a42a1c70fb8451d70cb3764f06671e" +SRC_URI[md5sum] = "3ef703414987f2e494eee19d101c34e4" +SRC_URI[sha256sum] = "dd559e06237843f51d68eb5001b835037d4b2f6d62b7dc4d040961f9863632f1" SRC_URI += " \ file://0001-fix-build-for-QT_NO_SESSIONMANAGER.patch \ diff --git a/recipes-kde/kf5/tier3/kactivities/kactivities.bb b/recipes-kde/kf5/tier3/kactivities/kactivities.bb index 6a46dad6..afbf42bc 100644 --- a/recipes-kde/kf5/tier3/kactivities/kactivities.bb +++ b/recipes-kde/kf5/tier3/kactivities/kactivities.bb @@ -13,8 +13,8 @@ DEPENDS += "boost kconfig kcoreaddons ki18n kservice kwindowsystem kglobalaccel kauth-native" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "9649a8395c83b28d03f27538cecdde1b" -SRC_URI[sha256sum] = "7703b894c25a576a87c201d41899e793c3c2f89eaa57c1ab71266ae950091883" +SRC_URI[md5sum] = "5a3c59535fd778bc8afd95dae121a957" +SRC_URI[sha256sum] = "0d7d7e5bd68541ad1dcf1f96c7205330cb7b075c6ff0d8b46774e781eff84af5" do_compile_prepend() { # Error: Could not locate service type file kservicetypes5/ "kfileitemactionplugin.desktop" , tried ... diff --git a/recipes-kde/kf5/tier3/kbookmarks/kbookmarks.bb b/recipes-kde/kf5/tier3/kbookmarks/kbookmarks.bb index de8cce2a..7106fe42 100644 --- a/recipes-kde/kf5/tier3/kbookmarks/kbookmarks.bb +++ b/recipes-kde/kf5/tier3/kbookmarks/kbookmarks.bb @@ -10,5 +10,5 @@ DEPENDS += "kconfigwidgets kconfig kiconthemes kxmlgui kconfig-native kcoreaddon kauth-native" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "b8cda472f958016a6701e39bffceba93" -SRC_URI[sha256sum] = "a2b77f0b084211badce2eb90c19e00caf078ab59512c326ed1c90f4a58de0d9f" +SRC_URI[md5sum] = "4f610828fb9aa410fce3f878908bac5b" +SRC_URI[sha256sum] = "24f87ff1acc5f0c257518f67af277b454566e607f82eb09e75b4a6ed02403377" diff --git a/recipes-kde/kf5/tier3/kcmutils/kcmutils.bb b/recipes-kde/kf5/tier3/kcmutils/kcmutils.bb index eed34d6f..a3234f8c 100644 --- a/recipes-kde/kf5/tier3/kcmutils/kcmutils.bb +++ b/recipes-kde/kf5/tier3/kcmutils/kcmutils.bb @@ -10,7 +10,7 @@ DEPENDS += "kitemviews kconfigwidgets kcoreaddons ki18n kiconthemes kservice kxm kdeclarative kcoreaddons-native kauth-native kconfig-native kpackage-native" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "1348201acbc60eb0056f2212bb70c9d9" -SRC_URI[sha256sum] = "22226ca10caedc6021b966a26a45096f30837ca9eedcc97479e30f950abc7b8c" +SRC_URI[md5sum] = "c9f2b551f32221892d746feb9c6fc7f8" +SRC_URI[sha256sum] = "b8b79ef2f4513fbe5e4c61cf4726ed33b95efffabdd512fcc2dcff23c23cdfa7" FILES_${PN} += "${datadir}/kservicetypes5" diff --git a/recipes-kde/kf5/tier3/kconfigwidgets/kconfigwidgets.bb b/recipes-kde/kf5/tier3/kconfigwidgets/kconfigwidgets.bb index 79350394..0229040b 100644 --- a/recipes-kde/kf5/tier3/kconfigwidgets/kconfigwidgets.bb +++ b/recipes-kde/kf5/tier3/kconfigwidgets/kconfigwidgets.bb @@ -11,7 +11,7 @@ DEPENDS += "kauth kconfig kcodecs kguiaddons kwidgetsaddons kdoctools \ gettext-native" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "3a2876bcce59ee0ee3a002223e968d69" -SRC_URI[sha256sum] = "74ad4cf5b2858955e7966bb27f7b7ec38c6ddc7c95aa10ba356ef5775afeede3" +SRC_URI[md5sum] = "ee1cf04225a7478a94442c9b4ee52224" +SRC_URI[sha256sum] = "4cc1e55c5f994abbec03b32bef73bdf54c2613199a446ad63f4ced6e3a0e2165" RDEPENDS_${PN} += "perl" diff --git a/recipes-kde/kf5/tier3/kdeclarative/kdeclarative.bb b/recipes-kde/kf5/tier3/kdeclarative/kdeclarative.bb index b935bae7..9fe7a804 100644 --- a/recipes-kde/kf5/tier3/kdeclarative/kdeclarative.bb +++ b/recipes-kde/kf5/tier3/kdeclarative/kdeclarative.bb @@ -16,7 +16,7 @@ SRC_URI += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "a5771426388ea795994300ec2489e557" -SRC_URI[sha256sum] = "bbfd1438752866352e4fc7cb69b616c7413eb0b765f73777aa52d5063e2eefb4" +SRC_URI[md5sum] = "a2c5065aec2a192d7cfd978cea09be84" +SRC_URI[sha256sum] = "464a77f88cce72c1616654c371068c11d51e484e0de5c0c5e032126d71afedaa" FILES_${PN} += "${OE_QMAKE_PATH_QML}/org/kde" diff --git a/recipes-kde/kf5/tier3/kded/kded.bb b/recipes-kde/kf5/tier3/kded/kded.bb index c7518f3d..ec266811 100644 --- a/recipes-kde/kf5/tier3/kded/kded.bb +++ b/recipes-kde/kf5/tier3/kded/kded.bb @@ -17,8 +17,8 @@ DEPENDS += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "855f272f93f4ee40bbd1755f671258d4" -SRC_URI[sha256sum] = "cd472a852dcb3206b219a46660558ee24b09356d7342ce39b89ab54ea160c388" +SRC_URI[md5sum] = "671f84a09bc489d863a1734043591ae2" +SRC_URI[sha256sum] = "ca970111cb2d0073305a226cc005e2085952c2a02703168a775f954d27d723bc" SRC_URI += "file://0001-hardcode-path-to-kconf_update.patch" FILES_${PN} += "${datadir}/dbus-1 ${datadir}/k*5 ${libdir}/libkdeinit5_kded5.so" diff --git a/recipes-kde/kf5/tier3/kdesignerplugin/files/0001-make-kplotting-and-kdewebkit-support-optional.patch b/recipes-kde/kf5/tier3/kdesignerplugin/files/0001-make-kplotting-and-kdewebkit-support-optional.patch deleted file mode 100644 index deb723da..00000000 --- a/recipes-kde/kf5/tier3/kdesignerplugin/files/0001-make-kplotting-and-kdewebkit-support-optional.patch +++ /dev/null @@ -1,64 +0,0 @@ -From 5eeaf722dd79315f787c85fe72cf7997845760af Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Andreas=20M=C3=BCller?= -Date: Fri, 5 Dec 2014 18:35:38 +0100 -Subject: [PATCH 1/2] make kplotting and kdewebkit support optional -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Upstream-Status: Inappropriate [configuration] - -Signed-off-by: Andreas Müller - ---- - CMakeLists.txt | 20 ++++++++++++++------ - 1 file changed, 14 insertions(+), 6 deletions(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index ed22059..5720f1f 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -31,6 +31,10 @@ find_package(KF5CoreAddons ${KF5_DEP_VERSION} REQUIRED) - find_package(KF5Config ${KF5_DEP_VERSION} REQUIRED) - find_package(KF5DocTools ${KF5_DEP_VERSION}) - -+ -+option(WITH_KPLOTTING "enable KPlotting support" Off) -+option(WITH_KDEWEBKIT "enable KDEWebkit support" Off) -+ - find_package(KF5Completion ${KF5_DEP_VERSION}) - set_package_properties(KF5Completion PROPERTIES TYPE OPTIONAL - PURPOSE "Required to build the Qt Designer plugin for KDE Frameworks widgets") -@@ -51,9 +55,11 @@ find_package(KF5ItemViews ${KF5_DEP_VERSION}) - set_package_properties(KF5ItemViews PROPERTIES TYPE OPTIONAL - PURPOSE "Required to build the Qt Designer plugin for KDE Frameworks widgets") - --find_package(KF5Plotting ${KF5_DEP_VERSION}) --set_package_properties(KF5Plotting PROPERTIES TYPE OPTIONAL -- PURPOSE "Required to build the Qt Designer plugin for KDE Frameworks widgets") -+if(WITH_KPLOTTING) -+ find_package(KF5Plotting ${KF5_DEP_VERSION}) -+ set_package_properties(KF5Plotting PROPERTIES TYPE OPTIONAL -+ PURPOSE "Required to build the Qt Designer plugin for KDE Frameworks widgets") -+endif(WITH_KPLOTTING) - - find_package(KF5TextWidgets ${KF5_DEP_VERSION}) - set_package_properties(KF5TextWidgets PROPERTIES TYPE OPTIONAL -@@ -71,9 +77,11 @@ find_package(KF5Sonnet ${KF5_DEP_VERSION}) - set_package_properties(KF5Sonnet PROPERTIES TYPE OPTIONAL - PURPOSE "Required to build the Qt Designer plugin for KDE Frameworks widgets") - --find_package(KF5WebKit ${KF5_DEP_VERSION}) --set_package_properties(KF5WebKit PROPERTIES TYPE OPTIONAL -- PURPOSE "Required to build the Qt Designer plugin for the KDEWebKit widgets") -+if(WITH_KDEWEBKIT) -+ find_package(KF5WebKit ${KF5_DEP_VERSION}) -+ set_package_properties(KF5WebKit PROPERTIES TYPE OPTIONAL -+ PURPOSE "Required to build the Qt Designer plugin for the KDEWebKit widgets") -+endif(WITH_KDEWEBKIT) - - if(Qt5Designer_FOUND AND KF5Completion_FOUND AND KF5ConfigWidgets_FOUND AND - KF5IconThemes_FOUND AND KF5KIO_FOUND AND KF5ItemViews_FOUND AND KF5Plotting_FOUND --- -1.8.3.1 - diff --git a/recipes-kde/kf5/tier3/kdesignerplugin/files/0002-set-kgendesignerplugin-executable-so-that-it-can-be-.patch b/recipes-kde/kf5/tier3/kdesignerplugin/files/0001-set-kgendesignerplugin-executable-so-that-it-can-be-.patch similarity index 100% rename from recipes-kde/kf5/tier3/kdesignerplugin/files/0002-set-kgendesignerplugin-executable-so-that-it-can-be-.patch rename to recipes-kde/kf5/tier3/kdesignerplugin/files/0001-set-kgendesignerplugin-executable-so-that-it-can-be-.patch diff --git a/recipes-kde/kf5/tier3/kdesignerplugin/kdesignerplugin.bb b/recipes-kde/kf5/tier3/kdesignerplugin/kdesignerplugin.bb index bb100fe2..fa0a4aa7 100644 --- a/recipes-kde/kf5/tier3/kdesignerplugin/kdesignerplugin.bb +++ b/recipes-kde/kf5/tier3/kdesignerplugin/kdesignerplugin.bb @@ -9,6 +9,8 @@ DEPENDS += " \ # optional -> TBD packageconfig DEPENDS += " \ + kauth-native \ + sonnet-native \ kcompletion \ kconfigwidgets \ kiconthemes \ @@ -19,14 +21,10 @@ DEPENDS += " \ kxmlgui \ sonnet \ ki18n \ - kauth-native \ - sonnet-native \ + kplotting \ " -SRC_URI += " \ - file://0001-make-kplotting-and-kdewebkit-support-optional.patch \ - file://0002-set-kgendesignerplugin-executable-so-that-it-can-be-.patch \ -" +SRC_URI += "file://0001-set-kgendesignerplugin-executable-so-that-it-can-be-.patch" PACKAGECONFIG ??= "" PACKAGECONFIG[kplotting] = "-DWITH_KPLOTTING=ON,,kplotting" diff --git a/recipes-kde/kf5/tier3/kdesignerplugin/kdesignerplugin.inc b/recipes-kde/kf5/tier3/kdesignerplugin/kdesignerplugin.inc index 2b0d8b35..109b6b5e 100644 --- a/recipes-kde/kf5/tier3/kdesignerplugin/kdesignerplugin.inc +++ b/recipes-kde/kf5/tier3/kdesignerplugin/kdesignerplugin.inc @@ -7,5 +7,5 @@ inherit kde-kf5 DEPENDS += "qttools kcoreaddons kconfig kdoctools" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "13090edbedfdbf0aa5385b9d5b77240f" -SRC_URI[sha256sum] = "9472332c5a8f7c27d6c581a4f0f4f837d82e2780c1f9b25f2f034afd1d250607" +SRC_URI[md5sum] = "cea06789eb647b75c92f4b6a2f4016ba" +SRC_URI[sha256sum] = "6b204dffbb4897f51143650d75383b5a3ddf4254455e5827d316c7b4ee7b3f33" diff --git a/recipes-kde/kf5/tier3/kdesu/kdesu.bb b/recipes-kde/kf5/tier3/kdesu/kdesu.bb index f6f88740..ba4ee487 100644 --- a/recipes-kde/kf5/tier3/kdesu/kdesu.bb +++ b/recipes-kde/kf5/tier3/kdesu/kdesu.bb @@ -16,5 +16,5 @@ DEPENDS += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "76da218e8eba07af12681ed1ffc31c09" -SRC_URI[sha256sum] = "3a040ae9825738d9b4953086d6c262009dcff877a4ed7e6925e3a34086007687" +SRC_URI[md5sum] = "c471bdb119e220195d8419d5dbe8ee3b" +SRC_URI[sha256sum] = "398e74bdfe695ec2d7b57ce78f9fce3e19bb447a8eb5924441718a8f7384f888" diff --git a/recipes-kde/kf5/tier3/kemoticons/kemoticons.bb b/recipes-kde/kf5/tier3/kemoticons/kemoticons.bb index 8c6c604b..60eb8fe6 100644 --- a/recipes-kde/kf5/tier3/kemoticons/kemoticons.bb +++ b/recipes-kde/kf5/tier3/kemoticons/kemoticons.bb @@ -10,8 +10,8 @@ inherit kde-kf5 gettext DEPENDS += "karchive kconfig kconfig-native kservice kcoreaddons kcoreaddons-native" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "2a846ab3041e4aa90545776f72974ce4" -SRC_URI[sha256sum] = "60e2f227ed7094a0d4d973f7968d4d70b7c9d176dadb45c540541a3d448a5125" +SRC_URI[md5sum] = "3c2c9f857e4f07489c217e22b75ad324" +SRC_URI[sha256sum] = "cfc17de43320fbb353be30ae8d5b448b88da6f83bd23e29d678cd95a4bd7a380" FILES_${PN} += " \ ${datadir}/emoticons \ diff --git a/recipes-kde/kf5/tier3/kglobalaccel/kglobalaccel.bb b/recipes-kde/kf5/tier3/kglobalaccel/kglobalaccel.bb index ad5f48c5..b4496e6d 100644 --- a/recipes-kde/kf5/tier3/kglobalaccel/kglobalaccel.bb +++ b/recipes-kde/kf5/tier3/kglobalaccel/kglobalaccel.bb @@ -16,8 +16,8 @@ DEPENDS += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "0a9f5dad0de04a9667fc636c5cae5637" -SRC_URI[sha256sum] = "660f2b930fd2ea4ad935f37d4e26253a7537ff30cf665ac57a41087dd4c2e805" +SRC_URI[md5sum] = "6ebfee9fe099e3250b47ac59d7c624b2" +SRC_URI[sha256sum] = "ad6bd2648e39854369555dd8a0823b08d9631f3638472627eb80e01d9902150e" FILES_${PN} += " \ ${datadir}/dbus-1 \ diff --git a/recipes-kde/kf5/tier3/kiconthemes/kiconthemes.bb b/recipes-kde/kf5/tier3/kiconthemes/kiconthemes.bb index 19899c62..43a094ee 100644 --- a/recipes-kde/kf5/tier3/kiconthemes/kiconthemes.bb +++ b/recipes-kde/kf5/tier3/kiconthemes/kiconthemes.bb @@ -10,7 +10,7 @@ DEPENDS += "qtsvg ki18n kconfig kconfigwidgets kwidgetsaddons kitemviews gettext kcoreaddons-native kauth-native kconfig-native" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "46d14353205a2f91a25a0bd9d2fbae7d" -SRC_URI[sha256sum] = "054bfdb9129ae8610cad742198e2ad047f3960f810b8153dc28ead76687d9e79" +SRC_URI[md5sum] = "eafb575ee24c3d5856df5d0b5e97ad4e" +SRC_URI[sha256sum] = "341741abd0b8aeeec8a2a87fe781b4ec1ab593563b1c063cdfdccead3706cdd7" FILES_${PN} += "${OE_QMAKE_PATH_PLUGINS}" diff --git a/recipes-kde/kf5/tier3/kinit/kinit.bb b/recipes-kde/kf5/tier3/kinit/kinit.bb index 5fd68950..7ea6154a 100644 --- a/recipes-kde/kf5/tier3/kinit/kinit.bb +++ b/recipes-kde/kf5/tier3/kinit/kinit.bb @@ -23,8 +23,8 @@ DEPENDS += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "4424e0f90e61690f85b282c8f27f81b3" -SRC_URI[sha256sum] = "c8c109e220e8eb812a09d3474439b0f6f6af4d25861322a9494fc206da51afdc" +SRC_URI[md5sum] = "f20ed3efe486b9a6b909ac8adf3c6c38" +SRC_URI[sha256sum] = "1806bba9cc3f4d9c5ed23f49eca30707e8f74a99d35f5022130a46a395f2858f" FILES_${PN} += "${datadir}/dbus-1 ${libdir}/libkdeinit5_klauncher.so" FILES_${PN}-dev = "${libdir}/cmake" diff --git a/recipes-kde/kf5/tier3/kio/kio.bb b/recipes-kde/kf5/tier3/kio/kio.bb index 0350bc61..aa33c97c 100644 --- a/recipes-kde/kf5/tier3/kio/kio.bb +++ b/recipes-kde/kf5/tier3/kio/kio.bb @@ -26,8 +26,8 @@ DEPENDS += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "e1c8bf207ee1721d8537c78a7dc4f166" -SRC_URI[sha256sum] = "be433fcf665679671a2e320556c39b708ed0789271e76ebb6142df058260238d" +SRC_URI[md5sum] = "884e6d240f179851c247ff498b258f45" +SRC_URI[sha256sum] = "1fa35126f8167bdbe029e515d01c8d4b91a07556ce6d5c9418e0ea10d7c2e44e" SRC_URI += "file://0001-Extend-upstream-workaround-for-bug-371721-to-also-co.patch" diff --git a/recipes-kde/kf5/tier3/knewstuff/knewstuff.bb b/recipes-kde/kf5/tier3/knewstuff/knewstuff.bb index 3662352e..425c2014 100644 --- a/recipes-kde/kf5/tier3/knewstuff/knewstuff.bb +++ b/recipes-kde/kf5/tier3/knewstuff/knewstuff.bb @@ -24,8 +24,8 @@ DEPENDS += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "c941d34b251e12edb8dbe2170c5f6806" -SRC_URI[sha256sum] = "64744c6775c839d9d8216c4a81161df5544e113570b4cee8533b5a9b4c7b36f2" +SRC_URI[md5sum] = "1d2e4149a415d9b621edf03addeae55d" +SRC_URI[sha256sum] = "87f8ec030223f5f0e4e39de8407fc0d28542e48e057c1752adb2466c55fe365b" FILES_${PN} += " \ ${OE_QMAKE_PATH_QML}/org/kde/newstuff \ diff --git a/recipes-kde/kf5/tier3/knotifyconfig/knotifyconfig.bb b/recipes-kde/kf5/tier3/knotifyconfig/knotifyconfig.bb index 71d754bb..3d134de9 100644 --- a/recipes-kde/kf5/tier3/knotifyconfig/knotifyconfig.bb +++ b/recipes-kde/kf5/tier3/knotifyconfig/knotifyconfig.bb @@ -21,5 +21,5 @@ DEPENDS += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "7764436e1c48baec765ad6f3ab5cc8e7" -SRC_URI[sha256sum] = "77e78f15226334ffaaa0469c06052cca60a9c18063140f38b9cd6dbf8de8f099" +SRC_URI[md5sum] = "40689423f1452f9d7e05883cce93a7ec" +SRC_URI[sha256sum] = "bbd2260a98f70779415369ca1d99807bc3e57f618024b9663d2a462a74169bee" diff --git a/recipes-kde/kf5/tier3/kparts/kparts.bb b/recipes-kde/kf5/tier3/kparts/kparts.bb index 7330bd12..b1547d82 100644 --- a/recipes-kde/kf5/tier3/kparts/kparts.bb +++ b/recipes-kde/kf5/tier3/kparts/kparts.bb @@ -25,8 +25,8 @@ DEPENDS += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "b905c041765c9a86083765d246bf950f" -SRC_URI[sha256sum] = "6df0c2bf4481716e68d57b0e2040e9c2f0ee66e81309ba594d868026ea9f5ac6" +SRC_URI[md5sum] = "7f01d6ae022e3ae0ea5c77442805394c" +SRC_URI[sha256sum] = "f223b38f34f009bb25511ce7d97c607102cbb0a1bd0253ec1b7d1fe1b7c81436" FILES_${PN} += " \ ${datadir}/k*5 \ diff --git a/recipes-kde/kf5/tier3/kpeople/kpeople.bb b/recipes-kde/kf5/tier3/kpeople/kpeople.bb index fb552b36..11806b24 100644 --- a/recipes-kde/kf5/tier3/kpeople/kpeople.bb +++ b/recipes-kde/kf5/tier3/kpeople/kpeople.bb @@ -14,8 +14,8 @@ DEPENDS += "kcoreaddons \ kitemviews" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "2858ad1992c827e0a362a83f8c1fa775" -SRC_URI[sha256sum] = "ec72c0a0b8e5ee9541eb3d0dedfffc78aee39d54fec91d78adb33243a8b3bd1d" +SRC_URI[md5sum] = "7861b72a4f4d16f49d9a84f956c20386" +SRC_URI[sha256sum] = "549edacd7b63d704dd165bc803ae03f8d9e8c1ba31f8dbaea3f7e12c466b4298" FILES_${PN} += " \ ${datadir}/k*5 \ diff --git a/recipes-kde/kf5/tier3/krunner/krunner.bb b/recipes-kde/kf5/tier3/krunner/krunner.bb index 919dbde8..1d83127e 100644 --- a/recipes-kde/kf5/tier3/krunner/krunner.bb +++ b/recipes-kde/kf5/tier3/krunner/krunner.bb @@ -19,8 +19,8 @@ DEPENDS += "qtdeclarative \ threadweaver" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "ca6908f6051065bb00c6f523af96c9a6" -SRC_URI[sha256sum] = "e0fce95407c52d1769a38a2f95f80637bbedb039b0df702b71c5b191795fdce3" +SRC_URI[md5sum] = "661d9760f81218d7eccd5dda0762e53c" +SRC_URI[sha256sum] = "f32ea603a9bcb9c2e39231f99bfc6079d118eebbf2c72e0818e2a9cd060543be" FILES_${PN} += " \ ${datadir}/k*5 \ diff --git a/recipes-kde/kf5/tier3/kservice/kservice.bb b/recipes-kde/kf5/tier3/kservice/kservice.bb index 3ccafaa0..0dc5decf 100644 --- a/recipes-kde/kf5/tier3/kservice/kservice.bb +++ b/recipes-kde/kf5/tier3/kservice/kservice.bb @@ -21,7 +21,7 @@ DEPENDS += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "eca6ef1e76cba2a00ce9b0f6e6f04d00" -SRC_URI[sha256sum] = "2d891e2781da5a562515ae09f5fb9ebd85ce397631cb217de11cb998e79516f8" +SRC_URI[md5sum] = "83a94d40e694cb32dd5ebe4166dc1c7f" +SRC_URI[sha256sum] = "4489ac4553522bb76604e284338ab37a7a2369eea45dadd96a955fedf8ca99f9" FILES_${PN} += "${datadir}/kservicetypes5" diff --git a/recipes-kde/kf5/tier3/ktexteditor/ktexteditor.bb b/recipes-kde/kf5/tier3/ktexteditor/ktexteditor.bb index 1c3ec2c5..a49658ed 100644 --- a/recipes-kde/kf5/tier3/ktexteditor/ktexteditor.bb +++ b/recipes-kde/kf5/tier3/ktexteditor/ktexteditor.bb @@ -22,8 +22,8 @@ DEPENDS += "qtxmlpatterns \ libgit2" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "46a45573dd2d86e5291d0d1b8f7890c4" -SRC_URI[sha256sum] = "7484dfaa4df868c8193e15cc760b3ce7e8e0948daaa4a1b3ca6b96550041385d" +SRC_URI[md5sum] = "07ea86451c4ddbe097d1e87fa161a0d0" +SRC_URI[sha256sum] = "ae99eacb445f8bc27af379d1ec54e8df4d25f601fc12053bc2928a8c639ad0cb" EXTRA_OECMAKE += "-DBUILD_TESTING=OFF" diff --git a/recipes-kde/kf5/tier3/ktextwidgets/ktextwidgets.bb b/recipes-kde/kf5/tier3/ktextwidgets/ktextwidgets.bb index f5ebc494..4097b9d8 100644 --- a/recipes-kde/kf5/tier3/ktextwidgets/ktextwidgets.bb +++ b/recipes-kde/kf5/tier3/ktextwidgets/ktextwidgets.bb @@ -11,7 +11,7 @@ DEPENDS += "kcompletion kconfig kconfigwidgets ki18n kiconthemes kservice kwidge gettext-native sonnet-native" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "7f3a72982fc9ac89dbe1cf16802b7ec9" -SRC_URI[sha256sum] = "8149a999ca6d2dda523d6047956ca62fd283d71356b84dfd7db6fd1582b5d43e" +SRC_URI[md5sum] = "0906bd87ee084c95c3bb012d1ad4b68f" +SRC_URI[sha256sum] = "a2fddad3dda750ea6bdb104c460e50586946ded3e1f46a8729dbd304016a0b5a" FILES_${PN} += "${datadir}/kservicetypes5" diff --git a/recipes-kde/kf5/tier3/kwallet/kwallet.bb b/recipes-kde/kf5/tier3/kwallet/kwallet.bb index 66e412dd..44fa4120 100644 --- a/recipes-kde/kf5/tier3/kwallet/kwallet.bb +++ b/recipes-kde/kf5/tier3/kwallet/kwallet.bb @@ -26,7 +26,7 @@ DEPENDS += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "e2b8a68528fb27281fea81273401f853" -SRC_URI[sha256sum] = "2ac2186dd7d004b6740cb14e7651ddcb7d74390acb382c9d55874f3a03a8111d" +SRC_URI[md5sum] = "45f80f2454ec9cd7f7f7ec0ffc1a56ce" +SRC_URI[sha256sum] = "628ded35a8f44750a770bf10bba9a763994660923a689eee05f8dfb7e92baec8" FILES_${PN} += "${datadir}" diff --git a/recipes-kde/kf5/tier3/kxmlgui/kxmlgui.bb b/recipes-kde/kf5/tier3/kxmlgui/kxmlgui.bb index f74fe588..6720e339 100644 --- a/recipes-kde/kf5/tier3/kxmlgui/kxmlgui.bb +++ b/recipes-kde/kf5/tier3/kxmlgui/kxmlgui.bb @@ -26,7 +26,7 @@ DEPENDS += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "6839d8333aa4614dcb9cd9b67954cf1b" -SRC_URI[sha256sum] = "c81c2794610add13fd8019031fb40b0d002085d40ba358f6406c54f79581c149" +SRC_URI[md5sum] = "8c95b1077024b1768ae40b6f906b7c6c" +SRC_URI[sha256sum] = "867ff1c3ad464bb6268d00ca290569ef1da7659d3fd2f6349015bc3e2562836b" EXTRA_OECMAKE += "-DBUILD_TESTING=OFF" diff --git a/recipes-kde/kf5/tier3/kxmlrpcclient/kxmlrpcclient.bb b/recipes-kde/kf5/tier3/kxmlrpcclient/kxmlrpcclient.bb index e63961ab..c6d5bd7a 100644 --- a/recipes-kde/kf5/tier3/kxmlrpcclient/kxmlrpcclient.bb +++ b/recipes-kde/kf5/tier3/kxmlrpcclient/kxmlrpcclient.bb @@ -9,5 +9,5 @@ inherit kde-kf5 gettext DEPENDS += "ki18n kio kcoreaddons-native kconfig-native kauth-native" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "d0512509da62c45ebb907cf2e801133b" -SRC_URI[sha256sum] = "e5f3bef626027b3cd84873362a5c6ee26692ee99a394ef9d944741670b1ca322" +SRC_URI[md5sum] = "424f8d787c02dc1c9729171b2c591eb7" +SRC_URI[sha256sum] = "382b4730e4b32c1d300f8fdb6269e40995ec282ebe1cbb044ab1a2b2b68c3a1a" diff --git a/recipes-kde/kf5/tier3/plasma-framework/plasma-framework.bb b/recipes-kde/kf5/tier3/plasma-framework/plasma-framework.bb index 6da2c76c..955e890e 100644 --- a/recipes-kde/kf5/tier3/plasma-framework/plasma-framework.bb +++ b/recipes-kde/kf5/tier3/plasma-framework/plasma-framework.bb @@ -40,8 +40,8 @@ DEPENDS += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "796bac344bf8b8be90cc988131174a95" -SRC_URI[sha256sum] = "96c93ea54d1ce29f930e707ab4b0eafc9e31d022f9939d2bd42b2d884e450141" +SRC_URI[md5sum] = "d40534ff8a7f9abd595e2fcb93374472" +SRC_URI[sha256sum] = "873d604aadbe21ba38cdb12b778d3baf121a54e6155596f0ebee1840138060fe" FILES_${PN} += " \ ${datadir}/kdevappwizard \ diff --git a/recipes-kde/kf5/tier3/purpose/purpose.bb b/recipes-kde/kf5/tier3/purpose/purpose.bb index 131a2931..c6de91f1 100644 --- a/recipes-kde/kf5/tier3/purpose/purpose.bb +++ b/recipes-kde/kf5/tier3/purpose/purpose.bb @@ -6,8 +6,8 @@ LIC_FILES_CHKSUM = " \ inherit kde-kf5 gettext gtk-icon-cache -SRC_URI[md5sum] = "4455d785c8bf317cacf3989f1394fada" -SRC_URI[sha256sum] = "830669315e15a3edbf91130711b604967d1dae2cabb1fa79e0d72866f05b9f0a" +SRC_URI[md5sum] = "008208928903b40a2fdee3e1fcfa4448" +SRC_URI[sha256sum] = "810a660d0a4d6de41e1b4d00fcb039d3b099ceae65ec96261ca8dd1fba458d08" PV = "${KF5_VERSION}" diff --git a/recipes-kde/kf5/tier3/qqc2-desktop-style/qqc2-desktop-style.bb b/recipes-kde/kf5/tier3/qqc2-desktop-style/qqc2-desktop-style.bb index 66649cad..3e836dd0 100644 --- a/recipes-kde/kf5/tier3/qqc2-desktop-style/qqc2-desktop-style.bb +++ b/recipes-kde/kf5/tier3/qqc2-desktop-style/qqc2-desktop-style.bb @@ -18,8 +18,8 @@ DEPENDS += " \ " PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "ffc71a9259281545065468fdedf05f7e" -SRC_URI[sha256sum] = "75e2cf793f1ba6af6592edf910412214a640366e08fea8487f20251a3e535140" +SRC_URI[md5sum] = "50f3acf3668529a5c77ae4d6edf8b7d7" +SRC_URI[sha256sum] = "26042c4f939b94caa559cba3ef171ef7bb1490f57c9907f5e4b30a701659abb4" FILES_${PN} += " \ ${OE_QMAKE_PATH_PLUGINS} \ diff --git a/recipes-kde/kf5/tier4/frameworkintegration/frameworkintegration.bb b/recipes-kde/kf5/tier4/frameworkintegration/frameworkintegration.bb index 99c4e195..9f1690bd 100644 --- a/recipes-kde/kf5/tier4/frameworkintegration/frameworkintegration.bb +++ b/recipes-kde/kf5/tier4/frameworkintegration/frameworkintegration.bb @@ -23,8 +23,8 @@ DEPENDS += " \ RRECCOMENDS_${PN} += "oxygen-fonts" PV = "${KF5_VERSION}" -SRC_URI[md5sum] = "231174e4b7eab864b072f381ee61a08d" -SRC_URI[sha256sum] = "c82600be42b1db398acf4059bde92b3449bb6e52fd0180e66b41060e185e4872" +SRC_URI[md5sum] = "fb69e4769b4958e52213de614f3be5c5" +SRC_URI[sha256sum] = "a1a2bbb15d287b67643750cb5414ceb10c6583861dd5c00118010d409f106efb" FILES_${PN} += " \ ${datadir}/knotifications5 \ diff --git a/recipes-kde/kf5/untier/extra-cmake-modules/extra-cmake-modules.bb b/recipes-kde/kf5/untier/extra-cmake-modules/extra-cmake-modules.bb index 57c45ecf..433cb875 100644 --- a/recipes-kde/kf5/untier/extra-cmake-modules/extra-cmake-modules.bb +++ b/recipes-kde/kf5/untier/extra-cmake-modules/extra-cmake-modules.bb @@ -6,8 +6,8 @@ inherit kde-kf5 DEPENDS = "qttools-native" -SRC_URI[md5sum] = "faa5121d68c6d43f1340c1a1c8254ae4" -SRC_URI[sha256sum] = "2bd9da815de98d5908d3371815df963d305c828f90ba1a076f38543876690248" +SRC_URI[md5sum] = "2f6f98d6c7cfd0d55eecd7516f415193" +SRC_URI[sha256sum] = "a86a3b12c8a540af822131a8d65586d985267b1d642c29b4815b6c7870bc126c" SRC_URI += "file://0001-Temporary-workaround-gold-linker-errors.patch" PV = "${KF5_VERSION}" From 6fa1d6b93771f851b171da4d8157b4e4295e86d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Sat, 17 Aug 2019 23:32:41 +0200 Subject: [PATCH 04/13] mlt: upgrade 6.12.0 -> 6.16.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- recipes-support/mlt/{mlt_6.12.0.bb => mlt_6.16.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename recipes-support/mlt/{mlt_6.12.0.bb => mlt_6.16.0.bb} (93%) diff --git a/recipes-support/mlt/mlt_6.12.0.bb b/recipes-support/mlt/mlt_6.16.0.bb similarity index 93% rename from recipes-support/mlt/mlt_6.12.0.bb rename to recipes-support/mlt/mlt_6.16.0.bb index 17dc90a0..308af1e4 100644 --- a/recipes-support/mlt/mlt_6.12.0.bb +++ b/recipes-support/mlt/mlt_6.16.0.bb @@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = " \ " SRC_URI = "git://github.com/mltframework/mlt.git" -SRCREV = "f608b96d2ae236bfec532d1b354d722b25475f95" +SRCREV = "02bc8795adf708be46b36fa8985e160e2ecf6d7b" S = "${WORKDIR}/git" inherit autotools-brokensep pkgconfig From 5b71e8582707d83d123f25010b8ba8d566e6de0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Sun, 18 Aug 2019 14:36:01 +0200 Subject: [PATCH 05/13] kde-gtk-config: fix build with recent pango MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Set harfbuzz include path explicitly to fix: | /usr/include/pango-1.0/pango/pango-coverage.h:28:10: fatal error: hb.h: No such file |or directory | 28 | #include | | ^~~~~~ Signed-off-by: Andreas Müller --- recipes-kde/plasma/untier/kde-gtk-config/kde-gtk-config.bb | 3 +++ 1 file changed, 3 insertions(+) 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 c582be07..15d1854c 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 @@ -27,6 +27,9 @@ PV = "${PLASMA_VERSION}" SRC_URI[md5sum] = "d57f164978aa8ddaa2029834197cd79c" SRC_URI[sha256sum] = "c271b1caebac0837483af7ae11d2e4786a7770ff85753f1a3da4c8d28681111c" +CFLAGS += "-isystem ${STAGING_INCDIR}/harfbuzz" +CXXFLAGS += "-isystem ${STAGING_INCDIR}/harfbuzz" + FILES_${PN} += " \ ${datadir}/icons \ ${datadir}/kcm-gtk-module \ From 03bd52d5fb3d353a3f060ac34d0f63264ffa78e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Sun, 18 Aug 2019 15:11:58 +0200 Subject: [PATCH 06/13] kexi: fix build with Qt 5.13 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- .../kexi/0003-Fix-build-with-Qt-5.13.patch | 30 +++++++++++++++++++ recipes-kde/apps/calligra/kexi_3.2.0.bb | 1 + 2 files changed, 31 insertions(+) create mode 100644 recipes-kde/apps/calligra/kexi/0003-Fix-build-with-Qt-5.13.patch diff --git a/recipes-kde/apps/calligra/kexi/0003-Fix-build-with-Qt-5.13.patch b/recipes-kde/apps/calligra/kexi/0003-Fix-build-with-Qt-5.13.patch new file mode 100644 index 00000000..568b436e --- /dev/null +++ b/recipes-kde/apps/calligra/kexi/0003-Fix-build-with-Qt-5.13.patch @@ -0,0 +1,30 @@ +From b4e62f10ad907cc3db7adac75e0171e88bb9172d Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Andreas=20M=C3=BCller?= +Date: Sun, 18 Aug 2019 15:10:02 +0200 +Subject: [PATCH] Fix build with Qt 5.13 +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Upstream-Status: Pending + +Signed-off-by: Andreas Müller +--- + src/plugins/forms/widgets/kexidbdatepicker.cpp | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/plugins/forms/widgets/kexidbdatepicker.cpp b/src/plugins/forms/widgets/kexidbdatepicker.cpp +index 1e0692d..c719964 100644 +--- a/src/plugins/forms/widgets/kexidbdatepicker.cpp ++++ b/src/plugins/forms/widgets/kexidbdatepicker.cpp +@@ -24,6 +24,7 @@ + + #include + #include ++#include + + KexiDBDatePicker::KexiDBDatePicker(QWidget *parent) + : KDatePicker(parent) +-- +2.21.0 + diff --git a/recipes-kde/apps/calligra/kexi_3.2.0.bb b/recipes-kde/apps/calligra/kexi_3.2.0.bb index ecfd5325..d5e58f32 100644 --- a/recipes-kde/apps/calligra/kexi_3.2.0.bb +++ b/recipes-kde/apps/calligra/kexi_3.2.0.bb @@ -40,6 +40,7 @@ SRC_URI = " \ ${KDE_MIRROR}/stable/${BPN}/src/${BPN}-${PV}.tar.xz \ file://0001-remove-try_run-by-try_compile-in-breeze-icon-check.patch \ file://0002-Add-missing-include-to-fix-build-with-Qt-5.11.patch \ + file://0003-Fix-build-with-Qt-5.13.patch \ " SRC_URI[md5sum] = "90ac376276be2f5a8f6eca537ca5fd0c" SRC_URI[sha256sum] = "7a813f9ea815a09c1e733d0e7dc879c64eee85f075389e87e6aab99cf0c1c1ff" From eae0eeda3bf210d5a7f5166c6ca07a47a1816c83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Wed, 21 Aug 2019 22:23:30 +0200 Subject: [PATCH 07/13] kde-apps: upgrade 19.04.3 -> 19.08.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- classes/kde-apps.bbclass | 2 +- recipes-kde/apps/analitza/analitza.bb | 4 +-- recipes-kde/apps/ark/ark.bb | 4 +-- .../apps/baloo-widgets/baloo-widgets.bb | 4 +-- recipes-kde/apps/bovo/bovo.bb | 4 +-- .../apps/dolphin-plugins/dolphin-plugins.bb | 4 +-- recipes-kde/apps/dolphin/dolphin.bb | 7 ++-- recipes-kde/apps/dragon/dragon.bb | 4 +-- recipes-kde/apps/filelight/filelight.bb | 4 +-- recipes-kde/apps/granatier/granatier.bb | 4 +-- recipes-kde/apps/gwenview/gwenview.bb | 4 +-- recipes-kde/apps/kalgebra/kalgebra.bb | 4 +-- recipes-kde/apps/kapman/kapman.bb | 4 +-- recipes-kde/apps/kate/kate.bb | 4 +-- recipes-kde/apps/katomic/katomic.bb | 4 +-- recipes-kde/apps/kblocks/kblocks.bb | 4 +-- recipes-kde/apps/kbounce/kbounce.bb | 4 +-- recipes-kde/apps/kbreakout/kbreakout.bb | 4 +-- recipes-kde/apps/kcachegrind/kcachegrind.bb | 4 +-- recipes-kde/apps/kcalc/kcalc.bb | 5 +-- recipes-kde/apps/kcharselect/kcharselect.bb | 4 +-- .../apps/kcolorchooser/kcolorchooser.bb | 4 +-- ...sts.txt-make-MLT_PREFIX-configurable.patch | 10 +++--- recipes-kde/apps/kdenlive/kdenlive.bb | 4 +-- recipes-kde/apps/kdf/kdf.bb | 4 +-- recipes-kde/apps/kdiamond/kdiamond.bb | 4 +-- recipes-kde/apps/kfind/kfind.bb | 4 +-- recipes-kde/apps/khelpcenter/khelpcenter.bb | 4 +-- recipes-kde/apps/kio-extras/kio-extras.bb | 4 +-- recipes-kde/apps/kmag/kmag.bb | 4 +-- recipes-kde/apps/kmahjongg/kmahjongg.bb | 4 +-- recipes-kde/apps/kmines/kmines.bb | 4 +-- recipes-kde/apps/kmix/kmix.bb | 4 +-- recipes-kde/apps/kmplot/kmplot.bb | 4 +-- recipes-kde/apps/kolourpaint/kolourpaint.bb | 4 +-- recipes-kde/apps/konsole/konsole.bb | 5 +-- recipes-kde/apps/kpat/kpat.bb | 4 +-- recipes-kde/apps/kreversi/kreversi.bb | 4 +-- recipes-kde/apps/ksudoku/ksudoku.bb | 4 +-- recipes-kde/apps/ksystemlog/ksystemlog.bb | 4 +-- .../apps/kwalletmanager/kwalletmanager.bb | 4 +-- recipes-kde/apps/kwave/kwave.bb | 4 +-- recipes-kde/apps/libkdcraw/libkdcraw.bb | 4 +-- recipes-kde/apps/libkdegames/libkdegames.bb | 4 +-- recipes-kde/apps/libkexiv2/libkexiv2.bb | 4 +-- recipes-kde/apps/libkmahjongg/libkmahjongg.bb | 4 +-- recipes-kde/apps/lokalize/lokalize.bb | 4 +-- recipes-kde/apps/marble/marble.bb | 4 +-- recipes-kde/apps/minuet/minuet.bb | 5 ++- ...-Do-not-try-to-find-qtquick-compiler.patch | 34 ------------------- recipes-kde/apps/okular/okular.bb | 22 ++++++++---- .../okular/0001-Do-not-build-docs.patch | 33 ++++++++++++++++++ recipes-kde/apps/spectacle/spectacle.bb | 7 ++-- recipes-kde/apps/umbrello/umbrello.bb | 4 +-- 54 files changed, 160 insertions(+), 146 deletions(-) delete mode 100644 recipes-kde/apps/minuet/minuet/0001-Do-not-try-to-find-qtquick-compiler.patch create mode 100644 recipes-kde/apps/okular/okular/0001-Do-not-build-docs.patch diff --git a/classes/kde-apps.bbclass b/classes/kde-apps.bbclass index 73215574..62c9a317 100644 --- a/classes/kde-apps.bbclass +++ b/classes/kde-apps.bbclass @@ -1,6 +1,6 @@ inherit kde-base -KDE_APP_VERSION = "19.04.3" +KDE_APP_VERSION = "19.08.0" SRC_URI = "${KDE_MIRROR}/stable/applications/${PV}/src/${BPN}-${PV}.tar.xz" diff --git a/recipes-kde/apps/analitza/analitza.bb b/recipes-kde/apps/analitza/analitza.bb index 2d1ab681..f40b5ea9 100644 --- a/recipes-kde/apps/analitza/analitza.bb +++ b/recipes-kde/apps/analitza/analitza.bb @@ -15,8 +15,8 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "9cb9bfe7ef6862f97edc20a42efa2d4a" -SRC_URI[sha256sum] = "771cf26918ea09f1597ee95328bdfc1c65b28617b0b312ca609676a718fc2a9e" +SRC_URI[md5sum] = "5df2b3229bd8487cf54c094496f9b823" +SRC_URI[sha256sum] = "516f29f089be92fecf5e17dcf466a9daf8525ec9e594f52f04338603914c2003" FILES_${PN} += " \ ${datadir}/libanalitza \ diff --git a/recipes-kde/apps/ark/ark.bb b/recipes-kde/apps/ark/ark.bb index 5d965dee..07fa985e 100644 --- a/recipes-kde/apps/ark/ark.bb +++ b/recipes-kde/apps/ark/ark.bb @@ -28,8 +28,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "2e0f624437db034abb98d74be083ad14" -SRC_URI[sha256sum] = "a06cc2937aa4ed41bab0a38344164f367b993a80bcd74011e4ab72643bfee8ee" +SRC_URI[md5sum] = "1a4bc737591957d2461328c43d7976eb" +SRC_URI[sha256sum] = "0685285486ca933e3467f35c3d5d4e8633ae80f1e5529f8a4d8257d0b53d9512" SRC_URI += " \ file://0001-fix-build-with-QT_NO_SESSIONMANAGER-set.patch \ " diff --git a/recipes-kde/apps/baloo-widgets/baloo-widgets.bb b/recipes-kde/apps/baloo-widgets/baloo-widgets.bb index ebf3b5b8..771fc899 100644 --- a/recipes-kde/apps/baloo-widgets/baloo-widgets.bb +++ b/recipes-kde/apps/baloo-widgets/baloo-widgets.bb @@ -19,8 +19,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "846e89e3a986015d3dca33383ee7094d" -SRC_URI[sha256sum] = "ee14c03ac8254a0d0680bce856178a2110f0339b9dd5021927c59ff2df90606f" +SRC_URI[md5sum] = "09e74bf5950455b6c236153af3bc5426" +SRC_URI[sha256sum] = "3ef81f74ce6fccd6eaf60e0dfd18fe660ac357e75c4715801da9bb3a203a6008" FILES_${PN} += " \ ${datadir}/kservices5 \ diff --git a/recipes-kde/apps/bovo/bovo.bb b/recipes-kde/apps/bovo/bovo.bb index 19a4d097..fc3b15ad 100644 --- a/recipes-kde/apps/bovo/bovo.bb +++ b/recipes-kde/apps/bovo/bovo.bb @@ -19,8 +19,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "752adc711a8b6d73d0376c7a3089e743" -SRC_URI[sha256sum] = "ee4b2480d51ba768e241faf70fcbe955656840c648e9d81c2a269ccc8558ea35" +SRC_URI[md5sum] = "6ee18909082965333cf6938c2850f28f" +SRC_URI[sha256sum] = "829ecfe3a46bc1c009fea14c5860aa17ea18f36ed33fdc9296c499992aeed466" FILES_${PN} += " \ ${datadir}/kxmlgui5 \ diff --git a/recipes-kde/apps/dolphin-plugins/dolphin-plugins.bb b/recipes-kde/apps/dolphin-plugins/dolphin-plugins.bb index 4c2ee64b..b462c613 100644 --- a/recipes-kde/apps/dolphin-plugins/dolphin-plugins.bb +++ b/recipes-kde/apps/dolphin-plugins/dolphin-plugins.bb @@ -19,8 +19,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "33c734f3e8bbe495cd8622b31ee2a294" -SRC_URI[sha256sum] = "a68e15b71fa35acb190952ef49b2611876317e3bb0420d65d5365bc03feb9542" +SRC_URI[md5sum] = "032a73a5293f47e2e743fc71b34a6d89" +SRC_URI[sha256sum] = "f074aa7151f4b4d9202d90257952638652a1bf09d02699762f346d85b61c5f54" FILES_${PN} += " \ ${datadir}/config.kcfg \ diff --git a/recipes-kde/apps/dolphin/dolphin.bb b/recipes-kde/apps/dolphin/dolphin.bb index 2f59e012..ff149cdf 100644 --- a/recipes-kde/apps/dolphin/dolphin.bb +++ b/recipes-kde/apps/dolphin/dolphin.bb @@ -36,18 +36,21 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "49a0ec82b4dcfa3f61358d8adcfb7828" -SRC_URI[sha256sum] = "67a2b283049591fa0f00304b4da6532e9d59d9dc9067916e0ffe8aa19d93f579" +SRC_URI[md5sum] = "2c9aebc32016b521f62cb73e34c92635" +SRC_URI[sha256sum] = "fd44714541ae7082d4615e441242afdba2d7810a373bfc8c3e64ff5c7db0a0f0" SRC_URI += " \ file://0001-fix-build-for-qtbase-without-session-management.patch \ file://0002-Revert-Make-target_link_libraries-for-kdeinit_dolphi.patch \ " +EXTRA_OECMAKE += "-DBUILD_TESTING=OFF" + FILES_SOLIBSDEV = "${libdir}/libdolphin*${SOLIBSDEV}" FILES_${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/k*5 \ + ${datadir}/kglobalaccel \ ${datadir}/dbus-1 \ ${libdir}/libkdeinit5_dolphin.so \ ${OE_QMAKE_PATH_PLUGINS} \ diff --git a/recipes-kde/apps/dragon/dragon.bb b/recipes-kde/apps/dragon/dragon.bb index 5606e27e..bc5b8403 100644 --- a/recipes-kde/apps/dragon/dragon.bb +++ b/recipes-kde/apps/dragon/dragon.bb @@ -29,8 +29,8 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "2dffe6245eeeed4a713f494d980cc867" -SRC_URI[sha256sum] = "498bbcf3441a32a588568981ee3ad563b6c4fd88b226d1673d83da09901f117a" +SRC_URI[md5sum] = "0b8ac2d21caac785824241d25df3c48f" +SRC_URI[sha256sum] = "3d792f6dfd4a5d8ad7726fa942840ebed2b2bb6f25ec6f68883b83859c21cacc" CXXFLAGS += "-isystem ${STAGING_INCDIR}/phonon4qt5/KDE" diff --git a/recipes-kde/apps/filelight/filelight.bb b/recipes-kde/apps/filelight/filelight.bb index 31c49f1c..b9c4ee3b 100644 --- a/recipes-kde/apps/filelight/filelight.bb +++ b/recipes-kde/apps/filelight/filelight.bb @@ -21,8 +21,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "0a8bb0b2b4842c8dfea74f01b1368cf7" -SRC_URI[sha256sum] = "4ad45db886f06afdff1e5c580261eea18f2c0cf3bcde92ecdc626583641d6c88" +SRC_URI[md5sum] = "317af4cb4e1ba176db4b6a8f049b3c88" +SRC_URI[sha256sum] = "bdd3d32f6666b3d2fa4c614f5f058571c8849484e1ba17a97996680503f8e8e6" SRC_URI += " \ file://0001-fix-build-for-qtbase-build-without-session-support-Q.patch \ " diff --git a/recipes-kde/apps/granatier/granatier.bb b/recipes-kde/apps/granatier/granatier.bb index 09860fa5..e459d790 100644 --- a/recipes-kde/apps/granatier/granatier.bb +++ b/recipes-kde/apps/granatier/granatier.bb @@ -24,8 +24,8 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "de07999e76024dfdbdd279a8695fca0f" -SRC_URI[sha256sum] = "996dafafc4a72cf49748c9e7046267980d5c9639b84c26e85266850dd1a9df21" +SRC_URI[md5sum] = "b90a37729f3650157e0f32759248d72d" +SRC_URI[sha256sum] = "b61bf45df63dc3fb324e1a74ec84ae4f2d58371af88ccd28593b0716673dc00a" FILES_${PN} += " \ ${datadir}/config.kcfg \ diff --git a/recipes-kde/apps/gwenview/gwenview.bb b/recipes-kde/apps/gwenview/gwenview.bb index ea35e3a4..9402a702 100644 --- a/recipes-kde/apps/gwenview/gwenview.bb +++ b/recipes-kde/apps/gwenview/gwenview.bb @@ -25,8 +25,8 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "f7e3454ae17058f33fb55293909bb78b" -SRC_URI[sha256sum] = "1e4c6881674dfcde52a196420eae2fab61dffb05b976125dfbd65c3bf2395035" +SRC_URI[md5sum] = "5ff7266c47db9e5ddbb3aa0e6e34c980" +SRC_URI[sha256sum] = "1d1d4713bcebdd8c7c458c075b7101055c81cf94a802ac8b9b3528a3c3c961a3" SRC_URI += " \ file://0001-Avoid-try_run.patch \ diff --git a/recipes-kde/apps/kalgebra/kalgebra.bb b/recipes-kde/apps/kalgebra/kalgebra.bb index b73b7c26..7d737e2d 100644 --- a/recipes-kde/apps/kalgebra/kalgebra.bb +++ b/recipes-kde/apps/kalgebra/kalgebra.bb @@ -22,8 +22,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "d6bfc95a42e64aaec95c44a5da345d65" -SRC_URI[sha256sum] = "b63904f2fc5609d8c62b18ae5e8b0f917785d9eaf46357a1045a9de89aa129ea" +SRC_URI[md5sum] = "9cebf309ed192c91149bd5195de611a3" +SRC_URI[sha256sum] = "b875b2bfe985e5c595f60fbb146fb4545c34321bb86f7fc04164a23f0bb3e9eb" FILES_${PN} += " \ ${datadir}/icons \ diff --git a/recipes-kde/apps/kapman/kapman.bb b/recipes-kde/apps/kapman/kapman.bb index 374feb06..8b519549 100644 --- a/recipes-kde/apps/kapman/kapman.bb +++ b/recipes-kde/apps/kapman/kapman.bb @@ -26,8 +26,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "123c79331dc9cbd77933da07d757ea37" -SRC_URI[sha256sum] = "6b1810bf946ff84b34b9fd6e913811d0e0a249cad5cb49b7990d742ec2832ca1" +SRC_URI[md5sum] = "3c9728c22c737d9cd69ccf2c6ba8d0e8" +SRC_URI[sha256sum] = "e0e53e60e7af1f0002343969b2ce0ce47e0cd3d7318b44d2827478291c2a9cd4" FILES_${PN} += " \ ${datadir}/kxmlgui5 \ diff --git a/recipes-kde/apps/kate/kate.bb b/recipes-kde/apps/kate/kate.bb index 10e75976..bd403b97 100644 --- a/recipes-kde/apps/kate/kate.bb +++ b/recipes-kde/apps/kate/kate.bb @@ -34,8 +34,8 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "e7e8ab06e23c25df57de0e6893c2d542" -SRC_URI[sha256sum] = "b1dcd45270c0494e97f32f435a943ca27b0bcb23065a9ad2a1fe37e4a81ad9a6" +SRC_URI[md5sum] = "b1fc6858905a84f3c4818b57c67af861" +SRC_URI[sha256sum] = "6acc3172429191ab47722d788f324292ea5ee2f1e419d48c72200579b9b30878" FILES_SOLIBSDEV = "" diff --git a/recipes-kde/apps/katomic/katomic.bb b/recipes-kde/apps/katomic/katomic.bb index 35de8993..b9231ce4 100644 --- a/recipes-kde/apps/katomic/katomic.bb +++ b/recipes-kde/apps/katomic/katomic.bb @@ -27,8 +27,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "a43a3569316362b2da0af0d849cd5211" -SRC_URI[sha256sum] = "e4edc6a0058ed929204b64bb99af294752bc20b1693e5930c2616af45d0587c3" +SRC_URI[md5sum] = "70795d40845ce31ccc6cbbedc159b1f5" +SRC_URI[sha256sum] = "12b2a0e703312159a8a217ddb5e19c9a9bea1825d668dd4377fe8e52101f3c90" SRC_URI += "file://0001-fix-build-for-qtbase-build-without-session-support-Q.patch" FILES_${PN} += " \ diff --git a/recipes-kde/apps/kblocks/kblocks.bb b/recipes-kde/apps/kblocks/kblocks.bb index f5e2f815..12d9249c 100644 --- a/recipes-kde/apps/kblocks/kblocks.bb +++ b/recipes-kde/apps/kblocks/kblocks.bb @@ -22,8 +22,8 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "4f821cbb0b4239db9a54607f53bfef74" -SRC_URI[sha256sum] = "10b350f91978c221c224c42e2f50dc8c2e86e187de8e46258b10cf3799fb4b74" +SRC_URI[md5sum] = "59ac93b9848beadbc3d593bd14e78c84" +SRC_URI[sha256sum] = "3337c6fb57fdb8439e6e6edc0186fec76641196714daa955465e009923573b84" FILES_${PN} += " \ ${datadir}/config.kcfg \ diff --git a/recipes-kde/apps/kbounce/kbounce.bb b/recipes-kde/apps/kbounce/kbounce.bb index 8275b3db..82442807 100644 --- a/recipes-kde/apps/kbounce/kbounce.bb +++ b/recipes-kde/apps/kbounce/kbounce.bb @@ -28,8 +28,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "938ac7773c6e4a5e27c064e1a630ccb0" -SRC_URI[sha256sum] = "9a4ee5257becad72b359cc5985412ba2c4a15a81afe89022f812ec9eda7b5356" +SRC_URI[md5sum] = "0329877af7eb4fec1daff1a5c66c0890" +SRC_URI[sha256sum] = "3df779542c1d74d63e66a4db86210d75e37939f8f29947851b9c76c347856025" SRC_URI += "file://0001-fix-build-with-QT_NO_SESSIONMANAGER-set.patch" FILES_${PN} += " \ diff --git a/recipes-kde/apps/kbreakout/kbreakout.bb b/recipes-kde/apps/kbreakout/kbreakout.bb index a02dc05f..7b2b6b27 100644 --- a/recipes-kde/apps/kbreakout/kbreakout.bb +++ b/recipes-kde/apps/kbreakout/kbreakout.bb @@ -23,8 +23,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "d2b82bde4fe255030817ab3fdd39d0f5" -SRC_URI[sha256sum] = "7ef268806451e3b7ee813b921247257ff1a466ebd3c48b20bfc77ebebef10c9e" +SRC_URI[md5sum] = "89dc5c5bbdfe10d56fea9964bf36c861" +SRC_URI[sha256sum] = "87748c5bda9b7563531e0b0701ec4a745cd95121b9bd426448e5ed476292fdd4" FILES_${PN} += " \ ${datadir}/kxmlgui5 \ diff --git a/recipes-kde/apps/kcachegrind/kcachegrind.bb b/recipes-kde/apps/kcachegrind/kcachegrind.bb index b7a4cfbe..515666da 100644 --- a/recipes-kde/apps/kcachegrind/kcachegrind.bb +++ b/recipes-kde/apps/kcachegrind/kcachegrind.bb @@ -22,8 +22,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "0024dedeb755d142d25c259f3292722b" -SRC_URI[sha256sum] = "856649529f0c19749a2b73125351400f401521664c9044fc33f92a09073d5270" +SRC_URI[md5sum] = "447466379d5a9d30edab30e048532c61" +SRC_URI[sha256sum] = "676dd522eb9976789da17eea1dc103c9c67b6df7bfa70d998e29c0e7dde0608b" FILES_${PN} += " \ ${datadir}/kxmlgui5 \ diff --git a/recipes-kde/apps/kcalc/kcalc.bb b/recipes-kde/apps/kcalc/kcalc.bb index ffcfa565..05bf4f81 100644 --- a/recipes-kde/apps/kcalc/kcalc.bb +++ b/recipes-kde/apps/kcalc/kcalc.bb @@ -9,6 +9,7 @@ inherit kde-apps gettext DEPENDS += "\ gmp \ + mpfr \ kauth-native \ kconfig-native \ kcoreaddons-native \ @@ -22,8 +23,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "5d3f9b88e8396bedf0f2b276ac945157" -SRC_URI[sha256sum] = "42da5439af4f59402d27f2c48d4ee9c68d4a84bfda8d16a5ab9d7ab6bdcc02d5" +SRC_URI[md5sum] = "42b066d7920a5041928ab4da6a76bd70" +SRC_URI[sha256sum] = "58c26a9698bfc9e0d3a5614ab26c53878e87fc601688ad6c5848fbdbc21c4103" FILES_SOLIBSDEV = "" diff --git a/recipes-kde/apps/kcharselect/kcharselect.bb b/recipes-kde/apps/kcharselect/kcharselect.bb index f913a5c5..b3f51fec 100644 --- a/recipes-kde/apps/kcharselect/kcharselect.bb +++ b/recipes-kde/apps/kcharselect/kcharselect.bb @@ -19,5 +19,5 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "686fd0a04fb9fdf57e7065cbd89ccc95" -SRC_URI[sha256sum] = "98ebcf13ec02f490bfeaa1001e46a397163939d75d73cf26cd4707e9aa2a4186" +SRC_URI[md5sum] = "504833fb10fb5f8cac86fe8c6a61fded" +SRC_URI[sha256sum] = "31caf29e82327d7e31badff141dd7d5f179b87e9547c322b074f58bc07063020" diff --git a/recipes-kde/apps/kcolorchooser/kcolorchooser.bb b/recipes-kde/apps/kcolorchooser/kcolorchooser.bb index f9edd4c2..7910edfe 100644 --- a/recipes-kde/apps/kcolorchooser/kcolorchooser.bb +++ b/recipes-kde/apps/kcolorchooser/kcolorchooser.bb @@ -16,8 +16,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "8e8d747892f69d1aa10290449541132b" -SRC_URI[sha256sum] = "f60ee47baaca59b7df8ce58902ae09d44d2cb5b7f3f5ec7b9a401c7f7e3e5ab4" +SRC_URI[md5sum] = "00101a3953d752e1f59e168c42918edd" +SRC_URI[sha256sum] = "bd9fa8940218f686b0a2d8c6fbe38b996646508a1908dd53925c2513f6fd39eb" FILES_${PN} += " \ ${datadir}/icons \ diff --git a/recipes-kde/apps/kdenlive/files/0001-CMakeLists.txt-make-MLT_PREFIX-configurable.patch b/recipes-kde/apps/kdenlive/files/0001-CMakeLists.txt-make-MLT_PREFIX-configurable.patch index b931f385..bdeff02a 100644 --- a/recipes-kde/apps/kdenlive/files/0001-CMakeLists.txt-make-MLT_PREFIX-configurable.patch +++ b/recipes-kde/apps/kdenlive/files/0001-CMakeLists.txt-make-MLT_PREFIX-configurable.patch @@ -1,6 +1,6 @@ From d7cf023376cb834f9becb63f2648c63c5ec3fd12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= -Date: Fri, 19 Apr 2019 14:34:15 +0200 +Date: Sat, 17 Aug 2019 23:17:45 +0200 Subject: [PATCH] CMakeLists.txt: make MLT_PREFIX configurable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 @@ -14,18 +14,18 @@ Signed-off-by: Andreas Müller 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt -index 05ed428..eeb0692 100644 +index ee77dae..29c4efd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt -@@ -77,7 +77,7 @@ if(WIN32) +@@ -76,7 +76,7 @@ if(WIN32) find_package(DrMinGW) set(MLT_PREFIX "..") else() - set(MLT_PREFIX ${MLT_ROOT_DIR}) + set(MLT_PREFIX ${MLT_ROOT_DIR} CACHE STRING "mlt prefix") + find_package(Qt5 OPTIONAL_COMPONENTS WebKitWidgets QUIET) endif() - # Optional deps status -- -2.20.1 +2.21.0 diff --git a/recipes-kde/apps/kdenlive/kdenlive.bb b/recipes-kde/apps/kdenlive/kdenlive.bb index 227a05e6..d23e3059 100644 --- a/recipes-kde/apps/kdenlive/kdenlive.bb +++ b/recipes-kde/apps/kdenlive/kdenlive.bb @@ -38,8 +38,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "fdd0cf780bd1e989c62b58ec217c1763" -SRC_URI[sha256sum] = "c981954ce9759da2878b4c76d97b9bb7aa92fc1f073a9f759142870e287d2a1e" +SRC_URI[md5sum] = "84fa3c806680c8ef72f89fd51ee2df64" +SRC_URI[sha256sum] = "01b60bf58f6818a5ca9aa6e7a79111965700e6948da0bc0edd1184c26fd872e4" SRC_URI += " \ file://0001-CMakeLists.txt-make-MLT_PREFIX-configurable.patch \ diff --git a/recipes-kde/apps/kdf/kdf.bb b/recipes-kde/apps/kdf/kdf.bb index 65b9b340..b92d7426 100644 --- a/recipes-kde/apps/kdf/kdf.bb +++ b/recipes-kde/apps/kdf/kdf.bb @@ -22,8 +22,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "a8a48b1ecf67dd939622f30eccaa1bdf" -SRC_URI[sha256sum] = "4d3d3218cee73238e9be73db131062f186ede393bbe0115e4df633c7d21f2572" +SRC_URI[md5sum] = "821e1086f5283e8d5bbc423aa177609d" +SRC_URI[sha256sum] = "e6effd6aaf08c9bfa649b194313e7719b65a9d53f00570e14d2752ce68d13bfe" FILES_${PN} += " \ ${datadir}/k*5 \ diff --git a/recipes-kde/apps/kdiamond/kdiamond.bb b/recipes-kde/apps/kdiamond/kdiamond.bb index 0c8fdda9..b1bf5575 100644 --- a/recipes-kde/apps/kdiamond/kdiamond.bb +++ b/recipes-kde/apps/kdiamond/kdiamond.bb @@ -26,8 +26,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "ba58531e3a7751f4a3f66932674120a2" -SRC_URI[sha256sum] = "22a567a63dd2bf9006d970e9aa5aeabff94c2ae9c98004bbd6cc35083a995536" +SRC_URI[md5sum] = "bab3f3220243e01923db745d6167ee85" +SRC_URI[sha256sum] = "f37d526610fa0579d5be9de19325ed82e14763c997d9ea026dfcf1068bf2428a" SRC_URI+="file://0001-fix-build-with-QT_NO_SESSIONMANAGER-set.patch" FILES_${PN} += " \ diff --git a/recipes-kde/apps/kfind/kfind.bb b/recipes-kde/apps/kfind/kfind.bb index 09110685..a36d9489 100644 --- a/recipes-kde/apps/kfind/kfind.bb +++ b/recipes-kde/apps/kfind/kfind.bb @@ -21,8 +21,8 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "c57be744e398a89ad1dbe315e3a82b72" -SRC_URI[sha256sum] = "2fcb5af039d976161ed09d87cb7c909bd2854647ea15688203b90dbebc54447f" +SRC_URI[md5sum] = "65a0a93eb67fa7d413f0f61d1db6aff9" +SRC_URI[sha256sum] = "25b7b442600c4e109b0a6f7f09962a4d95d419673f6b64eebf226dcdae8cc6ff" FILES_${PN} += " \ ${datadir}/icons \ diff --git a/recipes-kde/apps/khelpcenter/khelpcenter.bb b/recipes-kde/apps/khelpcenter/khelpcenter.bb index cf609ca2..db409251 100644 --- a/recipes-kde/apps/khelpcenter/khelpcenter.bb +++ b/recipes-kde/apps/khelpcenter/khelpcenter.bb @@ -28,8 +28,8 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "bd290ccc7c0e831f60b86f78ac21215a" -SRC_URI[sha256sum] = "d18e0960859d72d9c2ebf187a9f5b1b65a8c78032e32df0d6eb0cce73921e972" +SRC_URI[md5sum] = "0a10db2a3c8e5b3fcf21c467f7c2b9f4" +SRC_URI[sha256sum] = "36810c12ae5d163738101b0f5f13c03cda03ee4c157f641df0f73105a894644f" SRC_URI += " \ file://0001-fix-build-for-qtbase-without-session-management.patch \ diff --git a/recipes-kde/apps/kio-extras/kio-extras.bb b/recipes-kde/apps/kio-extras/kio-extras.bb index fc852d98..a070c369 100644 --- a/recipes-kde/apps/kio-extras/kio-extras.bb +++ b/recipes-kde/apps/kio-extras/kio-extras.bb @@ -50,8 +50,8 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "f395b9d4079a4ec93993cb9a748a0c1d" -SRC_URI[sha256sum] = "b65cb37a5965782a9eaae80840fdd7e06505aece33cc6774510c65e1fea3f55b" +SRC_URI[md5sum] = "d749392cbfc3e1c28bfc5465f7b209cc" +SRC_URI[sha256sum] = "792a6a6d1ea2457dda10aedc6cefd3518064c8f47c62f9c3c4a508442b83d3cd" # gperf creates hard #line links do_install_prepend() { diff --git a/recipes-kde/apps/kmag/kmag.bb b/recipes-kde/apps/kmag/kmag.bb index c362b826..10537896 100644 --- a/recipes-kde/apps/kmag/kmag.bb +++ b/recipes-kde/apps/kmag/kmag.bb @@ -19,8 +19,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "295d9a8b9b0f6014756258e4170910bd" -SRC_URI[sha256sum] = "4fad3d4414884fa8fb7dcfb27e7cc4207dfe219819ffda75355de5c1b4981e35" +SRC_URI[md5sum] = "4856362e01ae16ae71aab9dd8255c1fc" +SRC_URI[sha256sum] = "7d42c254e62750899e429482c2b6ed3b4b1e8c5a66fbc371eec656421817d0a4" FILES_${PN} += " \ ${datadir}/kxmlgui5 \ diff --git a/recipes-kde/apps/kmahjongg/kmahjongg.bb b/recipes-kde/apps/kmahjongg/kmahjongg.bb index e4b65e37..eadc7ed5 100644 --- a/recipes-kde/apps/kmahjongg/kmahjongg.bb +++ b/recipes-kde/apps/kmahjongg/kmahjongg.bb @@ -23,8 +23,8 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "9e2ba8e9faf27566089c3d2a198021b7" -SRC_URI[sha256sum] = "41bd533bf8d8b1e04451cb3c9165b08f9135603c0085d8b402d0e8e026b8ed00" +SRC_URI[md5sum] = "91bc39b1ded22abcf1584b1d19ef42ad" +SRC_URI[sha256sum] = "f601963d0670639a11c4100ed1f53a0e308f79ddf98e1b4fc6a0a4674e117f22" FILES_${PN} += " \ ${datadir}/config.kcfg \ diff --git a/recipes-kde/apps/kmines/kmines.bb b/recipes-kde/apps/kmines/kmines.bb index 9f1dfabf..7d8ed833 100644 --- a/recipes-kde/apps/kmines/kmines.bb +++ b/recipes-kde/apps/kmines/kmines.bb @@ -23,8 +23,8 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "aab713d72151b9e3cd51e66d1ff12820" -SRC_URI[sha256sum] = "34b23a66121183272a58f2cb38b798cab4f290d9f04546418ddb4b2b20e262a1" +SRC_URI[md5sum] = "fdfa8ba98152383adebc5cb6d523a48f" +SRC_URI[sha256sum] = "290efbc208d2fa6ad5552fe8c0679fd0669f4abf6dc31fafd267bd9444add981" FILES_${PN} += " \ ${datadir}/icons \ diff --git a/recipes-kde/apps/kmix/kmix.bb b/recipes-kde/apps/kmix/kmix.bb index 015848b0..67771329 100644 --- a/recipes-kde/apps/kmix/kmix.bb +++ b/recipes-kde/apps/kmix/kmix.bb @@ -32,8 +32,8 @@ PACKAGECONFIG = "pulseaudio" PACKAGECONFIG[pulseaudio] = ",,pulseaudio" PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "7c6e4b544976dc58beb7234a6874dff0" -SRC_URI[sha256sum] = "d08a0d40fb9a7a3f032f8995dbd9260777119b249669323447fa2575e44e3bf9" +SRC_URI[md5sum] = "5cb21b19501c46b1195c2a8e02773b43" +SRC_URI[sha256sum] = "3d9cf6dcb35ded0091d16f5e9f4cb384ae21ea4065547b52d5f13f199d3d7b08" EXTRA_OECMAKE += "-DKMIX_KF5_BUILD=1" diff --git a/recipes-kde/apps/kmplot/kmplot.bb b/recipes-kde/apps/kmplot/kmplot.bb index 649a0409..7e5d6f3b 100644 --- a/recipes-kde/apps/kmplot/kmplot.bb +++ b/recipes-kde/apps/kmplot/kmplot.bb @@ -23,8 +23,8 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "5681a67279d492b36201ea32458c7712" -SRC_URI[sha256sum] = "8c312235076fdad431fc68dc3e8be18ab8317e8a6efb6e6170958cb7495ab479" +SRC_URI[md5sum] = "51f060f9c71bdcea90fa678c50d1b400" +SRC_URI[sha256sum] = "66384c96ba1e82b32427a873f944d5efa915bb2bf7d9ee886c94f368bd1f5e94" FILES_${PN} += " \ ${datadir}/config.kcfg \ diff --git a/recipes-kde/apps/kolourpaint/kolourpaint.bb b/recipes-kde/apps/kolourpaint/kolourpaint.bb index de8309dc..8a04541d 100644 --- a/recipes-kde/apps/kolourpaint/kolourpaint.bb +++ b/recipes-kde/apps/kolourpaint/kolourpaint.bb @@ -29,8 +29,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "018c63eb5184491d955d8c47feb88553" -SRC_URI[sha256sum] = "7ba4089fe55c870b54ff44bd423eebe50303b0324c4b421589115c4d1d349cac" +SRC_URI[md5sum] = "cf5d22f371c34fbf2a779cc495635406" +SRC_URI[sha256sum] = "00596d813eff27e45de7f51ae411b144ee21a7ae2baf576e248046dbd97e097d" FILES_${PN} += " \ ${datadir}/k*5 \ diff --git a/recipes-kde/apps/konsole/konsole.bb b/recipes-kde/apps/konsole/konsole.bb index 8c8bb45c..50dc8daf 100644 --- a/recipes-kde/apps/konsole/konsole.bb +++ b/recipes-kde/apps/konsole/konsole.bb @@ -40,8 +40,8 @@ DEPENDS += " \ PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "02716a4a9b9b175a499970ff609e1e1c" -SRC_URI[sha256sum] = "20cadcda75a22ce7b4cb19240a16c9b286fa6ed836f352b8b337fb418e9a3b4c" +SRC_URI[md5sum] = "8cb4b9121c05df8150a132ef8b8752c4" +SRC_URI[sha256sum] = "4d495bf42fad1f457282a57f19fe2aece1ddbc88239352f0ebadfbcebf52ad6e" # do not move so-libs to -dev package FILES_SOLIBSDEV = "" @@ -49,6 +49,7 @@ FILES_SOLIBSDEV = "" FILES_${PN} += " \ ${datadir}/k*5 \ ${datadir}/khotkeys \ + ${datadir}/knsrcfiles \ ${OE_QMAKE_PATH_PLUGINS} \ ${libdir}/libkdeinit5_konsole.so \ " diff --git a/recipes-kde/apps/kpat/kpat.bb b/recipes-kde/apps/kpat/kpat.bb index 0c021d01..e2e0bb78 100644 --- a/recipes-kde/apps/kpat/kpat.bb +++ b/recipes-kde/apps/kpat/kpat.bb @@ -27,8 +27,8 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "604e9415aed43b5637c961a858b8641f" -SRC_URI[sha256sum] = "ca9d53d400a2be3ca421d6d916cafeff3b9dcf220e627a1762f96817e952e8e2" +SRC_URI[md5sum] = "10c36ae664d29165afd73dc490445f58" +SRC_URI[sha256sum] = "1d68ac9094ad8f9bf0487daced786508f96ce2a63fd8d9884c2d03960fda9328" FILES_SOLIBSDEV = "" diff --git a/recipes-kde/apps/kreversi/kreversi.bb b/recipes-kde/apps/kreversi/kreversi.bb index 1a0a3d8e..47b29795 100644 --- a/recipes-kde/apps/kreversi/kreversi.bb +++ b/recipes-kde/apps/kreversi/kreversi.bb @@ -30,8 +30,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "0b9e1c4bd35c25ff5c50c25d8aa3ee44" -SRC_URI[sha256sum] = "25325dee759916c803f2c43b8f97152257b0fcb90f9687d4f916c132ae956af4" +SRC_URI[md5sum] = "ccdc91c6337c72cb0797fa80f39aae88" +SRC_URI[sha256sum] = "1dbfcce80813c238d5a9084ffcde828b0abeb7b370cfb1e82b55de75a5f02ba9" SRC_URI+="file://0001-fix-build-with-QT_NO_SESSIONMANAGER-set.patch" FILES_${PN} += " \ diff --git a/recipes-kde/apps/ksudoku/ksudoku.bb b/recipes-kde/apps/ksudoku/ksudoku.bb index 49afdab1..a742c49b 100644 --- a/recipes-kde/apps/ksudoku/ksudoku.bb +++ b/recipes-kde/apps/ksudoku/ksudoku.bb @@ -29,8 +29,8 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "525d91d709aef896a7458f4890f7935c" -SRC_URI[sha256sum] = "608ffcde2d0bad3e2a19d7842c47b41627d009721a4e3161ccf2736f7777e922" +SRC_URI[md5sum] = "7541923b1e7e1bc2083baf5d627279f9" +SRC_URI[sha256sum] = "0f773ce70fbc05f30285b7123c5e28fe241ff56677c5b80c1201238bdbc375f8" FILES_${PN} += " \ ${datadir}/icons \ diff --git a/recipes-kde/apps/ksystemlog/ksystemlog.bb b/recipes-kde/apps/ksystemlog/ksystemlog.bb index 1f1ee84c..93d948cf 100644 --- a/recipes-kde/apps/ksystemlog/ksystemlog.bb +++ b/recipes-kde/apps/ksystemlog/ksystemlog.bb @@ -22,7 +22,7 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "38ee1a06c180604767a00a0245426d68" -SRC_URI[sha256sum] = "7d155c91d57e253c00f038100e136e4bf6eb4d709549d689608ee0026354a965" +SRC_URI[md5sum] = "44acdc44e7258858a14a5781a0712336" +SRC_URI[sha256sum] = "1231a9dd9a697fe2379a93a3a4d5c026aedf70a8f7e14d8a626ef6b782fb4259" FILES_${PN} += "${datadir}/kxmlgui5" diff --git a/recipes-kde/apps/kwalletmanager/kwalletmanager.bb b/recipes-kde/apps/kwalletmanager/kwalletmanager.bb index a10bd7cd..f7f44200 100644 --- a/recipes-kde/apps/kwalletmanager/kwalletmanager.bb +++ b/recipes-kde/apps/kwalletmanager/kwalletmanager.bb @@ -24,8 +24,8 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "7e5a23a14f5100fe686aed1445495a36" -SRC_URI[sha256sum] = "b7eafd7ce252396bba0609d4114f88e0d1956e9f0f7f9703000eadda0cd7cc0e" +SRC_URI[md5sum] = "7ef7eaa7a6d2303936cab9d940582fa3" +SRC_URI[sha256sum] = "aaf6c646cc8e7387dc034636fb94029fc0fda3c7fc89b6b633dc42349fd0a471" SRC_URI += "file://0001-fix-build-with-QT_NO_SESSIONMANAGER-set.patch" FILES_${PN} += " \ diff --git a/recipes-kde/apps/kwave/kwave.bb b/recipes-kde/apps/kwave/kwave.bb index 84ce480d..7fc7b5c3 100644 --- a/recipes-kde/apps/kwave/kwave.bb +++ b/recipes-kde/apps/kwave/kwave.bb @@ -33,8 +33,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "1bada7adce66665afa79e160f95fa057" -SRC_URI[sha256sum] = "dc9ad96a59b4bab1cd8f04401b3d87883cf888711898fdfc20d96113faf92431" +SRC_URI[md5sum] = "6aca4382b837d80724190b69b65f33f6" +SRC_URI[sha256sum] = "60f5408e9a67e934c67332b9a9643513f35946796d1ccf70369e411f804b1043" SRC_URI += "file://0001-FIND_REQUIRED_PROGRAM-is-broken-use-the-tools-direct.patch" # Aagh: To select a soundcard we need to select another type - so keep oss in as dummy diff --git a/recipes-kde/apps/libkdcraw/libkdcraw.bb b/recipes-kde/apps/libkdcraw/libkdcraw.bb index 1df9e398..acbc4d3c 100644 --- a/recipes-kde/apps/libkdcraw/libkdcraw.bb +++ b/recipes-kde/apps/libkdcraw/libkdcraw.bb @@ -13,5 +13,5 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "60710e2329ad24192b660d48910aba1e" -SRC_URI[sha256sum] = "5017a47a76346e183e57617e093d5b61780bf564df55a07d02b1d75e2ff98c2d" +SRC_URI[md5sum] = "897c8a580f6909638242a3b4f410dc18" +SRC_URI[sha256sum] = "5c00a6f28445ba5a45284c3cee0ee3f158ad9e184fea5ee8adc83ac3000b26b1" diff --git a/recipes-kde/apps/libkdegames/libkdegames.bb b/recipes-kde/apps/libkdegames/libkdegames.bb index 70a64167..a872234b 100644 --- a/recipes-kde/apps/libkdegames/libkdegames.bb +++ b/recipes-kde/apps/libkdegames/libkdegames.bb @@ -43,8 +43,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "f9a880d1ee572dabc59572664e5b65c7" -SRC_URI[sha256sum] = "187aa81539113bc6786d861e1f5302fa17533ae1108299bbd1a86be18accfbc4" +SRC_URI[md5sum] = "b18e1dc39fa8daadd9f33e634dc1df88" +SRC_URI[sha256sum] = "cb1135a86b373543410f3eb0677aed033bad2b8ef60130753c699338e0c22d1b" FILES_${PN} += " \ ${datadir}/carddecks \ diff --git a/recipes-kde/apps/libkexiv2/libkexiv2.bb b/recipes-kde/apps/libkexiv2/libkexiv2.bb index c39286ad..0087b3ca 100644 --- a/recipes-kde/apps/libkexiv2/libkexiv2.bb +++ b/recipes-kde/apps/libkexiv2/libkexiv2.bb @@ -13,5 +13,5 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "59c45789f2f42ea879df9e1ddfc8f0f7" -SRC_URI[sha256sum] = "b0c5da0e23e93a218f7e96f98a753b36e2d608e74ac68c687ae868b6de99d1e6" +SRC_URI[md5sum] = "f26ba6f5c79a5d3dfd9e3a25fc0c74e5" +SRC_URI[sha256sum] = "42bb1a8b69efbb4ab8b1d939279d3eb02b2d8030bcb917739f4f61fb5a10db15" diff --git a/recipes-kde/apps/libkmahjongg/libkmahjongg.bb b/recipes-kde/apps/libkmahjongg/libkmahjongg.bb index 46b7bf74..b0811067 100644 --- a/recipes-kde/apps/libkmahjongg/libkmahjongg.bb +++ b/recipes-kde/apps/libkmahjongg/libkmahjongg.bb @@ -19,8 +19,8 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "5bbdad8b4e39f7f52ce90cf51f159932" -SRC_URI[sha256sum] = "995f10fc62c506dbbb31bdab635fd52cb08e03eb09c859353aaf3423f48c7381" +SRC_URI[md5sum] = "2e47bfa260ba644ee1f79595a344f2ad" +SRC_URI[sha256sum] = "b51aea6773b609cc1c3a297e72e15b7b504c2877938030e1afac86319e855694" FILES_${PN} += " \ ${datadir}/kmahjongglib \ diff --git a/recipes-kde/apps/lokalize/lokalize.bb b/recipes-kde/apps/lokalize/lokalize.bb index 54e56b13..09b5a60a 100644 --- a/recipes-kde/apps/lokalize/lokalize.bb +++ b/recipes-kde/apps/lokalize/lokalize.bb @@ -26,8 +26,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "3e195c0a8bbf3405aa1b3f4bb7dcf894" -SRC_URI[sha256sum] = "ec8c552a176d131140273f975958e29f3a476c840cab0c470db072cc850e85c8" +SRC_URI[md5sum] = "d889cf9793a384f18d294dcee03bf37a" +SRC_URI[sha256sum] = "bb51159c803890af82a38e5a4bd4df0895cc34ed68fa8ed3a4c66adafc9ea6b6" FILES_${PN} += " \ ${datadir}/config.kcfg \ diff --git a/recipes-kde/apps/marble/marble.bb b/recipes-kde/apps/marble/marble.bb index 111af78d..dbb3c732 100644 --- a/recipes-kde/apps/marble/marble.bb +++ b/recipes-kde/apps/marble/marble.bb @@ -31,8 +31,8 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "619459aa25428f35cba21599552cbd4d" -SRC_URI[sha256sum] = "b2451d338bf433d5a0211c954f48fb5c6c80fecbb8fa69d604276fecb45fe826" +SRC_URI[md5sum] = "4be2ebbfb45fbc1aa7acd9df4441e2d9" +SRC_URI[sha256sum] = "c1c951a1357c94a61b38f0ae8a1235d194150cd351dbf25d2db3508b22b44cc1" EXTRA_OECMAKE += " \ -DMARBLE_PRI_INSTALL_DIR=${OE_QMAKE_PATH_QT_ARCHDATA}/mkspecs/modules \ diff --git a/recipes-kde/apps/minuet/minuet.bb b/recipes-kde/apps/minuet/minuet.bb index 3d04cadb..9fef2b0e 100644 --- a/recipes-kde/apps/minuet/minuet.bb +++ b/recipes-kde/apps/minuet/minuet.bb @@ -21,9 +21,8 @@ DEPENDS += "\ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "7a64352f3a160726330a5ab6ab486aac" -SRC_URI[sha256sum] = "6d4614b7b42391c8b68627b879f61f59c22942ff1b340a25f75d90e296cdeb33" -SRC_URI += "file://0001-Do-not-try-to-find-qtquick-compiler.patch" +SRC_URI[md5sum] = "abca361f3cc370dea139bc2bbb265a81" +SRC_URI[sha256sum] = "3827a7e8dd3c48e12521fd0aa76eccbeaf9f2627935f19647f2147e87db63554" FILES_${PN} += " \ ${datadir}/kxmlgui5 \ diff --git a/recipes-kde/apps/minuet/minuet/0001-Do-not-try-to-find-qtquick-compiler.patch b/recipes-kde/apps/minuet/minuet/0001-Do-not-try-to-find-qtquick-compiler.patch deleted file mode 100644 index e8d314c9..00000000 --- a/recipes-kde/apps/minuet/minuet/0001-Do-not-try-to-find-qtquick-compiler.patch +++ /dev/null @@ -1,34 +0,0 @@ -From 08d1d50a8e9433a0fe163d7b1251dafc66bcc40e Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Andreas=20M=C3=BCller?= -Date: Fri, 14 Dec 2018 01:41:47 +0100 -Subject: [PATCH] Do not try to find qtquick-compiler -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -we do not have qtdeclarative-native and even if we would: is output target -binary compatible? - -Upstream-Status: Inappropriate [embedded specific] - -Signed-off-by: Andreas Müller ---- - CMakeLists.txt | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index f13838b..9788aeb 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -41,7 +41,7 @@ find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS - Svg - ) - --find_package(Qt5 CONFIG QUIET OPTIONAL_COMPONENTS QuickCompiler) -+#find_package(Qt5 CONFIG QUIET OPTIONAL_COMPONENTS QuickCompiler) - - IF(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Android") - find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS --- -2.14.5 - diff --git a/recipes-kde/apps/okular/okular.bb b/recipes-kde/apps/okular/okular.bb index 574fc0a6..81a03c42 100644 --- a/recipes-kde/apps/okular/okular.bb +++ b/recipes-kde/apps/okular/okular.bb @@ -8,7 +8,15 @@ LIC_FILES_CHKSUM = " \ inherit kde-apps gtk-icon-cache +SRC_URI += "file://0001-Do-not-build-docs.patch" + DEPENDS += " \ + ki18n-native \ + kconfig-native \ + kauth-native \ + kcoreaddons-native \ + kdoctools-native \ + sonnet-native \ libkexiv2 \ qca \ tiff \ @@ -18,16 +26,14 @@ DEPENDS += " \ karchive \ kbookmarks \ kcompletion \ - kconfig-native \ kconfigwidgets \ - kauth-native \ - kcoreaddons-native \ kdbusaddons \ - kdoctools-native \ - sonnet-native \ kiconthemes \ + kirigami2 \ + purpose \ kjs \ kio \ + ki18n \ kparts \ threadweaver \ kwallet \ @@ -36,8 +42,10 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "b4d49701aed98c07801cf171c2094c73" -SRC_URI[sha256sum] = "87ab5ffd852109d549d021b8fe94b9a4de212b2f164e9cc796b144732ff94282" +SRC_URI[md5sum] = "0ff6de9c7dba4580c7f34d47a13b7302" +SRC_URI[sha256sum] = "721a0d02d5ff9277c4a9a13dbde0ede3528eff848622e83abc36d57d9759b3ec" + +EXTRA_OECMAKE += "-DBUILD_TESTING=OFF" FILES_${PN} += " \ ${datadir}/k*5 \ diff --git a/recipes-kde/apps/okular/okular/0001-Do-not-build-docs.patch b/recipes-kde/apps/okular/okular/0001-Do-not-build-docs.patch new file mode 100644 index 00000000..bcd5a249 --- /dev/null +++ b/recipes-kde/apps/okular/okular/0001-Do-not-build-docs.patch @@ -0,0 +1,33 @@ +From eec3c9a96c7302867e68bfdad7f50f5c08d4c047 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Andreas=20M=C3=BCller?= +Date: Wed, 21 Aug 2019 22:14:58 +0200 +Subject: [PATCH] Do not build docs +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +We cannot remove kdoctools from dependencies due to other cmake files looking +for it. + +Upstream-Status: Pendind + +Signed-off-by: Andreas Müller +--- + CMakeLists.txt | 4 +--- + 1 file changed, 1 insertion(+), 3 deletions(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 3a2cad7..b8aeae4 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -483,6 +483,4 @@ install(EXPORT Okular5Targets DESTINATION "${CMAKECONFIG_INSTALL_DIR}" FILE Okul + feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) + + ki18n_install(po) +-if (KF5DocTools_FOUND) +- kdoctools_install(po) +-endif() ++ +-- +2.21.0 + diff --git a/recipes-kde/apps/spectacle/spectacle.bb b/recipes-kde/apps/spectacle/spectacle.bb index ea440b95..46f81fc2 100644 --- a/recipes-kde/apps/spectacle/spectacle.bb +++ b/recipes-kde/apps/spectacle/spectacle.bb @@ -31,11 +31,14 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "3984f30856c12e1e670db9d9ea0de2a9" -SRC_URI[sha256sum] = "bbf2c17298608dc69139f1f0a07de05b724d83cf57e8fe085a376723d83d15d1" +SRC_URI[md5sum] = "417c29a55b8423533041d775e50cc76a" +SRC_URI[sha256sum] = "8ada4f765f81ee496f9fd00b74764690df9c479e343a035e363f7159f93c35a4" FILES_${PN} += " \ ${datadir}/dbus-1 \ ${datadir}/khotkeys \ ${datadir}/knotifications5 \ + ${datadir}/kglobalaccel \ + ${datadir}/kconf_update \ + ${libdir}/kconf_update_bin \ " diff --git a/recipes-kde/apps/umbrello/umbrello.bb b/recipes-kde/apps/umbrello/umbrello.bb index 1ca00c07..33182b77 100644 --- a/recipes-kde/apps/umbrello/umbrello.bb +++ b/recipes-kde/apps/umbrello/umbrello.bb @@ -32,8 +32,8 @@ DEPENDS += " \ " PV = "${KDE_APP_VERSION}" -SRC_URI[md5sum] = "4dd8f5b2b8d172dd98eadd1191168f43" -SRC_URI[sha256sum] = "a507f31087c0103873e78004bc47b632d8cd7cdda2734e342a19da48d0c3780c" +SRC_URI[md5sum] = "65abfc1386bdc435da164de68ea746d9" +SRC_URI[sha256sum] = "8df6e0394670ee3f91f449a3110312a37876d3aa047442ed8439d8b876a6b0e2" EXTRA_OECMAKE += "-DBUILD_KF5=1" From 4cd2243219f462255bcc8505afecb4e0639f154a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Sat, 24 Aug 2019 11:34:54 +0200 Subject: [PATCH 08/13] katomic: add perl to rdeps MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit | ERROR: katomic-19.08.0-r0 do_package_qa: QA Issue: /usr/share/kconf_update/katomic-levelset-upd.pl contained in package katomic requires /usr/bin/perl, but no providers found in RDEPENDS_katomic? [file-rdeps] Signed-off-by: Andreas Müller --- recipes-kde/apps/katomic/katomic.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes-kde/apps/katomic/katomic.bb b/recipes-kde/apps/katomic/katomic.bb index b9231ce4..0697a50d 100644 --- a/recipes-kde/apps/katomic/katomic.bb +++ b/recipes-kde/apps/katomic/katomic.bb @@ -36,3 +36,5 @@ FILES_${PN} += " \ ${datadir}/kconf_update \ ${datadir}/icons \ " + +RDEPENDS_${PN} += "perl" From 6b67e48be4a9275675812046ec94fe2a81318ca0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Sat, 24 Aug 2019 11:44:47 +0200 Subject: [PATCH 09/13] kcachegrind: add perl to rdeps MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit | ERROR: kcachegrind-19.08.0-r0 do_package_qa: QA Issue: /usr/bin/op2calltree contained in package kcachegrind requires /usr/bin/perl, but no providers found in RDEPENDS_kcachegrind? [file-rdeps] Signed-off-by: Andreas Müller --- recipes-kde/apps/kcachegrind/kcachegrind.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes-kde/apps/kcachegrind/kcachegrind.bb b/recipes-kde/apps/kcachegrind/kcachegrind.bb index 515666da..4e729b09 100644 --- a/recipes-kde/apps/kcachegrind/kcachegrind.bb +++ b/recipes-kde/apps/kcachegrind/kcachegrind.bb @@ -30,3 +30,4 @@ FILES_${PN} += " \ " RRECOMMENDS_${PN} += "graphviz" +RDEPENDS_${PN} += "perl" From 878b6f82c180b2adea29aba18aaa257fb095dcc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Sat, 24 Aug 2019 11:57:33 +0200 Subject: [PATCH 10/13] kscreenlocker: add perl to rdeps MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit | ERROR: kscreenlocker-5.16.4-r0 do_package_qa: QA Issue: /usr/share/kconf_update/ksreenlocker_5_3_separate_autologin.pl contained in package kscreenlocker requires /usr/bin/perl, but no providers found in RDEPEND Signed-off-by: Andreas Müller --- recipes-kde/plasma/untier/kscreenlocker/kscreenlocker.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes-kde/plasma/untier/kscreenlocker/kscreenlocker.bb b/recipes-kde/plasma/untier/kscreenlocker/kscreenlocker.bb index a94e743e..94c8d058 100644 --- a/recipes-kde/plasma/untier/kscreenlocker/kscreenlocker.bb +++ b/recipes-kde/plasma/untier/kscreenlocker/kscreenlocker.bb @@ -48,3 +48,5 @@ FILES_${PN} += " \ ${sysconfdir} \ ${OE_QMAKE_PATH_PLUGINS} \ " + +RDEPENDS_${PN} += "perl" From 912252f2a7544172be45e3cf852159ae08a7b7c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Sat, 24 Aug 2019 12:08:33 +0200 Subject: [PATCH 11/13] plasma-pa: add perl to rdeps MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit | ERROR: plasma-pa-5.16.4-r0 do_package_qa: QA Issue: /usr/share/kde4/apps/kconf_update/plasmaVolumeDisableKMixAutostart.pl contained in package plasma-pa requires /usr/bin/perl, but no providers found in RDEPENDS Signed-off-by: Andreas Müller --- recipes-kde/plasma/untier/plasma-pa/plasma-pa.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-kde/plasma/untier/plasma-pa/plasma-pa.bb b/recipes-kde/plasma/untier/plasma-pa/plasma-pa.bb index 7e9240a6..186f3efe 100644 --- a/recipes-kde/plasma/untier/plasma-pa/plasma-pa.bb +++ b/recipes-kde/plasma/untier/plasma-pa/plasma-pa.bb @@ -30,7 +30,7 @@ SRC_URI[sha256sum] = "9b166e11f7115576181c17f0ced51b9a7ec689334d4b15ebb55d4e6e7f FILES_SOLIBSDEV = "" -RDEPENDS_${PN} = "pulseaudio-server" +RDEPENDS_${PN} += "pulseaudio-server perl" FILES_${PN} += " \ ${datadir}/kpackage \ From ea89572081ccfb14aa152aaec7b974daaae367cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Sat, 24 Aug 2019 12:28:56 +0200 Subject: [PATCH 12/13] kio-extras: add perl to rdeps MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit | RROR: kio-extras-19.08.0-r0 do_package_qa: QA Issue: /usr/share/kio_info/kde-info2html contained in package kio-extras requires /usr/bin/perl, but no providers found in RDEPENDS_kio-extras? [file-rdeps] Signed-off-by: Andreas Müller --- recipes-kde/apps/kio-extras/kio-extras.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes-kde/apps/kio-extras/kio-extras.bb b/recipes-kde/apps/kio-extras/kio-extras.bb index a070c369..2b0609bb 100644 --- a/recipes-kde/apps/kio-extras/kio-extras.bb +++ b/recipes-kde/apps/kio-extras/kio-extras.bb @@ -74,3 +74,5 @@ FILES_${PN} += " \ \ ${OE_QMAKE_PATH_PLUGINS} \ " + +RDEPENDS_${PN} += "perl" From fe9cb927ce8f2bde99b0bc272397a3969be6d095 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Sat, 24 Aug 2019 12:58:19 +0200 Subject: [PATCH 13/13] plasma-integration: add perl to rdeps MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit | ERROR: plasma-integration-5.16.4-r0 do_package_qa: QA Issue: /usr/share/kconf_update/fonts_kate.pl contained in package plasma-integration requires /usr/bin/perl, but no providers found in RDEPENDS_plasma-integration? [file-rdeps] Signed-off-by: Andreas Müller --- .../plasma/untier/plasma-integration/plasma-integration.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes-kde/plasma/untier/plasma-integration/plasma-integration.bb b/recipes-kde/plasma/untier/plasma-integration/plasma-integration.bb index 34c1f8da..96b7ed04 100644 --- a/recipes-kde/plasma/untier/plasma-integration/plasma-integration.bb +++ b/recipes-kde/plasma/untier/plasma-integration/plasma-integration.bb @@ -33,3 +33,5 @@ FILES_${PN} += " \ ${datadir}/kconf_update \ ${OE_QMAKE_PATH_PLUGINS} \ " + +RDEPENDS_${PN} += "perl"