diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2024-08-14 14:54:34 +0300 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-08-14 08:15:17 -0700 |
| commit | 96e6ce662384f131f83d709641a6262712eaff0e (patch) | |
| tree | 08084047ee283533e36647a9159d5699260cd652 /meta-python/recipes-devtools/python/python3-soupsieve_2.6.bb | |
| parent | 0a63278789bc797e63db3bafe2b67e2e5fc0e8f9 (diff) | |
| download | meta-openembedded-96e6ce662384f131f83d709641a6262712eaff0e.tar.gz | |
python3-soupsieve: Upgrade 2.5 -> 2.6
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>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-soupsieve_2.6.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-soupsieve_2.6.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-soupsieve_2.6.bb b/meta-python/recipes-devtools/python/python3-soupsieve_2.6.bb new file mode 100644 index 0000000000..6572a68459 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-soupsieve_2.6.bb | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | SUMMARY = "CSS selector library for python-beautifulsoup4" | ||
| 2 | HOMEPAGE = "https://github.com/facelessuser/soupsieve" | ||
| 3 | |||
| 4 | LICENSE = "MIT" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE.md;md5=1bdfa4c8e8b6830bcf8e78cba1669e4d" | ||
| 6 | |||
| 7 | SRC_URI[sha256sum] = "e2e68417777af359ec65daac1057404a3c8a5455bb8abc36f1a9866ab1a51abb" | ||
| 8 | |||
| 9 | inherit pypi python_hatchling python_setuptools_build_meta ptest | ||
| 10 | |||
| 11 | SRC_URI += " \ | ||
| 12 | file://run-ptest \ | ||
| 13 | " | ||
| 14 | RDEPENDS:${PN} += " \ | ||
| 15 | python3-core \ | ||
| 16 | python3-datetime \ | ||
| 17 | python3-beautifulsoup4 \ | ||
| 18 | " | ||
| 19 | |||
| 20 | RDEPENDS:${PN}-ptest += " \ | ||
| 21 | python3-beautifulsoup4 \ | ||
| 22 | python3-pytest \ | ||
| 23 | python3-unittest-automake-output \ | ||
| 24 | " | ||
| 25 | |||
| 26 | do_install_ptest() { | ||
| 27 | install -d ${D}${PTEST_PATH}/tests | ||
| 28 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
| 29 | } | ||
| 30 | |||
| 31 | BBCLASSEXTEND = "native nativesdk" | ||
