35497ea7e1
CHANGES version 3.42 date: 2012-11-06 # minor maintenance release fixed: bug, elements created with XML::Twig::Elt->parse were garbage collected too early, see http://stackoverflow.com/questions/13263193/xmltwig-changes-erased added: some tests version 3.41 date 2012-08-08 # minor maintenance release fixed: META.json generation version 3.40 date: 2012-05-10 # minor maintenance release added: support for alternations ('|') at the top level of handler triggers and navigation you can now have twig_handlers => { 't1|t2' => \&handler } and $elt->children( 't1|t2') added: the discard_all_spaces option that discards more aggressively non-significant white spaces see RT #71164 https://rt.cpan.org/Ticket/Display.html?id=71164 fixed: used $[ instead of $] in 3 tests, see RT#72765 https://rt.cpan.org/Ticket/Display.html?id=72765 reported by Kevin Ryde fixed: did not use Text::Wrap with indented_c see RT #71375 https://rt.cpan.org/Ticket/Display.html?id=71375 reported and patch provided by Martin Strömberg fixed: doc change for XML::Twig::Elt flush, see RT #72279 https://rt.cpan.org/Ticket/Display.html?id=72279 fixed: replaced HTML::TreeBuilder::as_XML with am XML::Twig specific version, to avoid bugs in the original version and improve stability of the output
41 lines
1.6 KiB
Makefile
41 lines
1.6 KiB
Makefile
# $NetBSD: Makefile,v 1.25 2013/01/23 10:33:32 rhaen Exp $
|
|
#
|
|
|
|
DISTNAME= XML-Twig-3.42
|
|
PKGNAME= p5-${DISTNAME}
|
|
SVR4_PKGNAME= p5xtw
|
|
CATEGORIES= textproc perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=XML/}
|
|
|
|
MAINTAINER= rhaen@NetBSD.org
|
|
HOMEPAGE= http://www.xmltwig.com/
|
|
COMMENT= Efficient XML document interface
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
DEPENDS+= p5-XML-Parser>=2.23:../../textproc/p5-XML-Parser
|
|
|
|
# The modules listed below are required for testing purposes only
|
|
# they are not required for building the package
|
|
#DEPENDS+= p5-HTML-Tree-[0-9]*:../../www/p5-HTML-Tree
|
|
#DEPENDS+= p5-IO-stringy-[0-9]*:../../devel/p5-IO-stringy
|
|
#DEPENDS+= p5-Test-Pod-[0-9]*:../../devel/p5-Test-Pod
|
|
#DEPENDS+= p5-Test-Pod-Coverage>=1.0:../../devel/p5-Test-Pod-Coverage
|
|
#DEPENDS+= p5-Text-Iconv-[0-9]*:../../converters/p5-Text-Iconv
|
|
#DEPENDS+= p5-Tie-IxHash-[0-9]*:../../devel/p5-Tie-IxHash
|
|
#DEPENDS+= p5-Unicode-Map8-[0-9]*:../../converters/p5-Unicode-Map8
|
|
#DEPENDS+= p5-Unicode-String-[0-9]*:../../converters/p5-Unicode-String
|
|
#DEPENDS+= p5-XML-Filter-BufferText-[0-9]*:../../textproc/p5-XML-Filter-BufferText
|
|
#DEPENDS+= p5-XML-Handler-YAWriter-[0-9]*:../../textproc/p5-XML-Handler-YAWriter
|
|
#DEPENDS+= p5-XML-SAX-Writer-[0-9]*:../../textproc/p5-XML-SAX-Writer
|
|
#DEPENDS+= p5-XML-Simple-[0-9]*:../../textproc/p5-XML-Simple
|
|
#DEPENDS+= p5-XML-XPath-[0-9]*:../../textproc/p5-XML-XPath
|
|
#DEPENDS+= p5-YAML-[0-9]*:../../textproc/p5-YAML
|
|
#DEPENDS+= p5-libwww-[0-9]*:../../www/p5-libwww
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
PERL5_PACKLIST= auto/XML/Twig/.packlist
|
|
MAKE_ENV+= PERL_MM_USE_DEFAULT=1
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|