Date: Fri, 24 Apr 2020 18:01:12 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r532813 - in head/devel: . p5-PPR Message-ID: <202004241801.03OI1C42053269@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Fri Apr 24 18:01:11 2020 New Revision: 532813 URL: https://svnweb.freebsd.org/changeset/ports/532813 Log: Add p5-PPR 0.000026 The PPR module provides a single regular expression that defines a set of independent subpatterns suitable for matching entire Perl documents, as well as a wide range of individual syntactic components of Perl (i.e. statements, expressions, control blocks, variables, etc.) The regex does not "parse" Perl (that is, it does not build a syntax tree, like the PPI module does). Instead it simply "recognizes" standard Perl constructs, or new syntaxes composed from Perl constructs. Its features and capabilities therefore complement those of the PPI module, rather than replacing them. See "Comparison with PPI". WWW: https://metacpan.org/release/PPR Added: head/devel/p5-PPR/ head/devel/p5-PPR/Makefile (contents, props changed) head/devel/p5-PPR/distinfo (contents, props changed) head/devel/p5-PPR/pkg-descr (contents, props changed) head/devel/p5-PPR/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Apr 24 18:01:05 2020 (r532812) +++ head/devel/Makefile Fri Apr 24 18:01:11 2020 (r532813) @@ -2971,6 +2971,7 @@ SUBDIR += p5-POEx-Types SUBDIR += p5-POSIX-strftime-Compiler SUBDIR += p5-POSIX-strptime + SUBDIR += p5-PPR SUBDIR += p5-PPerl SUBDIR += p5-PV SUBDIR += p5-Package-Constants Added: head/devel/p5-PPR/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-PPR/Makefile Fri Apr 24 18:01:11 2020 (r532813) @@ -0,0 +1,22 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= PPR +PORTVERSION= 0.000026 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:DCONWAY +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Pattern-based Perl Recognizer + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + +USES= perl5 +USE_PERL5= configure + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/p5-PPR/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-PPR/distinfo Fri Apr 24 18:01:11 2020 (r532813) @@ -0,0 +1,3 @@ +TIMESTAMP = 1587721875 +SHA256 (PPR-0.000026.tar.gz) = bdd4d6d7e9d8b687f66ac119419ee4f1ad5f4bb8cb6a4a02c7d319dcfff41c98 +SIZE (PPR-0.000026.tar.gz) = 76491 Added: head/devel/p5-PPR/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-PPR/pkg-descr Fri Apr 24 18:01:11 2020 (r532813) @@ -0,0 +1,13 @@ +The PPR module provides a single regular expression that defines a set of +independent subpatterns suitable for matching entire Perl documents, as well as +a wide range of individual syntactic components of Perl (i.e. statements, +expressions, control blocks, variables, etc.) + +The regex does not "parse" Perl (that is, it does not build a syntax tree, like +the PPI module does). Instead it simply "recognizes" standard Perl constructs, +or new syntaxes composed from Perl constructs. + +Its features and capabilities therefore complement those of the PPI module, +rather than replacing them. See "Comparison with PPI". + +WWW: https://metacpan.org/release/PPR Added: head/devel/p5-PPR/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-PPR/pkg-plist Fri Apr 24 18:01:11 2020 (r532813) @@ -0,0 +1,4 @@ +%%SITE_PERL%%/PPR.pm +%%SITE_PERL%%/PPR/X.pm +%%PERL5_MAN3%%/PPR.3.gz +%%PERL5_MAN3%%/PPR::X.3.gz
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004241801.03OI1C42053269>