diff options
author | drochner <drochner@pkgsrc.org> | 2002-08-20 12:54:21 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2002-08-20 12:54:21 +0000 |
commit | 256ef15c1ab434d1e836b4e5527a1645093b8876 (patch) | |
tree | 00f79b1ef7e444076d1455928ccd14515f930c8d /textproc/pyxml/Makefile | |
parent | de73802ae7cdec171f424213415664c078d23fb3 (diff) | |
download | pkgsrc-256ef15c1ab434d1e836b4e5527a1645093b8876.tar.gz |
update to 0.8
relevant changes in this version, compared to 0.7.1:
* Python 1.5 is not supported anymore; Python 2.0 or higher
is required.
* pyexpat now reports skipped entities.
* pyexpat now can combine subsequent character data events
into a single callback invocation; set the parser's
buffer_text attribute to true to enable this feature.
* pyexpat can now report namespace prefixes. Set the parser's
namespace_prefixes attribute to true to enable this feature.
* Various bugs in sgmlop have been fixed.
* Various DOM Level 3 symbolic constants have been added;
DOMStringSizeErr can now be spelled as DomstringSizeErr
again, and ValidationErr has been defined.
* Various DOM L1, L2 and L3 features have been added to
minidom: userdata, isSupported, getInterface, wholeText,
replaceWholeText, Entity, Notation
* minidom's .toxml now allows the caller to specify an encoding.
* The new module xml.dom.xmlbuilder implements the load part
of the DOM L3 Load/Store spec.
* The new module xml.dom.expatbuilder allows to create minidom
trees more efficiently, by using expat directly (rather than
using SAX). This is normally used via xml.dom.xmlbuilder.
* Bugs in c14n namespace processing have been fixed.
* Minor bugs in xmlproc have been fixed.
* xml.sax.expatreader now invokes resolveEntity properly.
* The sgmlop SAX driver now invokes skippedEntity.
* The xml-howto has been updated.
* Bugs in the MSIE, ADR, and NS XBEL parsers have been fixed.
Diffstat (limited to 'textproc/pyxml/Makefile')
-rw-r--r-- | textproc/pyxml/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/textproc/pyxml/Makefile b/textproc/pyxml/Makefile index c7a9905ed88..61593d2f60a 100644 --- a/textproc/pyxml/Makefile +++ b/textproc/pyxml/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.8 2002/05/08 11:31:36 drochner Exp $ +# $NetBSD: Makefile,v 1.9 2002/08/20 12:54:21 drochner Exp $ # -DISTNAME= PyXML-0.7.1 -PKGNAME= ${PYPKGPREFIX}-xml-0.7.1 +DISTNAME= PyXML-0.8 +PKGNAME= ${PYPKGPREFIX}-xml-0.8 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pyxml/} @@ -10,13 +10,12 @@ MAINTAINER= drochner@netbsd.org HOMEPAGE= http://pyxml.sourceforge.net/ COMMENT= collection of libraries to process XML with Python -DEPENDS+= expat-[0-9]*:../../textproc/expat CONFLICTS+= PyXML-* +USE_BUILDLINK_ONLY= yes PYDISTUTILSPKG= yes PYBINMODULE= yes -PYSETUPBUILDARGS+= --with-libexpat=${LOCALBASE} -PYSETUPBUILDARGS+= --ldflags=-Wl,-R${LOCALBASE}/lib +PYSETUPBUILDARGS+= --with-libexpat=${BUILDLINK_DIR} PYXML_SCRIPTS= scripts/xmlproc_parse \ scripts/xmlproc_val @@ -29,6 +28,7 @@ post-extract: PYTHON_PATCH_SCRIPTS= ${PYXML_SCRIPTS:S/$/${PYVERSSUFFIX}/g} PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX} +.include "../../textproc/expat/buildlink.mk" .include "../../lang/python/extension.buildlink.mk" .include "../../lang/python/application.buildlink.mk" .include "../../mk/bsd.pkg.mk" |