diff options
author | Gabor Pali <pgj@FreeBSD.org> | 2011-08-13 18:42:01 +0000 |
---|---|---|
committer | Gabor Pali <pgj@FreeBSD.org> | 2011-08-13 18:42:01 +0000 |
commit | 690407d24c377eba63be5cf93fc397cdd531f590 (patch) | |
tree | a0989bd06b1ca11da648c9fee86070b1fadd6e00 | |
parent | 161cdfdab6282153e7bacf6e5476860865f4052e (diff) |
Notes
-rw-r--r-- | lang/ghc/bsd.hackage.mk | 1 | ||||
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/hs-attoparsec/Makefile | 20 | ||||
-rw-r--r-- | textproc/hs-attoparsec/distinfo | 2 | ||||
-rw-r--r-- | textproc/hs-attoparsec/pkg-descr | 5 |
5 files changed, 29 insertions, 0 deletions
diff --git a/lang/ghc/bsd.hackage.mk b/lang/ghc/bsd.hackage.mk index 6d8c699b2e1c..e6bab1d458c5 100644 --- a/lang/ghc/bsd.hackage.mk +++ b/lang/ghc/bsd.hackage.mk @@ -18,6 +18,7 @@ ALUT_port= audio/hs-ALUT ansi-terminal_port= devel/hs-ansi-terminal ansi-wl-pprint_port= devel/hs-ansi-wl-pprint arrows_port= devel/hs-arrows +attoparsec_port= textproc/hs-attoparsec binary_port= devel/hs-binary bio_port= science/hs-bio blaze-builder_port= devel/hs-blaze-builder diff --git a/textproc/Makefile b/textproc/Makefile index c29873318073..ab109abaf893 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -232,6 +232,7 @@ SUBDIR += hr-aspell SUBDIR += hs-Diff SUBDIR += hs-HaXml + SUBDIR += hs-attoparsec SUBDIR += hs-bytestring-csv SUBDIR += hs-case-insensitive SUBDIR += hs-citeproc-hs diff --git a/textproc/hs-attoparsec/Makefile b/textproc/hs-attoparsec/Makefile new file mode 100644 index 000000000000..414bd1c490fa --- /dev/null +++ b/textproc/hs-attoparsec/Makefile @@ -0,0 +1,20 @@ +# New ports collection makefile for: hs-attoparsec +# Date created: September 19, 2010 +# Whom: haskell@FreeBSD.org +# +# $FreeBSD$ +# + +PORTNAME= attoparsec +PORTVERSION= 0.9.1.1 +CATEGORIES= textproc haskell + +MAINTAINER= haskell@FreeBSD.org +COMMENT= Fast combinator parsing for bytestrings + +LICENSE= BSD + +USE_CABAL= deepseq + +.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" +.include <bsd.port.mk> diff --git a/textproc/hs-attoparsec/distinfo b/textproc/hs-attoparsec/distinfo new file mode 100644 index 000000000000..178ebaf30730 --- /dev/null +++ b/textproc/hs-attoparsec/distinfo @@ -0,0 +1,2 @@ +SHA256 (cabal/attoparsec-0.9.1.1.tar.gz) = cb940184849e16428ce3b04f5a468c7b79aad9ea15b24b06c4f693f96fa273e2 +SIZE (cabal/attoparsec-0.9.1.1.tar.gz) = 25602 diff --git a/textproc/hs-attoparsec/pkg-descr b/textproc/hs-attoparsec/pkg-descr new file mode 100644 index 000000000000..f018ad1f5f56 --- /dev/null +++ b/textproc/hs-attoparsec/pkg-descr @@ -0,0 +1,5 @@ +A fast parser combinator library, aimed particularly at dealing +efficiently with network protocols and complicated text/binary file +formats. + +WWW: http://hackage.haskell.org/package/attoparsec |