Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 5 Sep 2014 12:51:14 +0000 (UTC)
From:      Frederic Culot <culot@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r367336 - in head/textproc: . p5-Unicode-CaseFold
Message-ID:  <201409051251.s85CpEeg097766@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: culot
Date: Fri Sep  5 12:51:13 2014
New Revision: 367336
URL: http://svnweb.freebsd.org/changeset/ports/367336
QAT: https://qat.redports.org/buildarchive/r367336/

Log:
  Unicode::CaseFold allows to perform case-insensitive lookups using
  case-folding. Case-folding is a part of the Unicode standard that
  allows any two strings that differ from one another only by case to
  map to the same "case-folded" form, even when those strings include
  characters with complex case-mappings.
  
  WWW: http://search.cpan.org/dist/Unicode-CaseFold/

Added:
  head/textproc/p5-Unicode-CaseFold/
  head/textproc/p5-Unicode-CaseFold/Makefile   (contents, props changed)
  head/textproc/p5-Unicode-CaseFold/distinfo   (contents, props changed)
  head/textproc/p5-Unicode-CaseFold/pkg-descr   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Fri Sep  5 12:01:40 2014	(r367335)
+++ head/textproc/Makefile	Fri Sep  5 12:51:13 2014	(r367336)
@@ -880,6 +880,7 @@
     SUBDIR += p5-UML-Sequence
     SUBDIR += p5-UML-State
     SUBDIR += p5-URI-Find
+    SUBDIR += p5-Unicode-CaseFold
     SUBDIR += p5-Unicode-CheckUTF8
     SUBDIR += p5-Unicode-Collate
     SUBDIR += p5-Unicode-EastAsianWidth

Added: head/textproc/p5-Unicode-CaseFold/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-Unicode-CaseFold/Makefile	Fri Sep  5 12:51:13 2014	(r367336)
@@ -0,0 +1,32 @@
+# Created by: Frederic Culot <culot@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	Unicode-CaseFold
+PORTVERSION=	1.00
+CATEGORIES=	textproc perl5
+MASTER_SITES=	CPAN
+MASTER_SITE_SUBDIR=	CPAN:ARODLAND
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	culot@FreeBSD.org
+COMMENT=	Unicode case-folding for case-insensitive lookups
+
+LICENSE=	ART10 GPLv1
+LICENSE_COMB=	dual
+
+USES=		perl5
+USE_PERL5=	modbuild
+
+PLIST_FILES=	%%SITE_PERL%%/%%PERL_ARCH%%/Unicode/CaseFold.pm \
+		%%SITE_PERL%%/%%PERL_ARCH%%/Unicode/CaseFoldPP.pm \
+		%%SITE_PERL%%/%%PERL_ARCH%%/auto/Unicode/CaseFold/CaseFold.so \
+		%%PERL5_MAN3%%/Unicode::CaseFold.3.gz
+
+PLIST_DIRS=	%%SITE_PERL%%/%%PERL_ARCH%%/auto/Unicode/CaseFold
+PLIST_DIRSTRY=	%%SITE_PERL%%/%%PERL_ARCH%%/auto/Unicode \
+		%%SITE_PERL%%/%%PERL_ARCH%%/Unicode
+
+post-install:
+		${STRIP_CMD} ${STAGEDIR}${SITE_PERL}/${PERL_ARCH}/auto/Unicode/CaseFold/CaseFold.so
+
+.include <bsd.port.mk>

Added: head/textproc/p5-Unicode-CaseFold/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-Unicode-CaseFold/distinfo	Fri Sep  5 12:51:13 2014	(r367336)
@@ -0,0 +1,2 @@
+SHA256 (Unicode-CaseFold-1.00.tar.gz) = c489b5a440e84b0554e866d3fe4077fa1956eeed473e203588e0c24acce1f016
+SIZE (Unicode-CaseFold-1.00.tar.gz) = 65145

Added: head/textproc/p5-Unicode-CaseFold/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-Unicode-CaseFold/pkg-descr	Fri Sep  5 12:51:13 2014	(r367336)
@@ -0,0 +1,6 @@
+This module allows to perform case-insensitive lookups using case-folding.
+Case-folding is a part of the Unicode standard that allows any two strings
+that differ from one another only by case to map to the same "case-folded"
+form, even when those strings include characters with complex case-mappings.
+
+WWW: http://search.cpan.org/dist/Unicode-CaseFold/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409051251.s85CpEeg097766>