diff options
author | pgj <pgj@FreeBSD.org> | 2012-06-04 03:25:28 +0800 |
---|---|---|
committer | pgj <pgj@FreeBSD.org> | 2012-06-04 03:25:28 +0800 |
commit | 3350b037431da31d279315cd26f06c04f8f32b92 (patch) | |
tree | 85af595ec1c008f7ff423151be04ccffc78cd82d | |
parent | db01c9fd0b7be2216a00ef9e5fea80ccb9b3b066 (diff) | |
download | freebsd-ports-gnome-3350b037431da31d279315cd26f06c04f8f32b92.tar.gz freebsd-ports-gnome-3350b037431da31d279315cd26f06c04f8f32b92.tar.zst freebsd-ports-gnome-3350b037431da31d279315cd26f06c04f8f32b92.zip |
Turn attoparsec parsers into sinks.
WWW: http://github.com/snoyberg/conduit
Obtained from: FreeBSD Haskell
-rw-r--r-- | lang/ghc/bsd.hackage.mk | 1 | ||||
-rw-r--r-- | textproc/hs-attoparsec-conduit/Makefile | 20 | ||||
-rw-r--r-- | textproc/hs-attoparsec-conduit/distinfo | 2 | ||||
-rw-r--r-- | textproc/hs-attoparsec-conduit/pkg-descr | 3 |
4 files changed, 26 insertions, 0 deletions
diff --git a/lang/ghc/bsd.hackage.mk b/lang/ghc/bsd.hackage.mk index 26b663490b7a..c5edd5ce2641 100644 --- a/lang/ghc/bsd.hackage.mk +++ b/lang/ghc/bsd.hackage.mk @@ -24,6 +24,7 @@ arrows_port= devel/hs-arrows asn1-data_port= devel/hs-asn1-data attempt_port= devel/hs-attempt attoparsec_port= textproc/hs-attoparsec +attoparsec-conduit_port= textproc/hs-attoparsec-conduit attoparsec-enumerator_port= textproc/hs-attoparsec-enumerator authenticate_port= www/hs-authenticate base-unicode-symbols_port= devel/hs-base-unicode-symbols diff --git a/textproc/hs-attoparsec-conduit/Makefile b/textproc/hs-attoparsec-conduit/Makefile new file mode 100644 index 000000000000..06380e5ef8b4 --- /dev/null +++ b/textproc/hs-attoparsec-conduit/Makefile @@ -0,0 +1,20 @@ +# New ports collection makefile for: hs-attoparsec-conduit +# Date created: December 30, 2011 +# Whom: haskell@FreeBSD.org +# +# $FreeBSD$ +# + +PORTNAME= attoparsec-conduit +PORTVERSION= 0.4.0.1 +CATEGORIES= textproc haskell + +MAINTAINER= haskell@FreeBSD.org +COMMENT= Turn attoparsec parsers into sinks + +LICENSE= BSD + +USE_CABAL= attoparsec>=0.10 conduit>=0.4 text>=0.11 transformers>=0.2.2 + +.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" +.include <bsd.port.mk> diff --git a/textproc/hs-attoparsec-conduit/distinfo b/textproc/hs-attoparsec-conduit/distinfo new file mode 100644 index 000000000000..7d056d8a3d5a --- /dev/null +++ b/textproc/hs-attoparsec-conduit/distinfo @@ -0,0 +1,2 @@ +SHA256 (cabal/attoparsec-conduit-0.4.0.1.tar.gz) = 6ca6b22b2c636ed34d6dd89fe0196ad17c97b8f3625b65ddba380dc295ea01e4 +SIZE (cabal/attoparsec-conduit-0.4.0.1.tar.gz) = 2950 diff --git a/textproc/hs-attoparsec-conduit/pkg-descr b/textproc/hs-attoparsec-conduit/pkg-descr new file mode 100644 index 000000000000..31922b9f7832 --- /dev/null +++ b/textproc/hs-attoparsec-conduit/pkg-descr @@ -0,0 +1,3 @@ +Turn attoparsec parsers into sinks. + +WWW: http://github.com/snoyberg/conduit |