From owner-svn-ports-head@FreeBSD.ORG Sun Dec 1 16:05:28 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 678D689B; Sun, 1 Dec 2013 16:05:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 52D431B6F; Sun, 1 Dec 2013 16:05:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB1G5SgV002094; Sun, 1 Dec 2013 16:05:28 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rB1G5R1m002088; Sun, 1 Dec 2013 16:05:27 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201312011605.rB1G5R1m002088@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 1 Dec 2013 16:05:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335400 - in head/textproc: . p5-Text-WrapI18N X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Dec 2013 16:05:28 -0000 Author: sunpoet Date: Sun Dec 1 16:05:26 2013 New Revision: 335400 URL: http://svnweb.freebsd.org/changeset/ports/335400 Log: - Add p5-Text-WrapI18N 0.06 Text::WrapI18N intends to be a better Text::Wrap module. This module is needed to support multibyte character encodings such as UTF-8, EUC-JP, EUC-KR, GB2312, and Big5. This module also supports characters with irregular widths, such as combining characters (which occupy zero columns on terminal, like diacritical marks in UTF-8) and fullwidth characters (which occupy two columns on terminal, like most of east Asian characters). Also, minimal handling of languages which doesn't use whitespaces between words (like Chinese and Japanese) is supported. Like Text::Wrap, hyphenation and "kinsoku" processing are not supported, to keep simplicity. WWW: http://search.cpan.org/dist/Text-WrapI18N/ Added: head/textproc/p5-Text-WrapI18N/ head/textproc/p5-Text-WrapI18N/Makefile (contents, props changed) head/textproc/p5-Text-WrapI18N/distinfo (contents, props changed) head/textproc/p5-Text-WrapI18N/pkg-descr (contents, props changed) head/textproc/p5-Text-WrapI18N/pkg-plist (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sun Dec 1 15:49:09 2013 (r335399) +++ head/textproc/Makefile Sun Dec 1 16:05:26 2013 (r335400) @@ -868,6 +868,7 @@ SUBDIR += p5-Text-WikiCreole SUBDIR += p5-Text-WikiFormat SUBDIR += p5-Text-WordDiff + SUBDIR += p5-Text-WrapI18N SUBDIR += p5-Text-Wrapper SUBDIR += p5-Text-Xslate SUBDIR += p5-Text-Xslate-Bridge-TT2Like Added: head/textproc/p5-Text-WrapI18N/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-Text-WrapI18N/Makefile Sun Dec 1 16:05:26 2013 (r335400) @@ -0,0 +1,22 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= Text-WrapI18N +PORTVERSION= 0.06 +CATEGORIES= textproc perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Line wrapping module + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Text-CharWidth>=0.02:${PORTSDIR}/textproc/p5-Text-CharWidth +RUN_DEPENDS:= ${BUILD_DEPENDS} + +USE_PERL5= configure +USES= perl5 + +.include Added: head/textproc/p5-Text-WrapI18N/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-Text-WrapI18N/distinfo Sun Dec 1 16:05:26 2013 (r335400) @@ -0,0 +1,2 @@ +SHA256 (Text-WrapI18N-0.06.tar.gz) = 4bd29a17f0c2c792d12c1005b3c276f2ab0fae39c00859ae1741d7941846a488 +SIZE (Text-WrapI18N-0.06.tar.gz) = 3812 Added: head/textproc/p5-Text-WrapI18N/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-Text-WrapI18N/pkg-descr Sun Dec 1 16:05:26 2013 (r335400) @@ -0,0 +1,12 @@ +Text::WrapI18N intends to be a better Text::Wrap module. This module is needed +to support multibyte character encodings such as UTF-8, EUC-JP, EUC-KR, GB2312, +and Big5. This module also supports characters with irregular widths, such as +combining characters (which occupy zero columns on terminal, like diacritical +marks in UTF-8) and fullwidth characters (which occupy two columns on terminal, +like most of east Asian characters). Also, minimal handling of languages which +doesn't use whitespaces between words (like Chinese and Japanese) is supported. + +Like Text::Wrap, hyphenation and "kinsoku" processing are not supported, to keep +simplicity. + +WWW: http://search.cpan.org/dist/Text-WrapI18N/ Added: head/textproc/p5-Text-WrapI18N/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-Text-WrapI18N/pkg-plist Sun Dec 1 16:05:26 2013 (r335400) @@ -0,0 +1,6 @@ +%%SITE_PERL%%/Text/WrapI18N.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/WrapI18N/.packlist +%%PERL5_MAN3%%/Text::WrapI18N.3.gz +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/WrapI18N +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text +@dirrmtry %%SITE_PERL%%/Text