svn commit: r492212 - in head/devel: . p5-Regexp-Trie

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Tue Feb 5 13:47:45 UTC 2019


Author: sunpoet
Date: Tue Feb  5 13:47:43 2019
New Revision: 492212
URL: https://svnweb.freebsd.org/changeset/ports/492212

Log:
  Add p5-Regexp-Trie 0.02
  
  Regexp::Trie is a faster but simpler version of Regexp::Assemble or
  Regexp::Optimizer. It builds a trie-ized regexp as above.
  
  This module is faster than Regexp::Assemble but you can only add literals. a+b
  is treated as a\+b, not "more than one a's followed by b".
  
  WWW: https://metacpan.org/release/Regexp-Trie

Added:
  head/devel/p5-Regexp-Trie/
  head/devel/p5-Regexp-Trie/Makefile   (contents, props changed)
  head/devel/p5-Regexp-Trie/distinfo   (contents, props changed)
  head/devel/p5-Regexp-Trie/pkg-descr   (contents, props changed)
  head/devel/p5-Regexp-Trie/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Feb  5 13:47:24 2019	(r492211)
+++ head/devel/Makefile	Tue Feb  5 13:47:43 2019	(r492212)
@@ -3310,6 +3310,7 @@
     SUBDIR += p5-Regexp-RegGrp
     SUBDIR += p5-Regexp-Shellish
     SUBDIR += p5-Regexp-Subst-Parallel
+    SUBDIR += p5-Regexp-Trie
     SUBDIR += p5-Religion
     SUBDIR += p5-Reply
     SUBDIR += p5-ResourcePool

Added: head/devel/p5-Regexp-Trie/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Regexp-Trie/Makefile	Tue Feb  5 13:47:43 2019	(r492212)
@@ -0,0 +1,21 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	Regexp-Trie
+PORTVERSION=	0.02
+CATEGORIES=	devel perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Builds trie-ized regexp
+
+LICENSE=	ART10 GPLv1+
+LICENSE_COMB=	dual
+
+USES=		perl5
+USE_PERL5=	configure
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/p5-Regexp-Trie/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Regexp-Trie/distinfo	Tue Feb  5 13:47:43 2019	(r492212)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1549317708
+SHA256 (Regexp-Trie-0.02.tar.gz) = fb2bf94ed8dbc1f4a95d9fc8f710cb67b3f796c6efc9c4bb4c2cfa3ebaa1c5fa
+SIZE (Regexp-Trie-0.02.tar.gz) = 3365

Added: head/devel/p5-Regexp-Trie/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Regexp-Trie/pkg-descr	Tue Feb  5 13:47:43 2019	(r492212)
@@ -0,0 +1,7 @@
+Regexp::Trie is a faster but simpler version of Regexp::Assemble or
+Regexp::Optimizer. It builds a trie-ized regexp as above.
+
+This module is faster than Regexp::Assemble but you can only add literals. a+b
+is treated as a\+b, not "more than one a's followed by b".
+
+WWW: https://metacpan.org/release/Regexp-Trie

Added: head/devel/p5-Regexp-Trie/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Regexp-Trie/pkg-plist	Tue Feb  5 13:47:43 2019	(r492212)
@@ -0,0 +1,2 @@
+%%SITE_PERL%%/Regexp/Trie.pm
+%%PERL5_MAN3%%/Regexp::Trie.3.gz


More information about the svn-ports-all mailing list