Skip to content

Commit

Permalink
Update from Hackage at 2019-09-03T21:01:31Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Sep 3, 2019
1 parent 9cb1c9e commit ca5b62c
Show file tree
Hide file tree
Showing 2 changed files with 91 additions and 0 deletions.
90 changes: 90 additions & 0 deletions pure-zlib/0.6.5/pure-zlib.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
name: pure-zlib
version: 0.6.5
synopsis: A Haskell-only implementation of zlib / DEFLATE
homepage: http://github.com/GaloisInc/pure-zlib
license: BSD3
license-file: LICENSE
author: Adam Wick
maintainer: awick@galois.com
category: Codec
build-type: Simple
cabal-version: >=1.18
description: A Haskell-only implementation of the zlib / DEFLATE
protocol. Currently only implements the decompression
algorithm.
extra-source-files: test/test-cases/*.z,
test/test-cases/*.gold

library
default-language: Haskell2010
ghc-options: -Wall
hs-source-dirs: src
build-depends:
array >= 0.4 && < 0.9,
base >= 4.6 && < 5.0,
base-compat >= 0.9.1 && < 0.11,
bytestring >= 0.10 && < 0.11,
bytestring-builder >= 0.10 && < 0.11,
containers >= 0.5 && < 0.7,
fingertree >= 0.1 && < 0.3
if !impl(ghc >= 8.0)
build-depends: semigroups == 0.18.*
exposed-modules:
Codec.Compression.Zlib,
Codec.Compression.Zlib.Adler32,
Codec.Compression.Zlib.Deflate,
Codec.Compression.Zlib.HuffmanTree,
Codec.Compression.Zlib.Monad,
Codec.Compression.Zlib.OutputWindow
default-extensions:
BangPatterns,
DeriveDataTypeable,
GeneralizedNewtypeDeriving,
MultiParamTypeClasses,
MultiWayIf

executable deflate
default-language: Haskell2010
main-is: Deflate.hs
ghc-options: -Wall
build-depends:
base >= 4.6 && < 5.0,
base-compat >= 0.9.1 && < 0.11,
bytestring >= 0.10 && < 0.11,
pure-zlib

test-suite test-zlib
type: exitcode-stdio-1.0
main-is: Test.hs
ghc-options: -Wall
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -fno-warn-orphans
build-depends:
base >= 4.6 && < 5.0,
base-compat >= 0.9.1 && < 0.11,
bytestring >= 0.10 && < 0.11,
filepath >= 1.4.1 && < 1.6,
HUnit >= 1.2 && < 1.7,
QuickCheck >= 2.7 && < 2.14,
pure-zlib,
tasty >= 0.11.0.4 && < 1.3,
tasty-hunit >= 0.9.2 && < 0.11,
tasty-quickcheck >= 0.8.4 && < 0.11

benchmark bench-zlib
type: exitcode-stdio-1.0
main-is: Benchmark.hs
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >= 4.6 && < 5.0,
base-compat >= 0.9.1 && < 0.11,
bytestring >= 0.10 && < 0.11,
pure-zlib,
time >= 1.4.2 && < 1.11

source-repository head
type: git
location: git://github.com/GaloisInc/pure-zlib.git

1 change: 1 addition & 0 deletions pure-zlib/0.6.5/pure-zlib.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"36e9aeeee6974b5e9e7607865a7adb66","Skein512_512":"68a049c620b1da2f1c71b7089131fe88644fc2582e7a63f3949bcc54fff1bb2c8c59efdf4fcd8ea8621ccdd934313541c5375c0d014e9d873605d6cca434004e","SHA1":"daf1d3943e4273a268d733d7b91ff9baf575e63d","SHA512":"ba1d0c05b0e9b64a2f096b803392d257f7ad2677f6f3e76aabb0f86962c447893a947ade46add520e28bcdf21c208731af4a369b25bc7a333163f8d014031c63","SHA256":"bea7272f4e7f38639554d337f4d7ecc9cb473de0356107a48b6a0bfadcdc72ba"},"package-locations":["https://hackage.haskell.org/package/pure-zlib-0.6.5/pure-zlib-0.6.5.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/pure-zlib-0.6.5.tar.gz"],"package-size":14742263}

0 comments on commit ca5b62c

Please sign in to comment.