Conduits are an approach to the streaming data problem. It is meant as

an alternative to enumerators/iterators, hoping to address the same
issues with different trade-offs based on real-world experience with
enumerators.

WWW:	http://github.com/snoyberg/conduit

Obtained from:	FreeBSD Haskell
This commit is contained in:
Gabor Pali 2012-06-03 19:02:40 +00:00
parent a5d3bde5f9
commit 1cebaf7493
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=298124
4 changed files with 31 additions and 0 deletions

22
devel/hs-conduit/Makefile Normal file
View File

@ -0,0 +1,22 @@
# New ports collection makefile for: hs-conduit
# Date created: December 30, 2011
# Whom: haskell@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= conduit
PORTVERSION= 0.4.2
CATEGORIES= devel haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= Streaming data processing library
LICENSE= BSD
USE_CABAL= lifted-base>=0.1 monad-control>=0.3.1 resourcet>=0.3 \
text>=0.11 transformers>=0.2.2 transformers-base>=0.4.1 \
void>=0.5.5
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (cabal/conduit-0.4.2.tar.gz) = e073ccf93847345dd8177de7aacb43a02bb331816be1dfd208abfb871e401aed
SIZE (cabal/conduit-0.4.2.tar.gz) = 25409

View File

@ -0,0 +1,6 @@
Conduits are an approach to the streaming data problem. It is meant as
an alternative to enumerators/iterators, hoping to address the same
issues with different trade-offs based on real-world experience with
enumerators.
WWW: http://github.com/snoyberg/conduit

View File

@ -58,6 +58,7 @@ clientsession_port= security/hs-clientsession
cmdargs_port= devel/hs-cmdargs
comonad_port= math/hs-comonad
comonad-transformers_port= math/hs-comonad-transformers
conduit_port= devel/hs-conduit
ConfigFile_port= devel/hs-ConfigFile
configurator_port= devel/hs-configurator
contravariant_port= math/hs-contravariant