57b4f81599
2.2.6 (2010-03-02) ================== Bugs fixed ---------- * Fixed several Python 3 regressions by building with Cython 0.11.3. 2.2.5 (2010-02-28) ================== Features added -------------- * Support for running XSLT extension elements on the input root node (e.g. in a template matching on "/"). Bugs fixed ---------- * Crash in XPath evaluation when reading smart strings from a document other than the original context document. * Support recent versions of html5lib by not requiring its ``XHTMLParser`` in ``htmlparser.py`` anymore. * Manually instantiating the custom element classes in ``lxml.objectify`` could crash. * Invalid XML text characters were not rejected by the API when they appeared in unicode strings directly after non-ASCII characters. * lxml.html.open_http_urllib() did not work in Python 3. * The functions ``strip_tags()`` and ``strip_elements()`` in ``lxml.etree`` did not remove all occurrences of a tag in all cases. * Crash in XSLT extension elements when the XSLT context node is not an element.
25 lines
708 B
Makefile
25 lines
708 B
Makefile
# $NetBSD: Makefile,v 1.7 2010/05/02 13:38:23 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= lxml-2.2.6
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://codespeak.net/lxml/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://codespeak.net/lxml/
|
|
COMMENT= Python binding for libxml2 and libxslt
|
|
|
|
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"
|
|
BUILDLINK_API_DEPENDS.libxslt+= libxslt>=1.1.15
|
|
.include "../../textproc/libxslt/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|