mirror of
http://code.qt.io/yocto/meta-qt6.git
synced 2026-01-01 13:58:07 +00:00
QFace: Add support
Adds Qt Interface Language (QFace) library * Add also python dependencies that are not available from meta-python Task-number: QTBUG-94105 Change-Id: I08e5198834c36b0019bbc99a3a3f0b0fbc8b422a Reviewed-by: Samuli Piippo <samuli.piippo@qt.io>
This commit is contained in:
parent
5a34cf9f49
commit
bfd5af7306
9
recipes-devtools/python/python3-antrl4-runtime_4.9.2.bb
Normal file
9
recipes-devtools/python/python3-antrl4-runtime_4.9.2.bb
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
PYPI_PACKAGE = "antlr4-python3-runtime"
|
||||
inherit pypi setuptools3
|
||||
|
||||
LICENSE = "BSD"
|
||||
LIC_FILES_CHKSUM = "file://PKG-INFO;md5=c96f0ee5f5d08fd4387e5f00507bb13e"
|
||||
|
||||
SRC_URI[sha256sum] = "31f5abdc7faf16a1a6e9bf2eb31565d004359b821b09944436a34361929ae85a"
|
||||
|
||||
BBCLASSEXTEND = "nativesdk native"
|
||||
8
recipes-devtools/python/python3-path_16.2.0.bb
Normal file
8
recipes-devtools/python/python3-path_16.2.0.bb
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
inherit pypi setuptools3
|
||||
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=7a7126e068206290f3fe9f8d6c713ea6"
|
||||
|
||||
SRC_URI[sha256sum] = "2de925e8d421f93bcea80d511b81accfb6a7e6b249afa4a5559557b0cf817097"
|
||||
|
||||
BBCLASSEXTEND = "nativesdk native"
|
||||
8
recipes-devtools/python/python3-pathtools3_0.2.1.bb
Normal file
8
recipes-devtools/python/python3-pathtools3_0.2.1.bb
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
inherit pypi setuptools3
|
||||
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=56bd93578433bb99b4fdf7ff481722df"
|
||||
|
||||
SRC_URI[sha256sum] = "630c1edc09ef93abea40fc06b10067e5734d8f38cc85867bc61d1a5c9eb7796f"
|
||||
|
||||
BBCLASSEXTEND = "nativesdk native"
|
||||
11
recipes-devtools/python/python3-watchdog_0.9.0.bb
Normal file
11
recipes-devtools/python/python3-watchdog_0.9.0.bb
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
DEPS = "python3-pathtools3"
|
||||
DEPENDS = "${DEPS}"
|
||||
RDEPENDS:${PN} = "${DEPS}"
|
||||
inherit pypi setuptools3
|
||||
|
||||
LICENSE = "Apache-2.0"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
|
||||
|
||||
SRC_URI[sha256sum] = "965f658d0732de3188211932aeb0bb457587f04f63ab4c1e33eab878e9de961d"
|
||||
|
||||
BBCLASSEXTEND = "nativesdk native"
|
||||
30
recipes-qt/qt6/qface_git.bb
Normal file
30
recipes-qt/qt6/qface_git.bb
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
inherit pypi setuptools3
|
||||
|
||||
python() {
|
||||
if 'meta-python' not in d.getVar('BBFILE_COLLECTIONS').split():
|
||||
raise bb.parse.SkipRecipe('Requires meta-python to be present.')
|
||||
}
|
||||
|
||||
DEPS += " python3-jinja2 \
|
||||
python3-click \
|
||||
python3-pyyaml \
|
||||
python3-pytest \
|
||||
python3-six \
|
||||
python3-path \
|
||||
python3-antrl4-runtime \
|
||||
python3-watchdog \
|
||||
python3-markupsafe \
|
||||
python3-setuptools \
|
||||
"
|
||||
DEPENDS += "${DEPS}"
|
||||
RDEPENDS:${PN} += "${DEPS}"
|
||||
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=eee61e10a40b0e3045ee5965bcd9a8b5"
|
||||
SRC_URI = "git://code.qt.io/qt/qtinterfaceframework-qface.git;protocol=https;nobranch=1"
|
||||
SRCREV = "6b7d4f9560f4ca6027ada9f0df25bf0262c71294"
|
||||
PV = "2.0.4"
|
||||
S = "${WORKDIR}/git"
|
||||
CLEANBROKEN = "1"
|
||||
|
||||
BBCLASSEXTEND = "nativesdk native"
|
||||
Loading…
Reference in New Issue
Block a user