diff --git a/classes/cmake_extra_sanity.bbclass b/classes/cmake_extra_sanity.bbclass index 17d31498..f8a10201 100644 --- a/classes/cmake_extra_sanity.bbclass +++ b/classes/cmake_extra_sanity.bbclass @@ -1,15 +1,15 @@ inherit cmake_sysroot -# do_install_append_class-cross does not work so hack -do_install_prepend_class-native() { +# do_install:append:class-cross does not work so hack +do_install:prepend:class-native() { no_staging_check=true } -do_install_prepend_class-nativesdk() { +do_install:prepend:class-nativesdk() { no_staging_check=true } -do_install_append() { +do_install:append() { # avoid strange prefixing seen often old_dir=`pwd` cd ${D} diff --git a/classes/cmake_lib.bbclass b/classes/cmake_lib.bbclass index bffcf3f7..a4e6b4b0 100644 --- a/classes/cmake_lib.bbclass +++ b/classes/cmake_lib.bbclass @@ -42,16 +42,16 @@ # # Native overriding: # -# CMAKE_ALIGN_SYSROOT_class-native[] = ", , " +# CMAKE_ALIGN_SYSROOT:class-native[] = ", , " # # Native extended recipe -> no native alignement: # -# CMAKE_ALIGN_SYSROOT_class-native[] = "ignore" +# CMAKE_ALIGN_SYSROOT:class-native[] = "ignore" # CMAKE_ALIGN_SYSROOT[] = ", , " # # Native extended recipe -> no cross alignement: # -# CMAKE_ALIGN_SYSROOT_class-native[] = ", , " +# CMAKE_ALIGN_SYSROOT:class-native[] = ", , " # CMAKE_ALIGN_SYSROOT[] = "ignore" # @@ -63,7 +63,7 @@ SSTATE_SYSROOT = "${STAGING_DIR}-components/${PACKAGE_ARCH}/${PN}" def get_align_flags(d): ret = {} if bb.data.inherits_class('native', d): - ret = d.getVarFlags("CMAKE_ALIGN_SYSROOT_class-native") or {} + ret = d.getVarFlags("CMAKE_ALIGN_SYSROOT:class-native") or {} if ret == {}: ret = d.getVarFlags("CMAKE_ALIGN_SYSROOT") or {} return ret @@ -95,7 +95,7 @@ python () { # 2. 3. in cmake_sysroot # 4. Handle CMAKE_ALIGN_SYSROOT -python do_populate_sysroot_append() { +python do_populate_sysroot:append() { pn = d.getVar('PN') # parse single parameter in CMAKE_ALIGN_SYSROOT[..] and return array of line strings extracted @@ -201,10 +201,10 @@ python do_populate_sysroot_append() { bb.warn("No cmake replacements performed in %s for CMAKE_ALIGN_SYSROOT[%s]" % (pn, flag)) } -do_populate_sysroot[vardeps] += "CMAKE_ALIGN_SYSROOT CMAKE_ALIGN_SYSROOT_class-native" +do_populate_sysroot[vardeps] += "CMAKE_ALIGN_SYSROOT CMAKE_ALIGN_SYSROOT:class-native" # change of CMAKE_ALIGN_SYSROOT causes configure rerun which currently seems # the only way to force a rebuild at change of CMAKE_ALIGN_SYSROOT for recipes # depending on this recipe -sysroot_cleansstate[vardeps] += "CMAKE_ALIGN_SYSROOT CMAKE_ALIGN_SYSROOT_class-native" +sysroot_cleansstate[vardeps] += "CMAKE_ALIGN_SYSROOT CMAKE_ALIGN_SYSROOT:class-native" diff --git a/classes/cmake_sysroot.bbclass b/classes/cmake_sysroot.bbclass index 171d4eb9..aa0b9a48 100644 --- a/classes/cmake_sysroot.bbclass +++ b/classes/cmake_sysroot.bbclass @@ -4,14 +4,14 @@ CMAKEINSTALLED = "${WORKDIR}/staged_cmake_files" # 1. remove tmp file from last build -python do_populate_sysroot_prepend() { +python do_populate_sysroot:prepend() { tmpfile = d.getVar('CMAKEINSTALLED') if os.path.isfile(tmpfile): os.remove(tmpfile) } # 2. keep cmake files staged to sysroot -sysroot_stage_dir_append() { +sysroot_stage_dir:append() { # avoid doubles causing double replacement for file in `find $dest -name '*.cmake'`; do if ! grep -q "$file" ${CMAKEINSTALLED} ; then diff --git a/classes/kde-apps.bbclass b/classes/kde-apps.bbclass index e7814f94..b89b0118 100644 --- a/classes/kde-apps.bbclass +++ b/classes/kde-apps.bbclass @@ -4,4 +4,4 @@ KDE_APP_VERSION = "21.04.3" SRC_URI = "${KDE_MIRROR}/stable/release-service/${PV}/src/${BPN}-${PV}.tar.xz" -RRECOMMENDS_${PN} += "qtbase-plugins" +RRECOMMENDS:${PN} += "qtbase-plugins" diff --git a/classes/kde-base.bbclass b/classes/kde-base.bbclass index 36039bd5..9207c583 100644 --- a/classes/kde-base.bbclass +++ b/classes/kde-base.bbclass @@ -1,5 +1,5 @@ -DEPENDS_prepend_class-nativesdk = "nativesdk-qtbase " -DEPENDS_prepend_class-target = "qtbase " +DEPENDS:prepend:class-nativesdk = "nativesdk-qtbase " +DEPENDS:prepend:class-target = "qtbase " # Do not pin hard for extra-cmake-modules itself DEPENDS+= "extra-cmake-modules-native " @@ -24,11 +24,11 @@ inherit cmake_qt5_extra python3native DEPENDS += "libxml2-native" -do_compile_prepend() { +do_compile:prepend() { export XDG_DATA_HOME=${STAGING_DATADIR} } -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kf5 \ ${datadir}/qlogging-categories5 \ ${libdir}/plugins/kf5 \ @@ -45,9 +45,9 @@ EXTRA_OECMAKE += " \ -DKDE_PATH_EXTERNAL_HOST_BINS=${STAGING_BINDIR_NATIVE} \ " -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/appdata \ ${datadir}/metainfo \ " -FILES_${PN}-dev += "${OE_QMAKE_PATH_QT_ARCHDATA}/mkspecs" +FILES:${PN}-dev += "${OE_QMAKE_PATH_QT_ARCHDATA}/mkspecs" diff --git a/classes/qt5-translation.bbclass b/classes/qt5-translation.bbclass index edd95423..576bbded 100644 --- a/classes/qt5-translation.bbclass +++ b/classes/qt5-translation.bbclass @@ -5,7 +5,7 @@ DEPENDS += "qttools-native" # default location QT_TRANSLATION_FILES ??= "${datadir}/*/translations/*.qm ${datadir}/*/translations/*/*.qm ${datadir}/*/translations/*/*/*.qm" -FILES_${PN}-locale = "${datadir}/*/translations" +FILES:${PN}-locale = "${datadir}/*/translations" python qt_do_split_locales() { import glob @@ -53,16 +53,16 @@ python qt_do_split_locales() { files = '' for transvar in d.getVar('QT_TRANSLATION_FILES').split(): files = '%s %s' % (files, transvar.replace('*.qm', '*_%s.qm' % l)) - d.setVar('FILES_' + pkg, files ) - d.setVar('RRECOMMENDS_' + pkg, '%svirtual-locale-%s' % (mlprefix, ln)) - d.setVar('RPROVIDES_' + pkg, '%s-locale %s%s-translation' % (pn, mlprefix, ln)) - d.setVar('SUMMARY_' + pkg, '%s - %s translations' % (summary, l)) - d.setVar('DESCRIPTION_' + pkg, '%s This package contains language translation files for the %s locale.' % (description, l)) + d.setVar('FILES:' + pkg, files ) + d.setVar('RRECOMMENDS:' + pkg, '%svirtual-locale-%s' % (mlprefix, ln)) + d.setVar('RPROVIDES:' + pkg, '%s-locale %s%s-translation' % (pn, mlprefix, ln)) + d.setVar('SUMMARY:' + pkg, '%s - %s translations' % (summary, l)) + d.setVar('DESCRIPTION:' + pkg, '%s This package contains language translation files for the %s locale.' % (description, l)) if locale_section: - d.setVar('SECTION_' + pkg, locale_section) + d.setVar('SECTION:' + pkg, locale_section) d.setVar('PACKAGES', ' '.join(list(packages))) } -PACKAGESPLITFUNCS_prepend = "qt_do_split_locales " +PACKAGESPLITFUNCS:prepend = "qt_do_split_locales " diff --git a/extends-meta-oe/poppler_%.bbappend b/extends-meta-oe/poppler_%.bbappend index 62458dc2..530bd529 100644 --- a/extends-meta-oe/poppler_%.bbappend +++ b/extends-meta-oe/poppler_%.bbappend @@ -1,3 +1,3 @@ -PACKAGECONFIG_append = " qt5" +PACKAGECONFIG:append = " qt5" inherit cmake_qt5 diff --git a/extends-meta-qt5/qt5-creator_git.bbappend b/extends-meta-qt5/qt5-creator_git.bbappend index 52ee51da..226cd9c6 100644 --- a/extends-meta-qt5/qt5-creator_git.bbappend +++ b/extends-meta-qt5/qt5-creator_git.bbappend @@ -1,5 +1,5 @@ inherit cmake_extra_sanity # yeah I know yocto does not want us to change this -PACKAGECONFIG_append = " ${@bb.utils.contains('BBFILE_COLLECTIONS', 'clang-layer', ' clang', '', d)}" +PACKAGECONFIG:append = " ${@bb.utils.contains('BBFILE_COLLECTIONS', 'clang-layer', ' clang', '', d)}" diff --git a/extends-meta-qt5/qtbase-native_git.bbappend b/extends-meta-qt5/qtbase-native_git.bbappend index 98d8b0c2..939b8f40 100644 --- a/extends-meta-qt5/qtbase-native_git.bbappend +++ b/extends-meta-qt5/qtbase-native_git.bbappend @@ -1,9 +1,9 @@ -FILESEXTRAPATHS_prepend := "${THISDIR}/${BPN}:" +FILESEXTRAPATHS:prepend := "${THISDIR}/${BPN}:" # avoid that our sanity check complains about sysroot in created comments SRC_URI += "file://0002-qdbusxml2cpp-prepare-commandline-string-manipulation.patch" -do_configure_append() { +do_configure:append() { # strCmdLine.replace(QString("STRING_FULL_PATH"), QString("STRING_PATH")); sed -i 's:STRING_FULL_PATH:${TMPDIR}:g' ${S}/src/tools/qdbusxml2cpp/qdbusxml2cpp.cpp sed -i 's:STRING_PATH::g' ${S}/src/tools/qdbusxml2cpp/qdbusxml2cpp.cpp diff --git a/extends-meta-qt5/qtbase_git.bbappend b/extends-meta-qt5/qtbase_git.bbappend index 60c7d39c..c21382e5 100644 --- a/extends-meta-qt5/qtbase_git.bbappend +++ b/extends-meta-qt5/qtbase_git.bbappend @@ -1,4 +1,4 @@ -FILESEXTRAPATHS_prepend := "${THISDIR}/${BPN}:" +FILESEXTRAPATHS:prepend := "${THISDIR}/${BPN}:" PACKAGECONFIG_FONTS = "fontconfig" @@ -14,7 +14,7 @@ PACKAGECONFIG_GL_use-mainline-bsp = "${QT5_EXTRA_QTBASE_IMX_MAINLINE_GL} gbm kms # override QT5_EXTRA_QTBASE_IMX_MAINLINE_GL with 'gles2' QT5_EXTRA_QTBASE_IMX_MAINLINE_GL ??= "" -PACKAGECONFIG_DISTRO_append = " \ +PACKAGECONFIG_DISTRO:append = " \ sm \ accessibility \ sql-sqlite \ diff --git a/extends-meta-qt5/qttools_git.bbappend b/extends-meta-qt5/qttools_git.bbappend index 95cded3f..42e33bed 100644 --- a/extends-meta-qt5/qttools_git.bbappend +++ b/extends-meta-qt5/qttools_git.bbappend @@ -4,17 +4,17 @@ DEPENDS += "${BPN}-native" # It's really time for us to publish cmake_lib.bbclass -SRC_URI_remove = " \ +SRC_URI:remove = " \ file://0002-linguist-tools-cmake-allow-overriding-the-location-f.patch \ " # native ignore -CMAKE_ALIGN_SYSROOT_class-native[1] = "ignore" -CMAKE_ALIGN_SYSROOT_class-nativesdk[1] = "ignore" +CMAKE_ALIGN_SYSROOT:class-native[1] = "ignore" +CMAKE_ALIGN_SYSROOT:class-nativesdk[1] = "ignore" # cross -> native binaries CMAKE_ALIGN_SYSROOT[1] = "Qt5Help, -S${bindir}${QT_DIR_NAME}, -s${OE_QMAKE_PATH_EXTERNAL_HOST_BINS}" CMAKE_ALIGN_SYSROOT[2] = "Qt5LinguistTools, -S${bindir}${QT_DIR_NAME}, -s${OE_QMAKE_PATH_EXTERNAL_HOST_BINS}" # yeah I know yocto does not want us to change this -PACKAGECONFIG_append = "${@bb.utils.contains('BBFILE_COLLECTIONS', 'clang-layer', ' clang', '', d)}" +PACKAGECONFIG:append = "${@bb.utils.contains('BBFILE_COLLECTIONS', 'clang-layer', ' clang', '', d)}" diff --git a/extends-meta-qt5/qtwayland_git.bbappend b/extends-meta-qt5/qtwayland_git.bbappend index 78099ba0..cb5e30a4 100644 --- a/extends-meta-qt5/qtwayland_git.bbappend +++ b/extends-meta-qt5/qtwayland_git.bbappend @@ -5,7 +5,7 @@ # which triggers our make_extra_sanity.bbclass. # To be compatible with Qt5.14 (dunfell) and >= Qt5.15 (current master) we do # some sed instead of patching. -do_patch_append_class-native() { +do_patch:append:class-native() { bb.build.exec_func('do_fix_qtwaylandscanner_cpp', d) } diff --git a/extends-oe-core/gpgme_%.bbappend b/extends-oe-core/gpgme_%.bbappend index d0d59000..a01d1b13 100644 --- a/extends-oe-core/gpgme_%.bbappend +++ b/extends-oe-core/gpgme_%.bbappend @@ -1,6 +1,6 @@ inherit cmake_lib -CMAKE_ALIGN_SYSROOT_class-native[1] = "ignore" +CMAKE_ALIGN_SYSROOT:class-native[1] = "ignore" CMAKE_ALIGN_SYSROOT[1] = "Gpgmepp, -S${includedir}, -s${CMAKE_QT5_EX_PATH_HOST_HEADERS}" CMAKE_ALIGN_SYSROOT[2] = "Gpgmepp, -S${libdir}, -s${OE_QMAKE_PATH_HOST_LIBS}/" diff --git a/extends-oe-core/gstreamer1.0-plugins-good_%.bbappend b/extends-oe-core/gstreamer1.0-plugins-good_%.bbappend index 50019a29..4ffe941c 100644 --- a/extends-oe-core/gstreamer1.0-plugins-good_%.bbappend +++ b/extends-oe-core/gstreamer1.0-plugins-good_%.bbappend @@ -1 +1 @@ -PACKAGECONFIG_append = " qt5" +PACKAGECONFIG:append = " qt5" diff --git a/recipes-gottcode/connectagram/connectagram.bb b/recipes-gottcode/connectagram/connectagram.bb index 4cfc9c45..f5f47d46 100644 --- a/recipes-gottcode/connectagram/connectagram.bb +++ b/recipes-gottcode/connectagram/connectagram.bb @@ -15,11 +15,11 @@ UPSTREAM_CHECK_REGEX = "${BPN}-(?P\d+(\.\d+)+)\-src\.tar" EXTRA_QMAKEVARS_PRE += "PREFIX=${prefix}" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/metainfo \ " # WIP: qt5-translation expects *.qm to work properly so pack word data in PN for now -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/connectagram/data \ " diff --git a/recipes-gottcode/focuswriter/focuswriter.bb b/recipes-gottcode/focuswriter/focuswriter.bb index 7100a22e..71fc108b 100644 --- a/recipes-gottcode/focuswriter/focuswriter.bb +++ b/recipes-gottcode/focuswriter/focuswriter.bb @@ -21,7 +21,7 @@ UPSTREAM_CHECK_REGEX = "${BPN}-(?P\d+(\.\d+)+)\-src\.tar" EXTRA_QMAKEVARS_PRE += "PREFIX=${prefix}" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/metainfo \ ${datadir}/${BPN}/icons \ ${datadir}/${BPN}/symbols1000.dat \ diff --git a/recipes-gottcode/gottet/gottet.bb b/recipes-gottcode/gottet/gottet.bb index cd40c080..9f68109b 100644 --- a/recipes-gottcode/gottet/gottet.bb +++ b/recipes-gottcode/gottet/gottet.bb @@ -15,7 +15,7 @@ UPSTREAM_CHECK_REGEX = "${BPN}-(?P\d+(\.\d+)+)\-src\.tar" EXTRA_QMAKEVARS_PRE += "PREFIX=${prefix}" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/metainfo \ ${datadir}/icons \ " diff --git a/recipes-gottcode/hexalate/hexalate.bb b/recipes-gottcode/hexalate/hexalate.bb index ff612d25..733dcf25 100644 --- a/recipes-gottcode/hexalate/hexalate.bb +++ b/recipes-gottcode/hexalate/hexalate.bb @@ -15,7 +15,7 @@ UPSTREAM_CHECK_REGEX = "${BPN}-(?P\d+(\.\d+)+)\-src\.tar" EXTRA_QMAKEVARS_PRE += "PREFIX=${prefix}" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/metainfo \ ${datadir}/icons \ " diff --git a/recipes-gottcode/kapow/kapow.bb b/recipes-gottcode/kapow/kapow.bb index 23197104..d4d4dff6 100644 --- a/recipes-gottcode/kapow/kapow.bb +++ b/recipes-gottcode/kapow/kapow.bb @@ -15,6 +15,6 @@ UPSTREAM_CHECK_REGEX = "${BPN}-(?P\d+(\.\d+)+)\-src\.tar" EXTRA_QMAKEVARS_PRE += "PREFIX=${prefix}" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/metainfo \ " diff --git a/recipes-gottcode/packagegroups/gottcode-world.bb b/recipes-gottcode/packagegroups/gottcode-world.bb index 88617e18..8e6c0140 100644 --- a/recipes-gottcode/packagegroups/gottcode-world.bb +++ b/recipes-gottcode/packagegroups/gottcode-world.bb @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda inherit packagegroup -RDEPENDS_${PN} = " \ +RDEPENDS:${PN} = " \ connectagram \ focuswriter \ gottet \ diff --git a/recipes-gottcode/peg-e/peg-e.bb b/recipes-gottcode/peg-e/peg-e.bb index dfef42f5..ea84a5ce 100644 --- a/recipes-gottcode/peg-e/peg-e.bb +++ b/recipes-gottcode/peg-e/peg-e.bb @@ -15,7 +15,7 @@ UPSTREAM_CHECK_REGEX = "${BPN}-(?P\d+(\.\d+)+)\-src\.tar" EXTRA_QMAKEVARS_PRE += "PREFIX=${prefix}" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/metainfo \ ${datadir}/peg-e/icons \ " diff --git a/recipes-gottcode/simsu/simsu.bb b/recipes-gottcode/simsu/simsu.bb index 96fe45e8..01f069f8 100644 --- a/recipes-gottcode/simsu/simsu.bb +++ b/recipes-gottcode/simsu/simsu.bb @@ -15,6 +15,6 @@ UPSTREAM_CHECK_REGEX = "${BPN}-(?P\d+(\.\d+)+)\-src\.tar" EXTRA_QMAKEVARS_PRE += "PREFIX=${prefix}" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/metainfo \ " diff --git a/recipes-gottcode/tetzle/tetzle.bb b/recipes-gottcode/tetzle/tetzle.bb index ec004da3..31704ae7 100644 --- a/recipes-gottcode/tetzle/tetzle.bb +++ b/recipes-gottcode/tetzle/tetzle.bb @@ -15,6 +15,6 @@ UPSTREAM_CHECK_REGEX = "${BPN}-(?P\d+(\.\d+)+)\-src\.tar" EXTRA_QMAKEVARS_PRE += "PREFIX=${prefix}" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/metainfo \ " diff --git a/recipes-graphics/qpdfview/qpdfview_0.4.18.bb b/recipes-graphics/qpdfview/qpdfview_0.4.18.bb index ce5062d9..b611ea90 100644 --- a/recipes-graphics/qpdfview/qpdfview_0.4.18.bb +++ b/recipes-graphics/qpdfview/qpdfview_0.4.18.bb @@ -20,4 +20,4 @@ EXTRA_QMAKEVARS_PRE += " \ PLUGIN_INSTALL_PATH=${libdir}/${BPN} \ " -FILES_${PN} += "${datadir}" +FILES:${PN} += "${datadir}" diff --git a/recipes-graphics/scribus/scribus_1.5.7.bb b/recipes-graphics/scribus/scribus_1.5.7.bb index 0c55389b..d796f5a4 100644 --- a/recipes-graphics/scribus/scribus_1.5.7.bb +++ b/recipes-graphics/scribus/scribus_1.5.7.bb @@ -18,7 +18,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/project/${BPN}/${BPN}-devel/${PV}/${BPN}-${PV}. SRC_URI[sha256sum] = "318316b2cfc7a76191d3e0d3f8c2265147daea0570162028e243c292d826f8ce" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/icons \ ${datadir}/mime \ ${datadir}/metainfo \ diff --git a/recipes-graphics/sddm/sddm_git.bb b/recipes-graphics/sddm/sddm_git.bb index 8f64b1de..7de3db3b 100644 --- a/recipes-graphics/sddm/sddm_git.bb +++ b/recipes-graphics/sddm/sddm_git.bb @@ -34,7 +34,7 @@ EXTRA_OECMAKE += " \ -DQML_INSTALL_DIR=${OE_QMAKE_PATH_QML} \ " -do_configure_append() { +do_configure:append() { # fix sysroot path sed -i 's:${STAGING_DIR_HOST}.*${libdir}:${libdir}:g' ${B}/src/common/Constants.h } @@ -45,7 +45,7 @@ install_pam() { install -m 644 ${WORKDIR}/sddm-autologin.pam ${D}${sysconfdir}/pam.d/sddm-autologin } -do_install_append() { +do_install:append() { install -d ${D}/${sysconfdir}/sddm.conf.d install -m 644 ${WORKDIR}/sddm.conf ${D}/${sysconfdir}/sddm.conf.d/00-default.conf @@ -56,14 +56,14 @@ do_install_append() { ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'install_pam', '', d)} } -FILES_${PN} += "${OE_QMAKE_PATH_QML}" +FILES:${PN} += "${OE_QMAKE_PATH_QML}" -SYSTEMD_SERVICE_${PN} = "${BPN}.service" +SYSTEMD_SERVICE:${PN} = "${BPN}.service" USERADD_PACKAGES = "${PN}" -USERADD_PARAM_${PN} = "--system --home ${localstatedir}/lib/sddm --shell /bin/false --user-group --groups video sddm" +USERADD_PARAM:${PN} = "--system --home ${localstatedir}/lib/sddm --shell /bin/false --user-group --groups video sddm" -RDEPENDS_${PN} += " \ +RDEPENDS:${PN} += " \ bash \ packagegroup-core-x11-xserver \ xinit \ @@ -76,7 +76,7 @@ RDEPENDS_${PN} += " \ qtdeclarative-qmlplugins \ " -RRECOMMENDS_${PN += " \ +RRECOMMENDS:${PN += " \ qtvirtualkeyboard-plugins \ qtvirtualkeyboard-qmlplugins \ " diff --git a/recipes-kdab/hotspot/hotspot_git.bb b/recipes-kdab/hotspot/hotspot_git.bb index 7034ef90..894f7c2a 100644 --- a/recipes-kdab/hotspot/hotspot_git.bb +++ b/recipes-kdab/hotspot/hotspot_git.bb @@ -26,6 +26,6 @@ SRCREV = "35d1865babf40b9df454810ca8cc09e77b0c349a" S = "${WORKDIR}/git" PV = "1.2.0+git${SRCPV}" -FILES_${PN} += "${datadir}/icons" +FILES:${PN} += "${datadir}/icons" -RDEPENDS_${PN} += "perf" +RDEPENDS:${PN} += "perf" diff --git a/recipes-kdab/kdcharts/kdcharts_git.bb b/recipes-kdab/kdcharts/kdcharts_git.bb index 3a974931..022c3a93 100644 --- a/recipes-kdab/kdcharts/kdcharts_git.bb +++ b/recipes-kdab/kdcharts/kdcharts_git.bb @@ -12,7 +12,7 @@ DEPENDS += " \ qtsvg \ " -do_install_append() { +do_install:append() { # these have gone wild / qmake was always pain rm -r ${D}/usr/mkspecs } @@ -22,4 +22,4 @@ SRCREV = "95547e8a2f6c362db1dd071a2df00b0e75e05da0" S = "${WORKDIR}/git" PV = "2.7.2" -FILES_${PN}-dev += "${datadir}/mkspecs" +FILES:${PN}-dev += "${datadir}/mkspecs" diff --git a/recipes-kdab/kdreports/kdreports_git.bb b/recipes-kdab/kdreports/kdreports_git.bb index 48c794d9..2d91ff78 100644 --- a/recipes-kdab/kdreports/kdreports_git.bb +++ b/recipes-kdab/kdreports/kdreports_git.bb @@ -17,7 +17,7 @@ SRCREV = "47728293e7842140d36a7861cf4316f2c1cbd795" S = "${WORKDIR}/git" PV = "1.9.0" -do_install_append() { +do_install:append() { # these have gone wild / qmake was always pain rm -r ${D}/usr/mkspecs } diff --git a/recipes-kdab/kdsoap/kdsoap.bb b/recipes-kdab/kdsoap/kdsoap.bb index 702e5bf9..22dfdad0 100644 --- a/recipes-kdab/kdsoap/kdsoap.bb +++ b/recipes-kdab/kdsoap/kdsoap.bb @@ -7,4 +7,4 @@ DEPENDS += " \ SRC_URI += "file://0002-Do-not-export-kdwsdl2cpp-as-target-it-will-fin-it-s-.patch" -FILES_${PN}-dev += "${datadir}/mkspecs" +FILES:${PN}-dev += "${datadir}/mkspecs" diff --git a/recipes-kde/apps/analitza/analitza.bb b/recipes-kde/apps/analitza/analitza.bb index 4b930e61..c77b43e3 100644 --- a/recipes-kde/apps/analitza/analitza.bb +++ b/recipes-kde/apps/analitza/analitza.bb @@ -17,7 +17,7 @@ DEPENDS += " \ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "edfd64d5f11de28a9d37244e3d744b57d0436b7ae0e4bc5a4ea625aa28cab450" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/libanalitza \ ${OE_QMAKE_PATH_QML} \ " diff --git a/recipes-kde/apps/ark/ark.bb b/recipes-kde/apps/ark/ark.bb index 00b9b3d5..f48b571f 100644 --- a/recipes-kde/apps/ark/ark.bb +++ b/recipes-kde/apps/ark/ark.bb @@ -30,7 +30,7 @@ DEPENDS += "\ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "6cfd49512080c84982574e36f85daeff1ae1287b7bae74cff46e4503d4cc70af" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/icons \ ${datadir}/mime \ diff --git a/recipes-kde/apps/artikulate/artikulate.bb b/recipes-kde/apps/artikulate/artikulate.bb index 6316c496..f07cf17c 100644 --- a/recipes-kde/apps/artikulate/artikulate.bb +++ b/recipes-kde/apps/artikulate/artikulate.bb @@ -23,7 +23,7 @@ DEPENDS += " \ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "c0f18f4c239881ec0cd8e7d5b4feeaa195224bcf558dc7ac65f4a92c4934d67a" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/knsrcfiles \ ${OE_QMAKE_PATH_PLUGINS} \ diff --git a/recipes-kde/apps/baloo-widgets/baloo-widgets.bb b/recipes-kde/apps/baloo-widgets/baloo-widgets.bb index d86bb637..4a1b1690 100644 --- a/recipes-kde/apps/baloo-widgets/baloo-widgets.bb +++ b/recipes-kde/apps/baloo-widgets/baloo-widgets.bb @@ -21,7 +21,7 @@ DEPENDS += "\ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "b4be933e232c9461bed4fe10c3facbaff41b50a02523e8c70218f809d722f0cc" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kservices5 \ ${OE_QMAKE_PATH_PLUGINS} \ " diff --git a/recipes-kde/apps/bovo/bovo.bb b/recipes-kde/apps/bovo/bovo.bb index 201d8ee9..cbcaca51 100644 --- a/recipes-kde/apps/bovo/bovo.bb +++ b/recipes-kde/apps/bovo/bovo.bb @@ -21,7 +21,7 @@ DEPENDS += "\ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "aa9927af7f8f98f2e56eebe9eac73c06adc62e598a1300be210e962e878deae1" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kxmlgui5 \ ${datadir}/icons \ " diff --git a/recipes-kde/apps/calligra/kdb_3.2.0.bb b/recipes-kde/apps/calligra/kdb_3.2.0.bb index a48e5e08..d2eb2e61 100644 --- a/recipes-kde/apps/calligra/kdb_3.2.0.bb +++ b/recipes-kde/apps/calligra/kdb_3.2.0.bb @@ -21,4 +21,4 @@ SRC_URI = " \ " SRC_URI[sha256sum] = "8f8983bc8d143832dc14bc2003ba6af1af27688e477c0c791fd61445464f2069" -FILES_${PN} += "${OE_QMAKE_PATH_PLUGINS}" +FILES:${PN} += "${OE_QMAKE_PATH_PLUGINS}" diff --git a/recipes-kde/apps/calligra/kexi_3.2.0.bb b/recipes-kde/apps/calligra/kexi_3.2.0.bb index 7553f8df..47ec45eb 100644 --- a/recipes-kde/apps/calligra/kexi_3.2.0.bb +++ b/recipes-kde/apps/calligra/kexi_3.2.0.bb @@ -45,16 +45,16 @@ SRC_URI = " \ " SRC_URI[sha256sum] = "7a813f9ea815a09c1e733d0e7dc879c64eee85f075389e87e6aab99cf0c1c1ff" -do_install_append() { +do_install:append() { install -d "${D}/${datadir}/pixmaps" install ${S}/src/pics/icons/breeze/apps/48/kexi.svg ${D}/${datadir}/pixmaps/ } -FILES_${PN} += " \ +FILES:${PN} += " \ ${OE_QMAKE_PATH_PLUGINS} \ " -RDEPENDS_${PN} += "breeze-icons-binres" +RDEPENDS:${PN} += "breeze-icons-binres" # REVISIT #-- The following RECOMMENDED packages have not been found: diff --git a/recipes-kde/apps/calligra/kproperty_3.2.0.bb b/recipes-kde/apps/calligra/kproperty_3.2.0.bb index 1b18ca69..a2ba47b7 100644 --- a/recipes-kde/apps/calligra/kproperty_3.2.0.bb +++ b/recipes-kde/apps/calligra/kproperty_3.2.0.bb @@ -20,7 +20,7 @@ DEPENDS += " \ SRC_URI = "${KDE_MIRROR}/stable/${BPN}/src/${BPN}-${PV}.tar.xz" SRC_URI[sha256sum] = "67af0c2d74715957bd5373a6a30589ff0a996cb1d267dfd0538dccaa9a768dfa" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kproperty3 \ ${OE_QMAKE_PATH_PLUGINS} \ " diff --git a/recipes-kde/apps/calligra/kreport_3.2.0.bb b/recipes-kde/apps/calligra/kreport_3.2.0.bb index 59cdaab1..e9411363 100644 --- a/recipes-kde/apps/calligra/kreport_3.2.0.bb +++ b/recipes-kde/apps/calligra/kreport_3.2.0.bb @@ -30,7 +30,7 @@ SRC_URI = " \ " SRC_URI[sha256sum] = "22716d719654e8f887fe4d33654e252ddf3d3d818c44e15a8af0e6f2e7d6ccd7" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kservicetypes5 \ ${datadir}/kreport3 \ ${OE_QMAKE_PATH_PLUGINS} \ diff --git a/recipes-kde/apps/dolphin-plugins/dolphin-plugins.bb b/recipes-kde/apps/dolphin-plugins/dolphin-plugins.bb index 2b9f8504..182e7282 100644 --- a/recipes-kde/apps/dolphin-plugins/dolphin-plugins.bb +++ b/recipes-kde/apps/dolphin-plugins/dolphin-plugins.bb @@ -20,7 +20,7 @@ DEPENDS += "\ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "9239c300cb7b27bb7810cedce11132bf9b0e4e0bcc1c1aba94b9cb8092d51d44" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/kservices5 \ ${OE_QMAKE_PATH_PLUGINS} \ diff --git a/recipes-kde/apps/dolphin/dolphin.bb b/recipes-kde/apps/dolphin/dolphin.bb index b95c1eda..d19ea00c 100644 --- a/recipes-kde/apps/dolphin/dolphin.bb +++ b/recipes-kde/apps/dolphin/dolphin.bb @@ -42,7 +42,7 @@ EXTRA_OECMAKE += "-DBUILD_TESTING=OFF" FILES_SOLIBSDEV = "${libdir}/libdolphin*${SOLIBSDEV}" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/k*5 \ ${datadir}/kglobalaccel \ diff --git a/recipes-kde/apps/dragon/dragon.bb b/recipes-kde/apps/dragon/dragon.bb index c06c4064..5a5dc56d 100644 --- a/recipes-kde/apps/dragon/dragon.bb +++ b/recipes-kde/apps/dragon/dragon.bb @@ -35,7 +35,7 @@ SRC_URI[sha256sum] = "c69bbfb477d23e83944099ff58e79866c754b548aeb873e66dace6f19a CXXFLAGS += "-isystem ${STAGING_INCDIR}/phonon4qt5/KDE" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/solid \ ${datadir}/icons \ diff --git a/recipes-kde/apps/filelight/filelight.bb b/recipes-kde/apps/filelight/filelight.bb index 64e37f2f..6a70ef99 100644 --- a/recipes-kde/apps/filelight/filelight.bb +++ b/recipes-kde/apps/filelight/filelight.bb @@ -24,7 +24,7 @@ DEPENDS += "\ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "e02374e49ac445969254e1b6f8edfeca478e36b7e00809c97e2f69ef33e2d8d3" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/icons \ ${OE_QMAKE_PATH_PLUGINS} \ diff --git a/recipes-kde/apps/granatier/granatier.bb b/recipes-kde/apps/granatier/granatier.bb index 69707d6c..468f5a56 100644 --- a/recipes-kde/apps/granatier/granatier.bb +++ b/recipes-kde/apps/granatier/granatier.bb @@ -27,7 +27,7 @@ DEPENDS += " \ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "a8a3fcc075cbae3047dfbf4e2b46e5b46f1dd0a4d37295d6246085ca37b8e49f" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/icons \ ${datadir}/kxmlgui5 \ diff --git a/recipes-kde/apps/gwenview/gwenview.bb b/recipes-kde/apps/gwenview/gwenview.bb index 2fd2684d..2407e497 100644 --- a/recipes-kde/apps/gwenview/gwenview.bb +++ b/recipes-kde/apps/gwenview/gwenview.bb @@ -32,7 +32,7 @@ EXTRA_OECMAKE += " \ -DJPEGLIB_RUN_RESULT__TRYRUN_OUTPUT=0 \ " -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/icons \ ${datadir}/solid \ diff --git a/recipes-kde/apps/kalgebra/kalgebra.bb b/recipes-kde/apps/kalgebra/kalgebra.bb index 29a97143..e31ef844 100644 --- a/recipes-kde/apps/kalgebra/kalgebra.bb +++ b/recipes-kde/apps/kalgebra/kalgebra.bb @@ -24,7 +24,7 @@ DEPENDS += "\ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "60f450776d785c8c402806c28abce208e8a8f951b0da81875b3e29de4a13e1af" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/icons \ ${datadir}/kalgebramobile \ " diff --git a/recipes-kde/apps/kalzium/kalzium.bb b/recipes-kde/apps/kalzium/kalzium.bb index 5acad314..4c0c242e 100644 --- a/recipes-kde/apps/kalzium/kalzium.bb +++ b/recipes-kde/apps/kalzium/kalzium.bb @@ -39,7 +39,7 @@ DEPENDS += " \ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "1549b5e08caa3ef7cab5375cfb8677dfc02a28a15136bef1edaf93c9fcadad15" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/kxmlgui5 \ ${datadir}/knsrcfiles \ diff --git a/recipes-kde/apps/kapman/kapman.bb b/recipes-kde/apps/kapman/kapman.bb index f430fbd7..93749088 100644 --- a/recipes-kde/apps/kapman/kapman.bb +++ b/recipes-kde/apps/kapman/kapman.bb @@ -28,7 +28,7 @@ DEPENDS += "\ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "3d2c38d8ca6a3addb3f5059fa35a5cf09c4802ee78a45dc4ddbd9ccfdf9927ac" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kxmlgui5 \ ${datadir}/icons \ " diff --git a/recipes-kde/apps/kate/kate.bb b/recipes-kde/apps/kate/kate.bb index dd6c584d..3fd10db9 100644 --- a/recipes-kde/apps/kate/kate.bb +++ b/recipes-kde/apps/kate/kate.bb @@ -43,7 +43,7 @@ SRC_URI[sha256sum] = "b44ea77cf77d579e9ade0af98f9a27a02292bc1b7edff387a386ab7e9e FILES_SOLIBSDEV = "" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kateproject \ ${datadir}/k*5 \ ${datadir}/plasma \ diff --git a/recipes-kde/apps/katomic/katomic.bb b/recipes-kde/apps/katomic/katomic.bb index 2f5d490d..8c994325 100644 --- a/recipes-kde/apps/katomic/katomic.bb +++ b/recipes-kde/apps/katomic/katomic.bb @@ -29,10 +29,10 @@ DEPENDS += "\ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "c1477c5a8c98c0fd5642316964e366616527ea97ffa475ddde36ce21c811d9b6" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kxmlgui5 \ ${datadir}/kconf_update \ ${datadir}/knsrcfiles \ " -RDEPENDS_${PN} += "perl" +RDEPENDS:${PN} += "perl" diff --git a/recipes-kde/apps/kblocks/kblocks.bb b/recipes-kde/apps/kblocks/kblocks.bb index 4f0c6b6d..98663b1d 100644 --- a/recipes-kde/apps/kblocks/kblocks.bb +++ b/recipes-kde/apps/kblocks/kblocks.bb @@ -24,7 +24,7 @@ DEPENDS += " \ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "8cf49362c77985c655c20f492142cc0f8c8a7a8cdcf226dd5cbba37a85391df6" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/knsrcfiles \ ${datadir}/kxmlgui5 \ diff --git a/recipes-kde/apps/kbounce/kbounce.bb b/recipes-kde/apps/kbounce/kbounce.bb index dd51689d..f1ebd6d9 100644 --- a/recipes-kde/apps/kbounce/kbounce.bb +++ b/recipes-kde/apps/kbounce/kbounce.bb @@ -29,7 +29,7 @@ DEPENDS += "\ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "3602903c8414a617461b308fb6c033a95facf14007d40b4105c601e4faba6046" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kxmlgui5 \ ${datadir}/icons \ " diff --git a/recipes-kde/apps/kbreakout/kbreakout.bb b/recipes-kde/apps/kbreakout/kbreakout.bb index b90fd48f..12844b77 100644 --- a/recipes-kde/apps/kbreakout/kbreakout.bb +++ b/recipes-kde/apps/kbreakout/kbreakout.bb @@ -25,7 +25,7 @@ DEPENDS += "\ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "519bba779a8b5211b9aa33398787dc5203ba9a6fd5330096c40a0ca8ea1e03a0" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kxmlgui5 \ ${datadir}/icons \ " diff --git a/recipes-kde/apps/kcachegrind/kcachegrind.bb b/recipes-kde/apps/kcachegrind/kcachegrind.bb index be1bc0ad..85971a22 100644 --- a/recipes-kde/apps/kcachegrind/kcachegrind.bb +++ b/recipes-kde/apps/kcachegrind/kcachegrind.bb @@ -27,9 +27,9 @@ DEPENDS += "\ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "25d01173e31b8715bd1b22546ef9c39cf4f555d9860a106d34588bae55793926" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kxmlgui5 \ " -RRECOMMENDS_${PN} += "graphviz" -RDEPENDS_${PN} += "perl" +RRECOMMENDS:${PN} += "graphviz" +RDEPENDS:${PN} += "perl" diff --git a/recipes-kde/apps/kcalc/kcalc.bb b/recipes-kde/apps/kcalc/kcalc.bb index f470371a..0502b47a 100644 --- a/recipes-kde/apps/kcalc/kcalc.bb +++ b/recipes-kde/apps/kcalc/kcalc.bb @@ -27,7 +27,7 @@ SRC_URI[sha256sum] = "cf389a1c4db1c7da8b5b7ecec030e9c68df5d950c581d91f3931b7f6d2 FILES_SOLIBSDEV = "" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/kxmlgui5 \ ${datadir}/kconf_update \ diff --git a/recipes-kde/apps/kcolorchooser/kcolorchooser.bb b/recipes-kde/apps/kcolorchooser/kcolorchooser.bb index 1d6ac086..4545c6e8 100644 --- a/recipes-kde/apps/kcolorchooser/kcolorchooser.bb +++ b/recipes-kde/apps/kcolorchooser/kcolorchooser.bb @@ -18,6 +18,6 @@ DEPENDS += "\ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "12987b375ab326e5cf8e6cdd848a067d4d8c7df88e3efd0a67f5e8e5c112b191" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/icons \ " diff --git a/recipes-kde/apps/kdenlive/kdenlive.bb b/recipes-kde/apps/kdenlive/kdenlive.bb index d2450d87..9e837da4 100644 --- a/recipes-kde/apps/kdenlive/kdenlive.bb +++ b/recipes-kde/apps/kdenlive/kdenlive.bb @@ -48,7 +48,7 @@ SRC_URI += " \ EXTRA_OECMAKE += "-DMLT_PREFIX=${prefix}" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/icons \ ${datadir}/k*5 \ @@ -58,4 +58,4 @@ FILES_${PN} += " \ ${OE_QMAKE_PATH_PLUGINS} \ " -RRECOMMENDS_${PN} += "ffmpeg" +RRECOMMENDS:${PN} += "ffmpeg" diff --git a/recipes-kde/apps/kdevelop/kdevelop.bb b/recipes-kde/apps/kdevelop/kdevelop.bb index e0acba42..ba63d93b 100644 --- a/recipes-kde/apps/kdevelop/kdevelop.bb +++ b/recipes-kde/apps/kdevelop/kdevelop.bb @@ -61,7 +61,7 @@ SRC_URI[sha256sum] = "0f86bc3fe53f761c1e3e3f7544577a0c41433be8bff310cf2e729f76f4 EXTRA_OECMAKE += "-DBUILD_TESTING=OFF" -do_configure_append() { +do_configure:append() { # although the name is missleading I still love cmake_extra_sanity.bbclass... sed -i \ -e 's:${STAGING_DIR_NATIVE}::g' \ @@ -72,7 +72,7 @@ do_configure_append() { # Yeah nasty but... FILES_SOLIBSDEV = "${libdir}/libKDevC*so ${libdir}/libKDevPlatform*so" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kdev* \ ${datadir}/k*5 \ ${datadir}/knsrcfiles \ @@ -84,13 +84,13 @@ FILES_${PN} += " \ ${OE_QMAKE_PATH_QML} \ " -RDEPENDS_${PN} += " \ +RDEPENDS:${PN} += " \ bash \ zsh \ " # To give best user experience out of the box.. -RRECOMMENDS_${PN} += " \ +RRECOMMENDS:${PN} += " \ packagegroup-qt5-toolchain-target \ binutils \ ccache \ diff --git a/recipes-kde/apps/kdf/kdf.bb b/recipes-kde/apps/kdf/kdf.bb index 2d645df7..4ba66baa 100644 --- a/recipes-kde/apps/kdf/kdf.bb +++ b/recipes-kde/apps/kdf/kdf.bb @@ -24,7 +24,7 @@ DEPENDS += "\ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "1c5701339e2be1161a22e1ded046a096e24f84c4e59e36bc8b82f8508324a7ca" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/icons \ ${OE_QMAKE_PATH_PLUGINS} \ diff --git a/recipes-kde/apps/kdialog/kdialog.bb b/recipes-kde/apps/kdialog/kdialog.bb index aafc0138..a92c9e99 100644 --- a/recipes-kde/apps/kdialog/kdialog.bb +++ b/recipes-kde/apps/kdialog/kdialog.bb @@ -23,4 +23,4 @@ DEPENDS += " \ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "c01f85e383c11d65e55e83a25be39ee314f3bd9c5e3f02ba385f1c2dfa712db6" -FILES_${PN} += "${datadir}/dbus-1" +FILES:${PN} += "${datadir}/dbus-1" diff --git a/recipes-kde/apps/kdiamond/kdiamond.bb b/recipes-kde/apps/kdiamond/kdiamond.bb index 60a5b985..0394dfdd 100644 --- a/recipes-kde/apps/kdiamond/kdiamond.bb +++ b/recipes-kde/apps/kdiamond/kdiamond.bb @@ -28,7 +28,7 @@ DEPENDS += "\ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "0cdddfe7dbe4b1a25c0ef470b9cad469a7efe04a7b2c8076e24acf375d18267b" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/knsrcfiles \ " diff --git a/recipes-kde/apps/kfind/kfind.bb b/recipes-kde/apps/kfind/kfind.bb index 93b6cb77..bb2aba17 100644 --- a/recipes-kde/apps/kfind/kfind.bb +++ b/recipes-kde/apps/kfind/kfind.bb @@ -22,6 +22,6 @@ DEPENDS += " \ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "9f42b5e79f5f262ac931385dd793d6bf42a1ba1ee9d45670dee5d9ca0813f663" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/icons \ " diff --git a/recipes-kde/apps/kgeography/kgeography.bb b/recipes-kde/apps/kgeography/kgeography.bb index 613dd454..372ee5ac 100644 --- a/recipes-kde/apps/kgeography/kgeography.bb +++ b/recipes-kde/apps/kgeography/kgeography.bb @@ -23,7 +23,7 @@ DEPENDS += " \ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "f93ffaf4d5b340994b6025324fd972a2f211fbf9e0c83b6201dfb20db0fe539b" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/kxmlgui5 \ " diff --git a/recipes-kde/apps/kgoldrunner/kgoldrunner.bb b/recipes-kde/apps/kgoldrunner/kgoldrunner.bb index 38ffe114..aa8adfe3 100644 --- a/recipes-kde/apps/kgoldrunner/kgoldrunner.bb +++ b/recipes-kde/apps/kgoldrunner/kgoldrunner.bb @@ -25,7 +25,7 @@ DEPENDS += " \ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "1187b43789957fd2d6d826a589741231c60fb15fd2f8e29c29c107b86efc949b" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/knsrcfiles \ ${datadir}/kxmlgui5 \ " diff --git a/recipes-kde/apps/khelpcenter/khelpcenter.bb b/recipes-kde/apps/khelpcenter/khelpcenter.bb index b03750b9..10730ad6 100644 --- a/recipes-kde/apps/khelpcenter/khelpcenter.bb +++ b/recipes-kde/apps/khelpcenter/khelpcenter.bb @@ -33,7 +33,7 @@ SRC_URI[sha256sum] = "bb188fc826edfe48ee2625295d5c5737c62da406ec594691b6e664b3b9 # do not move so-libs to -dev package FILES_SOLIBSDEV = "" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/k*5 \ ${datadir}/dbus-1 \ @@ -41,4 +41,4 @@ FILES_${PN} += " \ ${libdir}/libkdeinit5_khelpcenter.so \ " -RDEPENDS_${PN} += "perl" +RDEPENDS:${PN} += "perl" diff --git a/recipes-kde/apps/kio-extras/kio-extras.bb b/recipes-kde/apps/kio-extras/kio-extras.bb index ae4fb630..40a9ea76 100644 --- a/recipes-kde/apps/kio-extras/kio-extras.bb +++ b/recipes-kde/apps/kio-extras/kio-extras.bb @@ -58,11 +58,11 @@ SRC_URI[sha256sum] = "4af9f8a10e0c16006d97cf63439f91c05a04533ec6ee2ec0223dbfcc1d EXTRA_OECMAKE += "-DBUILD_TESTING=OFF" -do_configure_append() { +do_configure:append() { sed -i 's:${S}/smb/kdsoap-ws-discovery-client/src/kdwsdl2cpp:${STAGING_BINDIR_NATIVE}/kdwsdl2cpp:g' ${B}/build.ninja } -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kio_bookmarks \ ${datadir}/kio_info \ ${datadir}/config.kcfg \ @@ -79,4 +79,4 @@ FILES_${PN} += " \ ${OE_QMAKE_PATH_PLUGINS} \ " -RDEPENDS_${PN} += "perl" +RDEPENDS:${PN} += "perl" diff --git a/recipes-kde/apps/kmag/kmag.bb b/recipes-kde/apps/kmag/kmag.bb index 3c6ddfea..686cc56b 100644 --- a/recipes-kde/apps/kmag/kmag.bb +++ b/recipes-kde/apps/kmag/kmag.bb @@ -21,7 +21,7 @@ DEPENDS += "\ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "40659cd1b0773bb21f08ddc52a8d68ea1317660db276059851a60a5157b7c413" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kxmlgui5 \ ${datadir}/icons \ " diff --git a/recipes-kde/apps/kmahjongg/kmahjongg.bb b/recipes-kde/apps/kmahjongg/kmahjongg.bb index 6eab3e30..9238a5f8 100644 --- a/recipes-kde/apps/kmahjongg/kmahjongg.bb +++ b/recipes-kde/apps/kmahjongg/kmahjongg.bb @@ -25,7 +25,7 @@ DEPENDS += " \ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "414d0d3531a2479fb32400397defe1d3e821061590db607c4f8eecd8766d83c2" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/icons \ ${datadir}/kxmlgui5 \ diff --git a/recipes-kde/apps/kmines/kmines.bb b/recipes-kde/apps/kmines/kmines.bb index 8021b16f..288f99d9 100644 --- a/recipes-kde/apps/kmines/kmines.bb +++ b/recipes-kde/apps/kmines/kmines.bb @@ -25,7 +25,7 @@ DEPENDS += " \ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "f9703b5158633c63662b9c7892c049dd57a4fdf66c00f9378745a99ac71ab1a1" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/icons \ ${datadir}/knotifications5 \ " diff --git a/recipes-kde/apps/kmix/kmix.bb b/recipes-kde/apps/kmix/kmix.bb index 5ad1d184..81a7e89f 100644 --- a/recipes-kde/apps/kmix/kmix.bb +++ b/recipes-kde/apps/kmix/kmix.bb @@ -38,7 +38,7 @@ EXTRA_OECMAKE += "-DKMIX_KF5_BUILD=1" FILES_SOLIBSDEV = "" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/config.kcfg \ ${datadir}/plasma \ diff --git a/recipes-kde/apps/kmplot/kmplot.bb b/recipes-kde/apps/kmplot/kmplot.bb index 3936e959..d944475e 100644 --- a/recipes-kde/apps/kmplot/kmplot.bb +++ b/recipes-kde/apps/kmplot/kmplot.bb @@ -25,7 +25,7 @@ DEPENDS += " \ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "05b7bdc184e7c10b1b293812827bec44a3d773a3eefffd91eb782f08b45abf96" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/kxmlgui5 \ ${datadir}/dbus-1 \ diff --git a/recipes-kde/apps/kolourpaint/kolourpaint.bb b/recipes-kde/apps/kolourpaint/kolourpaint.bb index e290da08..dd0b7455 100644 --- a/recipes-kde/apps/kolourpaint/kolourpaint.bb +++ b/recipes-kde/apps/kolourpaint/kolourpaint.bb @@ -32,7 +32,7 @@ DEPENDS += "\ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "d825671f57454e455f20acd16326f38080bd343a74e1766ab7cd0f9e7fb2966e" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/icons \ ${OE_QMAKE_PATH_PLUGINS} \ diff --git a/recipes-kde/apps/konsole/konsole.bb b/recipes-kde/apps/konsole/konsole.bb index fb5c4f83..4430d362 100644 --- a/recipes-kde/apps/konsole/konsole.bb +++ b/recipes-kde/apps/konsole/konsole.bb @@ -45,7 +45,7 @@ SRC_URI[sha256sum] = "bcb1fe3af641de857e2b2991f2ccb8a1fb5d5b46ebef57869b271f4ffb # do not move so-libs to -dev package FILES_SOLIBSDEV = "" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/khotkeys \ ${datadir}/knsrcfiles \ diff --git a/recipes-kde/apps/kpat/kpat.bb b/recipes-kde/apps/kpat/kpat.bb index d38d1040..fc412f4a 100644 --- a/recipes-kde/apps/kpat/kpat.bb +++ b/recipes-kde/apps/kpat/kpat.bb @@ -32,7 +32,7 @@ SRC_URI[sha256sum] = "a612154477b5d7a6fbb7489f7b000c0eaf2bbdbcc6df16189e04535457 FILES_SOLIBSDEV = "" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/icons \ ${datadir}/mime \ diff --git a/recipes-kde/apps/kpmcore/kpmcore.bb b/recipes-kde/apps/kpmcore/kpmcore.bb index 68e3753d..953f67f2 100644 --- a/recipes-kde/apps/kpmcore/kpmcore.bb +++ b/recipes-kde/apps/kpmcore/kpmcore.bb @@ -26,7 +26,7 @@ DEPENDS += " \ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "cb9dd1002d489d6f2dcfdb44aa9581b0203d6386e874a34322de832014e58a03" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/dbus-1 \ ${datadir}/polkit-1 \ diff --git a/recipes-kde/apps/kreversi/kreversi.bb b/recipes-kde/apps/kreversi/kreversi.bb index b34b5307..7e95d4fb 100644 --- a/recipes-kde/apps/kreversi/kreversi.bb +++ b/recipes-kde/apps/kreversi/kreversi.bb @@ -33,7 +33,7 @@ DEPENDS += "\ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "24099d1a38f8ebd8d8df05463a5a763f18a20ef2183460dac1536060d42f798a" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/icons \ " diff --git a/recipes-kde/apps/krita/krita.bb b/recipes-kde/apps/krita/krita.bb index 40cab0b6..db3051a1 100644 --- a/recipes-kde/apps/krita/krita.bb +++ b/recipes-kde/apps/krita/krita.bb @@ -45,7 +45,7 @@ SRC_URI = " \ SRC_URI[sha256sum] = "84c53686056d8f7485658004ca454eb275e35221307362e65daaac934a5c3b78" S = "${WORKDIR}/${BPN}-${PV}${PVEXT}" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/color \ ${datadir}/color-schemes \ ${datadir}/icons \ diff --git a/recipes-kde/apps/ksudoku/ksudoku.bb b/recipes-kde/apps/ksudoku/ksudoku.bb index 4e88f954..b9507f81 100644 --- a/recipes-kde/apps/ksudoku/ksudoku.bb +++ b/recipes-kde/apps/ksudoku/ksudoku.bb @@ -31,7 +31,7 @@ DEPENDS += " \ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "88fe060ea9d9e6f14822c7231a026b34fe7daecf4fd8794cf239b5c1c097c88a" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/icons \ ${datadir}/kxmlgui5 \ " diff --git a/recipes-kde/apps/ksystemlog/ksystemlog.bb b/recipes-kde/apps/ksystemlog/ksystemlog.bb index a3858904..9d7cbbf8 100644 --- a/recipes-kde/apps/ksystemlog/ksystemlog.bb +++ b/recipes-kde/apps/ksystemlog/ksystemlog.bb @@ -24,4 +24,4 @@ DEPENDS += " \ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "70e8dbed3b88614e33115ad198c98edf3300f9e5f934528589a34796121d9587" -FILES_${PN} += "${datadir}/kxmlgui5" +FILES:${PN} += "${datadir}/kxmlgui5" diff --git a/recipes-kde/apps/ktorrent/ktorrent.bb b/recipes-kde/apps/ktorrent/ktorrent.bb index f64ae992..da8d6bd5 100644 --- a/recipes-kde/apps/ktorrent/ktorrent.bb +++ b/recipes-kde/apps/ktorrent/ktorrent.bb @@ -18,7 +18,7 @@ DEPENDS += " \ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "c990e4c87dc2d61ae0ffcd6a0c93c5b84287e7a565eeba6abb96c282a649114a" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/knotifications5 \ ${datadir}/kxmlgui5 \ ${OE_QMAKE_PATH_PLUGINS} \ diff --git a/recipes-kde/apps/kwalletmanager/kwalletmanager.bb b/recipes-kde/apps/kwalletmanager/kwalletmanager.bb index 27707c06..9905ab9f 100644 --- a/recipes-kde/apps/kwalletmanager/kwalletmanager.bb +++ b/recipes-kde/apps/kwalletmanager/kwalletmanager.bb @@ -29,7 +29,7 @@ DEPENDS += " \ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "3a7d8975d796d551a17466101281ef83f205984c9eb5e978a76cd1ca4c3e4890" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/dbus-1 \ ${datadir}/polkit-1 \ ${datadir}/icons \ diff --git a/recipes-kde/apps/kwave/kwave.bb b/recipes-kde/apps/kwave/kwave.bb index 13bd9fdc..f295faad 100644 --- a/recipes-kde/apps/kwave/kwave.bb +++ b/recipes-kde/apps/kwave/kwave.bb @@ -46,7 +46,7 @@ PACKAGECONFIG[mp3] = "-DWITH_MP3=ON,-DWITH_MP3=OFF,id3lib libmad" PACKAGECONFIG[pulseaudio] = "-DWITH_PULSEAUDIO=ON,-DWITH_PULSEAUDIO=OFF,pulseaudio,pulseaudio-server" PACKAGECONFIG[qtmultimedia] = "-DWITH_QT_AUDIO=ON,-DWITH_QT_AUDIO=OFF,qtmultimedia" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kservicetypes5 \ ${OE_QMAKE_PATH_PLUGINS} \ " diff --git a/recipes-kde/apps/libkdegames/libkdegames.bb b/recipes-kde/apps/libkdegames/libkdegames.bb index 9e45397e..a90232aa 100644 --- a/recipes-kde/apps/libkdegames/libkdegames.bb +++ b/recipes-kde/apps/libkdegames/libkdegames.bb @@ -50,7 +50,7 @@ DEPENDS += "\ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "779778724891e6f4228b02fd246c5948968d1562adae1708ac69cf8f548ee605" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/carddecks \ ${datadir}/kconf_update \ ${OE_QMAKE_PATH_QML} \ diff --git a/recipes-kde/apps/libkmahjongg/libkmahjongg.bb b/recipes-kde/apps/libkmahjongg/libkmahjongg.bb index a0976759..84587c05 100644 --- a/recipes-kde/apps/libkmahjongg/libkmahjongg.bb +++ b/recipes-kde/apps/libkmahjongg/libkmahjongg.bb @@ -20,6 +20,6 @@ DEPENDS += " \ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "8bdf07067fb165b8dbf7d9a652099e0562f65d0376967ea651bb44a4ae0b8552" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kmahjongglib \ " diff --git a/recipes-kde/apps/lokalize/lokalize.bb b/recipes-kde/apps/lokalize/lokalize.bb index 23ad8455..cfb77545 100644 --- a/recipes-kde/apps/lokalize/lokalize.bb +++ b/recipes-kde/apps/lokalize/lokalize.bb @@ -28,10 +28,10 @@ DEPENDS += "\ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "48603137bdedd40f4b473a6bbb32f07e1819603d67d34e3b24d994969b2ea470" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/k*5 \ ${datadir}/icons \ " -RDEPENDS_${PN} += "translate-toolkit" +RDEPENDS:${PN} += "translate-toolkit" diff --git a/recipes-kde/apps/marble/marble.bb b/recipes-kde/apps/marble/marble.bb index c2f1e5f7..b096efa1 100644 --- a/recipes-kde/apps/marble/marble.bb +++ b/recipes-kde/apps/marble/marble.bb @@ -45,10 +45,10 @@ PACKAGES =+ " \ FILES_SOLIBSDEV = "" -FILES_${PN}-dev += "${libdir}/libastro.so ${libdir}/libmarblewidget-qt5.so" -FILES_${PN}-qt = "${bindir}/${BPN}-qt" +FILES:${PN}-dev += "${libdir}/libastro.so ${libdir}/libmarblewidget-qt5.so" +FILES:${PN}-qt = "${bindir}/${BPN}-qt" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/icons \ ${datadir}/k* \ @@ -58,6 +58,6 @@ FILES_${PN} += " \ ${OE_QMAKE_PATH_QML} \ " -FILES_${PN}-designer-plugin += " \ +FILES:${PN}-designer-plugin += " \ ${OE_QMAKE_PATH_PLUGINS}/designer \ " diff --git a/recipes-kde/apps/minuet/minuet.bb b/recipes-kde/apps/minuet/minuet.bb index 972c4449..9fd9b3cb 100644 --- a/recipes-kde/apps/minuet/minuet.bb +++ b/recipes-kde/apps/minuet/minuet.bb @@ -23,10 +23,10 @@ DEPENDS += "\ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "ccfef561ac234cf44d444950f079b4c2f2df0a8e3319cd609e9edae62882b46e" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kxmlgui5 \ ${datadir}/icons \ ${OE_QMAKE_PATH_PLUGINS} \ " -RDEPENDS_${PN} += "timidity++ qtquickcontrols2" +RDEPENDS:${PN} += "timidity++ qtquickcontrols2" diff --git a/recipes-kde/apps/okteta/okteta.bb b/recipes-kde/apps/okteta/okteta.bb index 2a577267..4c6acf35 100644 --- a/recipes-kde/apps/okteta/okteta.bb +++ b/recipes-kde/apps/okteta/okteta.bb @@ -43,7 +43,7 @@ PV = "0.26.6" SRC_URI = "https://download.kde.org/stable/okteta/${PV}/src/${BPN}-${PV}.tar.xz" SRC_URI[sha256sum] = "c569cd5b55503e46df1a5b5c9162b08888c426aa52c6f3f2f926c658bee0144c" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/k*5 \ ${datadir}/mime \ diff --git a/recipes-kde/apps/okular/okular.bb b/recipes-kde/apps/okular/okular.bb index 709024c3..90b3c779 100644 --- a/recipes-kde/apps/okular/okular.bb +++ b/recipes-kde/apps/okular/okular.bb @@ -44,7 +44,7 @@ SRC_URI[sha256sum] = "fa1fc1a4a4d84c1e568665d4c05cd00f71c5ba481dad7b6b8d83597a42 EXTRA_OECMAKE += "-DBUILD_TESTING=OFF" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/kconf_update \ ${datadir}/config.kcfg \ diff --git a/recipes-kde/apps/partitionmanager/partitionmanager.bb b/recipes-kde/apps/partitionmanager/partitionmanager.bb index 02b0e588..1f86e9b2 100644 --- a/recipes-kde/apps/partitionmanager/partitionmanager.bb +++ b/recipes-kde/apps/partitionmanager/partitionmanager.bb @@ -33,7 +33,7 @@ DEPENDS += " \ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "3c4cc3e766105798313bc13d45583dcbc7ab905f4fc3f596cac6b92d8d74b29f" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/kxmlgui5 \ ${datadir}/icons \ diff --git a/recipes-kde/apps/spectacle/spectacle.bb b/recipes-kde/apps/spectacle/spectacle.bb index 4556de8c..2a353846 100644 --- a/recipes-kde/apps/spectacle/spectacle.bb +++ b/recipes-kde/apps/spectacle/spectacle.bb @@ -36,7 +36,7 @@ DEPENDS += " \ PV = "${KDE_APP_VERSION}" SRC_URI[sha256sum] = "5715ace40aaacb576d87674c032dc3b329c7e10bf1deb313f7825808a2b25a20" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/dbus-1 \ ${datadir}/khotkeys \ ${datadir}/knotifications5 \ diff --git a/recipes-kde/apps/umbrello/umbrello.bb b/recipes-kde/apps/umbrello/umbrello.bb index c450a7ee..bc6b6463 100644 --- a/recipes-kde/apps/umbrello/umbrello.bb +++ b/recipes-kde/apps/umbrello/umbrello.bb @@ -42,7 +42,7 @@ PACKAGECONFIG ?= " \ PACKAGECONFIG[clang] = ",,clang,clang" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kxmlgui5 \ ${datadir}/umbrello5 \ " diff --git a/recipes-kde/kf5/porting-aids-tier3/kdelibs4support/kdelibs4support.bb b/recipes-kde/kf5/porting-aids-tier3/kdelibs4support/kdelibs4support.bb index e51870f1..3559e168 100644 --- a/recipes-kde/kf5/porting-aids-tier3/kdelibs4support/kdelibs4support.bb +++ b/recipes-kde/kf5/porting-aids-tier3/kdelibs4support/kdelibs4support.bb @@ -36,20 +36,20 @@ DEPENDS += " \ ${@bb.utils.contains("DISTRO_FEATURES", "x11", "virtual/libx11 qtx11extras", "", d)} \ " -do_compile_prepend() { +do_compile:prepend() { # Error: Could not locate service type file kservicetypes5/ "kdedmodule.desktop" , tried ... export XDG_DATA_HOME=${STAGING_DATADIR} } -do_configure_append() { +do_configure:append() { # fix KCONFIG_COMPILER_LOCATION sed -i 's:${STAGING_LIBDIR_NATIVE}:${libdir}:g' ${B}/src/config-kstandarddirs.h } -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/dbus-1 \ ${OE_QMAKE_PATH_PLUGINS} \ " -RDEPENDS_${PN} += "perl" +RDEPENDS:${PN} += "perl" diff --git a/recipes-kde/kf5/porting-aids-tier3/kdesignerplugin/kdesignerplugin.bb b/recipes-kde/kf5/porting-aids-tier3/kdesignerplugin/kdesignerplugin.bb index 75379460..94773143 100644 --- a/recipes-kde/kf5/porting-aids-tier3/kdesignerplugin/kdesignerplugin.bb +++ b/recipes-kde/kf5/porting-aids-tier3/kdesignerplugin/kdesignerplugin.bb @@ -40,4 +40,4 @@ PACKAGECONFIG[kdewebkit] = "-DWITH_KDEWEBKIT=ON,,kdewebkit" # native binaries CMAKE_ALIGN_SYSROOT[1] = "KF5DesignerPlugin, -s${_IMPORT_PREFIX}/bin, -s${KDE_PATH_EXTERNAL_HOST_BINS}" -FILES_${PN} += "${libdir}/plugins/designer" +FILES:${PN} += "${libdir}/plugins/designer" diff --git a/recipes-kde/kf5/porting-aids-tier3/kdewebkit/kdewebkit.bb b/recipes-kde/kf5/porting-aids-tier3/kdewebkit/kdewebkit.bb index 7026d1c9..72600057 100644 --- a/recipes-kde/kf5/porting-aids-tier3/kdewebkit/kdewebkit.bb +++ b/recipes-kde/kf5/porting-aids-tier3/kdewebkit/kdewebkit.bb @@ -22,4 +22,4 @@ DEPENDS += " \ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "024b6ecbf1fe5f2938e166307b11010fe4c7d3ded082f3bf86f79157326e1266" -FILES_${PN} += "${libdir}/plugins" +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 9a5863a2..96c507dd 100644 --- a/recipes-kde/kf5/porting-aids-tier3/khtml/khtml.bb +++ b/recipes-kde/kf5/porting-aids-tier3/khtml/khtml.bb @@ -39,13 +39,13 @@ DEPENDS += " \ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "69af52a1dc40cd56213cb7d9675c17129f853611041c3d624afd93fe1cbd428e" -do_compile_append() { +do_compile:append() { # gperf-native sets absolut debug comments/links in header sed -i 's:${STAGING_DIR_NATIVE}::' ${B}/src/kentities-gperf.h sed -i 's:${STAGING_DIR_NATIVE}::' ${B}/src/doctypes.h } -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${OE_QMAKE_PATH_PLUGINS} \ " diff --git a/recipes-kde/kf5/porting-aids-tier3/kross/kross.bb b/recipes-kde/kf5/porting-aids-tier3/kross/kross.bb index ad5dd2f5..49bf2f68 100644 --- a/recipes-kde/kf5/porting-aids-tier3/kross/kross.bb +++ b/recipes-kde/kf5/porting-aids-tier3/kross/kross.bb @@ -27,6 +27,6 @@ DEPENDS += "\ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "23b1cbe7cebad5a84ca5415b8f9d7459baa44a853533a9aef19f3813aac0e43b" -FILES_${PN} += " \ +FILES:${PN} += " \ ${OE_QMAKE_PATH_PLUGINS} \ " diff --git a/recipes-kde/kf5/tier1/bluez-qt/bluez-qt.bb b/recipes-kde/kf5/tier1/bluez-qt/bluez-qt.bb index 83f22459..0684909f 100644 --- a/recipes-kde/kf5/tier1/bluez-qt/bluez-qt.bb +++ b/recipes-kde/kf5/tier1/bluez-qt/bluez-qt.bb @@ -15,4 +15,4 @@ SRC_URI[sha256sum] = "909ab90b3a3868314d37c2223458b047011a6a4baae0f0d2183bc9b380 EXTRA_OECMAKE += "-DBUILD_TESTING=OFF" -FILES_${PN} += "${OE_QMAKE_PATH_QML}" +FILES:${PN} += "${OE_QMAKE_PATH_QML}" diff --git a/recipes-kde/kf5/tier1/breeze-icons/breeze-icons.bb b/recipes-kde/kf5/tier1/breeze-icons/breeze-icons.bb index 3bbe5e08..429eb9ea 100644 --- a/recipes-kde/kf5/tier1/breeze-icons/breeze-icons.bb +++ b/recipes-kde/kf5/tier1/breeze-icons/breeze-icons.bb @@ -8,10 +8,10 @@ DEPENDS += " \ SRC_URI += "file://0003-Find-native-qrcAlias.patch" -FILES_${PN} += "${datadir}/icons" +FILES:${PN} += "${datadir}/icons" PACKAGES =+ "${PN}-binres" -FILES_${PN}-binres = " \ +FILES:${PN}-binres = " \ ${datadir}/icons/breeze/breeze-icons.rcc \ ${datadir}/icons/breeze-dark/breeze-icons-dark.rcc \ " diff --git a/recipes-kde/kf5/tier1/kcodecs/kcodecs.bb b/recipes-kde/kf5/tier1/kcodecs/kcodecs.bb index c4152bf3..bbac202e 100644 --- a/recipes-kde/kf5/tier1/kcodecs/kcodecs.bb +++ b/recipes-kde/kf5/tier1/kcodecs/kcodecs.bb @@ -17,7 +17,7 @@ DEPENDS += "gperf-native" PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "233f7123b045562c8ea7862eb40c27e551f6b463f9ed4fce4583433601f9523a" -do_compile_append() { +do_compile:append() { # gperf-native sets absolut debug comments/links in header sed -i 's:${STAGING_DIR_NATIVE}::' ${B}/src/kentities.h } diff --git a/recipes-kde/kf5/tier1/kconfig/kconfig.bb b/recipes-kde/kf5/tier1/kconfig/kconfig.bb index 23a673d2..939d0ddc 100644 --- a/recipes-kde/kf5/tier1/kconfig/kconfig.bb +++ b/recipes-kde/kf5/tier1/kconfig/kconfig.bb @@ -4,4 +4,4 @@ DEPENDS += "${BPN}-native" PACKAGES =+ "${PN}-bin" -FILES_${PN}-bin = "${bindir}/k*" +FILES:${PN}-bin = "${bindir}/k*" diff --git a/recipes-kde/kf5/tier1/kcoreaddons/kcoreaddons.bb b/recipes-kde/kf5/tier1/kcoreaddons/kcoreaddons.bb index 268c4437..f8b5ff89 100644 --- a/recipes-kde/kf5/tier1/kcoreaddons/kcoreaddons.bb +++ b/recipes-kde/kf5/tier1/kcoreaddons/kcoreaddons.bb @@ -9,5 +9,5 @@ CMAKE_ALIGN_SYSROOT[1] = "KF5CoreAddons, -s${_IMPORT_PREFIX}/bin, -s${KDE_PATH_E PACKAGES =+ "${PN}-bin" -FILES_${PN} += "${datadir}/mime" -FILES_${PN}-bin = "${bindir}/desktoptojson" +FILES:${PN} += "${datadir}/mime" +FILES:${PN}-bin = "${bindir}/desktoptojson" diff --git a/recipes-kde/kf5/tier1/kholidays/kholidays.bb b/recipes-kde/kf5/tier1/kholidays/kholidays.bb index e5aa8e3c..074338ea 100644 --- a/recipes-kde/kf5/tier1/kholidays/kholidays.bb +++ b/recipes-kde/kf5/tier1/kholidays/kholidays.bb @@ -17,4 +17,4 @@ DEPENDS += " \ qtdeclarative \ " -FILES_${PN} += "${OE_QMAKE_PATH_QML}/org/kde/${BPN}" +FILES:${PN} += "${OE_QMAKE_PATH_QML}/org/kde/${BPN}" diff --git a/recipes-kde/kf5/tier1/ki18n/ki18n.bb b/recipes-kde/kf5/tier1/ki18n/ki18n.bb index 1a1535ae..7c804bb4 100644 --- a/recipes-kde/kf5/tier1/ki18n/ki18n.bb +++ b/recipes-kde/kf5/tier1/ki18n/ki18n.bb @@ -4,6 +4,6 @@ SRC_URI += "file://0003-Do-not-hardcode-python-path-it-points-to-sysroot.patch" DEPENDS += "${BPN}-native gettext-native qtscript qtdeclarative" -FILES_${PN} += "${OE_QMAKE_PATH_PLUGINS}/kf5" +FILES:${PN} += "${OE_QMAKE_PATH_PLUGINS}/kf5" -RDEPENDS_${PN}-dev += "python3" +RDEPENDS:${PN}-dev += "python3" diff --git a/recipes-kde/kf5/tier1/kidletime/kidletime.bb b/recipes-kde/kf5/tier1/kidletime/kidletime.bb index 554d0bfc..7023d0b7 100644 --- a/recipes-kde/kf5/tier1/kidletime/kidletime.bb +++ b/recipes-kde/kf5/tier1/kidletime/kidletime.bb @@ -13,4 +13,4 @@ DEPENDS += "${@bb.utils.contains("DISTRO_FEATURES", "x11", "libxcb qtx11extras l PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "645fb3aa763f3c06091c359824b80c1dedc4012e0ea34ca7382ea55180fc732a" -FILES_${PN} += "${OE_QMAKE_PATH_PLUGINS}" +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 f98a60d6..37c11ae4 100644 --- a/recipes-kde/kf5/tier1/kirigami/kirigami2.bb +++ b/recipes-kde/kf5/tier1/kirigami/kirigami2.bb @@ -17,11 +17,11 @@ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "598c9e245d2726ada15c50d51f38827116f25d7e966af0cdfbb3bca396e01716" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kdevappwizard \ ${OE_QMAKE_PATH_QML} \ " -RPROVIDES_${PN} += "kirigami" -RREPLACES_${PN} += "kirigami" -RCONFLICTS_${PN} += "kirigami" +RPROVIDES:${PN} += "kirigami" +RREPLACES:${PN} += "kirigami" +RCONFLICTS:${PN} += "kirigami" diff --git a/recipes-kde/kf5/tier1/kitemmodels/kitemmodels.bb b/recipes-kde/kf5/tier1/kitemmodels/kitemmodels.bb index 644c0a55..ee2541a7 100644 --- a/recipes-kde/kf5/tier1/kitemmodels/kitemmodels.bb +++ b/recipes-kde/kf5/tier1/kitemmodels/kitemmodels.bb @@ -13,4 +13,4 @@ DEPENDS += "qtdeclarative" PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "da66a5608d2cffc6f465e963b3364e5faa81d88b19ca867e1004ca5202db29ec" -FILES_${PN} += "${OE_QMAKE_PATH_QML}" +FILES:${PN} += "${OE_QMAKE_PATH_QML}" diff --git a/recipes-kde/kf5/tier1/kitemviews/kitemviews.bb b/recipes-kde/kf5/tier1/kitemviews/kitemviews.bb index 06a2c82b..f40ea25e 100644 --- a/recipes-kde/kf5/tier1/kitemviews/kitemviews.bb +++ b/recipes-kde/kf5/tier1/kitemviews/kitemviews.bb @@ -13,4 +13,4 @@ DEPENDS += "qttools" PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "8b4f2095e176738a26fdc1e31f0d30cbdef9ea1d9fa4a3ce80e8fe5261ad2a93" -FILES_${PN} += "${OE_QMAKE_PATH_PLUGINS}/designer" +FILES:${PN} += "${OE_QMAKE_PATH_PLUGINS}/designer" diff --git a/recipes-kde/kf5/tier1/kplotting/kplotting.bb b/recipes-kde/kf5/tier1/kplotting/kplotting.bb index 7048e799..7c375b5b 100644 --- a/recipes-kde/kf5/tier1/kplotting/kplotting.bb +++ b/recipes-kde/kf5/tier1/kplotting/kplotting.bb @@ -12,4 +12,4 @@ SRC_URI[sha256sum] = "4ffd09a8c6b8713e02af4dfdc0bbc061d363c70448ef56b2cd4e4c768a DEPENDS += "qttools" -FILES_${PN} += "${OE_QMAKE_PATH_PLUGINS}/designer" +FILES:${PN} += "${OE_QMAKE_PATH_PLUGINS}/designer" diff --git a/recipes-kde/kf5/tier1/kquickcharts/kquickcharts.bb b/recipes-kde/kf5/tier1/kquickcharts/kquickcharts.bb index 51ff79d2..3d90b2e4 100644 --- a/recipes-kde/kf5/tier1/kquickcharts/kquickcharts.bb +++ b/recipes-kde/kf5/tier1/kquickcharts/kquickcharts.bb @@ -14,4 +14,4 @@ SRC_URI[sha256sum] = "afb11dca1bfefd3b503df21181ce19e10769d9e4079b9eea9489353437 PV = "${KF5_VERSION}" -FILES_${PN} += "${OE_QMAKE_PATH_QML}" +FILES:${PN} += "${OE_QMAKE_PATH_QML}" diff --git a/recipes-kde/kf5/tier1/kwidgetsaddons/kwidgetsaddons.bb b/recipes-kde/kf5/tier1/kwidgetsaddons/kwidgetsaddons.bb index 93162bc4..9ab14f63 100644 --- a/recipes-kde/kf5/tier1/kwidgetsaddons/kwidgetsaddons.bb +++ b/recipes-kde/kf5/tier1/kwidgetsaddons/kwidgetsaddons.bb @@ -18,4 +18,4 @@ DEPENDS += "qttools" PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "778e63b0d2e7c8db472e40a95e2338c1270ac6222679a5023a170f35625dcef5" -FILES_${PN} += "${OE_QMAKE_PATH_PLUGINS}/designer" +FILES:${PN} += "${OE_QMAKE_PATH_PLUGINS}/designer" diff --git a/recipes-kde/kf5/tier1/kwindowsystem/kwindowsystem.bb b/recipes-kde/kf5/tier1/kwindowsystem/kwindowsystem.bb index a8e58c2a..4b48b38c 100644 --- a/recipes-kde/kf5/tier1/kwindowsystem/kwindowsystem.bb +++ b/recipes-kde/kf5/tier1/kwindowsystem/kwindowsystem.bb @@ -14,11 +14,11 @@ DEPENDS += "${@bb.utils.contains("DISTRO_FEATURES", "x11", "virtual/libx11 qtx11 PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "cf81e7f318eab437d12e822f6e04331ec1c76d15df56bb792e4460758944caa5" -do_configure_append() { +do_configure:append() { # remove absolute paths from exported cmake files for f in `find ${B} -name '*Targets*.cmake'`; do sed -i 's:${RECIPE_SYSROOT}${prefix}:${_IMPORT_PREFIX}:g' $f done } -FILES_${PN} += "${OE_QMAKE_PATH_PLUGINS}" +FILES:${PN} += "${OE_QMAKE_PATH_PLUGINS}" diff --git a/recipes-kde/kf5/tier1/modemmanager-qt/modemmanager-qt.bb b/recipes-kde/kf5/tier1/modemmanager-qt/modemmanager-qt.bb index b19d4426..96b11411 100644 --- a/recipes-kde/kf5/tier1/modemmanager-qt/modemmanager-qt.bb +++ b/recipes-kde/kf5/tier1/modemmanager-qt/modemmanager-qt.bb @@ -15,13 +15,13 @@ DEPENDS += "modemmanager" PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "36f6341c4c9fa8dcd87484e75339b1b12dad31ef6b97733ccce1ad3ff05b0dcc" -do_configure_append() { +do_configure:append() { # remove absolute paths from exported cmake files for f in `find ${B} -name '*Targets*.cmake'`; do sed -i 's:${RECIPE_SYSROOT}${prefix}:${_IMPORT_PREFIX}:g' $f done } -RPROVIDES_${PN} += "libmm-qt" -RREPLACES_${PN} += "libmm-qt" -RCONFLICTS_${PN} += "libmm-qt" +RPROVIDES:${PN} += "libmm-qt" +RREPLACES:${PN} += "libmm-qt" +RCONFLICTS:${PN} += "libmm-qt" diff --git a/recipes-kde/kf5/tier1/networkmanager-qt/networkmanager-qt.bb b/recipes-kde/kf5/tier1/networkmanager-qt/networkmanager-qt.bb index 37ec621b..b51a0b37 100644 --- a/recipes-kde/kf5/tier1/networkmanager-qt/networkmanager-qt.bb +++ b/recipes-kde/kf5/tier1/networkmanager-qt/networkmanager-qt.bb @@ -14,7 +14,7 @@ DEPENDS += "networkmanager" PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "e740c5774758cd86188c2584bb5dbaefe0777cae536bd3b6fc360709c545a5e1" -do_configure_append() { +do_configure:append() { # remove absolute paths from exported cmake files for f in `find ${B} -name '*Targets*.cmake'`; do sed -i 's:${RECIPE_SYSROOT}${prefix}:${_IMPORT_PREFIX}:g' $f diff --git a/recipes-kde/kf5/tier1/oxygen-icons/oxygen-icons5.bb b/recipes-kde/kf5/tier1/oxygen-icons/oxygen-icons5.bb index 87acc24f..e11d0df8 100644 --- a/recipes-kde/kf5/tier1/oxygen-icons/oxygen-icons5.bb +++ b/recipes-kde/kf5/tier1/oxygen-icons/oxygen-icons5.bb @@ -9,10 +9,10 @@ inherit kde-kf5 gtk-icon-cache SRC_URI[sha256sum] = "5490b90f39a7bd098380969ee89b3b3dc8f3c2f8b1ecb722a381e8bda960011a" PV = "${KF5_VERSION}" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/icons/oxygen \ " -RPROVIDES_${PN} += "oxygen-icons" -RREPLACES_${PN} += "oxygen-icons" -RCONFLICTS_${PN} += "oxygen-icons" +RPROVIDES:${PN} += "oxygen-icons" +RREPLACES:${PN} += "oxygen-icons" +RCONFLICTS:${PN} += "oxygen-icons" diff --git a/recipes-kde/kf5/tier1/solid/solid.bb b/recipes-kde/kf5/tier1/solid/solid.bb index e5cd58ed..f4a3aded 100644 --- a/recipes-kde/kf5/tier1/solid/solid.bb +++ b/recipes-kde/kf5/tier1/solid/solid.bb @@ -15,6 +15,6 @@ DEPENDS += "bison-native qtdeclarative" PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "9a7cbf477238eb6e804cafad5ecd3fa232531168c3ec227cc9bd64f78fae3153" -FILES_${PN} += "${OE_QMAKE_PATH_QML}" +FILES:${PN} += "${OE_QMAKE_PATH_QML}" -RRECOMMENDS_${PN} += "udisks2" +RRECOMMENDS:${PN} += "udisks2" diff --git a/recipes-kde/kf5/tier1/sonnet/sonnet.bb b/recipes-kde/kf5/tier1/sonnet/sonnet.bb index edcdd01f..4631a90a 100644 --- a/recipes-kde/kf5/tier1/sonnet/sonnet.bb +++ b/recipes-kde/kf5/tier1/sonnet/sonnet.bb @@ -6,7 +6,7 @@ SRC_URI += " \ file://0001-make-build-of-hunspell-optional.patch \ " -FILES_${PN} += " \ +FILES:${PN} += " \ ${OE_QMAKE_PATH_PLUGINS}/kf5/sonnet \ " @@ -17,4 +17,4 @@ CMAKE_ALIGN_SYSROOT[1] = "KF5Sonnet, -s${_IMPORT_PREFIX}/bin, -s${KDE_PATH_EXTER PACKAGECONFIG ??= "hunspell" PACKAGECONFIG[hunspell] = "-DBUILD_HUNSPELL=ON,-DBUILD_HUNSPELL=OFF, hunspell" -FILES_${PN} += "${OE_QMAKE_PATH_PLUGINS}/designer" +FILES:${PN} += "${OE_QMAKE_PATH_PLUGINS}/designer" diff --git a/recipes-kde/kf5/tier2/kauth/kauth.bb b/recipes-kde/kf5/tier2/kauth/kauth.bb index c29584d1..5a985e6d 100644 --- a/recipes-kde/kf5/tier2/kauth/kauth.bb +++ b/recipes-kde/kf5/tier2/kauth/kauth.bb @@ -10,7 +10,7 @@ EXTRA_OECMAKE += "-DKAUTH_BACKEND_NAME=POLKITQT5-1" # executables CMAKE_ALIGN_SYSROOT[1] = "KF5Auth, -s${_IMPORT_PREFIX}/libexec/kauth/kauth-policy-gen, -s${KDE_PATH_EXTERNAL_HOST_LIBEXECS}/kauth/kauth-policy-gen" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/dbus-1 \ ${OE_QMAKE_PATH_PLUGINS} \ " diff --git a/recipes-kde/kf5/tier2/kcompletion/kcompletion.bb b/recipes-kde/kf5/tier2/kcompletion/kcompletion.bb index 14f1aece..5bed551f 100644 --- a/recipes-kde/kf5/tier2/kcompletion/kcompletion.bb +++ b/recipes-kde/kf5/tier2/kcompletion/kcompletion.bb @@ -13,4 +13,4 @@ DEPENDS += "kconfig kconfig-native kwidgetsaddons" PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "7a9314d37c98a7c67f8e40af5c9c02b6bbfe2afdb0512f89edeee2c1860b72cd" -FILES_${PN} += "${OE_QMAKE_PATH_PLUGINS}/designer" +FILES:${PN} += "${OE_QMAKE_PATH_PLUGINS}/designer" diff --git a/recipes-kde/kf5/tier2/kdoctools/kdoctools-native.bb b/recipes-kde/kf5/tier2/kdoctools/kdoctools-native.bb index 47deb9fa..596df394 100644 --- a/recipes-kde/kf5/tier2/kdoctools/kdoctools-native.bb +++ b/recipes-kde/kf5/tier2/kdoctools/kdoctools-native.bb @@ -11,6 +11,6 @@ DEPENDS += " \ docbook-xml-dtd4-native \ docbook-xsl-stylesheets-native \ " -RDEPENDS_${PN} += "gettext-native" +RDEPENDS:${PN} += "gettext-native" SRC_URI += "file://0001-don-t-build-documentation.patch" diff --git a/recipes-kde/kf5/tier2/kdoctools/kdoctools.bb b/recipes-kde/kf5/tier2/kdoctools/kdoctools.bb index c080f545..169e9d0f 100644 --- a/recipes-kde/kf5/tier2/kdoctools/kdoctools.bb +++ b/recipes-kde/kf5/tier2/kdoctools/kdoctools.bb @@ -10,19 +10,19 @@ SRC_URI += " \ file://0004-Add-cmdline-param-to-help-find-xsl.patch \ " -do_configure_append() { +do_configure:append() { # remove build host paths sed -i 's:${STAGING_DIR_NATIVE}::g' ${B}/config-kdoctools.h sed -i 's:${STAGING_DIR_TARGET}::g' ${B}/config-kdoctools.h } CMAKE_ADD_ALIGN_FILES = "config-kdoctools.h" -do_install_prepend() { +do_install:prepend() { # HACK: copy all-l10n.xml from native-sysroot to our builddir cp -f ${STAGING_DIR_NATIVE}${datadir}/kf5/kdoctools/customization/xsl/all-l10n.xml ${B}/src/customization/xsl/ } -do_install_append() { +do_install:append() { # Make sure installed XML/XSL files use relative paths, otherwise they # will be unusable once installed in per recipe sysroot. sed -i -e 's@${RECIPE_SYSROOT}${datadir}@../../../../@g' \ @@ -37,4 +37,4 @@ do_install_append() { # native binaries CMAKE_ALIGN_SYSROOT[1] = "KF5DocTools, -s${_IMPORT_PREFIX}/bin, -s${KDE_PATH_EXTERNAL_HOST_BINS}" -FILES_${PN}-dev += "${datadir}/kf5/kdoctools/customization" +FILES:${PN}-dev += "${datadir}/kf5/kdoctools/customization" diff --git a/recipes-kde/kf5/tier2/kfilemetadata/kfilemetadata.bb b/recipes-kde/kf5/tier2/kfilemetadata/kfilemetadata.bb index a2ff5d0a..1ff8ce09 100644 --- a/recipes-kde/kf5/tier2/kfilemetadata/kfilemetadata.bb +++ b/recipes-kde/kf5/tier2/kfilemetadata/kfilemetadata.bb @@ -29,6 +29,6 @@ DEPENDS += " \ EXTRA_OECMAKE += "-DBUILD_TESTING=OFF" -FILES_${PN} += "${OE_QMAKE_PATH_PLUGINS}/kf5" +FILES:${PN} += "${OE_QMAKE_PATH_PLUGINS}/kf5" -RRECOMMENDS_${PN} += "catdoc" +RRECOMMENDS:${PN} += "catdoc" diff --git a/recipes-kde/kf5/tier2/kimageformats/kimageformats.bb b/recipes-kde/kf5/tier2/kimageformats/kimageformats.bb index d45907f3..d18ef08e 100644 --- a/recipes-kde/kf5/tier2/kimageformats/kimageformats.bb +++ b/recipes-kde/kf5/tier2/kimageformats/kimageformats.bb @@ -17,7 +17,7 @@ DEPENDS += " \ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "badd15c93c1af2c6ab7f156245186a2223a184523070c6614328486e186eedf7" -FILES_${PN} += " \ +FILES:${PN} += " \ ${OE_QMAKE_PATH_PLUGINS} \ ${datadir}/kservices5 \ " diff --git a/recipes-kde/kf5/tier2/kjobwidgets/kjobwidgets.bb b/recipes-kde/kf5/tier2/kjobwidgets/kjobwidgets.bb index 38ad3205..0a11a3e1 100644 --- a/recipes-kde/kf5/tier2/kjobwidgets/kjobwidgets.bb +++ b/recipes-kde/kf5/tier2/kjobwidgets/kjobwidgets.bb @@ -14,4 +14,4 @@ DEPENDS += "kcoreaddons kcoreaddons-native kwidgetsaddons \ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "e5a2bb5cd1b6e5f81ce8f5b4d5d94707b3c1acc015bae771368f1f550f688d3d" -FILES_${PN} += "${datadir}/dbus-1" +FILES:${PN} += "${datadir}/dbus-1" diff --git a/recipes-kde/kf5/tier2/knotifications/knotifications.bb b/recipes-kde/kf5/tier2/knotifications/knotifications.bb index 9bebf559..3a7b817c 100644 --- a/recipes-kde/kf5/tier2/knotifications/knotifications.bb +++ b/recipes-kde/kf5/tier2/knotifications/knotifications.bb @@ -27,4 +27,4 @@ DEPENDS += " \ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "b09c4d6091a793673019dbbe2d4934747f6a5b2cd5f78c59c054a189154a5f09" -FILES_${PN} += "${datadir}/dbus-1 ${datadir}/kservicetypes5" +FILES:${PN} += "${datadir}/dbus-1 ${datadir}/kservicetypes5" diff --git a/recipes-kde/kf5/tier2/kpackage/kpackage.bb b/recipes-kde/kf5/tier2/kpackage/kpackage.bb index 1f1dc5f6..944ab666 100644 --- a/recipes-kde/kf5/tier2/kpackage/kpackage.bb +++ b/recipes-kde/kf5/tier2/kpackage/kpackage.bb @@ -6,4 +6,4 @@ DEPENDS += "${BPN}-native gettext-native kdoctools-native karchive ki18n kcoread CMAKE_ALIGN_SYSROOT[1] = "KF5Package, -s${_IMPORT_PREFIX}/bin, -s${KDE_PATH_EXTERNAL_HOST_BINS}" -FILES_${PN} += "${datadir}/k*5" +FILES:${PN} += "${datadir}/k*5" diff --git a/recipes-kde/kf5/tier3/baloo/baloo.bb b/recipes-kde/kf5/tier3/baloo/baloo.bb index 5504c8d3..2c03e7b2 100644 --- a/recipes-kde/kf5/tier3/baloo/baloo.bb +++ b/recipes-kde/kf5/tier3/baloo/baloo.bb @@ -38,21 +38,21 @@ SRC_URI += " \ file://baloo_file.desktop \ " -do_configure_append() { +do_configure:append() { # remove absolute paths from exported cmake files for f in `find ${B} -name '*Targets*.cmake'`; do sed -i 's:${RECIPE_SYSROOT}${prefix}:${_IMPORT_PREFIX}:g' $f done } -do_install_append() { +do_install:append() { install -d ${D}/${sysconfdir}/skel/.config/autostart install -m 0644 ${WORKDIR}/baloo_file.desktop ${D}/${sysconfdir}/skel/.config/autostart/ } PACKAGES =+ "${PN}-no-autostart" -FILES_${PN} += " \ +FILES:${PN} += " \ ${systemd_user_unitdir} \ ${datadir}/dbus-1 \ ${datadir}/icons \ @@ -61,4 +61,4 @@ FILES_${PN} += " \ ${OE_QMAKE_PATH_PLUGINS} \ " -FILES_${PN}-no-autostart = "${sysconfdir}/skel/.config/autostart" +FILES:${PN}-no-autostart = "${sysconfdir}/skel/.config/autostart" diff --git a/recipes-kde/kf5/tier3/kactivities/kactivities.bb b/recipes-kde/kf5/tier3/kactivities/kactivities.bb index b9789228..7fcde651 100644 --- a/recipes-kde/kf5/tier3/kactivities/kactivities.bb +++ b/recipes-kde/kf5/tier3/kactivities/kactivities.bb @@ -31,14 +31,14 @@ DEPENDS += " \ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "86b0909d486c5b5fc849bbf6dbdfff9deaf2f5764d3633e681e2d52d53ee3052" -do_compile_prepend() { +do_compile:prepend() { # Error: Could not locate service type file kservicetypes5/ "kfileitemactionplugin.desktop" , tried ... export XDG_DATA_HOME=${STAGING_DATADIR} } -RDEPENDS_${PN} += "kactivitymanagerd" +RDEPENDS:${PN} += "kactivitymanagerd" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${OE_QMAKE_PATH_QML}/org/kde \ " diff --git a/recipes-kde/kf5/tier3/kcmutils/kcmutils.bb b/recipes-kde/kf5/tier3/kcmutils/kcmutils.bb index 37f10b62..07860d55 100644 --- a/recipes-kde/kf5/tier3/kcmutils/kcmutils.bb +++ b/recipes-kde/kf5/tier3/kcmutils/kcmutils.bb @@ -27,4 +27,4 @@ DEPENDS += " \ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "eea7052e1424680d417981036d463916e2bdc55164a7161fa2d276f1348b93a9" -FILES_${PN} += "${datadir}/kservicetypes5" +FILES:${PN} += "${datadir}/kservicetypes5" diff --git a/recipes-kde/kf5/tier3/kconfigwidgets/kconfigwidgets.bb b/recipes-kde/kf5/tier3/kconfigwidgets/kconfigwidgets.bb index ba276eaf..e8261b63 100644 --- a/recipes-kde/kf5/tier3/kconfigwidgets/kconfigwidgets.bb +++ b/recipes-kde/kf5/tier3/kconfigwidgets/kconfigwidgets.bb @@ -19,6 +19,6 @@ DEPENDS += "kauth kconfig kcodecs kguiaddons kwidgetsaddons kdoctools \ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "36ea5e2263776f988a9b2301f4605ccb4b3683afbe770c1896a5525e12711e9e" -FILES_${PN} += "${OE_QMAKE_PATH_PLUGINS}/designer" +FILES:${PN} += "${OE_QMAKE_PATH_PLUGINS}/designer" -RDEPENDS_${PN} += "perl" +RDEPENDS:${PN} += "perl" diff --git a/recipes-kde/kf5/tier3/kdeclarative/kdeclarative.bb b/recipes-kde/kf5/tier3/kdeclarative/kdeclarative.bb index 313fbdaf..6960c910 100644 --- a/recipes-kde/kf5/tier3/kdeclarative/kdeclarative.bb +++ b/recipes-kde/kf5/tier3/kdeclarative/kdeclarative.bb @@ -25,4 +25,4 @@ SRC_URI += " \ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "26c7cea97973c242a34d511f8e41b1cebcfdbb864cce7570ec513af0b91cf779" -FILES_${PN} += "${OE_QMAKE_PATH_QML}/org/kde" +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 74edfda6..c061e89e 100644 --- a/recipes-kde/kf5/tier3/kded/kded.bb +++ b/recipes-kde/kf5/tier3/kded/kded.bb @@ -21,10 +21,10 @@ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "4c96159e2f0255e4cefbfb671ac37d489bb70031536f098f3bc5f70559a6d330" SRC_URI += "file://0001-hardcode-path-to-kconf_update.patch" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/dbus-1 \ ${datadir}/k*5 \ ${libdir}/libkdeinit5_kded5.so \ ${systemd_user_unitdir} \ " -FILES_${PN}-dev = "${libdir}/cmake" +FILES:${PN}-dev = "${libdir}/cmake" diff --git a/recipes-kde/kf5/tier3/kemoticons/kemoticons.bb b/recipes-kde/kf5/tier3/kemoticons/kemoticons.bb index 6febef44..a6dbadef 100644 --- a/recipes-kde/kf5/tier3/kemoticons/kemoticons.bb +++ b/recipes-kde/kf5/tier3/kemoticons/kemoticons.bb @@ -15,7 +15,7 @@ DEPENDS += "karchive kconfig kconfig-native kservice kcoreaddons kcoreaddons-nat PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "0733fe001a6257256326969e4e857e26883a03c2132794775d15f9d2f8a31141" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/emoticons \ ${datadir}/k*5 \ ${OE_QMAKE_PATH_PLUGINS} \ diff --git a/recipes-kde/kf5/tier3/kglobalaccel/kglobalaccel.bb b/recipes-kde/kf5/tier3/kglobalaccel/kglobalaccel.bb index f9cc4651..97592b04 100644 --- a/recipes-kde/kf5/tier3/kglobalaccel/kglobalaccel.bb +++ b/recipes-kde/kf5/tier3/kglobalaccel/kglobalaccel.bb @@ -21,7 +21,7 @@ DEPENDS += " \ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "658e7e955606335372e1413c53db2102ba4207f189ad2b4fe3b4906bfa27726c" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/dbus-1 \ ${datadir}/kservices5 \ ${systemd_user_unitdir} \ diff --git a/recipes-kde/kf5/tier3/kiconthemes/kiconthemes.bb b/recipes-kde/kf5/tier3/kiconthemes/kiconthemes.bb index b7bd9c45..062ab415 100644 --- a/recipes-kde/kf5/tier3/kiconthemes/kiconthemes.bb +++ b/recipes-kde/kf5/tier3/kiconthemes/kiconthemes.bb @@ -27,4 +27,4 @@ DEPENDS += " \ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "f6dd5e7510217d71df871dc299a6a382e3adbe16f72c6c16b62b75a37b632065" -FILES_${PN} += "${OE_QMAKE_PATH_PLUGINS}" +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 632ef422..edaf1d0d 100644 --- a/recipes-kde/kf5/tier3/kinit/kinit.bb +++ b/recipes-kde/kf5/tier3/kinit/kinit.bb @@ -28,5 +28,5 @@ DEPENDS += " \ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "fca5dbe4b1646202ca5c2ee9c8f259514b17a633af318d57f225f1aa7616b128" -FILES_${PN} += "${datadir}/dbus-1 ${libdir}/libkdeinit5_klauncher.so" -FILES_${PN}-dev = "${libdir}/cmake" +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 439b0333..532765af 100644 --- a/recipes-kde/kf5/tier3/kio/kio.bb +++ b/recipes-kde/kf5/tier3/kio/kio.bb @@ -47,12 +47,12 @@ DEPENDS += " \ krb5 \ " -do_configure_append() { +do_configure:append() { # fix sysroot path sed -i 's:${STAGING_BINDIR_NATIVE}:${bindir}:g' ${B}/src/ioslaves/help/config-help.h } -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/dbus-1 \ ${datadir}/k*5 \ ${datadir}/polkit-1 \ diff --git a/recipes-kde/kf5/tier3/knewstuff/knewstuff.bb b/recipes-kde/kf5/tier3/knewstuff/knewstuff.bb index 6f971bc6..c84e8027 100644 --- a/recipes-kde/kf5/tier3/knewstuff/knewstuff.bb +++ b/recipes-kde/kf5/tier3/knewstuff/knewstuff.bb @@ -35,6 +35,6 @@ DEPENDS += " \ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "aea889085e662b1b3566f0beb62b01a3c4aa9f1d2b1076789dc7d14ec0392bf8" -FILES_${PN} += " \ +FILES:${PN} += " \ ${OE_QMAKE_PATH_QML}/org/kde/newstuff \ " diff --git a/recipes-kde/kf5/tier3/kparts/kparts.bb b/recipes-kde/kf5/tier3/kparts/kparts.bb index 2448208c..0f6989ae 100644 --- a/recipes-kde/kf5/tier3/kparts/kparts.bb +++ b/recipes-kde/kf5/tier3/kparts/kparts.bb @@ -31,7 +31,7 @@ DEPENDS += " \ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "deeda3f10b806b1822bed7573fb5f6c2ba76c465c8c76bbf85696f173af775b9" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/kdevappwizard \ ${OE_QMAKE_PATH_PLUGINS} \ diff --git a/recipes-kde/kf5/tier3/kpeople/kpeople.bb b/recipes-kde/kf5/tier3/kpeople/kpeople.bb index 96a5ec90..379ec87a 100644 --- a/recipes-kde/kf5/tier3/kpeople/kpeople.bb +++ b/recipes-kde/kf5/tier3/kpeople/kpeople.bb @@ -20,7 +20,7 @@ DEPENDS += " \ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "77c0f36fb783ac17e63cbcacbb17e69750276bdba46e0524087eac6e4a7f8f52" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${OE_QMAKE_PATH_QML} \ " diff --git a/recipes-kde/kf5/tier3/krunner/krunner.bb b/recipes-kde/kf5/tier3/krunner/krunner.bb index 301c3e66..c333fdb2 100644 --- a/recipes-kde/kf5/tier3/krunner/krunner.bb +++ b/recipes-kde/kf5/tier3/krunner/krunner.bb @@ -26,7 +26,7 @@ DEPENDS += " \ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "37a8049e2161cfaa2659160fef0734c5a918a522ec40888fdca5c2b2530f5195" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/kdevappwizard \ ${datadir}/dbus-1 \ diff --git a/recipes-kde/kf5/tier3/kservice/kservice.bb b/recipes-kde/kf5/tier3/kservice/kservice.bb index b263d353..7f2712a1 100644 --- a/recipes-kde/kf5/tier3/kservice/kservice.bb +++ b/recipes-kde/kf5/tier3/kservice/kservice.bb @@ -27,4 +27,4 @@ DEPENDS += " \ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "c2e9c7a87aa7835d7bbfb0f45838a76151733547807a80c86df8307d79287dd1" -FILES_${PN} += "${datadir}/kservicetypes5" +FILES:${PN} += "${datadir}/kservicetypes5" diff --git a/recipes-kde/kf5/tier3/ktexteditor/ktexteditor.bb b/recipes-kde/kf5/tier3/ktexteditor/ktexteditor.bb index 140d9196..a5e659a4 100644 --- a/recipes-kde/kf5/tier3/ktexteditor/ktexteditor.bb +++ b/recipes-kde/kf5/tier3/ktexteditor/ktexteditor.bb @@ -31,7 +31,7 @@ SRC_URI[sha256sum] = "3347c4efc2314ba5ca8b7b89495fe9d862a4e437d4abc025937e8cab8a EXTRA_OECMAKE += "-DBUILD_TESTING=OFF" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/dbus-1 \ ${datadir}/polkit-1 \ diff --git a/recipes-kde/kf5/tier3/ktextwidgets/ktextwidgets.bb b/recipes-kde/kf5/tier3/ktextwidgets/ktextwidgets.bb index 10dc46c8..3b41efdd 100644 --- a/recipes-kde/kf5/tier3/ktextwidgets/ktextwidgets.bb +++ b/recipes-kde/kf5/tier3/ktextwidgets/ktextwidgets.bb @@ -16,7 +16,7 @@ DEPENDS += "kcompletion kconfig kconfigwidgets ki18n kiconthemes kservice kwidge PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "d4e1213e5475ec2f58f51206ef0473e324f834c1735fc81e8e49399d5d983819" -FILES_${PN} += " \ +FILES:${PN} += " \ ${OE_QMAKE_PATH_PLUGINS}/designer \ ${datadir}/kservicetypes5 \ " diff --git a/recipes-kde/kf5/tier3/kwallet/kwallet.bb b/recipes-kde/kf5/tier3/kwallet/kwallet.bb index e9891c71..291ca51c 100644 --- a/recipes-kde/kf5/tier3/kwallet/kwallet.bb +++ b/recipes-kde/kf5/tier3/kwallet/kwallet.bb @@ -33,4 +33,4 @@ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "6c58517faaacbddaffe6118ecd3e05b78c0cec5936824800cb3cd10f04c208d4" SRC_URI += "file://0001-KF5WalletConfig.cmake.in-point-runtime-bindir-not-bu.patch" -FILES_${PN} += "${datadir}" +FILES:${PN} += "${datadir}" diff --git a/recipes-kde/kf5/tier3/kxmlgui/kxmlgui.bb b/recipes-kde/kf5/tier3/kxmlgui/kxmlgui.bb index 3c833be5..aaf9f6b2 100644 --- a/recipes-kde/kf5/tier3/kxmlgui/kxmlgui.bb +++ b/recipes-kde/kf5/tier3/kxmlgui/kxmlgui.bb @@ -33,4 +33,4 @@ SRC_URI[sha256sum] = "2c3cbd25499dc51e45270c525a528efe16d26a07dc2047fa074708ceb9 EXTRA_OECMAKE += "-DBUILD_TESTING=OFF" -FILES_${PN} += "${OE_QMAKE_PATH_PLUGINS}/designer" +FILES:${PN} += "${OE_QMAKE_PATH_PLUGINS}/designer" diff --git a/recipes-kde/kf5/tier3/plasma-framework/plasma-framework.bb b/recipes-kde/kf5/tier3/plasma-framework/plasma-framework.bb index 50b8ccae..5df36bca 100644 --- a/recipes-kde/kf5/tier3/plasma-framework/plasma-framework.bb +++ b/recipes-kde/kf5/tier3/plasma-framework/plasma-framework.bb @@ -52,7 +52,7 @@ PV = "${KF5_VERSION}" SRC_URI += "file://0001-Fix-EGL-link.patch" SRC_URI[sha256sum] = "19b5cc632a2e79c28caeea36fdf9e1cc47c1ee1d7c1dc3432378854ac0aa1532" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kdevappwizard \ ${datadir}/dbus-1 \ ${datadir}/k*5 \ diff --git a/recipes-kde/kf5/tier3/purpose/purpose.bb b/recipes-kde/kf5/tier3/purpose/purpose.bb index 5d3afee8..68f3c6fb 100644 --- a/recipes-kde/kf5/tier3/purpose/purpose.bb +++ b/recipes-kde/kf5/tier3/purpose/purpose.bb @@ -22,7 +22,7 @@ DEPENDS += " \ kirigami2 \ " -FILES_${PN} += " \ +FILES:${PN} += " \ ${OE_QMAKE_PATH_PLUGINS} \ ${OE_QMAKE_PATH_QML}/org/kde/${BPN} \ " 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 208c58dd..90922ca0 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 @@ -23,7 +23,7 @@ DEPENDS += " \ PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "1c0b8803512135b7c63c3978fd7230a264486b95c1bd4925e422f968a045e66f" -FILES_${PN} += " \ +FILES:${PN} += " \ ${OE_QMAKE_PATH_PLUGINS} \ ${OE_QMAKE_PATH_QML} \ " diff --git a/recipes-kde/kf5/tier4/frameworkintegration/frameworkintegration.bb b/recipes-kde/kf5/tier4/frameworkintegration/frameworkintegration.bb index 26575ba7..636a3ef6 100644 --- a/recipes-kde/kf5/tier4/frameworkintegration/frameworkintegration.bb +++ b/recipes-kde/kf5/tier4/frameworkintegration/frameworkintegration.bb @@ -29,7 +29,7 @@ RRECCOMENDS_${PN} += "oxygen-fonts" PV = "${KF5_VERSION}" SRC_URI[sha256sum] = "39faa8341e8f410dce907ec62f460f46dd1d2ace573ad96e47f3ade90ad7f94b" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/knotifications5 \ ${datadir}/kconf_update \ ${OE_QMAKE_PATH_PLUGINS} \ 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 87bb0c12..18f8f274 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 @@ -11,6 +11,6 @@ SRC_URI += "file://0001-Temporary-workaround-gold-linker-errors.patch" PV = "${KF5_VERSION}" -FILES_${PN} += "${datadir}/ECM" +FILES:${PN} += "${datadir}/ECM" BBCLASSEXTEND = "native" diff --git a/recipes-kde/other/phonon/phonon.bb b/recipes-kde/other/phonon/phonon.bb index b1a7e4e3..83fa2f17 100644 --- a/recipes-kde/other/phonon/phonon.bb +++ b/recipes-kde/other/phonon/phonon.bb @@ -21,11 +21,11 @@ PACKAGECONFIG[designer-plugin] = "-DPHONON_BUILD_DESIGNER_PLUGIN=ON,-DPHONON_BUI PACKAGECONFIG[pulseaudio] = "-DCMAKE_DISABLE_FIND_PACKAGE_PULSEAUDIO=FALSE -DCMAKE_DISABLE_FIND_PACKAGE_GLIB2=FALSE, -DCMAKE_DISABLE_FIND_PACKAGE_PULSEAUDIO=TRUE -DCMAKE_DISABLE_FIND_PACKAGE_GLIB2=TRUE,pulseaudio glib-2.0" PACKAGES =+ "${PN}-designer-plugin" -FILES_${PN}-designer-plugin = "${OE_QMAKE_PATH_PLUGINS}/designer" +FILES:${PN}-designer-plugin = "${OE_QMAKE_PATH_PLUGINS}/designer" -FILES_${PN} += "${datadir}/dbus-1" +FILES:${PN} += "${datadir}/dbus-1" -FILES_${PN}-dev += " \ +FILES:${PN}-dev += " \ ${datadir}/qt5/mkspecs \ ${OE_QMAKE_PATH_ARCHDATA}/mkspecs \ ${datadir}/phonon4qt5/buildsystem \ diff --git a/recipes-kde/other/qca/qca.bb b/recipes-kde/other/qca/qca.bb index f5177e0c..0d66d2fa 100644 --- a/recipes-kde/other/qca/qca.bb +++ b/recipes-kde/other/qca/qca.bb @@ -25,7 +25,7 @@ EXTRA_OECMAKE += " \ -DLIB_SUFFIX=${@d.getVar('baselib').replace('lib', '')} \ " -FILES_${PN} += "${libdir}/qca-qt5/crypto" +FILES:${PN} += "${libdir}/qca-qt5/crypto" CMAKE_ALIGN_SYSROOT[1] = "Qca-qt5, -S${libdir}/lib, -s${OE_QMAKE_PATH_HOST_LIBS}/lib" CMAKE_ALIGN_SYSROOT[2] = "Qca-qt5, -S${includedir}, -s${CMAKE_QT5_EX_PATH_HOST_HEADERS}" diff --git a/recipes-kde/packagegroups/kde-apps-world.bb b/recipes-kde/packagegroups/kde-apps-world.bb index 6529295d..e0b618f0 100644 --- a/recipes-kde/packagegroups/kde-apps-world.bb +++ b/recipes-kde/packagegroups/kde-apps-world.bb @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda inherit packagegroup -RDEPENDS_${PN} = " \ +RDEPENDS:${PN} = " \ kde-apps \ kde-games \ " diff --git a/recipes-kde/packagegroups/kde-apps.bb b/recipes-kde/packagegroups/kde-apps.bb index 0b6336bc..54319b16 100644 --- a/recipes-kde/packagegroups/kde-apps.bb +++ b/recipes-kde/packagegroups/kde-apps.bb @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda inherit packagegroup -RDEPENDS_${PN} = " \ +RDEPENDS:${PN} = " \ analitza \ ark \ artikulate \ diff --git a/recipes-kde/packagegroups/kde-games.bb b/recipes-kde/packagegroups/kde-games.bb index 34311c55..ba2a0cfb 100644 --- a/recipes-kde/packagegroups/kde-games.bb +++ b/recipes-kde/packagegroups/kde-games.bb @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda inherit packagegroup -RDEPENDS_${PN} = " \ +RDEPENDS:${PN} = " \ bovo \ granatier \ kapman \ diff --git a/recipes-kde/packagegroups/kde-world.bb b/recipes-kde/packagegroups/kde-world.bb index 2e85b676..8993585b 100644 --- a/recipes-kde/packagegroups/kde-world.bb +++ b/recipes-kde/packagegroups/kde-world.bb @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda inherit packagegroup -RDEPENDS_${PN} = " \ +RDEPENDS:${PN} = " \ kf5-world \ plasma-world \ kde-apps-world \ diff --git a/recipes-kde/packagegroups/kf5-world.bb b/recipes-kde/packagegroups/kf5-world.bb index b02bff9c..4aa3e6f4 100644 --- a/recipes-kde/packagegroups/kf5-world.bb +++ b/recipes-kde/packagegroups/kf5-world.bb @@ -107,11 +107,11 @@ UNTIER = " \ " # avoid performance sink -RDEPENDS_${PN} = " \ +RDEPENDS:${PN} = " \ baloo-no-autostart \ " -RDEPENDS_${PN} += " \ +RDEPENDS:${PN} += " \ ${TIER_1} \ ${TIER_2} \ ${TIER_3} \ diff --git a/recipes-kde/packagegroups/plasma-mobile-world.bb b/recipes-kde/packagegroups/plasma-mobile-world.bb index dce7e7a2..eb195208 100644 --- a/recipes-kde/packagegroups/plasma-mobile-world.bb +++ b/recipes-kde/packagegroups/plasma-mobile-world.bb @@ -4,6 +4,6 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda inherit packagegroup -RDEPENDS_${PN} = " \ +RDEPENDS:${PN} = " \ plasma-settings \ " diff --git a/recipes-kde/packagegroups/plasma-world.bb b/recipes-kde/packagegroups/plasma-world.bb index a5a44106..a7130fa7 100644 --- a/recipes-kde/packagegroups/plasma-world.bb +++ b/recipes-kde/packagegroups/plasma-world.bb @@ -62,7 +62,7 @@ UNTIER = " \ systemsettings \ " -RDEPENDS_${PN} = " \ +RDEPENDS:${PN} = " \ ${OTHER} \ ${TIER_1} \ ${TIER_2} \ diff --git a/recipes-kde/plasma/plasma-mobile/plasma-settings/plasma-settings_git.bb b/recipes-kde/plasma/plasma-mobile/plasma-settings/plasma-settings_git.bb index d2bde2b4..1506f23e 100644 --- a/recipes-kde/plasma/plasma-mobile/plasma-settings/plasma-settings_git.bb +++ b/recipes-kde/plasma/plasma-mobile/plasma-settings/plasma-settings_git.bb @@ -31,7 +31,7 @@ S = "${WORKDIR}/git" # Did not find version anywhere PV = "0.0.0+git${SRCPV}" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kservices5 \ ${datadir}/kpackage \ ${datadir}/dbus-1 \ diff --git a/recipes-kde/plasma/tier3/kactivitymanagerd/kactivitymanagerd.bb b/recipes-kde/plasma/tier3/kactivitymanagerd/kactivitymanagerd.bb index 940bfd40..859f267d 100644 --- a/recipes-kde/plasma/tier3/kactivitymanagerd/kactivitymanagerd.bb +++ b/recipes-kde/plasma/tier3/kactivitymanagerd/kactivitymanagerd.bb @@ -31,7 +31,7 @@ SRC_URI[sha256sum] = "db87d0eb15a81117e31937078b095939e23c375fd939fe0ac1d4edec31 FILES_SOLIBSDEV = "" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/krunner \ ${datadir}/dbus-1 \ diff --git a/recipes-kde/plasma/tier3/plasma-workspace/plasma-workspace.bb b/recipes-kde/plasma/tier3/plasma-workspace/plasma-workspace.bb index f550335c..b6476307 100644 --- a/recipes-kde/plasma/tier3/plasma-workspace/plasma-workspace.bb +++ b/recipes-kde/plasma/tier3/plasma-workspace/plasma-workspace.bb @@ -54,7 +54,7 @@ SRC_URI += "file://0001-Fix-typo.patch" SRC_URI[sha256sum] = "af16b7151d87151a197b8fba41092f14895c0e64bfab05f562f831e18c6120ba" # REVISIT -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/dbus-1 \ ${datadir}/desktop-directories \ @@ -86,7 +86,7 @@ FILES_SOLIBSDEV = " \ # startkde/startplasmacompositor require: -RDEPENDS_${PN} += " \ +RDEPENDS:${PN} += " \ kconfig-bin \ kded \ kinit \ diff --git a/recipes-kde/plasma/untier/bluedevil/bluedevil.bb b/recipes-kde/plasma/untier/bluedevil/bluedevil.bb index 0dc4c0e1..1a3ef389 100644 --- a/recipes-kde/plasma/untier/bluedevil/bluedevil.bb +++ b/recipes-kde/plasma/untier/bluedevil/bluedevil.bb @@ -33,7 +33,7 @@ DEPENDS += " \ PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "40f19b3b66737f4dabd49f05450d91fc850d27e9b4abdeb112c7d9e70d997881" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/bluedevilwizard \ ${datadir}/mime \ ${datadir}/k*5 \ diff --git a/recipes-kde/plasma/untier/breeze-gtk/breeze-gtk.bb b/recipes-kde/plasma/untier/breeze-gtk/breeze-gtk.bb index d4be68c5..99128809 100644 --- a/recipes-kde/plasma/untier/breeze-gtk/breeze-gtk.bb +++ b/recipes-kde/plasma/untier/breeze-gtk/breeze-gtk.bb @@ -12,7 +12,7 @@ DEPENDS += "sassc-native cairo breeze python3-pycairo-native" PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "8b69b4e74594b49e3cee62fbffab875442f6b9d0d6432972b800c82eb2de87dc" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kconf_update \ ${datadir}/themes \ ${libdir}/kconf_update_bin \ diff --git a/recipes-kde/plasma/untier/breeze-plymouth/breeze-plymouth.bb b/recipes-kde/plasma/untier/breeze-plymouth/breeze-plymouth.bb index 4376c516..bb557293 100644 --- a/recipes-kde/plasma/untier/breeze-plymouth/breeze-plymouth.bb +++ b/recipes-kde/plasma/untier/breeze-plymouth/breeze-plymouth.bb @@ -11,7 +11,7 @@ DEPENDS += "plymouth" PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "7e2e65f0d51d585fa462612fa60d7190b4c681b795ad5717086f57240119bdf6" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/plymouth \ ${libdir}/plymouth \ " diff --git a/recipes-kde/plasma/untier/breeze/breeze.bb b/recipes-kde/plasma/untier/breeze/breeze.bb index 1c3c33a7..00545f16 100644 --- a/recipes-kde/plasma/untier/breeze/breeze.bb +++ b/recipes-kde/plasma/untier/breeze/breeze.bb @@ -33,7 +33,7 @@ DEPENDS += "\ PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "7d792b7f97e6d5854d81b4098edefd62a8e5b309e471ab39ada679a52ecf9fac" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/color-schemes \ ${datadir}/icons \ ${datadir}/kconf_update \ @@ -48,4 +48,4 @@ FILES_${PN} += " \ ${libdir}/kconf_update_bin \ " -RDEPENDS_${PN} += "milou" +RDEPENDS:${PN} += "milou" diff --git a/recipes-kde/plasma/untier/discover/discover.bb b/recipes-kde/plasma/untier/discover/discover.bb index ec8c5133..0835dfd4 100644 --- a/recipes-kde/plasma/untier/discover/discover.bb +++ b/recipes-kde/plasma/untier/discover/discover.bb @@ -32,7 +32,7 @@ DEPENDS += " \ kidletime \ " -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/icons \ ${datadir}/k*5 \ ${datadir}/knsrcfiles \ @@ -44,4 +44,4 @@ FILES_${PN} += " \ ${OE_QMAKE_PATH_QML} \ " -RDEPENDS_${PN} += "python3-core kirigami" +RDEPENDS:${PN} += "python3-core kirigami" diff --git a/recipes-kde/plasma/untier/kde-cli-tools/kde-cli-tools.bb b/recipes-kde/plasma/untier/kde-cli-tools/kde-cli-tools.bb index 757e0758..51c75143 100644 --- a/recipes-kde/plasma/untier/kde-cli-tools/kde-cli-tools.bb +++ b/recipes-kde/plasma/untier/kde-cli-tools/kde-cli-tools.bb @@ -39,7 +39,7 @@ SRC_URI[sha256sum] = "44e2e379ef8e3d09cc8ec4db5564dec3d42a48dfb690c4ae9438189cd4 # do not move so-libs to -dev package FILES_SOLIBSDEV = "" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kservices5 \ ${OE_QMAKE_PATH_PLUGINS} \ ${libdir}/libkdeinit5_kcmshell5.so \ 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 f940e270..4f773607 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 @@ -34,7 +34,7 @@ SRC_URI[sha256sum] = "a8df53067f2392e6c8e0d7a234771374d832a91c0fdfed1b3bd197797f CFLAGS += "-isystem ${STAGING_INCDIR}/harfbuzz" CXXFLAGS += "-isystem ${STAGING_INCDIR}/harfbuzz" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kcm-gtk-module \ ${datadir}/kconf_update \ ${datadir}/themes \ diff --git a/recipes-kde/plasma/untier/kdeplasma-addons/kdeplasma-addons.bb b/recipes-kde/plasma/untier/kdeplasma-addons/kdeplasma-addons.bb index 9bba53cc..03c2b0bc 100644 --- a/recipes-kde/plasma/untier/kdeplasma-addons/kdeplasma-addons.bb +++ b/recipes-kde/plasma/untier/kdeplasma-addons/kdeplasma-addons.bb @@ -43,7 +43,7 @@ DEPENDS += " \ PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "607206ef5153602433413a34202075dbb518299db094b0ad3b50b20f70258eba" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/icons \ ${datadir}/kdevappwizard \ ${datadir}/knsrcfiles \ diff --git a/recipes-kde/plasma/untier/kgamma5/kgamma5.bb b/recipes-kde/plasma/untier/kgamma5/kgamma5.bb index 511d3307..f0126800 100644 --- a/recipes-kde/plasma/untier/kgamma5/kgamma5.bb +++ b/recipes-kde/plasma/untier/kgamma5/kgamma5.bb @@ -21,7 +21,7 @@ DEPENDS += " \ PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "b4b59897426f941a2681aaf0b41b932c1da0e00efd9e7df8b919c730404cfd39" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kgamma \ ${datadir}/kservices5 \ ${OE_QMAKE_PATH_PLUGINS} \ diff --git a/recipes-kde/plasma/untier/khotkeys/khotkeys.bb b/recipes-kde/plasma/untier/khotkeys/khotkeys.bb index c7c70ee1..f3fe36c2 100644 --- a/recipes-kde/plasma/untier/khotkeys/khotkeys.bb +++ b/recipes-kde/plasma/untier/khotkeys/khotkeys.bb @@ -35,7 +35,7 @@ DEPENDS += "\ PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "e8e191cbfc5b9b59e428aa3d08e2f8482b6d4b7e4dd26f37b4a7fa9b57eea1d2" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kservices5 \ ${datadir}/dbus-1 \ ${OE_QMAKE_PATH_PLUGINS} \ diff --git a/recipes-kde/plasma/untier/kinfocenter/kinfocenter.bb b/recipes-kde/plasma/untier/kinfocenter/kinfocenter.bb index 7e6bb770..f56dc7d7 100644 --- a/recipes-kde/plasma/untier/kinfocenter/kinfocenter.bb +++ b/recipes-kde/plasma/untier/kinfocenter/kinfocenter.bb @@ -42,7 +42,7 @@ PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "7cff6a49506f9dce828c486be0a473893533d37b0e801b5d580e763764f96e93" SRC_URI += "file://0001-fix-build-in-x11-less-environments.patch" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kcmusb \ ${datadir}/desktop-directories \ ${datadir}/k*5 \ diff --git a/recipes-kde/plasma/untier/kmenuedit/kmenuedit.bb b/recipes-kde/plasma/untier/kmenuedit/kmenuedit.bb index 934882f9..fe54ed50 100644 --- a/recipes-kde/plasma/untier/kmenuedit/kmenuedit.bb +++ b/recipes-kde/plasma/untier/kmenuedit/kmenuedit.bb @@ -36,7 +36,7 @@ SRC_URI[sha256sum] = "0b243bc8bb2cba4eebff55e7a01be5c7790da1fafd88d17bad808e5ffc # do not move so-libs to -dev package FILES_SOLIBSDEV = "" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kxmlgui5 \ ${datadir}/icons \ ${libdir}/libkdeinit5_kmenuedit.so \ diff --git a/recipes-kde/plasma/untier/kscreen/kscreen.bb b/recipes-kde/plasma/untier/kscreen/kscreen.bb index 86e05821..5a22162d 100644 --- a/recipes-kde/plasma/untier/kscreen/kscreen.bb +++ b/recipes-kde/plasma/untier/kscreen/kscreen.bb @@ -31,7 +31,7 @@ DEPENDS += "\ PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "27f8d52b52c3cee0b9def5bf2fc85916e29495b4b1e1d14dfd99f452ae3a7642" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*_kscreen \ ${datadir}/kservices5 \ ${datadir}/plasma \ diff --git a/recipes-kde/plasma/untier/kscreenlocker/kscreenlocker.bb b/recipes-kde/plasma/untier/kscreenlocker/kscreenlocker.bb index 120fefd7..63d502f8 100644 --- a/recipes-kde/plasma/untier/kscreenlocker/kscreenlocker.bb +++ b/recipes-kde/plasma/untier/kscreenlocker/kscreenlocker.bb @@ -33,12 +33,12 @@ PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "328570e8f08fc2a92fb4ce67e57e53ecf4cc6b28a0507ba031e340748632ec44" SRC_URI += "file://kde.pam" -do_install_append() { +do_install:append() { install -d ${D}${sysconfdir}/pam.d install -m 644 ${WORKDIR}/kde.pam ${D}${sysconfdir}/pam.d/kde } -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/dbus-1 \ ${datadir}/kconf_update \ ${datadir}/k*5 \ @@ -49,4 +49,4 @@ FILES_${PN} += " \ ${OE_QMAKE_PATH_PLUGINS} \ " -RDEPENDS_${PN} += "perl" +RDEPENDS:${PN} += "perl" diff --git a/recipes-kde/plasma/untier/kwallet-pam/kwallet-pam.bb b/recipes-kde/plasma/untier/kwallet-pam/kwallet-pam.bb index 55450683..90c6b02d 100644 --- a/recipes-kde/plasma/untier/kwallet-pam/kwallet-pam.bb +++ b/recipes-kde/plasma/untier/kwallet-pam/kwallet-pam.bb @@ -20,6 +20,6 @@ SRC_URI += "file://0001-use-pkgconfig-to-find-libgcrypt.patch" EXTRA_OECMAKE += "-DCMAKE_INSTALL_LIBDIR=${base_libdir}" -FILES_${PN} += "${base_libdir}/security" +FILES:${PN} += "${base_libdir}/security" -RDEPENDS_${PN} = "socat" +RDEPENDS:${PN} = "socat" diff --git a/recipes-kde/plasma/untier/kwayland-integration/kwayland-integration.bb b/recipes-kde/plasma/untier/kwayland-integration/kwayland-integration.bb index 2ffc2b4a..c15961bc 100644 --- a/recipes-kde/plasma/untier/kwayland-integration/kwayland-integration.bb +++ b/recipes-kde/plasma/untier/kwayland-integration/kwayland-integration.bb @@ -18,6 +18,6 @@ DEPENDS += " \ PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "cb068ad16d5275e4875c8d53230e7974003733e7fc2db944522922bac700d49e" -FILES_${PN} += " \ +FILES:${PN} += " \ ${OE_QMAKE_PATH_PLUGINS} \ " diff --git a/recipes-kde/plasma/untier/kwayland-server/kwayland-server.bb b/recipes-kde/plasma/untier/kwayland-server/kwayland-server.bb index ac6aa128..7945dca7 100644 --- a/recipes-kde/plasma/untier/kwayland-server/kwayland-server.bb +++ b/recipes-kde/plasma/untier/kwayland-server/kwayland-server.bb @@ -11,25 +11,25 @@ LIC_FILES_CHKSUM = " \ inherit kde-plasma -DEPENDS_remove_class-native = " kwayland-native" -DEPENDS_append_class-native = " \ +DEPENDS:remove:class-native = " kwayland-native" +DEPENDS:append:class-native = " \ qtwayland-native \ " -DEPENDS_append_class-target = " \ +DEPENDS:append:class-target = " \ ${BPN}-native \ qtwayland-native \ plasma-wayland-protocols \ " PV = "${PLASMA_VERSION}" -SRC_URI_append_class-native = " \ +SRC_URI:append:class-native = " \ file://0001-Build-qtwaylandscanner_kde-only-for-native-build.patch \ file://0002-Avoid-traces-to-sysroot-to-avoid-false-fails-by-cmak.patch \ " SRC_URI[sha256sum] = "da167417221610d521fefbe4ae1322aa20e7d6ac782cadcb61972f915589767c" -do_configure_append() { +do_configure:append() { # adjust path to protocol sources in sysroot # once there are more consumers of plasma-wayland-protocols we might need # to find another solution @@ -37,7 +37,7 @@ do_configure_append() { sed -i 's: ${datadir}/wayland/wayland.xml: ${STAGING_DATADIR}/wayland/wayland.xml:g' ${B}/build.ninja } -do_install_class-native() { +do_install:class-native() { install -d ${D}${bindir} install -m0755 ${B}/bin/* ${D}${bindir}/ } diff --git a/recipes-kde/plasma/untier/kwin/kwin.bb b/recipes-kde/plasma/untier/kwin/kwin.bb index 7eb5443b..19fabcba 100644 --- a/recipes-kde/plasma/untier/kwin/kwin.bb +++ b/recipes-kde/plasma/untier/kwin/kwin.bb @@ -64,9 +64,9 @@ PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "b02a1c4c1f85d11f1206d364ffdcf242ba658046cb80751f0d769e15151aa3f4" # kwin check libepoxy only -> egl pkgconfig is skipped -CXXFLAGS_append_mx6 += " -DLINUX=1" +CXXFLAGS:append_mx6 += " -DLINUX=1" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/dbus-1 \ ${datadir}/kconf_update \ @@ -83,11 +83,11 @@ FILES_${PN} += " \ # taken from bitbake.conf with lucky modification: all lt libraries end with s.so # only move them to -dev package FILES_SOLIBSDEV = "${base_libdir}/lib*${SOLIBSDEV} ${libdir}/lib*s${SOLIBSDEV}" -FILES_${PN} += " \ +FILES:${PN} += " \ ${libdir}/*.so \ " -RDEPENDS_${PN} += " \ +RDEPENDS:${PN} += " \ ${@bb.utils.contains("DISTRO_FEATURES", "x11 wayland", "xwayland", "",d)} \ ${@bb.utils.contains("DISTRO_FEATURES", "wayland", "qtwayland", "",d)} \ qtmultimedia \ diff --git a/recipes-kde/plasma/untier/kwrited/kwrited.bb b/recipes-kde/plasma/untier/kwrited/kwrited.bb index 0c8a9b99..64a2bf07 100644 --- a/recipes-kde/plasma/untier/kwrited/kwrited.bb +++ b/recipes-kde/plasma/untier/kwrited/kwrited.bb @@ -18,6 +18,6 @@ DEPENDS += " \ PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "9158fb7dc963e01c356cf5572910d72e2914a749e3dd46956898a35d1c5e73e5" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/knotifications5 \ " diff --git a/recipes-kde/plasma/untier/layer-shell-qt/layer-shell-qt.bb b/recipes-kde/plasma/untier/layer-shell-qt/layer-shell-qt.bb index 80823066..fdcba249 100644 --- a/recipes-kde/plasma/untier/layer-shell-qt/layer-shell-qt.bb +++ b/recipes-kde/plasma/untier/layer-shell-qt/layer-shell-qt.bb @@ -16,6 +16,6 @@ DEPENDS += " \ PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "1528e64b441f2c67c71f87785485644376391489fdef9a9de0c0034517993886" -FILES_${PN} += " \ +FILES:${PN} += " \ ${OE_QMAKE_PATH_PLUGINS} \ " diff --git a/recipes-kde/plasma/untier/libkscreen/libkscreen.bb b/recipes-kde/plasma/untier/libkscreen/libkscreen.bb index 6e681332..899acf11 100644 --- a/recipes-kde/plasma/untier/libkscreen/libkscreen.bb +++ b/recipes-kde/plasma/untier/libkscreen/libkscreen.bb @@ -14,7 +14,7 @@ DEPENDS += "${@bb.utils.contains("DISTRO_FEATURES", "x11", "virtual/libx11 qtx11 PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "a211b9b900ced93f506936bfb1e28ec19aa52ebec4cb08e8a15e382114fc557c" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/dbus-1 \ ${OE_QMAKE_PATH_PLUGINS} \ " diff --git a/recipes-kde/plasma/untier/libksysguard/libksysguard.bb b/recipes-kde/plasma/untier/libksysguard/libksysguard.bb index 0ccf69f8..836a3e2c 100644 --- a/recipes-kde/plasma/untier/libksysguard/libksysguard.bb +++ b/recipes-kde/plasma/untier/libksysguard/libksysguard.bb @@ -39,7 +39,7 @@ DEPENDS += " \ PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "80b1fb5ba0a2482700d46ecfb3e915380c120c09edc276333fee997ff4330692" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/dbus-1 \ ${datadir}/polkit-1 \ ${datadir}/ksysguard \ diff --git a/recipes-kde/plasma/untier/milou/milou.bb b/recipes-kde/plasma/untier/milou/milou.bb index 1cca96f1..cd7d1d91 100644 --- a/recipes-kde/plasma/untier/milou/milou.bb +++ b/recipes-kde/plasma/untier/milou/milou.bb @@ -28,7 +28,7 @@ DEPENDS += " \ PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "7aa04f355c7a9ac6ee089a17aa34d0607b230c9b09a3e99a57317f3fe44aca85" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/plasma \ ${OE_QMAKE_PATH_PLUGINS} \ diff --git a/recipes-kde/plasma/untier/oxygen-fonts/oxygen-fonts.bb b/recipes-kde/plasma/untier/oxygen-fonts/oxygen-fonts.bb index bb73f096..0173a56e 100644 --- a/recipes-kde/plasma/untier/oxygen-fonts/oxygen-fonts.bb +++ b/recipes-kde/plasma/untier/oxygen-fonts/oxygen-fonts.bb @@ -16,6 +16,6 @@ SRC_URI[sha256sum] = "a02f6580e9a53cb16694a99adbb6dbf76f17584f3e97f469a222862995 EXTRA_OECMAKE += "-DOXYGEN_FONT_INSTALL_DIR=${datadir}/fonts/truetype/oxygen" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/fonts \ " diff --git a/recipes-kde/plasma/untier/oxygen/oxygen.bb b/recipes-kde/plasma/untier/oxygen/oxygen.bb index 3f795e43..2511047f 100644 --- a/recipes-kde/plasma/untier/oxygen/oxygen.bb +++ b/recipes-kde/plasma/untier/oxygen/oxygen.bb @@ -30,7 +30,7 @@ SRC_URI[sha256sum] = "fcdf1aafde0748e81b82410fbc4ddb01f15f7a57ec17ef17e05d80e833 PACKAGECONFIG ??= "" PACKAGECONFIG[settings] = "-DBUILD_OXYGEN_SETTINGS=ON,-DBUILD_OXYGEN_SETTINGS=OFF,kcmutils" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/icons \ ${datadir}/kservices5 \ ${datadir}/kstyle \ diff --git a/recipes-kde/plasma/untier/plasma-browser-integration/plasma-browser-integration.bb b/recipes-kde/plasma/untier/plasma-browser-integration/plasma-browser-integration.bb index c312d642..4f12f789 100644 --- a/recipes-kde/plasma/untier/plasma-browser-integration/plasma-browser-integration.bb +++ b/recipes-kde/plasma/untier/plasma-browser-integration/plasma-browser-integration.bb @@ -24,7 +24,7 @@ DEPENDS += " \ " # TBD split chrome/chromium/mozilla -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/krunner \ ${libdir}/mozilla \ diff --git a/recipes-kde/plasma/untier/plasma-desktop/plasma-desktop.bb b/recipes-kde/plasma/untier/plasma-desktop/plasma-desktop.bb index 0731e22d..c0c28263 100644 --- a/recipes-kde/plasma/untier/plasma-desktop/plasma-desktop.bb +++ b/recipes-kde/plasma/untier/plasma-desktop/plasma-desktop.bb @@ -55,7 +55,7 @@ SRC_URI += "file://0001-Ensure-xkb_base-is-not-empty-instead-of-checking-if-.pat FILES_SOLIBSDEV = "${libdir}/libkfont*${SOLIBSDEV}" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k* \ ${datadir}/appdata \ ${datadir}/config.kcfg \ @@ -72,7 +72,7 @@ FILES_${PN} += " \ ${libdir}/kconf_update_bin \ " -RDEPENDS_${PN} += " \ +RDEPENDS:${PN} += " \ qtgraphicaleffects \ qtquickcontrols-qmlplugins \ gawk \ diff --git a/recipes-kde/plasma/untier/plasma-integration/plasma-integration.bb b/recipes-kde/plasma/untier/plasma-integration/plasma-integration.bb index 08c4e34d..60056b1e 100644 --- a/recipes-kde/plasma/untier/plasma-integration/plasma-integration.bb +++ b/recipes-kde/plasma/untier/plasma-integration/plasma-integration.bb @@ -28,9 +28,9 @@ DEPENDS += " \ PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "e08b0c8030ef465d44de4f460d71970f15c7697c7d3095afa9d07b2d41a45467" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kconf_update \ ${OE_QMAKE_PATH_PLUGINS} \ " -RDEPENDS_${PN} += "perl" +RDEPENDS:${PN} += "perl" diff --git a/recipes-kde/plasma/untier/plasma-nano/plasma-nano.bb b/recipes-kde/plasma/untier/plasma-nano/plasma-nano.bb index 279266be..cfede697 100644 --- a/recipes-kde/plasma/untier/plasma-nano/plasma-nano.bb +++ b/recipes-kde/plasma/untier/plasma-nano/plasma-nano.bb @@ -16,7 +16,7 @@ DEPENDS += " \ PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "2051929271e7be0bc38febeb21cc11567c30af0da809a24f7043ce07af3de5a9" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/plasma \ ${datadir}/kservices5 \ ${datadir}/plasma/shells \ diff --git a/recipes-kde/plasma/untier/plasma-nm/plasma-nm.bb b/recipes-kde/plasma/untier/plasma-nm/plasma-nm.bb index 2e1ec375..d2d49b35 100644 --- a/recipes-kde/plasma/untier/plasma-nm/plasma-nm.bb +++ b/recipes-kde/plasma/untier/plasma-nm/plasma-nm.bb @@ -50,9 +50,9 @@ SRC_URI[sha256sum] = "c8043d33023aae1087a8d35800575ee9df710f35ec996fb9fc7ecc8f35 # do not move so-libs to -dev package FILES_SOLIBSDEV = "" -RDEPENDS_${PN} = "networkmanager" +RDEPENDS:${PN} = "networkmanager" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/plasma \ ${datadir}/kcm_networkmanagement/qml \ diff --git a/recipes-kde/plasma/untier/plasma-pa/plasma-pa.bb b/recipes-kde/plasma/untier/plasma-pa/plasma-pa.bb index e2d70c21..b91a1f87 100644 --- a/recipes-kde/plasma/untier/plasma-pa/plasma-pa.bb +++ b/recipes-kde/plasma/untier/plasma-pa/plasma-pa.bb @@ -33,9 +33,9 @@ SRC_URI[sha256sum] = "8a5b5b212c0f08e2c5e9f0ee7f5d62b0adf6008b69d337cede3ca18b80 FILES_SOLIBSDEV = "" -RDEPENDS_${PN} += "pulseaudio-server perl" +RDEPENDS:${PN} += "pulseaudio-server perl" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/kpackage \ ${datadir}/kconf_update \ ${datadir}/kde4 \ diff --git a/recipes-kde/plasma/untier/plasma-phone-components/plasma-phone-components.bb b/recipes-kde/plasma/untier/plasma-phone-components/plasma-phone-components.bb index d2c90c2a..e773bcfa 100644 --- a/recipes-kde/plasma/untier/plasma-phone-components/plasma-phone-components.bb +++ b/recipes-kde/plasma/untier/plasma-phone-components/plasma-phone-components.bb @@ -28,7 +28,7 @@ inherit kde-plasma gettext PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "abbc3d5ddc82a19b8188772ed38534fa911d9119c1a3e48e2f62e4ddab3a7956" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/kwin \ ${datadir}/metainfo \ @@ -40,7 +40,7 @@ FILES_${PN} += " \ ${OE_QMAKE_PATH_PLUGINS} \ " -RDEPENDS_${PN} += " \ +RDEPENDS:${PN} += " \ libqofono \ qtvirtualkeyboard-plugins \ qtvirtualkeyboard-qmlplugins \ diff --git a/recipes-kde/plasma/untier/plasma-systemmonitor/plasma-systemmonitor.bb b/recipes-kde/plasma/untier/plasma-systemmonitor/plasma-systemmonitor.bb index 726f44aa..10c3df79 100644 --- a/recipes-kde/plasma/untier/plasma-systemmonitor/plasma-systemmonitor.bb +++ b/recipes-kde/plasma/untier/plasma-systemmonitor/plasma-systemmonitor.bb @@ -33,7 +33,7 @@ DEPENDS += " \ PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "8b0d43e91d8ba368fed96d63b34aee7f401a9c0cc47533b363bca365a69c86be" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/config.kcfg \ ${datadir}/ksysguard \ ${datadir}/knsrcfiles \ diff --git a/recipes-kde/plasma/untier/plasma-vault/plasma-vault.bb b/recipes-kde/plasma/untier/plasma-vault/plasma-vault.bb index a41199ef..ec672bc1 100644 --- a/recipes-kde/plasma/untier/plasma-vault/plasma-vault.bb +++ b/recipes-kde/plasma/untier/plasma-vault/plasma-vault.bb @@ -29,7 +29,7 @@ DEPENDS += " \ libksysguard \ " -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/plasma \ ${OE_QMAKE_PATH_PLUGINS} \ diff --git a/recipes-kde/plasma/untier/plasma-workspace-wallpapers/plasma-workspace-wallpapers.bb b/recipes-kde/plasma/untier/plasma-workspace-wallpapers/plasma-workspace-wallpapers.bb index ee5882ba..2955ba02 100644 --- a/recipes-kde/plasma/untier/plasma-workspace-wallpapers/plasma-workspace-wallpapers.bb +++ b/recipes-kde/plasma/untier/plasma-workspace-wallpapers/plasma-workspace-wallpapers.bb @@ -9,4 +9,4 @@ inherit kde-plasma PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "d9da4dfea96c4aa1a7a9683f887573433777354691850ada62ed54c4221e7f29" -FILES_${PN} += "${datadir}/wallpapers" +FILES:${PN} += "${datadir}/wallpapers" diff --git a/recipes-kde/plasma/untier/polkit-kde-agent-1/polkit-kde-agent-1.bb b/recipes-kde/plasma/untier/polkit-kde-agent-1/polkit-kde-agent-1.bb index b0b76e9f..1d55b044 100644 --- a/recipes-kde/plasma/untier/polkit-kde-agent-1/polkit-kde-agent-1.bb +++ b/recipes-kde/plasma/untier/polkit-kde-agent-1/polkit-kde-agent-1.bb @@ -25,7 +25,7 @@ DEPENDS += " \ PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "e2836b462261351cd920a61473c5812a9d2770db20a1cbd22dca248d89cdb95f" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/knotifications5 \ ${systemd_user_unitdir} \ " diff --git a/recipes-kde/plasma/untier/powerdevil/powerdevil.bb b/recipes-kde/plasma/untier/powerdevil/powerdevil.bb index a4a01d88..98ac564c 100644 --- a/recipes-kde/plasma/untier/powerdevil/powerdevil.bb +++ b/recipes-kde/plasma/untier/powerdevil/powerdevil.bb @@ -32,7 +32,7 @@ DEPENDS += " \ PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "d5d01e5017306aff215e6ba3be21c940b7771a599e92445f8526406fb63e829c" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/kconf_update \ ${datadir}/dbus-1 \ @@ -41,4 +41,4 @@ FILES_${PN} += " \ ${systemd_user_unitdir} \ " -RDEPENDS_${PN} += "upower" +RDEPENDS:${PN} += "upower" diff --git a/recipes-kde/plasma/untier/sddm-kcm/sddm-kcm.bb b/recipes-kde/plasma/untier/sddm-kcm/sddm-kcm.bb index a8156caf..a0d81da6 100644 --- a/recipes-kde/plasma/untier/sddm-kcm/sddm-kcm.bb +++ b/recipes-kde/plasma/untier/sddm-kcm/sddm-kcm.bb @@ -26,9 +26,9 @@ DEPENDS += " \ PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "e4845375ded8d8b1279a340f8c9feed573c301cf1c2b7f9fd2b5288444c34022" -RDEPENDS_${PN} = "sddm" +RDEPENDS:${PN} = "sddm" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/dbus-1 \ ${datadir}/knsrcfiles \ ${datadir}/kservices5 \ diff --git a/recipes-kde/plasma/untier/systemsettings/systemsettings.bb b/recipes-kde/plasma/untier/systemsettings/systemsettings.bb index 33d3ebb3..0ddebcde 100644 --- a/recipes-kde/plasma/untier/systemsettings/systemsettings.bb +++ b/recipes-kde/plasma/untier/systemsettings/systemsettings.bb @@ -37,7 +37,7 @@ DEPENDS += " \ PV = "${PLASMA_VERSION}" SRC_URI[sha256sum] = "10ed28d66aa7419210013f8a71cf43acdf82155cc47f6a1c9caa41a37480e2aa" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/k*5 \ ${datadir}/kpackage \ ${datadir}/kglobalaccel \ diff --git a/recipes-liri/liri-appcenter/liri-appcenter_git.bb b/recipes-liri/liri-appcenter/liri-appcenter_git.bb index dee6ecd5..143c16d2 100644 --- a/recipes-liri/liri-appcenter/liri-appcenter_git.bb +++ b/recipes-liri/liri-appcenter/liri-appcenter_git.bb @@ -19,4 +19,4 @@ DEPENDS += " \ vibe \ " -FILES_${PN} += "${OE_QMAKE_PATH_QML} ${datadir}" +FILES:${PN} += "${OE_QMAKE_PATH_QML} ${datadir}" diff --git a/recipes-liri/liri-browser/liri-browser_git.bb b/recipes-liri/liri-browser/liri-browser_git.bb index 937fbcf2..492d4a14 100644 --- a/recipes-liri/liri-browser/liri-browser_git.bb +++ b/recipes-liri/liri-browser/liri-browser_git.bb @@ -19,11 +19,11 @@ DEPENDS += " \ liri-fluid \ " -do_configure_prepend() { +do_configure:prepend() { export PREFIX=${prefix} } # No links -> runtime dependency -RDEPENDS_${PN} += " \ +RDEPENDS:${PN} += " \ slime-engine \ " diff --git a/recipes-liri/liri-calculator/liri-calculator_git.bb b/recipes-liri/liri-calculator/liri-calculator_git.bb index 34da1f7d..ec861a39 100644 --- a/recipes-liri/liri-calculator/liri-calculator_git.bb +++ b/recipes-liri/liri-calculator/liri-calculator_git.bb @@ -15,6 +15,6 @@ SRCREV = "7dae77e72dd6cf1888ee546d8a2d9a2e815b123e" S = "${WORKDIR}/git" PV = "1.2.0+git${SRCPV}" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/metainfo \ " diff --git a/recipes-liri/liri-cmake-shared/liri-cmake-shared_git.bb b/recipes-liri/liri-cmake-shared/liri-cmake-shared_git.bb index c560886b..0d2db0a0 100644 --- a/recipes-liri/liri-cmake-shared/liri-cmake-shared_git.bb +++ b/recipes-liri/liri-cmake-shared/liri-cmake-shared_git.bb @@ -13,4 +13,4 @@ PV = "1.1.0+git${SRCPV}" SRCREV = "044fcc350bda67f9325f43d75e8fbfb74984ee11" S = "${WORKDIR}/git" -FILES_${PN}-dev += "${datadir}/LiriCMakeShared" +FILES:${PN}-dev += "${datadir}/LiriCMakeShared" diff --git a/recipes-liri/liri-eglfs/liri-eglfs_git.bb b/recipes-liri/liri-eglfs/liri-eglfs_git.bb index e95c944f..8d6c9719 100644 --- a/recipes-liri/liri-eglfs/liri-eglfs_git.bb +++ b/recipes-liri/liri-eglfs/liri-eglfs_git.bb @@ -25,6 +25,6 @@ SRC_URI += " \ " S = "${WORKDIR}/git" -FILES_${PN} += " \ +FILES:${PN} += " \ ${OE_QMAKE_PATH_PLUGINS} \ " diff --git a/recipes-liri/liri-files/liri-files_git.bb b/recipes-liri/liri-files/liri-files_git.bb index 75943911..40df314e 100644 --- a/recipes-liri/liri-files/liri-files_git.bb +++ b/recipes-liri/liri-files/liri-files_git.bb @@ -20,11 +20,11 @@ DEPENDS += " \ EXTRA_OECMAKE += "-DQt5LinguistTools_DIR=${STAGING_LIBDIR_NATIVE}/cmake/Qt5LinguistTools" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/metainfo \ ${OE_QMAKE_PATH_QML} \ " -RREPLACES_${PN} = "swordfish" -RPROVIDES_${PN} = "swordfish" -RCONFLICTS_${PN} = "swordfish" +RREPLACES:${PN} = "swordfish" +RPROVIDES:${PN} = "swordfish" +RCONFLICTS:${PN} = "swordfish" diff --git a/recipes-liri/liri-fluid/liri-fluid_git.bb b/recipes-liri/liri-fluid/liri-fluid_git.bb index 9fc49c3d..30d35b85 100644 --- a/recipes-liri/liri-fluid/liri-fluid_git.bb +++ b/recipes-liri/liri-fluid/liri-fluid_git.bb @@ -16,7 +16,7 @@ DEPENDS += " \ qtsvg \ " -do_configure_prepend() { +do_configure:prepend() { (cd ${S} && ./scripts/fetch_icons.sh) } @@ -25,15 +25,15 @@ EXTRA_OECMAKE += " \ -DFLUID_WITH_DOCUMENTATION=OFF \ " -FILES_${PN} += " \ +FILES:${PN} += " \ ${OE_QMAKE_PATH_QML} \ " -FILES_${PN}-dev += " \ +FILES:${PN}-dev += " \ ${datadir}/icons \ ${datadir}/metainfo \ ${OE_QMAKE_PATH_QT_ARCHDATA}/mkspecs \ " -RDEPENDS_${PN} += " \ +RDEPENDS:${PN} += " \ qtsvg-plugins \ " diff --git a/recipes-liri/liri-libliri/liri-libliri_git.bb b/recipes-liri/liri-libliri/liri-libliri_git.bb index a58c1c56..7fd0aab5 100644 --- a/recipes-liri/liri-libliri/liri-libliri_git.bb +++ b/recipes-liri/liri-libliri/liri-libliri_git.bb @@ -12,6 +12,6 @@ PV = "0.9.0+git${SRCPV}" SRCREV = "ddc3b049db412a89e91a37bd35e0435e76df7adc" S = "${WORKDIR}/git" -FILES_${PN} += " \ +FILES:${PN} += " \ ${OE_QMAKE_PATH_QML}/Liri \ " diff --git a/recipes-liri/liri-materialdecoration/liri-materialdecoration_git.bb b/recipes-liri/liri-materialdecoration/liri-materialdecoration_git.bb index c19d0434..f8d27a9a 100644 --- a/recipes-liri/liri-materialdecoration/liri-materialdecoration_git.bb +++ b/recipes-liri/liri-materialdecoration/liri-materialdecoration_git.bb @@ -17,6 +17,6 @@ PV = "1.1.0+git${SRCPV}" SRCREV = "6a5de23f2e5162fbee39d16f938473ff970a2ec0" S = "${WORKDIR}/git" -FILES_${PN} += " \ +FILES:${PN} += " \ ${libdir}/plugins \ " diff --git a/recipes-liri/liri-networkmanager/liri-networkmanager_git.bb b/recipes-liri/liri-networkmanager/liri-networkmanager_git.bb index 46aea345..26904481 100644 --- a/recipes-liri/liri-networkmanager/liri-networkmanager_git.bb +++ b/recipes-liri/liri-networkmanager/liri-networkmanager_git.bb @@ -19,7 +19,7 @@ DEPENDS += " \ modemmanager-qt \ " -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/liri-shell/indicators \ ${datadir}/liri-settings/modules \ ${OE_QMAKE_PATH_QML} \ diff --git a/recipes-liri/liri-platformtheme/liri-platformtheme_git.bb b/recipes-liri/liri-platformtheme/liri-platformtheme_git.bb index 1fa86b16..23bc7427 100644 --- a/recipes-liri/liri-platformtheme/liri-platformtheme_git.bb +++ b/recipes-liri/liri-platformtheme/liri-platformtheme_git.bb @@ -16,6 +16,6 @@ PV = "1.0.0+git${SRCPV}" SRCREV = "fa9bdf9f4efb494e3a5703f33c990013e4d5a99b" S = "${WORKDIR}/git" -FILES_${PN} += " \ +FILES:${PN} += " \ ${OE_QMAKE_PATH_PLUGINS} \ " diff --git a/recipes-liri/liri-player/liri-player_git.bb b/recipes-liri/liri-player/liri-player_git.bb index 528218bd..c5724b54 100644 --- a/recipes-liri/liri-player/liri-player_git.bb +++ b/recipes-liri/liri-player/liri-player_git.bb @@ -16,4 +16,4 @@ SRCREV = "04d239f4504daa1ea161d27dab23f6b1b5238f9d" S = "${WORKDIR}/git" PV = "0.0.0+git${SRCPV}" -FILES_${PN} += "${datadir}/metainfo" +FILES:${PN} += "${datadir}/metainfo" diff --git a/recipes-liri/liri-power-manager/liri-power-manager_git.bb b/recipes-liri/liri-power-manager/liri-power-manager_git.bb index c03d7f6f..0f8f6cd2 100644 --- a/recipes-liri/liri-power-manager/liri-power-manager_git.bb +++ b/recipes-liri/liri-power-manager/liri-power-manager_git.bb @@ -25,7 +25,7 @@ DEPENDS += " \ EXTRA_OECMAKE += "-DINSTALL_SYSCONFDIR=${sysconfdir}" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/liri-settings \ ${datadir}/liri-shell \ ${OE_QMAKE_PATH_QML} \ diff --git a/recipes-liri/liri-pulseaudio/liri-pulseaudio_git.bb b/recipes-liri/liri-pulseaudio/liri-pulseaudio_git.bb index 3c316d4b..9e0d5836 100644 --- a/recipes-liri/liri-pulseaudio/liri-pulseaudio_git.bb +++ b/recipes-liri/liri-pulseaudio/liri-pulseaudio_git.bb @@ -18,7 +18,7 @@ DEPENDS += " \ pulseaudio \ " -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/liri-shell/indicators \ ${datadir}/liri-settings/modules \ ${OE_QMAKE_PATH_QML} \ diff --git a/recipes-liri/liri-qml-xwayland/liri-qml-xwayland_git.bb b/recipes-liri/liri-qml-xwayland/liri-qml-xwayland_git.bb index d941781a..36ef126e 100644 --- a/recipes-liri/liri-qml-xwayland/liri-qml-xwayland_git.bb +++ b/recipes-liri/liri-qml-xwayland/liri-qml-xwayland_git.bb @@ -17,4 +17,4 @@ DEPENDS += " \ qtwayland \ " -FILES_${PN} += "${OE_QMAKE_PATH_QML}" +FILES:${PN} += "${OE_QMAKE_PATH_QML}" diff --git a/recipes-liri/liri-qtaccountsservice/liri-qtaccountsservice_git.bb b/recipes-liri/liri-qtaccountsservice/liri-qtaccountsservice_git.bb index 23f1b53e..86cae3e6 100644 --- a/recipes-liri/liri-qtaccountsservice/liri-qtaccountsservice_git.bb +++ b/recipes-liri/liri-qtaccountsservice/liri-qtaccountsservice_git.bb @@ -10,4 +10,4 @@ PV = "1.3.0+git${SRCPV}" SRCREV = "15ad06ccaf3c74a33a2b0f67438d218cd88cc8d2" S = "${WORKDIR}/git" -FILES_${PN} += "${OE_QMAKE_PATH_QML}" +FILES:${PN} += "${OE_QMAKE_PATH_QML}" diff --git a/recipes-liri/liri-qtgsettings/liri-qtgsettings_git.bb b/recipes-liri/liri-qtgsettings/liri-qtgsettings_git.bb index cadb8385..adfface4 100644 --- a/recipes-liri/liri-qtgsettings/liri-qtgsettings_git.bb +++ b/recipes-liri/liri-qtgsettings/liri-qtgsettings_git.bb @@ -12,6 +12,6 @@ PV = "1.3.0+git${SRCPV}" SRCREV = "547bc70ad6ddfa57ad91df654f7f2f4819e714ae" S = "${WORKDIR}/git" -FILES_${PN} += "${OE_QMAKE_PATH_QML}" +FILES:${PN} += "${OE_QMAKE_PATH_QML}" -RDEPENDS_${PN} += "dconf" +RDEPENDS:${PN} += "dconf" diff --git a/recipes-liri/liri-session/liri-session_git.bb b/recipes-liri/liri-session/liri-session_git.bb index ec71fce2..f32ef3d5 100644 --- a/recipes-liri/liri-session/liri-session_git.bb +++ b/recipes-liri/liri-session/liri-session_git.bb @@ -18,7 +18,7 @@ DEPENDS += " \ liri-libliri \ " -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/desktop-directories \ ${datadir}/liri-session/systemd-user/autostart \ ${datadir}/wayland-sessions \ diff --git a/recipes-liri/liri-settings/liri-settings_git.bb b/recipes-liri/liri-settings/liri-settings_git.bb index 0e2ff786..8bb627ad 100644 --- a/recipes-liri/liri-settings/liri-settings_git.bb +++ b/recipes-liri/liri-settings/liri-settings_git.bb @@ -22,12 +22,12 @@ DEPENDS += " \ xkeyboard-config \ " -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/dbus-1 \ ${datadir}/liri-settings/modules \ ${OE_QMAKE_PATH_QML} \ " -RREPLACES_${PN} = "hawaii-system-preferences" -RPROVIDES_${PN} = "hawaii-system-preferences" -RCONFLICTS_${PN} = "hawaii-system-preferences" +RREPLACES:${PN} = "hawaii-system-preferences" +RPROVIDES:${PN} = "hawaii-system-preferences" +RCONFLICTS:${PN} = "hawaii-system-preferences" diff --git a/recipes-liri/liri-shell/liri-shell_git.bb b/recipes-liri/liri-shell/liri-shell_git.bb index 3d5fa376..46760704 100644 --- a/recipes-liri/liri-shell/liri-shell_git.bb +++ b/recipes-liri/liri-shell/liri-shell_git.bb @@ -33,19 +33,19 @@ EXTRA_OECMAKE += " \ -DLIRI_SHELL_DEVELOPMENT_BUILD=ON \ " -RDEPENDS_${PN} += " \ +RDEPENDS:${PN} += " \ qttools-tools \ qtwayland-plugins \ qtgraphicaleffects-qmlplugins \ " -FILES_${PN} += " \ +FILES:${PN} += " \ ${systemd_user_unitdir} \ ${datadir}/wayland-sessions \ ${datadir}/desktop-directories \ ${OE_QMAKE_PATH_QML} \ " -RREPLACES_${PN} = "hawaii-shell" -RPROVIDES_${PN} = "hawaii-shell" -RCONFLICTS_${PN} = "hawaii-shell" +RREPLACES:${PN} = "hawaii-shell" +RPROVIDES:${PN} = "hawaii-shell" +RCONFLICTS:${PN} = "hawaii-shell" diff --git a/recipes-liri/liri-terminal/liri-terminal_git.bb b/recipes-liri/liri-terminal/liri-terminal_git.bb index 192c1592..b15c66d5 100644 --- a/recipes-liri/liri-terminal/liri-terminal_git.bb +++ b/recipes-liri/liri-terminal/liri-terminal_git.bb @@ -15,13 +15,13 @@ PV = "0.2.0+git${SRCPV}" SRCREV = "953ce625ba194dd00fd654597bbffb04433405db" S = "${WORKDIR}/git" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/metainfo \ ${datadir}/${PN}/color-schemes \ ${datadir}/${PN}/kb-layouts \ ${OE_QMAKE_PATH_QML} \ " -RREPLACES_${PN} = "hawaii-terminal" -RPROVIDES_${PN} = "hawaii-terminal" -RCONFLICTS_${PN} = "hawaii-terminal" +RREPLACES:${PN} = "hawaii-terminal" +RPROVIDES:${PN} = "hawaii-terminal" +RCONFLICTS:${PN} = "hawaii-terminal" diff --git a/recipes-liri/liri-text/liri-text_git.bb b/recipes-liri/liri-text/liri-text_git.bb index 5e0c0627..0b9cb97d 100644 --- a/recipes-liri/liri-text/liri-text_git.bb +++ b/recipes-liri/liri-text/liri-text_git.bb @@ -17,7 +17,7 @@ PV = "0.5.0+git${SRCPV}" SRCREV = "53a995fae34e5bfd67182cd44f66a50fa81d5d4a" S = "${WORKDIR}/git" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/icons \ ${datadir}/metainfo \ ${datadir}/liri-text/language-specs \ diff --git a/recipes-liri/liri-themes/liri-themes_git.bb b/recipes-liri/liri-themes/liri-themes_git.bb index 5297114e..aab71263 100644 --- a/recipes-liri/liri-themes/liri-themes_git.bb +++ b/recipes-liri/liri-themes/liri-themes_git.bb @@ -15,7 +15,7 @@ EXTRA_OECMAKE += " \ -DINSTALL_GRUBDIR=/boot/grub \ " -do_install_append() { +do_install:append() { ${@bb.utils.contains('BBFILE_COLLECTIONS', 'meta-initramfs', '', 'rm -rf ${D}${datadir}/plymouth', d)} } @@ -25,17 +25,17 @@ PACKAGES += " \ ${@bb.utils.contains('BBFILE_COLLECTIONS', 'meta-initramfs', '${PN}-plymouth', '', d)} \ " -RDEPENDS_${PN}-plymouth += " \ +RDEPENDS:${PN}-plymouth += " \ plymouth \ plymouth-set-default-theme \ " -FILES_${PN} += "${datadir}/color-schemes" -FILES_${PN}-grub += "/boot/grub/themes" -FILES_${PN}-plymouth += "${datadir}/plymouth/themes" -FILES_${PN}-sddm += "${datadir}/sddm/themes" +FILES:${PN} += "${datadir}/color-schemes" +FILES:${PN}-grub += "/boot/grub/themes" +FILES:${PN}-plymouth += "${datadir}/plymouth/themes" +FILES:${PN}-sddm += "${datadir}/sddm/themes" # there is no plymouth-native yet -pkg_postinst_ontarget_${PN}-plymouth() { +pkg_postinst_ontarget:${PN}-plymouth() { plymouth-set-default-theme -R lirios } diff --git a/recipes-liri/liri-wallpapers/liri-wallpapers_git.bb b/recipes-liri/liri-wallpapers/liri-wallpapers_git.bb index f3ce1af7..274a6f80 100644 --- a/recipes-liri/liri-wallpapers/liri-wallpapers_git.bb +++ b/recipes-liri/liri-wallpapers/liri-wallpapers_git.bb @@ -11,8 +11,8 @@ PV = "0.10.0+git${SRCPV}" SRCREV = "c721e5b19467643df31cea4a78db132f5d3f851e" S = "${WORKDIR}/git" -FILES_${PN} += "${datadir}" +FILES:${PN} += "${datadir}" -RREPLACES_${PN} = "hawaii-wallpapers" -RPROVIDES_${PN} = "hawaii-wallpapers" -RCONFLICTS_${PN} = "hawaii-wallpapers" +RREPLACES:${PN} = "hawaii-wallpapers" +RPROVIDES:${PN} = "hawaii-wallpapers" +RCONFLICTS:${PN} = "hawaii-wallpapers" diff --git a/recipes-liri/liri-wayland/liri-wayland_git.bb b/recipes-liri/liri-wayland/liri-wayland_git.bb index 114b82ff..8a4aca3f 100644 --- a/recipes-liri/liri-wayland/liri-wayland_git.bb +++ b/recipes-liri/liri-wayland/liri-wayland_git.bb @@ -16,4 +16,4 @@ PV = "0.0.0+git${SRCPV}" EXTRA_OECMAKE += "-DBUILD_TESTING=OFF" -FILES_${PN} += "${OE_QMAKE_PATH_QML}" +FILES:${PN} += "${OE_QMAKE_PATH_QML}" diff --git a/recipes-liri/packagegroups/liri-world.bb b/recipes-liri/packagegroups/liri-world.bb index 81162185..a45af23c 100644 --- a/recipes-liri/packagegroups/liri-world.bb +++ b/recipes-liri/packagegroups/liri-world.bb @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda inherit packagegroup -RDEPENDS_${PN} = " \ +RDEPENDS:${PN} = " \ liri-browser \ liri-calculator \ liri-eglfs \ diff --git a/recipes-liri/paper-icon-theme/paper-icon-theme_1.4.0.bb b/recipes-liri/paper-icon-theme/paper-icon-theme_1.4.0.bb index 055c9b05..3985cdbe 100644 --- a/recipes-liri/paper-icon-theme/paper-icon-theme_1.4.0.bb +++ b/recipes-liri/paper-icon-theme/paper-icon-theme_1.4.0.bb @@ -10,4 +10,4 @@ SRC_URI = "https://github.com/snwh/${BPN}/archive/v${PV}.tar.gz" SRC_URI[md5sum] = "076e1dfa1bc5928f4c6616ffd933926a" SRC_URI[sha256sum] = "b90f3a84634572bcba76cdd0c2a0d305a5c521c2054d3d390edffda5f233928b" -FILES_${PN} += "${datadir}/icons" +FILES:${PN} += "${datadir}/icons" diff --git a/recipes-liri/slime-engine/slime-engine_git.bb b/recipes-liri/slime-engine/slime-engine_git.bb index 2e06a758..40b40ded 100644 --- a/recipes-liri/slime-engine/slime-engine_git.bb +++ b/recipes-liri/slime-engine/slime-engine_git.bb @@ -14,11 +14,11 @@ S = "${WORKDIR}/git" DEPENDS += "qtbase" -RDEPENDS_${PN} += " \ +RDEPENDS:${PN} += " \ qtwebengine-qmlplugins \ qtdeclarative-qmlplugins \ " -FILES_${PN} += " \ +FILES:${PN} += " \ ${OE_QMAKE_PATH_QML}/SlimeEngine \ " diff --git a/recipes-lumina/lumina-desktop/lumina-calculator.bb b/recipes-lumina/lumina-desktop/lumina-calculator.bb index d948c76e..b78321c5 100644 --- a/recipes-lumina/lumina-desktop/lumina-calculator.bb +++ b/recipes-lumina/lumina-desktop/lumina-calculator.bb @@ -20,7 +20,7 @@ SRCREV = "31807e06a3a6bd194bad6b0fd204ca2d81cc3810" S = "${WORKDIR}/git/src-qt5" PV = "1.6.0" -do_configure_prepend() { +do_configure:prepend() { # change paths by sed instead of endles escapes in 'DEFINES+=..' below sed -i 's:L_ETCDIR:QString("${sysconfdir}"):' `find ${S} -name *.cpp` sed -i 's:L_SHAREDIR:QString("${datadir}"):' `find ${S} -name *.cpp` diff --git a/recipes-lumina/lumina-desktop/lumina-pdf.bb b/recipes-lumina/lumina-desktop/lumina-pdf.bb index e68682ad..37486b07 100644 --- a/recipes-lumina/lumina-desktop/lumina-pdf.bb +++ b/recipes-lumina/lumina-desktop/lumina-pdf.bb @@ -20,7 +20,7 @@ SRCREV = "808a6a17a399b5c38801256985181d735b569e24" S = "${WORKDIR}/git/src-qt5" PV = "1.6.0" -do_configure_prepend() { +do_configure:prepend() { # change paths by sed instead of endles escapes in 'DEFINES+=..' below sed -i 's:L_ETCDIR:QString("${sysconfdir}"):' `find ${S} -name *.cpp` sed -i 's:L_SHAREDIR:QString("${datadir}"):' `find ${S} -name *.cpp` diff --git a/recipes-lumina/lumina-desktop/lumina.bb b/recipes-lumina/lumina-desktop/lumina.bb index 0d29b489..8df22d63 100644 --- a/recipes-lumina/lumina-desktop/lumina.bb +++ b/recipes-lumina/lumina-desktop/lumina.bb @@ -22,7 +22,7 @@ SRCREV = "ee85f9b4254ee98a06d169d14fb3cbb37c74f098" S = "${WORKDIR}/git" PV = "1.6.0" -do_configure_prepend() { +do_configure:prepend() { # change paths by sed instead of endles escapes in 'DEFINES+=..' below sed -i 's:L_ETCDIR:QString("${sysconfdir}"):' `find ${S} -name *.cpp` sed -i 's:L_SHAREDIR:QString("${datadir}"):' `find ${S} -name *.cpp` @@ -48,7 +48,7 @@ PACKAGES =+ "${PN}-icon-themes" # We have to be very precise for ${datadir}/lumina-desktop otherwise locale # packages remain empty -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/lthemeengine \ ${datadir}/lumina-desktop/menu-scripts \ ${datadir}/lumina-desktop/syntax_rules \ @@ -62,7 +62,7 @@ FILES_${PN} += " \ ${OE_QMAKE_PATH_PLUGINS} \ " -FILES_${PN}-icon-themes = "${datadir}/icons" +FILES:${PN}-icon-themes = "${datadir}/icons" -RDEPENDS_${PN} += "fluxbox" -RRECOMMENDS_${PN} += "${PN}-icon-themes" +RDEPENDS:${PN} += "fluxbox" +RRECOMMENDS:${PN} += "${PN}-icon-themes" diff --git a/recipes-lumina/packagegroups/lumina-world.bb b/recipes-lumina/packagegroups/lumina-world.bb index 0711fc33..0d030156 100644 --- a/recipes-lumina/packagegroups/lumina-world.bb +++ b/recipes-lumina/packagegroups/lumina-world.bb @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda inherit packagegroup -RDEPENDS_${PN} = " \ +RDEPENDS:${PN} = " \ lumina \ lumina-calculator \ lumina-pdf \ diff --git a/recipes-lxqt/libfm-qt/libfm-qt.bb b/recipes-lxqt/libfm-qt/libfm-qt.bb index 397e2208..b445f50e 100644 --- a/recipes-lxqt/libfm-qt/libfm-qt.bb +++ b/recipes-lxqt/libfm-qt/libfm-qt.bb @@ -8,7 +8,7 @@ inherit lxqt qt5-translation pkgconfig features_check cmake_lib mime DEPENDS += "qtx11extras glib-2.0 libexif menu-cache libxcb liblxqt" -do_configure_append() { +do_configure:append() { # remove absolute paths from exported cmake files for f in `find ${B} -name '*targets.cmake'`; do sed -i 's:${RECIPE_SYSROOT}${prefix}:${_IMPORT_PREFIX}:g' $f @@ -18,11 +18,11 @@ do_configure_append() { SRCREV = "b55488641cada90a762d453ac7e634f05294be33" PV = "0.17.1" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/mime \ ${datadir}/${BPN}/*.list \ " -RRECOMMENDS_${PN} = "gvfs gvfsd-trash eject" +RRECOMMENDS:${PN} = "gvfs gvfsd-trash eject" CMAKE_ALIGN_SYSROOT[1] = "fm-qt, -S${includedir}, -s${CMAKE_QT5_EX_PATH_HOST_HEADERS}" diff --git a/recipes-lxqt/liblxqt/liblxqt.bb b/recipes-lxqt/liblxqt/liblxqt.bb index c91ea06c..82a271ba 100644 --- a/recipes-lxqt/liblxqt/liblxqt.bb +++ b/recipes-lxqt/liblxqt/liblxqt.bb @@ -19,11 +19,11 @@ EXTRA_OECMAKE += " \ # This is not the full truth but at least opkg terminates do_rootfs if there # are multiple RCONFLICTS. To workaround we add the triple below to lxqt base # library. -RPROVIDES_${PN} += "lxqt-common" -RREPLACES_${PN} += "lxqt-common" -RCONFLICTS_${PN} += "lxqt-common" +RPROVIDES:${PN} += "lxqt-common" +RREPLACES:${PN} += "lxqt-common" +RCONFLICTS:${PN} += "lxqt-common" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/polkit-1/ \ ${datadir}/lxqt/power.conf \ " diff --git a/recipes-lxqt/libqtxdg/libqtxdg.bb b/recipes-lxqt/libqtxdg/libqtxdg.bb index 4b714df0..03b1a210 100644 --- a/recipes-lxqt/libqtxdg/libqtxdg.bb +++ b/recipes-lxqt/libqtxdg/libqtxdg.bb @@ -17,11 +17,11 @@ EXTRA_OECMAKE += " \ SRCREV = "6b8157ab2a6429fc1655422bffd0ff0171b58525" PV = "3.7.1" -do_configure_append() { +do_configure:append() { # remove absolute paths from exported cmake files for f in `find ${B} -name '*-targets.cmake'`; do sed -i 's:${RECIPE_SYSROOT}${prefix}:${_IMPORT_PREFIX}:g' $f done } -FILES_${PN} += "${OE_QMAKE_PATH_PLUGINS}/iconengines" +FILES:${PN} += "${OE_QMAKE_PATH_PLUGINS}/iconengines" diff --git a/recipes-lxqt/lximage-qt/lximage-qt.bb b/recipes-lxqt/lximage-qt/lximage-qt.bb index b2ffd3db..a995d986 100644 --- a/recipes-lxqt/lximage-qt/lximage-qt.bb +++ b/recipes-lxqt/lximage-qt/lximage-qt.bb @@ -11,4 +11,4 @@ DEPENDS += "qtx11extras qtsvg libfm-qt libexif libxfixes" SRCREV = "e57f2d002eb10e79aef5897cfbd388a1766ae6ee" PV = "0.17.0" -FILES_${PN} += "${datadir}/icons" +FILES:${PN} += "${datadir}/icons" diff --git a/recipes-lxqt/lxmenu-data/lxmenu-data.bb b/recipes-lxqt/lxmenu-data/lxmenu-data.bb index a816dbc0..12601527 100644 --- a/recipes-lxqt/lxmenu-data/lxmenu-data.bb +++ b/recipes-lxqt/lxmenu-data/lxmenu-data.bb @@ -12,4 +12,4 @@ S = "${WORKDIR}/git" SRCREV = "3b14415ff9862e6b79577fd4b9a097965001b270" PV = "0.1.5" -FILES_${PN} += "${datadir}/desktop-directories" +FILES:${PN} += "${datadir}/desktop-directories" diff --git a/recipes-lxqt/lxqt-admin/lxqt-admin.bb b/recipes-lxqt/lxqt-admin/lxqt-admin.bb index 19601f31..369a8b5c 100644 --- a/recipes-lxqt/lxqt-admin/lxqt-admin.bb +++ b/recipes-lxqt/lxqt-admin/lxqt-admin.bb @@ -11,7 +11,7 @@ DEPENDS += " \ SRCREV = "a1d90aca4651a96c769e141365d6f7028f9802cc" PV = "0.17.0" -FILES_${PN} += "${datadir}/polkit-1" +FILES:${PN} += "${datadir}/polkit-1" -RDEPENDS_${PN} += "lxqt-policykit" -RRECOMMENDS_${PN} += "polkit-group-rule-datetime" +RDEPENDS:${PN} += "lxqt-policykit" +RRECOMMENDS:${PN} += "polkit-group-rule-datetime" diff --git a/recipes-lxqt/lxqt-archiver/lxqt-archiver.bb b/recipes-lxqt/lxqt-archiver/lxqt-archiver.bb index a0944a89..119ac7ad 100644 --- a/recipes-lxqt/lxqt-archiver/lxqt-archiver.bb +++ b/recipes-lxqt/lxqt-archiver/lxqt-archiver.bb @@ -16,4 +16,4 @@ DEPENDS += " \ SRCREV = "fdbba576e58108f5c03892978ab563b8859ca254" PV = "0.4.0" -FILES_${PN} += "${datadir}/icons" +FILES:${PN} += "${datadir}/icons" diff --git a/recipes-lxqt/lxqt-build-tools/lxqt-build-tools.bb b/recipes-lxqt/lxqt-build-tools/lxqt-build-tools.bb index f2626ab8..1ef52259 100644 --- a/recipes-lxqt/lxqt-build-tools/lxqt-build-tools.bb +++ b/recipes-lxqt/lxqt-build-tools/lxqt-build-tools.bb @@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://BSD-3-Clause;md5=a8987c1fd6930fe14ae46b4d72e53770" # lxqt.bbclass adds an inherit on this recipe inherit cmake_qt5_extra -do_configure_append() { +do_configure:append() { sed -i 's:set(LXQT_ETC_XDG_DIR.*:set(LXQT_ETC_XDG_DIR "${sysconfdir}/xdg"):' ${B}/install/LXQtConfigVars.cmake } diff --git a/recipes-lxqt/lxqt-config/lxqt-config.bb b/recipes-lxqt/lxqt-config/lxqt-config.bb index c537ed54..6b8dfd96 100644 --- a/recipes-lxqt/lxqt-config/lxqt-config.bb +++ b/recipes-lxqt/lxqt-config/lxqt-config.bb @@ -11,7 +11,7 @@ DEPENDS += "qtsvg liblxqt libkscreen libxcursor libxi xf86-input-libinput" SRCREV = "435621e24a6e511d35309a8781c4cd853cb55225" PV = "0.17.1" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/icons \ ${datadir}/lxqt/icons \ ${datadir}/desktop-directories \ diff --git a/recipes-lxqt/lxqt-connman-applet/lxqt-connman-applet.bb b/recipes-lxqt/lxqt-connman-applet/lxqt-connman-applet.bb index 185bd9e4..ece84499 100644 --- a/recipes-lxqt/lxqt-connman-applet/lxqt-connman-applet.bb +++ b/recipes-lxqt/lxqt-connman-applet/lxqt-connman-applet.bb @@ -14,10 +14,10 @@ SRC_URI += "file://0001-CMakeLists.txt-Fix-build-with-Qt-5.11_beta3-dropping.pat SRCREV = "940493ce509bb2784738d547cc27df677b4835a2" PV = "0" -FILES_${PN}-dev += " \ +FILES:${PN}-dev += " \ ${datadir}/lxqt/lxqt-connman-applet \ " -FILES_${PN}-locale += " \ +FILES:${PN}-locale += " \ ${datadir}/lxqt/translations \ " diff --git a/recipes-lxqt/lxqt-globalkeys/lxqt-globalkeys.bb b/recipes-lxqt/lxqt-globalkeys/lxqt-globalkeys.bb index a0a208ab..e53bade6 100644 --- a/recipes-lxqt/lxqt-globalkeys/lxqt-globalkeys.bb +++ b/recipes-lxqt/lxqt-globalkeys/lxqt-globalkeys.bb @@ -11,4 +11,4 @@ DEPENDS += "liblxqt" SRCREV = "b6958f7488f26f31013cdf78dfa5805bf0644446" PV = "0.17.0" -FILES_${PN} += "${datadir}/lxqt" +FILES:${PN} += "${datadir}/lxqt" diff --git a/recipes-lxqt/lxqt-panel/lxqt-panel.bb b/recipes-lxqt/lxqt-panel/lxqt-panel.bb index 5629988f..84d96eeb 100644 --- a/recipes-lxqt/lxqt-panel/lxqt-panel.bb +++ b/recipes-lxqt/lxqt-panel/lxqt-panel.bb @@ -29,7 +29,7 @@ PACKAGECONFIG[volume_pulse_plugin] = "-DVOLUME_USE_PULSEAUDIO=Yes,-DVOLUME_USE_P PACKAGECONFIG ??= "cpu_plugin dom mount_plugin networkmonitor_plugin sensor_plugin sysstat_plugin volume_alsa_plugin volume_pulse_plugin" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/lxqt/panel.conf \ ${datadir}/lxqt/lxqt-panel/*.desktop \ ${datadir}/desktop-directories \ diff --git a/recipes-lxqt/lxqt-powermanagement/lxqt-powermanagement.bb b/recipes-lxqt/lxqt-powermanagement/lxqt-powermanagement.bb index b33280ff..08b8d645 100644 --- a/recipes-lxqt/lxqt-powermanagement/lxqt-powermanagement.bb +++ b/recipes-lxqt/lxqt-powermanagement/lxqt-powermanagement.bb @@ -18,4 +18,4 @@ DEPENDS += " \ SRCREV = "abdc5eead3502163115235d18a6d42c6d08b1ef2" PV = "0.17.1" -FILES_${PN} += "${datadir}/icons" +FILES:${PN} += "${datadir}/icons" diff --git a/recipes-lxqt/lxqt-qtplugin/lxqt-qtplugin.bb b/recipes-lxqt/lxqt-qtplugin/lxqt-qtplugin.bb index cd2b090e..ec226d5c 100644 --- a/recipes-lxqt/lxqt-qtplugin/lxqt-qtplugin.bb +++ b/recipes-lxqt/lxqt-qtplugin/lxqt-qtplugin.bb @@ -10,4 +10,4 @@ SRCREV = "f1fd8df7f2d96b1393d70998e55c57b6404c46f9" PV = "0.17.0" SRC_URI += "file://0001-set-installation-path-fixed-cmake-query-returns-sysr.patch" -FILES_${PN} += "${OE_QMAKE_PATH_PLUGINS}/platformthemes" +FILES:${PN} += "${OE_QMAKE_PATH_PLUGINS}/platformthemes" diff --git a/recipes-lxqt/lxqt-session/lxqt-session.bb b/recipes-lxqt/lxqt-session/lxqt-session.bb index e80ace8d..72cc0900 100644 --- a/recipes-lxqt/lxqt-session/lxqt-session.bb +++ b/recipes-lxqt/lxqt-session/lxqt-session.bb @@ -12,10 +12,10 @@ SRC_URI += "file://0001-do-not-check-for-xdg-udser-dirs-at-build-time-it-is-.pat SRCREV = "b50536c6c92f41fefa1ac0e4fd5bf7fbbae2f4c2" PV = "0.17.1" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/lxqt/*.conf \ ${datadir}/xsessions \ ${datadir}/kdm \ " -RDEPENDS_${PN} += "xdg-user-dirs" +RDEPENDS:${PN} += "xdg-user-dirs" diff --git a/recipes-lxqt/lxqt-themes/lxqt-themes.bb b/recipes-lxqt/lxqt-themes/lxqt-themes.bb index 954729ae..646269ef 100644 --- a/recipes-lxqt/lxqt-themes/lxqt-themes.bb +++ b/recipes-lxqt/lxqt-themes/lxqt-themes.bb @@ -7,7 +7,7 @@ inherit lxqt pkgconfig gtk-icon-cache SRCREV = "d27f9b00c14bcd0eb66d0fcb114e03f5d4cffc59" PV = "0.17.0" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/lxqt \ ${datadir}/icons \ " diff --git a/recipes-lxqt/obconf-qt/obconf-qt.bb b/recipes-lxqt/obconf-qt/obconf-qt.bb index 815e22f1..a8c3196f 100644 --- a/recipes-lxqt/obconf-qt/obconf-qt.bb +++ b/recipes-lxqt/obconf-qt/obconf-qt.bb @@ -10,4 +10,4 @@ SRC_URI += "file://0001-finding-sed-does-not-work-and-is-not-neccessary.patch" SRCREV = "e2eb2f152f95ffd858d998f3432a2baff18f272f" PV = "0.16.1" -FILES_${PN} += "${datadir}/icons" +FILES:${PN} += "${datadir}/icons" diff --git a/recipes-lxqt/packagegroups/lxqt-world.bb b/recipes-lxqt/packagegroups/lxqt-world.bb index 1af54435..1709e07b 100644 --- a/recipes-lxqt/packagegroups/lxqt-world.bb +++ b/recipes-lxqt/packagegroups/lxqt-world.bb @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda inherit packagegroup -RDEPENDS_${PN} = " \ +RDEPENDS:${PN} = " \ ${@bb.utils.contains("DISTRO_FEATURES", "x11", "libfm-qt", "",d)} \ ${@bb.utils.contains("DISTRO_FEATURES", "x11", "liblxqt", "",d)} \ libqtxdg \ @@ -35,6 +35,6 @@ RDEPENDS_${PN} = " \ qtermwidget \ " -RRECOMMENDS_${PN} = " \ +RRECOMMENDS:${PN} = " \ ${@bb.utils.contains("DISTRO_FEATURES", "x11", "picom", "",d)} \ " diff --git a/recipes-lxqt/packagegroups/packagegroup-lxqt-base.bb b/recipes-lxqt/packagegroups/packagegroup-lxqt-base.bb index 5280273c..f8e9c982 100644 --- a/recipes-lxqt/packagegroups/packagegroup-lxqt-base.bb +++ b/recipes-lxqt/packagegroups/packagegroup-lxqt-base.bb @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda inherit packagegroup -RDEPENDS_${PN} = " \ +RDEPENDS:${PN} = " \ qtbase-plugins \ qtimageformats-plugins \ \ diff --git a/recipes-lxqt/pavucontrol-qt/pavucontrol-qt.bb b/recipes-lxqt/pavucontrol-qt/pavucontrol-qt.bb index be8f72e0..ba59553e 100644 --- a/recipes-lxqt/pavucontrol-qt/pavucontrol-qt.bb +++ b/recipes-lxqt/pavucontrol-qt/pavucontrol-qt.bb @@ -9,4 +9,4 @@ DEPENDS += "glib-2.0 liblxqt pulseaudio" SRCREV = "0d3f3e56a4adcc46a264dcbeeaba2ed534b02ffa" PV = "0.17.0" -RDEPENDS_${PN} += "pulseaudio-server" +RDEPENDS:${PN} += "pulseaudio-server" diff --git a/recipes-lxqt/pcmanfm-qt/pcmanfm-qt.bb b/recipes-lxqt/pcmanfm-qt/pcmanfm-qt.bb index 2c82f681..c18c6b85 100644 --- a/recipes-lxqt/pcmanfm-qt/pcmanfm-qt.bb +++ b/recipes-lxqt/pcmanfm-qt/pcmanfm-qt.bb @@ -11,8 +11,8 @@ DEPENDS += "libfm-qt" SRCREV = "8d4138c75f044c6d2a21cff83cd1006be5a18358" PV = "0.17.0" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/${BPN}/lxqt/settings.conf \ " -RRECOMMENDS_${PN} = "gvfs gvfsd-trash eject" +RRECOMMENDS:${PN} = "gvfs gvfsd-trash eject" diff --git a/recipes-lxqt/qps/qps.bb b/recipes-lxqt/qps/qps.bb index 9424144b..611276f6 100644 --- a/recipes-lxqt/qps/qps.bb +++ b/recipes-lxqt/qps/qps.bb @@ -14,6 +14,6 @@ DEPENDS += " \ SRCREV = "c3c94face4f94df0242ed18a7a68056ff7e17d94" PV = "2.3.0" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/icons \ " diff --git a/recipes-lxqt/qterminal/qterminal.bb b/recipes-lxqt/qterminal/qterminal.bb index 83156dd3..fa788a3d 100644 --- a/recipes-lxqt/qterminal/qterminal.bb +++ b/recipes-lxqt/qterminal/qterminal.bb @@ -13,6 +13,6 @@ PV = "0.17.0" S = "${WORKDIR}/git" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/appdata \ " diff --git a/recipes-lxqt/qtermwidget/qtermwidget.bb b/recipes-lxqt/qtermwidget/qtermwidget.bb index d661bc56..b701743c 100644 --- a/recipes-lxqt/qtermwidget/qtermwidget.bb +++ b/recipes-lxqt/qtermwidget/qtermwidget.bb @@ -7,6 +7,6 @@ inherit lxqt qt5-translation SRCREV = "215fd43b0c1d2f013d9207a13f5d4a627fa12565" PV = "0.17.0" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/qtermwidget5 \ " diff --git a/recipes-misc/recipes-chemistry/avogadro/avogadrolibs-native.bb b/recipes-misc/recipes-chemistry/avogadro/avogadrolibs-native.bb index 33c7978c..1c38d794 100644 --- a/recipes-misc/recipes-chemistry/avogadro/avogadrolibs-native.bb +++ b/recipes-misc/recipes-chemistry/avogadro/avogadrolibs-native.bb @@ -1,6 +1,6 @@ require ${BPN}.inc -FILESEXTRAPATHS_prepend := "${THISDIR}/${BPN}-native:" +FILESEXTRAPATHS:prepend := "${THISDIR}/${BPN}-native:" inherit native diff --git a/recipes-misc/recipes-chemistry/avogadro/avogadrolibs.bb b/recipes-misc/recipes-chemistry/avogadro/avogadrolibs.bb index 44a501f4..75ba87d9 100644 --- a/recipes-misc/recipes-chemistry/avogadro/avogadrolibs.bb +++ b/recipes-misc/recipes-chemistry/avogadro/avogadrolibs.bb @@ -22,7 +22,7 @@ SRC_URI += " \ file://0002-AvogadroLibsConfig.cmake-Find-include.patch \ " -do_configure_append() { +do_configure:append() { # fix python executable path to not point to sysroot sed -i 's:pythonInterpreterPath =.*:pythonInterpreterPath = "${bindir}/python3";:g' ${B}/avogadro/qtgui/avogadropython.h # fix absolute sysroot library paths @@ -36,11 +36,11 @@ do_configure_append() { EXTRA_OECMAKE += "-DENABLE_RPATH=OFF" -FILES_${PN} += " \ +FILES:${PN} += " \ ${libdir}/avogadro2/scripts \ " -FILES_${PN}-staticdev += " \ +FILES:${PN}-staticdev += " \ ${libdir}/avogadro2/staticplugins \ ${libdir}/avogadro2/*.a \ " diff --git a/recipes-misc/recipes-chemistry/mmtf/mmtf-cpp_1.0.0.bb b/recipes-misc/recipes-chemistry/mmtf/mmtf-cpp_1.0.0.bb index 75853194..824c4bb6 100644 --- a/recipes-misc/recipes-chemistry/mmtf/mmtf-cpp_1.0.0.bb +++ b/recipes-misc/recipes-chemistry/mmtf/mmtf-cpp_1.0.0.bb @@ -11,4 +11,4 @@ SRC_URI = "git://github.com/rcsb/mmtf-cpp.git" SRCREV = "407bf8e541530579b1f2c3e7f7fa96bb06ef5be9" S = "${WORKDIR}/git" -RDEPENDS_${PN} += "msgpack-c" +RDEPENDS:${PN} += "msgpack-c" diff --git a/recipes-misc/recipes-chemistry/molequeue/molequeue_git.bb b/recipes-misc/recipes-chemistry/molequeue/molequeue_git.bb index 7fecf688..3d988404 100644 --- a/recipes-misc/recipes-chemistry/molequeue/molequeue_git.bb +++ b/recipes-misc/recipes-chemistry/molequeue/molequeue_git.bb @@ -18,4 +18,4 @@ EXTRA_OECMAKE += "-DENABLE_RPATH=OFF" CMAKE_ALIGN_SYSROOT[1] = "molequeue, -S${prefix}, -S${STAGING_DIR_HOST}/${prefix}" FILES_SOLIBSDEV = "" -FILES_${PN} += "${libdir}/libMoleQueue*.so" +FILES:${PN} += "${libdir}/libMoleQueue*.so" diff --git a/recipes-misc/recipes-chemistry/openbabel/openbabel_git.bb b/recipes-misc/recipes-chemistry/openbabel/openbabel_git.bb index ef686375..44fdeecf 100644 --- a/recipes-misc/recipes-chemistry/openbabel/openbabel_git.bb +++ b/recipes-misc/recipes-chemistry/openbabel/openbabel_git.bb @@ -21,7 +21,7 @@ SRCREV = "cbd4db43f8908b874864280fdc03bf92569eebc1" S = "${WORKDIR}/git" PV = "3.1.1" -do_install_append() { +do_install:append() { install -d ${D}${datadir}/applications install -m 0644 ${WORKDIR}/openbabel-gui.desktop ${D}${datadir}/applications @@ -29,4 +29,4 @@ do_install_append() { convert.im7 ${S}/src/GUI/babel.xpm -transparent white ${D}${datadir}/pixmaps/babel.png } -FILES_${PN}-dev += "${libdir}/cmake" +FILES:${PN}-dev += "${libdir}/cmake" diff --git a/recipes-misc/recipes-chemistry/spglib/spglib.bb b/recipes-misc/recipes-chemistry/spglib/spglib.bb index 5e113625..5fb17470 100644 --- a/recipes-misc/recipes-chemistry/spglib/spglib.bb +++ b/recipes-misc/recipes-chemistry/spglib/spglib.bb @@ -10,10 +10,10 @@ SRCREV = "e8118d854a4c11dbaa8d7b2c55d4a1e74ddcaaf7" S = "${WORKDIR}/git" PV = "1.16.1" -do_configure_prepend() { +do_configure:prepend() { touch ${S}/NEWS ${S}/README ${S}/AUTHORS } -do_install_append() { +do_install:append() { ln -sf libsymspg.so ${D}${libdir}/libspglib.so } diff --git a/recipes-misc/recipes-hardhelper/pulseview/pulseview.bb b/recipes-misc/recipes-hardhelper/pulseview/pulseview.bb index 822f2939..de81e417 100644 --- a/recipes-misc/recipes-hardhelper/pulseview/pulseview.bb +++ b/recipes-misc/recipes-hardhelper/pulseview/pulseview.bb @@ -27,4 +27,4 @@ SRCREV = "89b7b94a048ec53e82f38412a4b65cabb609f395" PV = "0.4.2+git${SRCPV}" S = "${WORKDIR}/git" -FILES_${PN} += "${datadir}/*" +FILES:${PN} += "${datadir}/*" diff --git a/recipes-misc/recipes-qml/markdown-qt_git.bb b/recipes-misc/recipes-qml/markdown-qt_git.bb index f8f20fc0..ebfb5d0e 100644 --- a/recipes-misc/recipes-qml/markdown-qt_git.bb +++ b/recipes-misc/recipes-qml/markdown-qt_git.bb @@ -21,4 +21,4 @@ S = "${WORKDIR}/git" inherit cmake_qt5 -FILES_${PN} += "${libdir}/libmarkdown-qt" +FILES:${PN} += "${libdir}/libmarkdown-qt" diff --git a/recipes-misc/recipes-themes/adwaita-qt/adwaita-qt.bb b/recipes-misc/recipes-themes/adwaita-qt/adwaita-qt.bb index dc846df0..21692309 100644 --- a/recipes-misc/recipes-themes/adwaita-qt/adwaita-qt.bb +++ b/recipes-misc/recipes-themes/adwaita-qt/adwaita-qt.bb @@ -20,4 +20,4 @@ EXTRA_OECMAKE += " \ -DCMAKE_INSTALL_PREFIX=/usr \ " -FILES_${PN} += "${OE_QMAKE_PATH_PLUGINS}" +FILES:${PN} += "${OE_QMAKE_PATH_PLUGINS}" diff --git a/recipes-multimedia/drumstick/drumstick_1.1.3.bb b/recipes-multimedia/drumstick/drumstick_1.1.3.bb index 46e62955..85eec2a2 100644 --- a/recipes-multimedia/drumstick/drumstick_1.1.3.bb +++ b/recipes-multimedia/drumstick/drumstick_1.1.3.bb @@ -13,7 +13,7 @@ DEPENDS += " \ SRC_URI = "${SOURCEFORGE_MIRROR}/project/${BPN}/${PV}/${BPN}-${PV}.tar.bz2" SRC_URI[sha256sum] = "75aca4281da25fe0186b44c07772c5f0b4d1f2bba875c4667e7e6e9fcedb3cd9" -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/mime \ ${datadir}/icons \ " diff --git a/recipes-multimedia/ladspa/ladspa-sdk_1.13.bb b/recipes-multimedia/ladspa/ladspa-sdk_1.13.bb index 1db4ae43..5e79b455 100644 --- a/recipes-multimedia/ladspa/ladspa-sdk_1.13.bb +++ b/recipes-multimedia/ladspa/ladspa-sdk_1.13.bb @@ -36,4 +36,4 @@ do_install() { install -m 0644 ${S}/src/ladspa.h ${D}${includedir} } -FILES_${PN} += "${libdir}/ladspa" +FILES:${PN} += "${libdir}/ladspa" diff --git a/recipes-multimedia/qtav/qtav_git.bb b/recipes-multimedia/qtav/qtav_git.bb index b7f62ff1..f65cd451 100644 --- a/recipes-multimedia/qtav/qtav_git.bb +++ b/recipes-multimedia/qtav/qtav_git.bb @@ -13,12 +13,12 @@ PV = "git${SRCPV}" S = "${WORKDIR}/git" DEPENDS += "qtbase qtquickcontrols2 qtsvg ffmpeg" -RDEPENDS_${PN} += "qtquickcontrols2-qmlplugins" +RDEPENDS:${PN} += "qtquickcontrols2-qmlplugins" PACKAGES += "${PN}-qmlplugins" -FILES_${PN}-qmlplugins = "${libdir}/qml/QtAV/*" +FILES:${PN}-qmlplugins = "${libdir}/qml/QtAV/*" -FILES_${PN}-dev += "${libdir}/libQtAVWidgets.prl \ +FILES:${PN}-dev += "${libdir}/libQtAVWidgets.prl \ ${libdir}/libQtAV.prl \ ${libdir}/mkspecs/*" diff --git a/recipes-multimedia/timidity++/timidity++.bb b/recipes-multimedia/timidity++/timidity++.bb index 887fde3d..d6a09cc0 100644 --- a/recipes-multimedia/timidity++/timidity++.bb +++ b/recipes-multimedia/timidity++/timidity++.bb @@ -26,11 +26,11 @@ EXTRA_OECONF += " \ CFLAGS += '-DCONFIG_FILE=\\"${sysconfdir}/timidity++.cfg\\"' -do_configure_prepend() { +do_configure:prepend() { export SHLDFLAGS="${LDFLAGS}" } -do_install_append() { +do_install:append() { install -d ${D}/${datadir}/applications install ${WORKDIR}/timidity.desktop ${D}/${datadir}/applications diff --git a/recipes-remote-conversation/matrix/libquotient.bb b/recipes-remote-conversation/matrix/libquotient.bb index 50344304..831472af 100644 --- a/recipes-remote-conversation/matrix/libquotient.bb +++ b/recipes-remote-conversation/matrix/libquotient.bb @@ -15,5 +15,5 @@ DEPENDS = " \ inherit cmake_qt5_extra -FILES_${PN}-dev += "${datadir}/ndk-modules" +FILES:${PN}-dev += "${datadir}/ndk-modules" diff --git a/recipes-remote-conversation/matrix/quaternion.bb b/recipes-remote-conversation/matrix/quaternion.bb index fdcd013f..441c5273 100644 --- a/recipes-remote-conversation/matrix/quaternion.bb +++ b/recipes-remote-conversation/matrix/quaternion.bb @@ -19,7 +19,7 @@ QT_TRANSLATION_FILES = "${datadir}/Quotient/quaternion/translations/*.qm" inherit cmake_qt5_extra qt5-translation gtk-icon-cache -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/metainfo \ " diff --git a/recipes-remote-conversation/matrix/spectral.bb b/recipes-remote-conversation/matrix/spectral.bb index 66618148..a1e37a03 100644 --- a/recipes-remote-conversation/matrix/spectral.bb +++ b/recipes-remote-conversation/matrix/spectral.bb @@ -21,7 +21,7 @@ DEPENDS = " \ inherit cmake_qt5_extra gtk-icon-cache -FILES_${PN} += " \ +FILES:${PN} += " \ ${datadir}/metainfo \ " diff --git a/recipes-support/catdoc/catdoc_0.95.bb b/recipes-support/catdoc/catdoc_0.95.bb index 2e6461a3..f35246d6 100644 --- a/recipes-support/catdoc/catdoc_0.95.bb +++ b/recipes-support/catdoc/catdoc_0.95.bb @@ -11,7 +11,7 @@ inherit autotools-brokensep pkgconfig EXTRA_OECONF = "--with-install-root=${D}" -do_install_prepend() { +do_install:prepend() { install -d ${D}/${datadir}/man/man1 install -d ${D}/${datadir}/${BPN} } diff --git a/recipes-support/fluxbox/fluxbox_1.3.7.bb b/recipes-support/fluxbox/fluxbox_1.3.7.bb index 06afcee0..4a020dc2 100644 --- a/recipes-support/fluxbox/fluxbox_1.3.7.bb +++ b/recipes-support/fluxbox/fluxbox_1.3.7.bb @@ -29,9 +29,9 @@ SRC_URI[sha256sum] = "c99e2baa06fff1e96342b20415059d12ff1fa2917ade0173c75b2fa570 # HOSTTOOLS_NONFATAL += "gencat" in layer.conf EXTRA_OECONF += "${@bb.utils.contains('HOSTTOOLS_NONFATAL', 'gencat', '--enable-nls', '--disable-nls', d)}" -do_install_append() { +do_install:append() { install -d ${D}/${datadir}/xsessions install -m 0644 -p ${WORKDIR}/fluxbox.desktop ${D}/${datadir}/xsessions } -FILES_${PN} += "${datadir}/xsessions" +FILES:${PN} += "${datadir}/xsessions" diff --git a/recipes-support/packagegroups/meta-qt5-extra-world.bb b/recipes-support/packagegroups/meta-qt5-extra-world.bb index c2e5ee0c..134fe3f1 100644 --- a/recipes-support/packagegroups/meta-qt5-extra-world.bb +++ b/recipes-support/packagegroups/meta-qt5-extra-world.bb @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda inherit packagegroup -RDEPENDS_${PN} = " \ +RDEPENDS:${PN} = " \ gottcode-world \ \ qpdfview \ diff --git a/recipes-support/qtkeychain/qtkeychain.bb b/recipes-support/qtkeychain/qtkeychain.bb index 1d1a608a..2c757320 100644 --- a/recipes-support/qtkeychain/qtkeychain.bb +++ b/recipes-support/qtkeychain/qtkeychain.bb @@ -18,7 +18,7 @@ SRCREV = "815fe610353ff8ad7e2f1121c368a74df8db5eb7" PV = "0.12.0" S = "${WORKDIR}/git" -do_install_append() { +do_install:append() { # mkspecs are installed at the wrong place. So as long as there are no # consumers building with qmake, delete mkspecs rm -rf ${D}${prefix}/mkspecs diff --git a/recipes-support/shlomif/black-hole-solver.bb b/recipes-support/shlomif/black-hole-solver.bb index fa049c4f..3b615581 100644 --- a/recipes-support/shlomif/black-hole-solver.bb +++ b/recipes-support/shlomif/black-hole-solver.bb @@ -16,4 +16,4 @@ DEPENDS += " \ # was: 'probably-redundant RPATH /usr/lib' - not exactly a bad breaker. Looked # into but could't find why this is thrown - so ignore for now. -INSANE_SKIP_${PN} = "useless-rpaths" +INSANE_SKIP:${PN} = "useless-rpaths" diff --git a/recipes-support/shlomif/freecell-solver.bb b/recipes-support/shlomif/freecell-solver.bb index b6147ac3..37462992 100644 --- a/recipes-support/shlomif/freecell-solver.bb +++ b/recipes-support/shlomif/freecell-solver.bb @@ -28,6 +28,6 @@ EXTRA_OECMAKE = " \ # was: 'probably-redundant RPATH /usr/lib' - not exactly a bad breaker. Looked # into but could't find why this is thrown - so ignore for now. -INSANE_SKIP_${PN} = "useless-rpaths" +INSANE_SKIP:${PN} = "useless-rpaths" -RDEPENDS_${PN} += "pysol-cards" +RDEPENDS:${PN} += "pysol-cards" diff --git a/recipes-support/translate-toolkit/translate-toolkit.bb b/recipes-support/translate-toolkit/translate-toolkit.bb index 282f65dc..ac12c842 100644 --- a/recipes-support/translate-toolkit/translate-toolkit.bb +++ b/recipes-support/translate-toolkit/translate-toolkit.bb @@ -10,7 +10,7 @@ SRCREV = "d98ef03f11129fd2072c11474089a13030e93b7b" S = "${WORKDIR}/git" PV = "3.3.1" -do_install_append() { +do_install:append() { # if empty datadir -> delete rmdir --ignore-fail-on-non-empty ${D}${datadir} @@ -26,4 +26,4 @@ do_install_append() { fi } -RDEPENDS_${PN} += "bash python3-core" +RDEPENDS:${PN} += "bash python3-core" diff --git a/recipes-support/umockdev/umockdev.bb b/recipes-support/umockdev/umockdev.bb index a6a29796..98c727a2 100644 --- a/recipes-support/umockdev/umockdev.bb +++ b/recipes-support/umockdev/umockdev.bb @@ -11,6 +11,6 @@ inherit meson vala gobject-introspection features_check # gobject-introspection is mandatory and cannot be configured REQUIRED_DISTRO_FEATURES = "gobject-introspection-data" -UNKNOWN_CONFIGURE_WHITELIST_append = " introspection" +UNKNOWN_CONFIGURE_WHITELIST:append = " introspection" DEPENDS += "glib-2.0 udev libgudev" diff --git a/recipes-support/xapian/xapian-core.bb b/recipes-support/xapian/xapian-core.bb index b549c356..fa1fdd21 100644 --- a/recipes-support/xapian/xapian-core.bb +++ b/recipes-support/xapian/xapian-core.bb @@ -11,6 +11,6 @@ inherit autotools cmake_lib DEPENDS = "util-linux zlib" -FILES_${PN}-dev += "${libdir}/cmake" +FILES:${PN}-dev += "${libdir}/cmake" CMAKE_ALIGN_SYSROOT[1] = "xapian, -S${libdir}, -s${OE_QMAKE_PATH_HOST_LIBS}/"