svn commit: r513049 - in head/textproc: . p5-Text-Locus

Alexey Dokuchaev danfe at FreeBSD.org
Fri Sep 27 17:41:17 UTC 2019


Author: danfe
Date: Fri Sep 27 17:41:16 2019
New Revision: 513049
URL: https://svnweb.freebsd.org/changeset/ports/513049

Log:
  Text::Locus provides a class for representing locations in text files.
  
  Submitted by:	Zeus Panchenko

Added:
  head/textproc/p5-Text-Locus/
  head/textproc/p5-Text-Locus/Makefile   (contents, props changed)
  head/textproc/p5-Text-Locus/distinfo   (contents, props changed)
  head/textproc/p5-Text-Locus/pkg-descr   (contents, props changed)
  head/textproc/p5-Text-Locus/pkg-plist   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Fri Sep 27 17:32:09 2019	(r513048)
+++ head/textproc/Makefile	Fri Sep 27 17:41:16 2019	(r513049)
@@ -872,6 +872,7 @@
     SUBDIR += p5-Text-Hyphen
     SUBDIR += p5-Text-LTSV
     SUBDIR += p5-Text-Language-Guess
+    SUBDIR += p5-Text-Locus
     SUBDIR += p5-Text-Lorem
     SUBDIR += p5-Text-Markdown
     SUBDIR += p5-Text-MarkdownTable

Added: head/textproc/p5-Text-Locus/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-Text-Locus/Makefile	Fri Sep 27 17:41:16 2019	(r513049)
@@ -0,0 +1,22 @@
+# Created by: Zeus Panchenko <zeus at gnu.org.ua>
+# $FreeBSD$
+
+PORTNAME=	Text-Locus
+PORTVERSION=	1.01
+CATEGORIES=	textproc perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	perl at FreeBSD.org
+COMMENT=	Class for representing locations in text files
+
+LICENSE=	GPLv3+
+
+RUN_DEPENDS=	p5-Clone>=0:devel/p5-Clone
+
+USES=		perl5
+USE_PERL5=	configure
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/textproc/p5-Text-Locus/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-Text-Locus/distinfo	Fri Sep 27 17:41:16 2019	(r513049)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1531114152
+SHA256 (Text-Locus-1.01.tar.gz) = 34d3918126d885023d0179590c5757da85468c598ee55ba64c23380c7a8142f9
+SIZE (Text-Locus-1.01.tar.gz) = 17136

Added: head/textproc/p5-Text-Locus/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-Text-Locus/pkg-descr	Fri Sep 27 17:41:16 2019	(r513049)
@@ -0,0 +1,9 @@
+Text::Locus provides a class for representing locations in text files.
+A simple location consists of file name and line number, e.g. file:10.
+In its more complex form, the location represents a text fragment
+spanning several lines, such as file:10-45.  Such a fragment need not
+be contiguous, a valid location can also look like this:
+file:10-35,40-48.  Moreover, it can span multiple files as well:
+foo:10-35,40-48;bar:15,18.
+
+WWW: https://metacpan.org/release/Text-Locus

Added: head/textproc/p5-Text-Locus/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-Text-Locus/pkg-plist	Fri Sep 27 17:41:16 2019	(r513049)
@@ -0,0 +1,2 @@
+%%SITE_PERL%%/Text/Locus.pm
+%%PERL5_MAN3%%/Text::Locus.3.gz


More information about the svn-ports-head mailing list