summaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2011-04-15 08:42:03 +0000
committeradam <adam@pkgsrc.org>2011-04-15 08:42:03 +0000
commitc2f7be2c04168c5e370899e22d5c79c33e903e71 (patch)
tree969855b78b70bb011f3dff5274ab1dc8d80abcd6 /textproc
parentef456fc279ea900203a7dc5a4a42fb3761dcddcc (diff)
downloadpkgsrc-c2f7be2c04168c5e370899e22d5c79c33e903e71.tar.gz
Changes 0.90:
* Parses valid and invalid HTML documents to a tree * Support for minidom, ElementTree (including cElementTree and lxml.etree), BeautifulSoup (deprecated) and custom simpletree output formats * DOM to SAX converter * Reports parse errors * Character encoding detection * Filtering and serializing of trees * HTML+CSS sanitizer * Many unit tests
Diffstat (limited to 'textproc')
-rw-r--r--textproc/py-html5lib/Makefile7
-rw-r--r--textproc/py-html5lib/PLIST23
-rw-r--r--textproc/py-html5lib/distinfo8
3 files changed, 14 insertions, 24 deletions
diff --git a/textproc/py-html5lib/Makefile b/textproc/py-html5lib/Makefile
index 988524e9ae7..92e893876c9 100644
--- a/textproc/py-html5lib/Makefile
+++ b/textproc/py-html5lib/Makefile
@@ -1,16 +1,15 @@
-# $NetBSD: Makefile,v 1.2 2009/10/19 10:57:40 joerg Exp $
-#
+# $NetBSD: Makefile,v 1.3 2011/04/15 08:42:03 adam Exp $
-DISTNAME= html5lib-0.11.1
+DISTNAME= html5lib-0.90
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= textproc www python
MASTER_SITES= http://html5lib.googlecode.com/files/
-
EXTRACT_SUFX= .zip
MAINTAINER= joerg@NetBSD.org
HOMEPAGE= http://code.google.com/5/html5lib/
COMMENT= HTML5 parser and tokenizer
+LICENSE= mit
PKG_DESTDIR_SUPPORT= user-destdir
diff --git a/textproc/py-html5lib/PLIST b/textproc/py-html5lib/PLIST
index d218731b66e..24296e84574 100644
--- a/textproc/py-html5lib/PLIST
+++ b/textproc/py-html5lib/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2009/06/14 18:17:25 joerg Exp $
+@comment $NetBSD: PLIST,v 1.3 2011/04/15 08:42:03 adam Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -21,39 +21,27 @@ ${PYSITELIB}/html5lib/filters/formfiller.pyo
${PYSITELIB}/html5lib/filters/inject_meta_charset.py
${PYSITELIB}/html5lib/filters/inject_meta_charset.pyc
${PYSITELIB}/html5lib/filters/inject_meta_charset.pyo
-${PYSITELIB}/html5lib/filters/iso639codes.py
-${PYSITELIB}/html5lib/filters/iso639codes.pyc
-${PYSITELIB}/html5lib/filters/iso639codes.pyo
${PYSITELIB}/html5lib/filters/lint.py
${PYSITELIB}/html5lib/filters/lint.pyc
${PYSITELIB}/html5lib/filters/lint.pyo
${PYSITELIB}/html5lib/filters/optionaltags.py
${PYSITELIB}/html5lib/filters/optionaltags.pyc
${PYSITELIB}/html5lib/filters/optionaltags.pyo
-${PYSITELIB}/html5lib/filters/rfc2046.py
-${PYSITELIB}/html5lib/filters/rfc2046.pyc
-${PYSITELIB}/html5lib/filters/rfc2046.pyo
-${PYSITELIB}/html5lib/filters/rfc3987.py
-${PYSITELIB}/html5lib/filters/rfc3987.pyc
-${PYSITELIB}/html5lib/filters/rfc3987.pyo
${PYSITELIB}/html5lib/filters/sanitizer.py
${PYSITELIB}/html5lib/filters/sanitizer.pyc
${PYSITELIB}/html5lib/filters/sanitizer.pyo
-${PYSITELIB}/html5lib/filters/validator.py
-${PYSITELIB}/html5lib/filters/validator.pyc
-${PYSITELIB}/html5lib/filters/validator.pyo
${PYSITELIB}/html5lib/filters/whitespace.py
${PYSITELIB}/html5lib/filters/whitespace.pyc
${PYSITELIB}/html5lib/filters/whitespace.pyo
${PYSITELIB}/html5lib/html5parser.py
${PYSITELIB}/html5lib/html5parser.pyc
${PYSITELIB}/html5lib/html5parser.pyo
+${PYSITELIB}/html5lib/ihatexml.py
+${PYSITELIB}/html5lib/ihatexml.pyc
+${PYSITELIB}/html5lib/ihatexml.pyo
${PYSITELIB}/html5lib/inputstream.py
${PYSITELIB}/html5lib/inputstream.pyc
${PYSITELIB}/html5lib/inputstream.pyo
-${PYSITELIB}/html5lib/liberalxmlparser.py
-${PYSITELIB}/html5lib/liberalxmlparser.pyc
-${PYSITELIB}/html5lib/liberalxmlparser.pyo
${PYSITELIB}/html5lib/sanitizer.py
${PYSITELIB}/html5lib/sanitizer.pyc
${PYSITELIB}/html5lib/sanitizer.pyo
@@ -69,6 +57,9 @@ ${PYSITELIB}/html5lib/serializer/xhtmlserializer.pyo
${PYSITELIB}/html5lib/tokenizer.py
${PYSITELIB}/html5lib/tokenizer.pyc
${PYSITELIB}/html5lib/tokenizer.pyo
+${PYSITELIB}/html5lib/tokenizer_old.py
+${PYSITELIB}/html5lib/tokenizer_old.pyc
+${PYSITELIB}/html5lib/tokenizer_old.pyo
${PYSITELIB}/html5lib/treebuilders/__init__.py
${PYSITELIB}/html5lib/treebuilders/__init__.pyc
${PYSITELIB}/html5lib/treebuilders/__init__.pyo
diff --git a/textproc/py-html5lib/distinfo b/textproc/py-html5lib/distinfo
index 02b8733df94..0419f5570e9 100644
--- a/textproc/py-html5lib/distinfo
+++ b/textproc/py-html5lib/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.2 2009/10/19 10:57:40 joerg Exp $
+$NetBSD: distinfo,v 1.3 2011/04/15 08:42:03 adam Exp $
-SHA1 (html5lib-0.11.1.zip) = 157506319e40f5d973c128e5e2b826cd1bee471e
-RMD160 (html5lib-0.11.1.zip) = ac00975e5ea8b20606531e631274c1a8985110c9
-Size (html5lib-0.11.1.zip) = 375892 bytes
+SHA1 (html5lib-0.90.zip) = 37fdf4d853f53ebd170250f7f023f55a02659378
+RMD160 (html5lib-0.90.zip) = ba01161f3b0d6a5dfb9e1ffedaf9c18a6b7d2a19
+Size (html5lib-0.90.zip) = 99322 bytes