1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

This package uses attoparsec for parsing the actual contents of the HTTP

connection.  It also provides higher-level functions which allow you to
avoid direct usage of enumerators.

WWW:	http://www.yesodweb.com/book/http-conduit

Obtained from:	FreeBSD Haskell
This commit is contained in:
Gabor Pali 2012-06-03 19:30:26 +00:00
parent 7fc3040584
commit d670032fc1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=298145
4 changed files with 36 additions and 0 deletions

View File

@ -156,6 +156,7 @@ HsOpenSSL_port= security/hs-HsOpenSSL
HStringTemplate_port= textproc/hs-HStringTemplate
html_port= textproc/hs-html
HTTP_port= www/hs-HTTP
http-conduit_port= www/hs-http-conduit
http-enumerator_port= www/hs-http-enumerator
http-server_port= www/hs-http-server
http-types_port= www/hs-http-types

View File

@ -0,0 +1,28 @@
# New ports collection makefile for: hs-http-conduit
# Date created: December 30, 2011
# Whom: haskell@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= http-conduit
PORTVERSION= 1.4.1.7
CATEGORIES= www haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= HTTP client package with conduit interface and HTTPS support
LICENSE= BSD
USE_CABAL= asn1-data>=0.5.1 attoparsec>=0.8.0.2 attoparsec-conduit>=0.4 \
base64-bytestring>=0.1 blaze-builder>=0.2.1 \
blaze-builder-conduit>=0.4 case-insensitive>=0.2 \
certificate>=1.2 conduit>=0.4.1 cookie>=0.4 cprng-aes>=0.2 \
data-default>=0.3 failure>=0.1 http-types>=0.6 \
lifted-base>=0.1 monad-control>=0.3 mtl network>=2.3 \
regex-compat resourcet>=0.3 socks>=0.4 text tls>=0.9.3 \
tls-extra>=0.4.5 transformers>=0.2 transformers-base>=0.4 \
utf8-string>=0.3.4 void>=0.5.5 zlib-conduit>=0.4
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (cabal/http-conduit-1.4.1.7.tar.gz) = 4e0818e07db84b5f9eb2ff6846e6929f730c0ed0280359a4e760e8e107f8712c
SIZE (cabal/http-conduit-1.4.1.7.tar.gz) = 26778

View File

@ -0,0 +1,5 @@
This package uses attoparsec for parsing the actual contents of the HTTP
connection. It also provides higher-level functions which allow you to
avoid direct usage of enumerators.
WWW: http://www.yesodweb.com/book/http-conduit