Convert to new override syntax

This is the result of automated script (0.9.1) conversion:

oe-core/scripts/contrib/convert-overrides.py .

converting the metadata to use ":" as the override character instead of "_".

Change-Id: Iae85d9cd157638bc7ff50fa96cd68263e155ab60
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
Martin Jansa
2021-08-04 13:55:31 +02:00
parent 2a2bdadac8
commit 2675a1d62e
56 changed files with 208 additions and 208 deletions

View File

@@ -25,12 +25,12 @@ PARALLEL_MAKEINST = ""
DISABLED_FEATURES = "PyQt_Desktop_OpenGL PyQt_Accessibility PyQt_SessionManager"
DISABLED_FEATURES_append_arm = " PyQt_qreal_double"
DISABLED_FEATURES:append:arm = " PyQt_qreal_double"
PYQT_MODULES = "QtCore QtGui QtNetwork QtWidgets"
PYQT_MODULES_aarch64 = "QtCore QtGui QtNetwork QtWidgets"
PYQT_MODULES:aarch64 = "QtCore QtGui QtNetwork QtWidgets"
do_configure_prepend() {
do_configure:prepend() {
cd ${S}
echo "py_platform = linux" > pyqt.cfg
echo "py_inc_dir = %(sysroot)/$includedir/python%(py_major).%(py_minor)${PYTHON_ABI}" >> pyqt.cfg
@@ -58,6 +58,6 @@ do_install() {
oe_runmake MAKEFLAGS='-j 1' install
}
FILES_${PN} += "${libdir}/${PYTHON_DIR}/site-packages ${datadir}/sip/PyQt5/"
FILES:${PN} += "${libdir}/${PYTHON_DIR}/site-packages ${datadir}/sip/PyQt5/"
RDEPENDS_${PN} = "qtbase"
RDEPENDS:${PN} = "qtbase"