Skip to content

Commit

Permalink
Update from Hackage at 2020-05-01T00:02:22Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed May 1, 2020
1 parent eac9a2c commit ef9b6de
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 0 deletions.
81 changes: 81 additions & 0 deletions lzo/0.1.0.0/lzo.cabal
@@ -0,0 +1,81 @@
cabal-version: 1.18
name: lzo
version: 0.1.0.0
license: BSD3
license-file: LICENSE
copyright: Copyright: (c) 2020 Vanessa McHale
maintainer: vamchale@gmail.com
author: Vanessa McHale
synopsis: minilzo bundled for Haskell
description:
A small library wrapping minilzo allowing lzop compression in Haskell.

category: Codec,Compression
build-type: Simple
extra-source-files:
cbits/minilzo.h
cbits/lzodefs.h
cbits/lzoconf.h

extra-doc-files:
README.md
CHANGELOG.md

library
exposed-modules: Codec.Compression.Lzo
build-tool-depends: hsc2hs:hsc2hs -any
c-sources: cbits/minilzo.c
hs-source-dirs: src
other-modules:
Codec.Compression.Lzo.Block
Codec.Compression.Lzo.File

default-language: Haskell2010
include-dirs: cbits
ghc-options: -Wall -fobject-code
build-depends:
base >=4.9 && <5,
bytestring -any,
digest-pure -any,
binary -any

if impl(ghc >=8.0)
ghc-options:
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities

if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists

if impl(ghc >=8.2)
ghc-options: -Wcpp-undef

if impl(ghc >=8.10)
ghc-options: -Wunused-packages

test-suite lz4-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
base -any,
lzo -any,
tasty -any,
tasty-hunit -any,
bytestring -any

if impl(ghc >=8.0)
ghc-options:
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities

if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists

if impl(ghc >=8.2)
ghc-options: -Wcpp-undef

if impl(ghc >=8.10)
ghc-options: -Wunused-packages
1 change: 1 addition & 0 deletions lzo/0.1.0.0/lzo.json
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"92df53ebd4505598258c3be3c58bc623","Skein512_512":"4814a8bf6f729882d0a77d49d905dabc0674ae26d92213d1e83186565c06374de1388306c5f673a0f134788c78c63da5f9e07f2008b788576d3f3e2ad25f21d4","SHA1":"cfbec38b5a798c480c6e746cb6df238ba4861cba","SHA512":"b6f1b182ee7915a0c937d82e6a317900a9d7b097d66cf7cfdfea101500b805dcd3c4ea835cb614fd0d47abc4fffd462a123f83420bc76be28bbc39beca872ef0","SHA256":"0034e3e02da1bb259c392720c18de544c2da5ce98ef14a66175cdc140b3b7e01"},"package-locations":["https://hackage.haskell.org/package/lzo-0.1.0.0/lzo-0.1.0.0.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/lzo-0.1.0.0.tar.gz"],"package-size":59318}

0 comments on commit ef9b6de

Please sign in to comment.