1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00

The module Data.CaseInsensitive provides the 'CI' type constructor which can

be parameterised by a string-like type like: 'String', 'ByteString', 'Text',
etc.  Comparisons of values of the resulting type will be insensitive to
cases.

WWW: http://hackage.haskell.org/package/case-insensitive

Obtained from:	FreeBSD Haskell
This commit is contained in:
Ashish SHUKLA 2011-07-10 21:26:42 +00:00
parent a0650dc5ff
commit a4a5fe9869
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=277488
5 changed files with 31 additions and 0 deletions

View File

@ -29,6 +29,7 @@ bsd-sysctl_port= devel/hs-bsd-sysctl
c2hs_port= devel/hs-c2hs # executable
cabal-install_port= devel/hs-cabal-install # executable
cairo_port= graphics/hs-cairo
case-insensitive_port= textproc/hs-case-insensitive
category-extras_port= math/hs-category-extras # BROKEN
cgi_port= www/hs-cgi
checkers_port= devel/hs-checkers # BROKEN

View File

@ -223,6 +223,7 @@
SUBDIR += hs-Diff
SUBDIR += hs-HaXml
SUBDIR += hs-bytestring-csv
SUBDIR += hs-case-insensitive
SUBDIR += hs-citeproc-hs
SUBDIR += hs-feed
SUBDIR += hs-highlighting-kate

View File

@ -0,0 +1,21 @@
# New ports collection makefile for: hs-case-insensitive
# Date created: May 24, 2011
# Whom: haskell@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= case-insensitive
PORTVERSION= 0.2.0.1
CATEGORIES= textproc haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= Case insensitive string comparison
LICENSE= BSD
CABAL_SETUP= Setup.hs
USE_CABAL= text>=0.3
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (cabal/case-insensitive-0.2.0.1.tar.gz) = d9ec23a2b793e95558c6aa079933c0395b08976f1059a4078ffb28b3ce9e61e5
SIZE (cabal/case-insensitive-0.2.0.1.tar.gz) = 2982

View File

@ -0,0 +1,6 @@
The module Data.CaseInsensitive provides the 'CI' type constructor which can
be parameterised by a string-like type like: 'String', 'ByteString', 'Text',
etc. Comparisons of values of the resulting type will be insensitive to
cases.
WWW: http://hackage.haskell.org/package/case-insensitive