Date: Thu, 8 May 2014 05:43:38 +0000 (UTC) From: Jun Kuriyama <kuriyama@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r353275 - in head/textproc: . p5-Text-VisualWidth Message-ID: <201405080543.s485hcoF015286@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kuriyama Date: Thu May 8 05:43:37 2014 New Revision: 353275 URL: http://svnweb.freebsd.org/changeset/ports/353275 QAT: https://qat.redports.org/buildarchive/r353275/ Log: This module provides functions to treat half-width and full-width characters and display correct size of text in one line on terminals and mobile phones. You can know the visual width of any text and truncate text by the visual width. Now this module support EUC-JP and UTF-8 and tested only with Japanese. WWW: http://search.cpan.org/dist/Text-VisualWidth/ Added: head/textproc/p5-Text-VisualWidth/ head/textproc/p5-Text-VisualWidth/Makefile (contents, props changed) head/textproc/p5-Text-VisualWidth/distinfo (contents, props changed) head/textproc/p5-Text-VisualWidth/pkg-descr (contents, props changed) head/textproc/p5-Text-VisualWidth/pkg-plist (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Thu May 8 05:26:03 2014 (r353274) +++ head/textproc/Makefile Thu May 8 05:43:37 2014 (r353275) @@ -858,6 +858,7 @@ SUBDIR += p5-Text-Typography SUBDIR += p5-Text-Unaccent SUBDIR += p5-Text-VimColor + SUBDIR += p5-Text-VisualWidth SUBDIR += p5-Text-WikiCreole SUBDIR += p5-Text-WikiFormat SUBDIR += p5-Text-WordDiff Added: head/textproc/p5-Text-VisualWidth/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-Text-VisualWidth/Makefile Thu May 8 05:43:37 2014 (r353275) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= Text-VisualWidth +PORTVERSION= 0.02 +CATEGORIES= textproc perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= kuriyama@FreeBSD.org +COMMENT= Perl extension for trimming text by terminal columns + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +USES= perl5 +USE_PERL5= configure + +.include <bsd.port.mk> Added: head/textproc/p5-Text-VisualWidth/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-Text-VisualWidth/distinfo Thu May 8 05:43:37 2014 (r353275) @@ -0,0 +1,2 @@ +SHA256 (Text-VisualWidth-0.02.tar.gz) = 3b019e2b9ee133f7afb5095e497af269569f13bfb97c271d6db6ca204bc1cb73 +SIZE (Text-VisualWidth-0.02.tar.gz) = 32459 Added: head/textproc/p5-Text-VisualWidth/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-Text-VisualWidth/pkg-descr Thu May 8 05:43:37 2014 (r353275) @@ -0,0 +1,7 @@ +This module provides functions to treat half-width and full-width +characters and display correct size of text in one line on terminals +and mobile phones. You can know the visual width of any text and +truncate text by the visual width. Now this module support EUC-JP and +UTF-8 and tested only with Japanese. + +WWW: http://search.cpan.org/dist/Text-VisualWidth/ Added: head/textproc/p5-Text-VisualWidth/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-Text-VisualWidth/pkg-plist Thu May 8 05:43:37 2014 (r353275) @@ -0,0 +1,14 @@ +%%PERL5_MAN3%%/Text::VisualWidth.3.gz +%%PERL5_MAN3%%/Text::VisualWidth::EUC_JP.3.gz +%%PERL5_MAN3%%/Text::VisualWidth::UTF8.3.gz +%%SITE_PERL%%/%%PERL_ARCH%%/Text/VisualWidth.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Text/VisualWidth/EUC_JP.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Text/VisualWidth/UTF8.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/VisualWidth/.packlist +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/VisualWidth/VisualWidth.bs +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/VisualWidth/VisualWidth.so +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/VisualWidth/autosplit.ix +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/VisualWidth +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Text/VisualWidth +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Text
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405080543.s485hcoF015286>