mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Upgrade to release 2.6: - Add official support for Python 3.13. - Add support for & as scoping root per the CSS Nesting Module, Level 1. When & is used outside the context of nesting, it is treated as the scoping root (equivalent to :scope). - Improve error message when an unrecognized pseudo-class is used. License-Update: Update years. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
32 lines
778 B
BlitzBasic
32 lines
778 B
BlitzBasic
SUMMARY = "CSS selector library for python-beautifulsoup4"
|
|
HOMEPAGE = "https://github.com/facelessuser/soupsieve"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.md;md5=1bdfa4c8e8b6830bcf8e78cba1669e4d"
|
|
|
|
SRC_URI[sha256sum] = "e2e68417777af359ec65daac1057404a3c8a5455bb8abc36f1a9866ab1a51abb"
|
|
|
|
inherit pypi python_hatchling python_setuptools_build_meta ptest
|
|
|
|
SRC_URI += " \
|
|
file://run-ptest \
|
|
"
|
|
RDEPENDS:${PN} += " \
|
|
python3-core \
|
|
python3-datetime \
|
|
python3-beautifulsoup4 \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
python3-beautifulsoup4 \
|
|
python3-pytest \
|
|
python3-unittest-automake-output \
|
|
"
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/tests
|
|
cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|