From ee85497952f8e000d6f904e65946e4b0ff1d0587 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Mon, 28 Sep 2020 11:00:55 +0300 Subject: python3-beautifulsoup4: Upgrade 4.9.1 -> 4.9.2 - Fixed a bug that caused too many tags to be popped from the tag stack during tree building, when encountering a closing tag that had no matching opening tag. - Fixed a bug that inconsistently moved elements over when passing a Tag, rather than a list, into Tag.extend(). - Specify the soupsieve dependency in a way that complies with PEP 508. - Change the signatures for BeautifulSoup.insert_before and insert_after (which are not implemented) to match PageElement.insert_before and insert_after, quieting warnings in some IDEs. Signed-off-by: Leon Anavi Acked-by: Trevor Gamblin Signed-off-by: Khem Raj --- .../python/python3-beautifulsoup4_4.9.1.bb | 17 ----------------- .../python/python3-beautifulsoup4_4.9.2.bb | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 17 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-beautifulsoup4_4.9.1.bb create mode 100644 meta-python/recipes-devtools/python/python3-beautifulsoup4_4.9.2.bb diff --git a/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.9.1.bb b/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.9.1.bb deleted file mode 100644 index 910de12f8a..0000000000 --- a/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.9.1.bb +++ /dev/null @@ -1,17 +0,0 @@ -SUMMARY = "Screen-scraping library" -HOMEPAGE = " https://www.crummy.com/software/BeautifulSoup/bs4" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://COPYING.txt;md5=f2d38d8a40bf73fd4b3d16ca2e5882d1" - -SRC_URI[md5sum] = "57502b5b34ccfd97b180260071f5799a" -SRC_URI[sha256sum] = "73cc4d115b96f79c7d77c1c7f7a0a8d4c57860d1041df407dd1aae7f07a77fd7" - -inherit pypi setuptools3 - -RDEPENDS_${PN} = "\ - ${PYTHON_PN}-html5lib \ - ${PYTHON_PN}-lxml \ - ${PYTHON_PN}-soupsieve \ -" - -BBCLASSEXTEND = "native nativesdk" diff --git a/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.9.2.bb b/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.9.2.bb new file mode 100644 index 0000000000..fb5fb1a6b8 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.9.2.bb @@ -0,0 +1,17 @@ +SUMMARY = "Screen-scraping library" +HOMEPAGE = " https://www.crummy.com/software/BeautifulSoup/bs4" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://COPYING.txt;md5=f2d38d8a40bf73fd4b3d16ca2e5882d1" + +SRC_URI[md5sum] = "5672f9b9bdfb0c6ab3ef074396bf59aa" +SRC_URI[sha256sum] = "1edf5e39f3a5bc6e38b235b369128416c7239b34f692acccececb040233032a1" + +inherit pypi setuptools3 + +RDEPENDS_${PN} = "\ + ${PYTHON_PN}-html5lib \ + ${PYTHON_PN}-lxml \ + ${PYTHON_PN}-soupsieve \ +" + +BBCLASSEXTEND = "native nativesdk" -- cgit 1.2.3-korg