Skip to content

Commit

Permalink
Update from Hackage at 2016-04-07T05:20:42+0000
Browse files Browse the repository at this point in the history
  • Loading branch information
Commercial Haskell all-cabal-hashes Travis job committed Apr 7, 2016
1 parent 9dc9035 commit 2266fbc
Show file tree
Hide file tree
Showing 4 changed files with 298 additions and 0 deletions.
100 changes: 100 additions & 0 deletions wai-app-file-cgi/3.1.1/wai-app-file-cgi.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
Name: wai-app-file-cgi
Version: 3.1.1
Author: Kazu Yamamoto <kazu@iij.ad.jp>
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
License: BSD3
License-File: LICENSE
Synopsis: File/CGI/Rev Proxy App of WAI
Description: This WAI application library handles static files,
executes CGI scripts, and serves as a reverse proxy
(including EventSource).
Homepage: http://www.mew.org/~kazu/proj/mighttpd/
Category: Web, Yesod
Cabal-Version: >= 1.10
Build-Type: Simple

Library
Default-Language: Haskell2010
GHC-Options: -Wall
Exposed-Modules: Network.Wai.Application.Classic
Other-Modules: Network.Wai.Application.Classic.CGI
Network.Wai.Application.Classic.Conduit
Network.Wai.Application.Classic.Def
Network.Wai.Application.Classic.EventSource
Network.Wai.Application.Classic.Field
Network.Wai.Application.Classic.File
Network.Wai.Application.Classic.FileInfo
Network.Wai.Application.Classic.Header
Network.Wai.Application.Classic.Lang
Network.Wai.Application.Classic.Path
Network.Wai.Application.Classic.Redirect
Network.Wai.Application.Classic.Status
Network.Wai.Application.Classic.Types
Network.Wai.Application.Classic.RevProxy

Build-Depends: base >= 4 && < 5
, array
, attoparsec >= 0.10.0.0
, attoparsec-conduit
, blaze-builder
, blaze-html
, bytestring
, case-insensitive
, conduit >= 1.1
, conduit-extra
, containers
, data-default-class
, directory
, filepath
, http-client >= 0.3
, http-conduit >= 2.1
, http-date
, http-types >= 0.7
, io-choice
, lifted-base
, mime-types
, network
, process
, sockaddr
, static-hash
, text
, transformers
, unix
, wai >= 3.2 && < 3.3
, wai-conduit
, warp >= 3.2.6 && < 3.3
, word8

Test-Suite doctest
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
HS-Source-Dirs: test
Ghc-Options: -threaded -Wall
Main-Is: doctests.hs
Build-Depends: base
, doctest >= 0.9.3

Test-Suite spec
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
HS-Source-Dirs: test
Ghc-Options: -threaded -Wall
Main-Is: Spec.hs
Other-Modules: ClassicSpec
Build-Depends: base
, bytestring
, conduit >= 1.1
, conduit-extra
, directory
, filepath
, hspec >= 1.3
, http-types
, unix
, wai >= 3.2 && < 3.3
, wai-app-file-cgi
, warp >= 3.2.6 && < 3.3
, HTTP

Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/wai-app-file-cgi
1 change: 1 addition & 0 deletions wai-app-file-cgi/3.1.1/wai-app-file-cgi.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"ae16a77d2fa9f3b7b4fd3b65d8a8614a","Skein512_512":"24a6be812b19b37018124cf5747dc19aa49772f25f1edd703dd327f561aae289a63473bb7c572ddf0905a6c2dbd434b81df02c136b8087ab43a8145e3e837130","SHA1":"3b6dfd13fab269326890abf6f8e0d2406bd60011","SHA512":"c72872c32b15e3bfeec12cf948db171ad38929aaa838bd159ef44d49bb6a066da07431c82a4489b994cec90e104289c93aade4cec8f3c88a3e940ac46ff5e8cf","SHA256":"a8f5389330063d55a7c08ef779a603a70ec4455271d8e3a8dcf2a35f19efe91d"},"package-locations":["https://hackage.haskell.org/package/wai-app-file-cgi-3.1.1/wai-app-file-cgi-3.1.1.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/wai-app-file-cgi-3.1.1.tar.gz"],"package-size":13399}
196 changes: 196 additions & 0 deletions warp/3.2.6/warp.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,196 @@
Name: warp
Version: 3.2.6
Synopsis: A fast, light-weight web server for WAI applications.
License: MIT
License-file: LICENSE
Author: Michael Snoyman, Kazu Yamamoto, Matt Brown
Maintainer: michael@snoyman.com
Homepage: http://github.com/yesodweb/wai
Category: Web, Yesod
Build-Type: Simple
Cabal-Version: >=1.8
Stability: Stable
description: HTTP\/1.0, HTTP\/1.1 and HTTP\/2 are supported.
For HTTP\/2, Warp supports direct and ALPN (in TLS)
but not upgrade.
API docs and the README are available at
<http://www.stackage.org/package/warp>.
extra-source-files: attic/hex
ChangeLog.md
README.md
test/head-response

