mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
Changelog: =========== * When using one of the lxml tree builders, you can pass in huge_tree=True to disable lxml's security restrictions and process files that include huge text nodes. * The html.parser tree builder processes numeric character entities using the algorithm described in the HTML spec. * Added a general test of the html.parser tree builder's ability to turn any parsing exception from html.parser into a ParserRejectedMarkup exception. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
21 lines
518 B
BlitzBasic
21 lines
518 B
BlitzBasic
SUMMARY = "Screen-scraping library"
|
|
HOMEPAGE = " https://www.crummy.com/software/BeautifulSoup/bs4"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=96e0034f7c9443910c486773aa1ed9ac"
|
|
|
|
SRC_URI[sha256sum] = "6292b1c5186d356bba669ef9f7f051757099565ad9ada5dd630bd9de5fa7fb86"
|
|
|
|
inherit pypi python_hatchling
|
|
|
|
RDEPENDS:${PN} = "\
|
|
python3-html5lib \
|
|
python3-lxml \
|
|
python3-html \
|
|
python3-logging \
|
|
"
|
|
RDEPENDS:${PN}:append:class-target = " \
|
|
python3-soupsieve \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|