From e3c9a42603af6f78e87236682bd709cc57f21bef Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Thu, 26 Nov 2020 13:22:12 +0200 Subject: python3-ansi2html: Upgrade 1.5.2 -> 1.6.0 Add native setuptools-scm and toml to the dependencies. Upgrade to release 1.6.0: - Add support for vt100 box drawing mode and high-intensity ansi codes - Fix undefined behavior with linkify when same url is repeated in same line - Prune CSS classes from output that are not used - Update style.py - Give more useful TaskWarrior example - Fix handling cursor move up with unique and empty lines - enable python 3 input decoding - Fix missing color CSS definitions - Prevent IndexError while handling CursorMoveUp - added setup.cfg - fix long lines - Started to implement LaTeX support - add option --title for filling in the title - add empty title element to head section in html output - added 2 color-schemes (solarized, osx). improved optparse handling schemes. - added support to select a color-scheme. added schemes 'xterm' and 'xterm... - Improve Makefile - Add and ship AsciiDoc manpage, improve --help, add --version - Fix README example to not produce unwanted spaces - Add missing license headers - Fix line handling - Add support for previously unhandled ANSI codes, improve approach on handling color state - Fix italic to be font-style (rather than font-weight) - Stop adding unwanted spaces - Fix writing to sys.stdout.buffer - Add convenience Makefile - Fix some bugs - add --inline style - Fix UnicodeDecodeError exception when Unicode characters appear in input Signed-off-by: Leon Anavi Acked-by: Trevor Gamblin Signed-off-by: Khem Raj --- .../recipes-devtools/python/python3-ansi2html_1.5.2.bb | 13 ------------- .../recipes-devtools/python/python3-ansi2html_1.6.0.bb | 13 +++++++++++++ 2 files changed, 13 insertions(+), 13 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-ansi2html_1.5.2.bb create mode 100644 meta-python/recipes-devtools/python/python3-ansi2html_1.6.0.bb diff --git a/meta-python/recipes-devtools/python/python3-ansi2html_1.5.2.bb b/meta-python/recipes-devtools/python/python3-ansi2html_1.5.2.bb deleted file mode 100644 index 8e586ea3e8..0000000000 --- a/meta-python/recipes-devtools/python/python3-ansi2html_1.5.2.bb +++ /dev/null @@ -1,13 +0,0 @@ -DESCRPTION = "ansi2html - Convert text with ANSI color codes to HTML or to LaTeX" -HOMEPAGE = "https://github.com/ralphbean/ansi2html" -LIC_FILES_CHKSUM = "file://LICENSE;md5=3000208d539ec061b899bce1d9ce9404" -LICENSE = "GPLv3" - -PYPI_PACKAGE = "ansi2html" - -SRC_URI[md5sum] = "52d6085ad1c5970082ea5305a26af981" -SRC_URI[sha256sum] = "96ae85ae7b26b7da674d87de2870ba4d1964bca733ae4614587080b6358c3ba9" - -inherit pypi setuptools3 - -RDEPENDS_${PN} = "${PYTHON_PN}-six" diff --git a/meta-python/recipes-devtools/python/python3-ansi2html_1.6.0.bb b/meta-python/recipes-devtools/python/python3-ansi2html_1.6.0.bb new file mode 100644 index 0000000000..d31448d6a8 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-ansi2html_1.6.0.bb @@ -0,0 +1,13 @@ +DESCRPTION = "ansi2html - Convert text with ANSI color codes to HTML or to LaTeX" +HOMEPAGE = "https://github.com/ralphbean/ansi2html" +LIC_FILES_CHKSUM = "file://LICENSE;md5=3000208d539ec061b899bce1d9ce9404" +LICENSE = "GPLv3" + +PYPI_PACKAGE = "ansi2html" + +SRC_URI[sha256sum] = "0f124ea7efcf3f24f1f9398e527e688c9ae6eab26b0b84e1299ef7f94d92c596" + +inherit pypi setuptools3 + +DEPENDS += "${PYTHON_PN}-setuptools-scm-native ${PYTHON_PN}-toml-native" +RDEPENDS_${PN} = "${PYTHON_PN}-six" -- cgit 1.2.3-korg