pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/py-html2text Update to 2014.12.5:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/43f23688aabc
branches:  trunk
changeset: 642931:43f23688aabc
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Sun Dec 07 17:27:25 2014 +0000

description:
Update to 2014.12.5:

2014.12.5
=========
----

* Feature: Update `README.md` with usage examples.
* Fix #35: Remove `py_modules` from `setup.py`.
* Fix #36: Excludes tests from being installed as a separate module.
* Fix #37: Don't hardcode the path to the installed binary.
* Fix: Readme typo in running cli.
* Feature #40: Extract cli part to ``cli`` module.
* Feature #42: Bring python version compatibility to ``compat.py`` module.
* Feature #41: Extract utility/helper methods to ``utils`` module.
* Fix #45: Does not accept standard input when running under Python 3.
* Feature: Clean up ``ChangeLog.rst`` for version and date numbers.

diffstat:

 textproc/py-html2text/Makefile |   4 +-
 textproc/py-html2text/PLIST    |  54 ++++++++---------------------------------
 textproc/py-html2text/distinfo |   8 +++---
 3 files changed, 17 insertions(+), 49 deletions(-)

diffs (92 lines):

diff -r d8f819948d44 -r 43f23688aabc textproc/py-html2text/Makefile
--- a/textproc/py-html2text/Makefile    Sun Dec 07 17:25:41 2014 +0000
+++ b/textproc/py-html2text/Makefile    Sun Dec 07 17:27:25 2014 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.34 2014/10/05 14:42:24 wiz Exp $
+# $NetBSD: Makefile,v 1.35 2014/12/07 17:27:25 wiz Exp $
 
-DISTNAME=              html2text-2014.9.25
+DISTNAME=              html2text-2014.12.5
 PKGNAME=               ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=            textproc python
 MASTER_SITES=          http://pypi.python.org/packages/source/h/html2text/
diff -r d8f819948d44 -r 43f23688aabc textproc/py-html2text/PLIST
--- a/textproc/py-html2text/PLIST       Sun Dec 07 17:25:41 2014 +0000
+++ b/textproc/py-html2text/PLIST       Sun Dec 07 17:27:25 2014 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.8 2014/10/05 14:42:24 wiz Exp $
+@comment $NetBSD: PLIST,v 1.9 2014/12/07 17:27:25 wiz Exp $
 bin/html2text
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
@@ -9,47 +9,15 @@
 ${PYSITELIB}/html2text/__init__.py
 ${PYSITELIB}/html2text/__init__.pyc
 ${PYSITELIB}/html2text/__init__.pyo
+${PYSITELIB}/html2text/cli.py
+${PYSITELIB}/html2text/cli.pyc
+${PYSITELIB}/html2text/cli.pyo
+${PYSITELIB}/html2text/compat.py
+${PYSITELIB}/html2text/compat.pyc
+${PYSITELIB}/html2text/compat.pyo
+${PYSITELIB}/html2text/config.py
 ${PYSITELIB}/html2text/config.pyc
 ${PYSITELIB}/html2text/config.pyo
-${PYSITELIB}/html2text/config.py
-${PYSITELIB}/test/GoogleDocMassDownload.html
-${PYSITELIB}/test/GoogleDocMassDownload.md
-${PYSITELIB}/test/GoogleDocSaved.html
-${PYSITELIB}/test/GoogleDocSaved.md
-${PYSITELIB}/test/__init__.py
-${PYSITELIB}/test/__init__.pyc
-${PYSITELIB}/test/__init__.pyo
-${PYSITELIB}/test/test_html2text.pyc
-${PYSITELIB}/test/test_html2text.pyo
-${PYSITELIB}/test/test_memleak.pyc
-${PYSITELIB}/test/test_memleak.pyo
-${PYSITELIB}/test/anchor-undefined-href.html
-${PYSITELIB}/test/anchor-undefined-href.md
-${PYSITELIB}/test/bodywidth_newline.html
-${PYSITELIB}/test/bodywidth_newline.md
-${PYSITELIB}/test/css_import_no_semicolon.html
-${PYSITELIB}/test/css_import_no_semicolon.md
-${PYSITELIB}/test/doc_with_table.html
-${PYSITELIB}/test/doc_with_table.md
-${PYSITELIB}/test/doc_with_table_bypass.html
-${PYSITELIB}/test/doc_with_table_bypass.md
-${PYSITELIB}/test/emdash-para.html
-${PYSITELIB}/test/emdash-para.md
-${PYSITELIB}/test/invalid_start.html
-${PYSITELIB}/test/invalid_start.md
-${PYSITELIB}/test/nbsp.html
-${PYSITELIB}/test/nbsp.md
-${PYSITELIB}/test/nbsp_unicode.html
-${PYSITELIB}/test/nbsp_unicode.md
-${PYSITELIB}/test/normal.html
-${PYSITELIB}/test/normal.md
-${PYSITELIB}/test/normal_escape_snob.html
-${PYSITELIB}/test/normal_escape_snob.md
-${PYSITELIB}/test/pre.html
-${PYSITELIB}/test/pre.md
-${PYSITELIB}/test/preformatted_in_list.html
-${PYSITELIB}/test/preformatted_in_list.md
-${PYSITELIB}/test/test_html2text.py
-${PYSITELIB}/test/test_memleak.py
-${PYSITELIB}/test/url-escaping.html
-${PYSITELIB}/test/url-escaping.md
+${PYSITELIB}/html2text/utils.py
+${PYSITELIB}/html2text/utils.pyc
+${PYSITELIB}/html2text/utils.pyo
diff -r d8f819948d44 -r 43f23688aabc textproc/py-html2text/distinfo
--- a/textproc/py-html2text/distinfo    Sun Dec 07 17:25:41 2014 +0000
+++ b/textproc/py-html2text/distinfo    Sun Dec 07 17:27:25 2014 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.21 2014/10/05 14:42:24 wiz Exp $
+$NetBSD: distinfo,v 1.22 2014/12/07 17:27:25 wiz Exp $
 
-SHA1 (html2text-2014.9.25.tar.gz) = 942b0f8f8da828ef68091e2371282bf17c80c21a
-RMD160 (html2text-2014.9.25.tar.gz) = b6acc488ae04018fd7d1356d458722ec97e6fe34
-Size (html2text-2014.9.25.tar.gz) = 33545 bytes
+SHA1 (html2text-2014.12.5.tar.gz) = 4cd8b369ccca9580408f66cd350e86e55f5fbd49
+RMD160 (html2text-2014.12.5.tar.gz) = 4bec52e203ad075d67c8365f726c1adbc2d99f9d
+Size (html2text-2014.12.5.tar.gz) = 34003 bytes



Home | Main Index | Thread Index | Old Index