Flag network-bytestring
Default: False

Flag allow-sendfilefd
Description: Allow use of sendfileFd (not available on GNU/kFreeBSD)
Default: True

Flag warp-debug
Description: print debug output. not suitable for production
Default: False

Library
Build-Depends: base >= 3 && < 5
, array
, async
, auto-update >= 0.1.3 && < 0.2
, blaze-builder >= 0.4
, bytestring >= 0.9.1.4
, bytestring-builder
, case-insensitive >= 0.2
, containers
, ghc-prim
, http-types >= 0.8.5
, iproute >= 1.3.1
, http2 >= 1.6 && < 1.7
, simple-sendfile >= 0.2.7 && < 0.3
, unix-compat >= 0.2
, wai >= 3.2 && < 3.3
, text
, streaming-commons >= 0.1.10
, vault >= 0.3
, stm >= 2.3
, word8
, hashable
, http-date
if flag(network-bytestring)
Build-Depends: network >= 2.2.1.5 && < 2.2.3
, network-bytestring >= 0.1.3 && < 0.1.4
else
Build-Depends: network >= 2.3
Exposed-modules: Network.Wai.Handler.Warp
Network.Wai.Handler.Warp.Internal
Other-modules: Network.Wai.Handler.Warp.Buffer
Network.Wai.Handler.Warp.Conduit
Network.Wai.Handler.Warp.Counter
Network.Wai.Handler.Warp.Date
Network.Wai.Handler.Warp.FdCache
Network.Wai.Handler.Warp.File
Network.Wai.Handler.Warp.FileInfoCache
Network.Wai.Handler.Warp.HashMap
Network.Wai.Handler.Warp.HTTP2
Network.Wai.Handler.Warp.HTTP2.EncodeFrame
Network.Wai.Handler.Warp.HTTP2.File
Network.Wai.Handler.Warp.HTTP2.HPACK
Network.Wai.Handler.Warp.HTTP2.Manager
Network.Wai.Handler.Warp.HTTP2.Receiver
Network.Wai.Handler.Warp.HTTP2.Request
Network.Wai.Handler.Warp.HTTP2.Sender
Network.Wai.Handler.Warp.HTTP2.Types
Network.Wai.Handler.Warp.HTTP2.Worker
Network.Wai.Handler.Warp.Header
Network.Wai.Handler.Warp.IO
Network.Wai.Handler.Warp.IORef
Network.Wai.Handler.Warp.PackInt
Network.Wai.Handler.Warp.ReadInt
Network.Wai.Handler.Warp.Recv
Network.Wai.Handler.Warp.Request
Network.Wai.Handler.Warp.RequestHeader
Network.Wai.Handler.Warp.Response
Network.Wai.Handler.Warp.ResponseHeader
Network.Wai.Handler.Warp.Run
Network.Wai.Handler.Warp.SendFile
Network.Wai.Handler.Warp.Settings
Network.Wai.Handler.Warp.Some
Network.Wai.Handler.Warp.Timeout
Network.Wai.Handler.Warp.Types
Network.Wai.Handler.Warp.Windows
Network.Wai.Handler.Warp.WithApplication
Paths_warp
Ghc-Options: -Wall

