mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00

python 2 is gone and we don't need the abstraction now, drop the remaining usage of this variable. The definition in python3-dir.bbclass is left for now for other layers. (From OE-Core rev: b566b1e32c7993d1ab7795562f648e52ce186a70) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
49 lines
1.3 KiB
BlitzBasic
49 lines
1.3 KiB
BlitzBasic
SUMMARY = "An implementation of JSON Schema validation for Python"
|
|
HOMEPAGE = "https://github.com/python-jsonschema/jsonschema"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=7a60a81c146ec25599a3e1dabb8610a8 \
|
|
file://json/LICENSE;md5=9d4de43111d33570c8fe49b4cb0e01af"
|
|
|
|
SRC_URI[sha256sum] = "0f864437ab8b6076ba6707453ef8f98a6a0d512a80e93f8abdb676f737ecb60d"
|
|
|
|
inherit pypi python_hatchling
|
|
|
|
PACKAGES =+ "${PN}-tests"
|
|
FILES:${PN}-tests = "${libdir}/${PYTHON_DIR}/site-packages/jsonschema/tests"
|
|
|
|
DEPENDS += "python3-hatch-fancy-pypi-readme-native python3-hatch-vcs-native "
|
|
|
|
PACKAGECONFIG ??= "format"
|
|
PACKAGECONFIG[format] = ",,,\
|
|
python3-idna \
|
|
python3-jsonpointer \
|
|
python3-webcolors \
|
|
python3-rfc3987 \
|
|
python3-rfc3339-validator \
|
|
"
|
|
PACKAGECONFIG[nongpl] = ",,,\
|
|
python3-idna \
|
|
python3-jsonpointer \
|
|
python3-webcolors \
|
|
python3-rfc3986-validator \
|
|
python3-rfc3339-validator \
|
|
"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-attrs \
|
|
python3-core \
|
|
python3-datetime \
|
|
python3-importlib-metadata \
|
|
python3-io \
|
|
python3-json \
|
|
python3-netclient \
|
|
python3-numbers \
|
|
python3-pprint \
|
|
python3-pyrsistent \
|
|
python3-zipp \
|
|
"
|
|
|
|
RDEPENDS:${PN}-tests = "${PN}"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|