summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-html2text_2024.2.26.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2024-06-12 10:57:45 +0800
committerKhem Raj <raj.khem@gmail.com>2024-06-11 22:01:58 -0700
commit6801e96a81efa2a4565d85a62e189f251ea9bf60 (patch)
tree25abd44ce0c8465f11c0cc68cacca3e3054b3907 /meta-python/recipes-devtools/python/python3-html2text_2024.2.26.bb
parent3194be1e15362379c6b644bf5ab3d99e9290a469 (diff)
downloadmeta-openembedded-6801e96a81efa2a4565d85a62e189f251ea9bf60.tar.gz
python3-html2text: upgrade 2020.1.16 -> 2024.2.26
Changelog: =========== - Fixes #409: IndexError on empty strong mark. - Fix #332: Insert at most one space for multiple emphasis - Feature #318: Make padded tables more similar to pandoc's pipe_tables. - Add support for Python 3.9. - Fix extra line breaks inside html link text (between '[' and ']') - Fix #344: indent <ul> inside <ol> three spaces instead of two to comply with CommonMark, GFM, etc. - Fix #324: unnecessary spaces around <b>, <em>, and strike tags. - Don't wrap tables by default and add a --wrap-tables config option. - Feature #198: Ignore <p> tags inside table rows. - Don't wrap tables by default and add a --wrap-tables config option - Remove support for Python <= 3.5. Now requires Python 3.6+. - Support for Python 3.10+. - Fix #320 padding empty tables and tables with no </tr> tags. - Add ignore_mailto_links config option to ignore mailto: style links. - Feature #407: Support the superscript and subscript tags. - Fix #373: \n inside text of a Markdown link. - Feature #406: Improve support for null atttibute values. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-html2text_2024.2.26.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-html2text_2024.2.26.bb27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-html2text_2024.2.26.bb b/meta-python/recipes-devtools/python/python3-html2text_2024.2.26.bb
new file mode 100644
index 0000000000..4a7ce1e5bc
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-html2text_2024.2.26.bb
@@ -0,0 +1,27 @@
1SUMMARY = "Convert HTML to Markdown-formatted text"
2HOMEPAGE = "https://github.com/Alir3z4/html2text"
3
4LICENSE = "GPL-3.0-only"
5LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
6
7SRC_URI[sha256sum] = "05f8e367d15aaabc96415376776cdd11afd5127a77fce6e36afc60c563ca2c32"
8
9inherit pypi setuptools3 ptest
10
11SRC_URI += " \
12 file://run-ptest \
13"
14
15RDEPENDS:${PN}-ptest += " \
16 python3-pytest \
17 python3-unittest-automake-output \
18"
19
20RDEPENDS:${PN} += "python3-cgitb"
21
22do_install_ptest() {
23 install -d ${D}${PTEST_PATH}/test
24 cp -rf ${S}/test/* ${D}${PTEST_PATH}/test/
25}
26
27BBCLASSEXTEND = "native nativesdk"