Date: Sat, 28 Mar 2015 04:18:53 +0000 (UTC) From: Wen Heping <wen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r382448 - in head/textproc: . p5-XML-Parser-Lite Message-ID: <201503280418.t2S4Ir9B080284@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wen Date: Sat Mar 28 04:18:52 2015 New Revision: 382448 URL: https://svnweb.freebsd.org/changeset/ports/382448 QAT: https://qat.redports.org/buildarchive/r382448/ Log: This Perl module implements an XML parser with a interface similar to XML::Parser. Though not all callbacks are supported, you should be able to use it in the same way you use XML::Parser. Due to using experimental regexp features it'll work only on Perl 5.6 and above and may behave differently on different platforms. Note that you cannot use regular expressions or split in callbacks. This is due to a limitation of perl's regular expression implementation (which is not re-entrant). WWW: http://search.cpan.org/dist/XML-Parser-Lite/ PR: 198934 Submitted by: Sergei Vyshenski<svysh.fbsd@gmail.com> Added: head/textproc/p5-XML-Parser-Lite/ head/textproc/p5-XML-Parser-Lite/Makefile (contents, props changed) head/textproc/p5-XML-Parser-Lite/distinfo (contents, props changed) head/textproc/p5-XML-Parser-Lite/pkg-descr (contents, props changed) head/textproc/p5-XML-Parser-Lite/pkg-plist (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sat Mar 28 01:59:13 2015 (r382447) +++ head/textproc/Makefile Sat Mar 28 04:18:52 2015 (r382448) @@ -999,6 +999,7 @@ SUBDIR += p5-XML-Parsepp SUBDIR += p5-XML-Parser SUBDIR += p5-XML-Parser-EasyTree + SUBDIR += p5-XML-Parser-Lite SUBDIR += p5-XML-Parser-Lite-Tree SUBDIR += p5-XML-Parser-Style-EasyTree SUBDIR += p5-XML-Parser-Style-Elemental Added: head/textproc/p5-XML-Parser-Lite/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-XML-Parser-Lite/Makefile Sat Mar 28 04:18:52 2015 (r382448) @@ -0,0 +1,21 @@ +# Created by: Sergei Vyshenski <svysh.fbsd@gmail.com> +# $FreeBSD$ + +PORTNAME= XML-Parser-Lite +PORTVERSION= 0.72 +CATEGORIES= textproc perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= svysh.fbsd@gmail.com +COMMENT= Lightweight regexp-based XML parser + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +USES= perl5 +USE_PERL5= configure + +#pre-install: test + +.include <bsd.port.mk> Added: head/textproc/p5-XML-Parser-Lite/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-XML-Parser-Lite/distinfo Sat Mar 28 04:18:52 2015 (r382448) @@ -0,0 +1,2 @@ +SHA256 (XML-Parser-Lite-0.72.tar.gz) = 38c7110d9fc23042284e8584777a18f3e1c5c1974ab3df598df120c0922811bb +SIZE (XML-Parser-Lite-0.72.tar.gz) = 9382 Added: head/textproc/p5-XML-Parser-Lite/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-XML-Parser-Lite/pkg-descr Sat Mar 28 04:18:52 2015 (r382448) @@ -0,0 +1,10 @@ +This Perl module implements an XML parser with a interface similar to +XML::Parser. Though not all callbacks are supported, you should be able +to use it in the same way you use XML::Parser. Due to using experimental +regexp features it'll work only on Perl 5.6 and above and may behave +differently on different platforms. +Note that you cannot use regular expressions or split in callbacks. This +is due to a limitation of perl's regular expression implementation +(which is not re-entrant). + +WWW: http://search.cpan.org/dist/XML-Parser-Lite/ Added: head/textproc/p5-XML-Parser-Lite/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-XML-Parser-Lite/pkg-plist Sat Mar 28 04:18:52 2015 (r382448) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/XML/Parser/Lite.pm +%%PERL5_MAN3%%/XML::Parser::Lite.3.gz
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201503280418.t2S4Ir9B080284>