diff options
author | joerg <joerg@pkgsrc.org> | 2009-11-01 21:12:37 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2009-11-01 21:12:37 +0000 |
commit | 92a0fcbf1293fb83df9e5507a11a72715426a7e9 (patch) | |
tree | 37cff72bea9369b8de0a593a39d613d1c6851899 /textproc/py-lxml/Makefile | |
parent | d5f5719cf32ac7257b62baee0f66bb09cd4c210d (diff) | |
download | pkgsrc-92a0fcbf1293fb83df9e5507a11a72715426a7e9.tar.gz |
Update to py-lxml-2.2.3:
* The resolve_entities option did not work in the incremental feed
parser.
* Looking up and deleting attributes without a namespace could hit a
namespaced attribute of the same name instead.
* Late errors during calls to SubElement() (e.g. attribute related
ones) could leave a partially initialised element in the tree.
* Modifying trees that contain parsed entity references could result
in an infinite loop.
* ObjectifiedElement.__setattr__ created an empty-string child
element when the attribute value was rejected as a non-unicode/
non-ascii string
* Syntax errors in lxml.cssselect could result in misleading error
messages.
* Invalid syntax in CSS expressions could lead to an infinite loop
in the parser of lxml.cssselect.
* CSS special character escapes were not properly handled in
lxml.cssselect.
* CSS Unicode escapes were not properly decoded in lxml.cssselect.
* Select options in HTML forms that had no explicit value attribute
were not handled correctly. The HTML standard dictates that their
value is defined by their text content. This is now supported by
lxml.html.
* XPath raised a TypeError when finding CDATA sections. This is now
fully supported.
* Calling help(lxml.objectify) didn't work at the prompt.
* The ElementMaker in lxml.objectify no longer defines the default
namespaces when annotation is disabled.
* Feed parser failed to honout the 'recover' option on parse errors.
* Diverting the error logging to Python's logging system was broken.
Require setuptools-0.6c11 as it fails at least with newer Python 2.6
otherwise.
Diffstat (limited to 'textproc/py-lxml/Makefile')
-rw-r--r-- | textproc/py-lxml/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/textproc/py-lxml/Makefile b/textproc/py-lxml/Makefile index d133a1698a5..463d4d86a58 100644 --- a/textproc/py-lxml/Makefile +++ b/textproc/py-lxml/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.4 2009/08/09 21:45:47 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2009/11/01 21:12:37 joerg Exp $ # -DISTNAME= lxml-2.2.2 +DISTNAME= lxml-2.2.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= textproc MASTER_SITES= http://codespeak.net/lxml/ @@ -15,6 +15,8 @@ PKG_DESTDIR_SUPPORT= user-destdir PYDISTUTILSPKG= yes +DEPENDS+= ${PYPKGPREFIX}-setuptools>=0.6c11:../../devel/py-setuptools + .include "../../lang/python/egg.mk" BUILDLINK_API_DEPENDS.libxml2+= libxml2>=2.6.28 .include "../../textproc/libxml2/buildlink3.mk" |