Fri Jan 17 18:14:49 2020 UTC ()
Update to 2020.1.16. From the changelog:

* Add type annotations.
* Add support for Python 3.8.
* Performance improvements when ``wrap_links`` is ``False`` (the default).
* Configure setuptools using setup.cfg.


(schmonz)
diff -r1.55 -r1.56 pkgsrc/textproc/py-html2text/Makefile
diff -r1.12 -r1.13 pkgsrc/textproc/py-html2text/PLIST
diff -r1.37 -r1.38 pkgsrc/textproc/py-html2text/distinfo

cvs diff -r1.55 -r1.56 pkgsrc/textproc/py-html2text/Makefile (expand / switch to unified diff)

--- pkgsrc/textproc/py-html2text/Makefile 2019/10/09 21:26:12 1.55
+++ pkgsrc/textproc/py-html2text/Makefile 2020/01/17 18:14:49 1.56
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.55 2019/10/09 21:26:12 rhialto Exp $ 1# $NetBSD: Makefile,v 1.56 2020/01/17 18:14:49 schmonz Exp $
2 2
3DISTNAME= html2text-2019.9.26 3DISTNAME= html2text-2020.1.16
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5CATEGORIES= textproc converters python 5CATEGORIES= textproc converters python
6MASTER_SITES= ${MASTER_SITE_PYPI:=h/html2text/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=h/html2text/}
7 7
8MAINTAINER= schmonz@NetBSD.org 8MAINTAINER= schmonz@NetBSD.org
9HOMEPAGE= https://github.com/Alir3z4/html2text 9HOMEPAGE= https://github.com/Alir3z4/html2text
10COMMENT= Convert HTML into easy-to-read plain ASCII text 10COMMENT= Convert HTML into easy-to-read plain ASCII text
11LICENSE= gnu-gpl-v3 11LICENSE= gnu-gpl-v3
12 12
13USE_LANGUAGES= # none 13USE_LANGUAGES= # none
14PYTHON_VERSIONS_INCOMPATIBLE= 27 14PYTHON_VERSIONS_INCOMPATIBLE= 27
15 15
16post-install: 16post-install:

cvs diff -r1.12 -r1.13 pkgsrc/textproc/py-html2text/PLIST (expand / switch to unified diff)

--- pkgsrc/textproc/py-html2text/PLIST 2019/09/29 12:18:42 1.12
+++ pkgsrc/textproc/py-html2text/PLIST 2020/01/17 18:14:49 1.13
@@ -1,22 +1,30 @@ @@ -1,22 +1,30 @@
1@comment $NetBSD: PLIST,v 1.12 2019/09/29 12:18:42 schmonz Exp $ 1@comment $NetBSD: PLIST,v 1.13 2020/01/17 18:14:49 schmonz Exp $
2bin/html2text-${PYVERSSUFFIX} 2bin/html2text-${PYVERSSUFFIX}
3${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 3${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
4${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 4${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
5${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 5${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
6${PYSITELIB}/${EGG_INFODIR}/entry_points.txt 6${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
 7${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
7${PYSITELIB}/${EGG_INFODIR}/top_level.txt 8${PYSITELIB}/${EGG_INFODIR}/top_level.txt
8${PYSITELIB}/html2text/__init__.py 9${PYSITELIB}/html2text/__init__.py
9${PYSITELIB}/html2text/__init__.pyc 10${PYSITELIB}/html2text/__init__.pyc
10${PYSITELIB}/html2text/__init__.pyo 11${PYSITELIB}/html2text/__init__.pyo
11${PYSITELIB}/html2text/__main__.py 12${PYSITELIB}/html2text/__main__.py
12${PYSITELIB}/html2text/__main__.pyc 13${PYSITELIB}/html2text/__main__.pyc
13${PYSITELIB}/html2text/__main__.pyo 14${PYSITELIB}/html2text/__main__.pyo
14${PYSITELIB}/html2text/cli.py 15${PYSITELIB}/html2text/cli.py
15${PYSITELIB}/html2text/cli.pyc 16${PYSITELIB}/html2text/cli.pyc
16${PYSITELIB}/html2text/cli.pyo 17${PYSITELIB}/html2text/cli.pyo
17${PYSITELIB}/html2text/config.py 18${PYSITELIB}/html2text/config.py
18${PYSITELIB}/html2text/config.pyc 19${PYSITELIB}/html2text/config.pyc
19${PYSITELIB}/html2text/config.pyo 20${PYSITELIB}/html2text/config.pyo
 21${PYSITELIB}/html2text/elements.py
 22${PYSITELIB}/html2text/elements.pyc
 23${PYSITELIB}/html2text/elements.pyo
 24${PYSITELIB}/html2text/py.typed
 25${PYSITELIB}/html2text/typing.py
 26${PYSITELIB}/html2text/typing.pyc
 27${PYSITELIB}/html2text/typing.pyo
20${PYSITELIB}/html2text/utils.py 28${PYSITELIB}/html2text/utils.py
21${PYSITELIB}/html2text/utils.pyc 29${PYSITELIB}/html2text/utils.pyc
22${PYSITELIB}/html2text/utils.pyo 30${PYSITELIB}/html2text/utils.pyo

cvs diff -r1.37 -r1.38 pkgsrc/textproc/py-html2text/distinfo (expand / switch to unified diff)

--- pkgsrc/textproc/py-html2text/distinfo 2019/09/29 12:18:42 1.37
+++ pkgsrc/textproc/py-html2text/distinfo 2020/01/17 18:14:49 1.38
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.37 2019/09/29 12:18:42 schmonz Exp $ 1$NetBSD: distinfo,v 1.38 2020/01/17 18:14:49 schmonz Exp $
2 2
3SHA1 (html2text-2019.9.26.tar.gz) = 40925f552ef9b67cb4d67086d532fb7ecf4f4c4b 3SHA1 (html2text-2020.1.16.tar.gz) = 0eb74ae2c366245845ebd00cde73ef20f48948da
4RMD160 (html2text-2019.9.26.tar.gz) = 4acefb71dd07c49b517f0747b8d6db8ea0cbab89 4RMD160 (html2text-2020.1.16.tar.gz) = a36b162620bbd0337e69fd67cdf0f54211074ad3
5SHA512 (html2text-2019.9.26.tar.gz) = 4c6a52e96d3997a6ebe41c2955e2f6bd5189f49aadd7d7afbe67b85a2f61a0aafd0fc09fef184cb9407b9ab26f120ef235294e4e9d8f41e3b6b8f6fc29aa386d 5SHA512 (html2text-2020.1.16.tar.gz) = 14453c98e81d05afb3241b04a9e50caf63e4b6f857337b4bd9f53e6b8fa7146aa6a1f4f64777db9fa350316b19fe62a0033dce5748191ca9fbd17a8757002855
6Size (html2text-2019.9.26.tar.gz) = 48634 bytes 6Size (html2text-2020.1.16.tar.gz) = 49464 bytes