diff options
author | Mikko Gronoff <mikko.gronoff@qt.io> | 2019-05-23 10:28:00 +0300 |
---|---|---|
committer | Mikko Gronoff <mikko.gronoff@qt.io> | 2019-05-23 10:34:18 +0300 |
commit | baf9b8e6918c76d7f58d557d9a102b5b5d1727c0 (patch) | |
tree | 9cbaaa54acd3ce1d0cc52b7a9045240723f8b9da /recipes-python/pyqt5 | |
parent | 89ac66bf3969b48eb771ef4c06a0b8df00fd178a (diff) | |
parent | 60e61ea26a0f221fdb8c992990686c9f449f27c5 (diff) | |
download | meta-qt5-baf9b8e6918c76d7f58d557d9a102b5b5d1727c0.tar.gz |
Merge remote-tracking branch 'qtyocto/upstream/warrior' into 5.12
* qtocto/upstream/warrior:
60e61ea qt3d-runtime: update to v2.3
cad5f8c qtbase: add no-opengl to PACKAGECONFIG_GL when opengl isn't in DISTRO_FEATURES
44aab3a qtbase: add accessibility from PACKAGECONFIG_KDE to PACKAGECONFIG_DEFAULT
000e298 qtbase: add libxext dependency for xcb PACKAGECONFIG
ba08444 python-pyqt5: Update to version 5.12.1.
6a1a387 python-pyqt: Fix annoying problems.
c7e0ba5 qtwebengine: arm: use OE specified -mcpu option
9c62c01 qtbase-tools: Fix error during pkg_postinst
f4531ec qtwebengine: restore the fix for build with clang/libc++ on aarch64/arm
Conflicts:
recipes-qt/qt5/qtbase_git.bb
Change-Id: I853b6669bd4e42224b278587c412032903ba5555
Diffstat (limited to 'recipes-python/pyqt5')
-rw-r--r-- | recipes-python/pyqt5/python-pyqt5.inc | 19 | ||||
-rw-r--r-- | recipes-python/pyqt5/python-pyqt5_5.12.1.bb (renamed from recipes-python/pyqt5/python-pyqt5_5.11.3.bb) | 0 | ||||
-rw-r--r-- | recipes-python/pyqt5/python3-pyqt5_5.12.1.bb (renamed from recipes-python/pyqt5/python3-pyqt5_5.11.3.bb) | 0 |
3 files changed, 9 insertions, 10 deletions
diff --git a/recipes-python/pyqt5/python-pyqt5.inc b/recipes-python/pyqt5/python-pyqt5.inc index 4b1630d4..11d246d7 100644 --- a/recipes-python/pyqt5/python-pyqt5.inc +++ b/recipes-python/pyqt5/python-pyqt5.inc | |||
@@ -7,11 +7,10 @@ LIC_FILES_CHKSUM = "\ | |||
7 | file://LICENSE;md5=d32239bcb673463ab874e80d47fae504 \ | 7 | file://LICENSE;md5=d32239bcb673463ab874e80d47fae504 \ |
8 | " | 8 | " |
9 | SRC_URI = "\ | 9 | SRC_URI = "\ |
10 | ${SOURCEFORGE_MIRROR}/pyqt/PyQt5_gpl-${PV}.tar.gz \ | 10 | https://www.riverbankcomputing.com/static/Downloads/PyQt5/${PV}/PyQt5_gpl-${PV}.tar.gz \ |
11 | " | 11 | " |
12 | SRC_URI[md5sum] = "aac3428e90eca5df68c5764282fd9b98" | 12 | SRC_URI[md5sum] = "67508b652098d2e05c4c2b5baeb170cc" |
13 | SRC_URI[sha256sum] = "c9b57d15601d436faf35dacf8e0acefa220194829a653e771e80b189b3261073" | 13 | SRC_URI[sha256sum] = "3718ce847d824090fd5f95ff3f13847ee75c2507368d4cbaeb48338f506e59bf" |
14 | |||
15 | S = "${WORKDIR}/PyQt5_gpl-${PV}" | 14 | S = "${WORKDIR}/PyQt5_gpl-${PV}" |
16 | 15 | ||
17 | inherit qmake5 | 16 | inherit qmake5 |
@@ -34,13 +33,13 @@ PYQT_MODULES_aarch64 = "QtCore QtGui QtNetwork QtWidgets" | |||
34 | do_configure_prepend() { | 33 | do_configure_prepend() { |
35 | cd ${S} | 34 | cd ${S} |
36 | echo "py_platform = linux" > pyqt.cfg | 35 | echo "py_platform = linux" > pyqt.cfg |
37 | echo "py_inc_dir = %(sysroot)/$includedir/python${PYTHON_BASEVERSION}${PYTHON_ABI}" >> pyqt.cfg | 36 | echo "py_inc_dir = %(sysroot)/$includedir/python%(py_major).%(py_minor)${PYTHON_ABI}" >> pyqt.cfg |
38 | echo "py_pylib_dir = %(sysroot)/${libdir}/python${PYTHON_BASEVERSION}${PYTHON_ABI}" >> pyqt.cfg | 37 | echo "py_pylib_dir = %(sysroot)/${libdir}/python%(py_major).%(py_minor)" >> pyqt.cfg |
39 | echo "py_pylib_lib = python${PYTHON_BASEVERSION}${PYTHON_ABI}" >> pyqt.cfg | 38 | echo "py_pylib_lib = python$%(py_major).%(py_minor)" >> pyqt.cfg |
40 | echo "pyqt_module_dir = ${D}/${libdir}/python${PYTHON_BASEVERSION}${PYTHON_ABI}/site-packages" >> pyqt.cfg | 39 | echo "pyqt_module_dir = ${D}/${libdir}/python%(py_major).%(py_minor)/site-packages" >> pyqt.cfg |
41 | echo "pyqt_bin_dir = ${D}/${bindir}" >> pyqt.cfg | 40 | echo "pyqt_bin_dir = ${D}/${bindir}" >> pyqt.cfg |
42 | echo "pyqt_sip_dir = ${D}/${datadir}/sip/PyQt5" >> pyqt.cfg | 41 | echo "pyqt_sip_dir = ${D}/${datadir}/sip/PyQt5" >> pyqt.cfg |
43 | echo "pyuic_interpreter = ${D}/${bindir}/python${PYTHON_BASEVERSION}${PYTHON_ABI}" >> pyqt.cfg | 42 | echo "pyuic_interpreter = ${D}/${bindir}/python%(py_major).%(py_minor)" >> pyqt.cfg |
44 | echo "pyqt_disabled_features = ${DISABLED_FEATURES}" >> pyqt.cfg | 43 | echo "pyqt_disabled_features = ${DISABLED_FEATURES}" >> pyqt.cfg |
45 | echo "qt_shared = True" >> pyqt.cfg | 44 | echo "qt_shared = True" >> pyqt.cfg |
46 | QT_VERSION=`${OE_QMAKE_QMAKE} -query QT_VERSION` | 45 | QT_VERSION=`${OE_QMAKE_QMAKE} -query QT_VERSION` |
@@ -59,6 +58,6 @@ do_install() { | |||
59 | oe_runmake MAKEFLAGS='-j 1' install | 58 | oe_runmake MAKEFLAGS='-j 1' install |
60 | } | 59 | } |
61 | 60 | ||
62 | FILES_${PN} += "${libdir}/${PYTHON_DIR}${PYTHON_ABI}/site-packages ${datadir}/sip/PyQt5/" | 61 | FILES_${PN} += "${libdir}/${PYTHON_DIR}/site-packages ${datadir}/sip/PyQt5/" |
63 | 62 | ||
64 | RDEPENDS_${PN} = "qtbase" | 63 | RDEPENDS_${PN} = "qtbase" |
diff --git a/recipes-python/pyqt5/python-pyqt5_5.11.3.bb b/recipes-python/pyqt5/python-pyqt5_5.12.1.bb index 6b1b5701..6b1b5701 100644 --- a/recipes-python/pyqt5/python-pyqt5_5.11.3.bb +++ b/recipes-python/pyqt5/python-pyqt5_5.12.1.bb | |||
diff --git a/recipes-python/pyqt5/python3-pyqt5_5.11.3.bb b/recipes-python/pyqt5/python3-pyqt5_5.12.1.bb index 200a8154..200a8154 100644 --- a/recipes-python/pyqt5/python3-pyqt5_5.11.3.bb +++ b/recipes-python/pyqt5/python3-pyqt5_5.12.1.bb | |||