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

Upgrade to release 2.7: - Add :open pseudo selector. - Add :muted pseudo selector. - Recognize the following pseudo selectors: :autofill, :buffering, :fullscreen, :picture-in-picture, :popover-open, :seeking, :stalled, and :volume-locked. These selectors, while recognized, will not match any element as they require a live environment to check element states and browser states. This just prevents Soup Sieve from failing when any of these selectors are specified. - A number of existing pseudo-classes are no longer noted as experimental. - Typing fixes. License-Update: Updated copyright years Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
25 lines
643 B
BlitzBasic
25 lines
643 B
BlitzBasic
SUMMARY = "CSS selector library for python-beautifulsoup4"
|
|
HOMEPAGE = "https://github.com/facelessuser/soupsieve"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.md;md5=a23cdb0cf58a8b6d3d25202783bd6553"
|
|
|
|
SRC_URI[sha256sum] = "ad282f9b6926286d2ead4750552c8a6142bc4c783fd66b0293547c8fe6ae126a"
|
|
|
|
inherit pypi python_hatchling python_setuptools_build_meta ptest-python-pytest
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-core \
|
|
python3-datetime \
|
|
"
|
|
RDEPENDS:${PN}:append:class-target = " \
|
|
python3-beautifulsoup4 \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
python3-beautifulsoup4 \
|
|
python3-typing-extensions \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|