if flag(warp-debug)
Cpp-Options: -DWARP_DEBUG
if (os(linux) || os(freebsd) || os(darwin)) && flag(allow-sendfilefd)
Cpp-Options: -DSENDFILEFD
if os(windows)
Cpp-Options: -DWINDOWS
Build-Depends: time
else
Build-Depends: unix
Other-modules: Network.Wai.Handler.Warp.MultiMap

Test-Suite doctest
Type: exitcode-stdio-1.0
HS-Source-Dirs: test
Ghc-Options: -threaded -Wall
Main-Is: doctests.hs
Build-Depends: base
, doctest >= 0.10.1

Test-Suite spec
Main-Is: Spec.hs
Other-modules: BufferPoolSpec
ConduitSpec
ExceptionSpec
FdCacheSpec
FileSpec
ReadIntSpec
RequestSpec
ResponseHeaderSpec
ResponseSpec
RunSpec
SendFileSpec
WithApplicationSpec
HTTP
Hs-Source-Dirs: test, .
Type: exitcode-stdio-1.0

Ghc-Options: -Wall
Build-Depends: base >= 4 && < 5
, array
, auto-update
, blaze-builder >= 0.4
, bytestring >= 0.9.1.4
, bytestring-builder
, case-insensitive >= 0.2
, ghc-prim
, HTTP
, http-types >= 0.8.5
, iproute >= 1.3.1
, lifted-base >= 0.1
, simple-sendfile >= 0.2.4 && < 0.3
, transformers >= 0.2.2
, unix-compat >= 0.2
, wai >= 3.2 && < 3.3
, network
, HUnit
, QuickCheck
, hspec >= 1.3
, time
, text
, streaming-commons >= 0.1.10
, silently
, async
, vault
, stm >= 2.3
, directory
, process
, containers
, http2 >= 1.6 && < 1.7
, word8
, hashable
, http-date

if (os(linux) || os(freebsd) || os(darwin)) && flag(allow-sendfilefd)
Cpp-Options: -DSENDFILEFD
Build-Depends: unix
if os(windows)
Cpp-Options: -DWINDOWS

Benchmark parser
Type: exitcode-stdio-1.0
Main-Is: Parser.hs
HS-Source-Dirs: bench .
Build-Depends: base
, bytestring
, criterion
, http-types
, network
, network

Source-Repository head
Type: git
Location: git://github.com/yesodweb/wai.git
1 change: 1 addition & 0 deletions warp/3.2.6/warp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"0f9334aa61faadeb01511f01f51698d1","Skein512_512":"9b64e0721492f14e63d578236904e2a2cab8ee48bcc0b83074cdab743e234cedefa005f729595beaee50f71a94a19530e2ecc104cb7e2086ab30be328d30c313","SHA1":"2ece3fbffd0f7c7a37d8f71023eac03b95530e2b","SHA512":"472f69efb7bf5f53246e2db0d7bb99e28981fd335acc89a0cf120b325c954794121480588ef069f957753c537bcdccc4150a2e2f0775dc46d8165bf3a66a8758","SHA256":"4ac0ce7613a5a9c70d2100d8553c790567a4cd2147b994c5f838c2862e6dd810"},"package-locations":["https://hackage.haskell.org/package/warp-3.2.6/warp-3.2.6.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/warp-3.2.6.tar.gz"],"package-size":72482}

0 comments on commit 2266fbc

Please sign in to comment.