svn commit: r395138 - in head/textproc: . p5-String-Trim

Jun Kuriyama kuriyama at FreeBSD.org
Sun Aug 23 22:27:09 UTC 2015


Author: kuriyama
Date: Sun Aug 23 22:27:06 2015
New Revision: 395138
URL: https://svnweb.freebsd.org/changeset/ports/395138

Log:
  String::Trim trims whitespace off your strings. chomp trims only $/
  (typically, that's newline), but trim will trim all leading and
  trailing whitespace.
  
  WWW: http://search.cpan.org/dist/String-Trim/

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

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Sun Aug 23 22:21:34 2015	(r395137)
+++ head/textproc/Makefile	Sun Aug 23 22:27:06 2015	(r395138)
@@ -772,6 +772,7 @@
     SUBDIR += p5-String-Strip
     SUBDIR += p5-String-ToIdentifier-EN
     SUBDIR += p5-String-Tokenizer
+    SUBDIR += p5-String-Trim
     SUBDIR += p5-String-Truncate
     SUBDIR += p5-String-Urandom
     SUBDIR += p5-String-Util

Added: head/textproc/p5-String-Trim/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-String-Trim/Makefile	Sun Aug 23 22:27:06 2015	(r395138)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	String-Trim
+PORTVERSION=	0.005
+CATEGORIES=	textproc perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	kuriyama at FreeBSD.org
+COMMENT=	Perl extension to trim whitespace from your strings
+
+LICENSE=	ART10 GPLv1
+LICENSE_COMB=	dual
+
+USES=		perl5
+USE_PERL5=	configure
+NO_ARCH=	YES
+
+.include <bsd.port.mk>

Added: head/textproc/p5-String-Trim/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-String-Trim/distinfo	Sun Aug 23 22:27:06 2015	(r395138)
@@ -0,0 +1,2 @@
+SHA256 (String-Trim-0.005.tar.gz) = b169e20b02476f308fec0425c75077fd6a851f578b4ea3703e6220659d73b31f
+SIZE (String-Trim-0.005.tar.gz) = 13956

Added: head/textproc/p5-String-Trim/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-String-Trim/pkg-descr	Sun Aug 23 22:27:06 2015	(r395138)
@@ -0,0 +1,5 @@
+String::Trim trims whitespace off your strings. chomp trims only $/
+(typically, that's newline), but trim will trim all leading and
+trailing whitespace.
+
+WWW: http://search.cpan.org/dist/String-Trim/

Added: head/textproc/p5-String-Trim/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-String-Trim/pkg-plist	Sun Aug 23 22:27:06 2015	(r395138)
@@ -0,0 +1,2 @@
+%%PERL5_MAN3%%/String::Trim.3.gz
+%%SITE_PERL%%/String/Trim.pm


More information about the svn-ports-all mailing list