Skip to content

Commit

Permalink
Update to 2019.8.11. From the changelog:
Browse files Browse the repository at this point in the history
* Add support for wrapping list items.
* Fix #201: handle ‎/‏ marks mid-text within stressed tags or
  right after stressed tags.
* Feature #213: ``images_as_html`` config option to always generate an
  ``img`` html tag. preserves "height", "width" and "alt" if possible.
* Remove support for end-of-life Pythons. Now requires Python 2.7 or 3.4+.
* Remove support for retrieving HTML over the network.
* Add ``__main__.py`` module to allow running the CLI using
  ``python -m html2text ...``.
* Fix #238: correct spacing when a HTML entity follows a non-stressed
  tags which follow a stressed tag.
* Remove unused or deprecated:
  * ``html2text.compat.escape()``
  * ``html2text.config.RE_UNESCAPE``
  * ``html2text.HTML2Text.replaceEntities()``
  * ``html2text.HTML2Text.unescape()``
  * ``html2text.unescape()``
* Fix #208: handle LEFT-TO-RIGHT MARK after a stressed tag.
  • Loading branch information
schmonz committed Aug 17, 2019
1 parent 5fc44b4 commit 70fa9b3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions textproc/py-html2text/Makefile
@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.52 2018/04/14 09:02:57 adam Exp $ # $NetBSD: Makefile,v 1.53 2019/08/17 15:12:14 schmonz Exp $


DISTNAME= html2text-2018.1.9 DISTNAME= html2text-2019.8.11
PKGNAME= ${PYPKGPREFIX}-${DISTNAME} PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= textproc converters python CATEGORIES= textproc converters python
MASTER_SITES= ${MASTER_SITE_PYPI:=h/html2text/} MASTER_SITES= ${MASTER_SITE_PYPI:=h/html2text/}
Expand Down
6 changes: 4 additions & 2 deletions textproc/py-html2text/PLIST
@@ -1,14 +1,16 @@
@comment $NetBSD: PLIST,v 1.10 2016/02/18 09:57:12 wiz Exp $ @comment $NetBSD: PLIST,v 1.11 2019/08/17 15:12:14 schmonz Exp $
bin/html2text-${PYVERSSUFFIX} bin/html2text-${PYVERSSUFFIX}
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt ${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/html2text/__init__.py ${PYSITELIB}/html2text/__init__.py
${PYSITELIB}/html2text/__init__.pyc ${PYSITELIB}/html2text/__init__.pyc
${PYSITELIB}/html2text/__init__.pyo ${PYSITELIB}/html2text/__init__.pyo
${PYSITELIB}/html2text/__main__.py
${PYSITELIB}/html2text/__main__.pyc
${PYSITELIB}/html2text/__main__.pyo
${PYSITELIB}/html2text/cli.py ${PYSITELIB}/html2text/cli.py
${PYSITELIB}/html2text/cli.pyc ${PYSITELIB}/html2text/cli.pyc
${PYSITELIB}/html2text/cli.pyo ${PYSITELIB}/html2text/cli.pyo
Expand Down
10 changes: 5 additions & 5 deletions textproc/py-html2text/distinfo
@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.35 2018/04/14 09:02:57 adam Exp $ $NetBSD: distinfo,v 1.36 2019/08/17 15:12:14 schmonz Exp $


SHA1 (html2text-2018.1.9.tar.gz) = c996db653c15d1641428148f4b3091eb3b19bc10 SHA1 (html2text-2019.8.11.tar.gz) = a8f0b4950028478993893d7acf1cc2d2941d2913
RMD160 (html2text-2018.1.9.tar.gz) = fc0d10a31cd78d1ca34d8de1a4d12e503acecae6 RMD160 (html2text-2019.8.11.tar.gz) = d7794cb2ca31d02d9359aae569a053be688a1e55
SHA512 (html2text-2018.1.9.tar.gz) = c081a50ab5318ee3debb3dd218a23374a8a4e4f5df7664f938606698c52846fa5b8c99a9c04e5dc36aa65ff2c3af422e2d9c6ffbe07f06a46256bd434915539b SHA512 (html2text-2019.8.11.tar.gz) = f405bccea18b2898fc8816483e8fa8912b2d508f139d7a65c54218acc87006d8b89e00a12018dc7b911f729036fe4e8a5069242dc00edb40171d4bc149e39ba6
Size (html2text-2018.1.9.tar.gz) = 52211 bytes Size (html2text-2019.8.11.tar.gz) = 48721 bytes

0 comments on commit 70fa9b3

Please sign in to comment.