20c408a0b4
1.65 - fix bug in t/40reader.t revealed by a bugfix in Test::More 0.71 (Jonathan Rockway) - fix possible SIGSEGV when PI's or attrs created with createDocument can get garbage-collected after their owning document (old-standing bug suddenly caught by XML::Compile regression tests) - skip tests for unsupported features on unsupported versions of Perl/libxml2 - make Reader interface require Perl 5.8 (patches to extend to 5.6 are welcome) 1.64 - fix reconcilation of the "xml" namespace [rt.cpan.org #26450] - make tests pass with libxml2 2.9.29 - PI regression tests now accept "" as data of an empty PI [rt.cpan.org #27659] - strip-off UTF8 flag with $node->toString($format,1) for consistent behavior independent on the actual document encoding - fix in XML::LibXML::Reader::nextSiblingElment - fix synopsis for XML::LibXML::Reader - skip tests that require Encode module if not available (perl 5.6) - finally removed the iterator() method deprecated since 1.54 - set_document_locator support in XML::LibXML::SAX::Parser - SYNOPSIS sections of the docs now mention which module to use and which other manpage to look into for inherited methods - XML::LibXML::Namespace API fixed in order to achieve an agreement between the docs and the implementation
31 lines
1,014 B
Makefile
31 lines
1,014 B
Makefile
# $NetBSD: Makefile,v 1.26 2007/11/29 14:28:44 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= XML-LibXML-1.65
|
|
PKGNAME= p5-${DISTNAME}
|
|
SVR4_PKGNAME= p5xlx
|
|
CATEGORIES= textproc perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=XML/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/XML-LibXML/
|
|
COMMENT= Perl interface to the libxml2 library
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
DEPENDS+= p5-XML-SAX>=0.11:../../textproc/p5-XML-SAX
|
|
DEPENDS+= p5-XML-NamespaceSupport>=1.07:../../textproc/p5-XML-NamespaceSupport
|
|
DEPENDS+= p5-XML-LibXML-Common>=0.13:../../textproc/p5-XML-LibXML-Common
|
|
|
|
# since version 1.61 the XML::LibXML Perl module
|
|
# includes XML::LibXML::XPathContext module
|
|
CONFLICTS+= p5-XML-LibXML-XPathContext-[0-9]*
|
|
|
|
MAKE_ENV+= SKIP_SAX_INSTALL=1 # Must be done in the INSTALL script
|
|
PERL5_PACKLIST= auto/XML/LibXML/.packlist
|
|
|
|
FILES_SUBST+= PERL5_INSTALLVENDORLIB=${PERL5_INSTALLVENDORLIB:Q}
|
|
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|