Cabal revisions of brotli-streams-0.0.0.0
Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.
revision 1
-cabal-version: 1.12-build-type: Simple-name: brotli-streams-version: 0.0.0.0--synopsis: IO-Streams interface for Brotli (RFC7932) compression-homepage: https://github.com/hvr/brotli-streams-bug-reports: https://github.com/hvr/brotli-streams/issues-license: BSD3-license-file: LICENSE-author: Herbert Valerio Riedel-maintainer: hvr@gnu.org-copyright: (c) 2016, Herbert Valerio Riedel-category: Codec, Compression, IO-Streams--description:- <http://brotli.org Brotli> (<https://tools.ietf.org/html/rfc7932 RFC7932>) is a generic-purpose lossless compression algorithm suitable for <https://en.wikipedia.org/wiki/HTTP_compression HTTP compression> that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling.- .- This package provides an IO-Streams interface for the Brotli compression algorithm.- .- Decompressing Brotli 'InputStreams' and compressing 'OutputStreams'- to Brotli streams with tunable (de)compression parameters is supported.- .--source-repository head- type: git- location: https://github.com/hvr/brotli-streams.git--library- default-language: Haskell2010- other-extensions: Trustworthy-- hs-source-dirs: src- exposed-modules: System.IO.Streams.Brotli-- build-depends: base >=4.5 && <4.13,- bytestring >=0.9.2 && <0.11,- io-streams >=1.3 && <1.6,- brotli ==0.0.*-- ghc-options: -Wall--test-suite lzma-streams-test- default-language: Haskell2010- hs-source-dirs: src-tests- main-is: lzma-streams-test.hs- type: exitcode-stdio-1.0-- build-depends: base,- bytestring,- io-streams,- brotli-streams,-- HUnit == 1.6.*,- QuickCheck == 2.13.*,- test-framework == 0.8.*,- test-framework-hunit == 0.3.*,- test-framework-quickcheck2 == 0.3.*-- ghc-options: -Wall -threaded+cabal-version: 1.12 +build-type: Simple +name: brotli-streams +version: 0.0.0.0 +x-revision: 1 + +synopsis: IO-Streams interface for Brotli (RFC7932) compression +homepage: https://github.com/hvr/brotli-streams +bug-reports: https://github.com/hvr/brotli-streams/issues +license: BSD3 +license-file: LICENSE +author: Herbert Valerio Riedel +maintainer: hvr@gnu.org +copyright: (c) 2016, Herbert Valerio Riedel +category: Codec, Compression, IO-Streams + +description: + <http://brotli.org Brotli> (<https://tools.ietf.org/html/rfc7932 RFC7932>) is a generic-purpose lossless compression algorithm suitable for <https://en.wikipedia.org/wiki/HTTP_compression HTTP compression> that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling. + . + This package provides an IO-Streams interface for the Brotli compression algorithm. + . + Decompressing Brotli 'InputStreams' and compressing 'OutputStreams' + to Brotli streams with tunable (de)compression parameters is supported. + . + +source-repository head + type: git + location: https://github.com/hvr/brotli-streams.git + +library + default-language: Haskell2010 + other-extensions: Trustworthy + + hs-source-dirs: src + exposed-modules: System.IO.Streams.Brotli + + build-depends: base >=4.5 && <4.14, + bytestring >=0.9.2 && <0.11, + io-streams >=1.3 && <1.6, + brotli ==0.0.* + + ghc-options: -Wall + +test-suite lzma-streams-test + default-language: Haskell2010 + hs-source-dirs: src-tests + main-is: lzma-streams-test.hs + type: exitcode-stdio-1.0 + + build-depends: base, + bytestring, + io-streams, + brotli-streams, + + HUnit == 1.6.*, + QuickCheck == 2.13.*, + test-framework == 0.8.*, + test-framework-hunit == 0.3.*, + test-framework-quickcheck2 == 0.3.* + + ghc-options: -Wall -threaded
revision 2
build-type: Simple name: brotli-streams version: 0.0.0.0 -x-revision: 1 +x-revision: 2 synopsis: IO-Streams interface for Brotli (RFC7932) compression homepage: https://github.com/hvr/brotli-streams hs-source-dirs: src exposed-modules: System.IO.Streams.Brotli - build-depends: base >=4.5 && <4.14, + build-depends: base >=4.5 && <4.15, bytestring >=0.9.2 && <0.11, io-streams >=1.3 && <1.6, brotli ==0.0.*
revision 3
-cabal-version: 1.12 -build-type: Simple -name: brotli-streams -version: 0.0.0.0 -x-revision: 2 - -synopsis: IO-Streams interface for Brotli (RFC7932) compression -homepage: https://github.com/hvr/brotli-streams -bug-reports: https://github.com/hvr/brotli-streams/issues -license: BSD3 -license-file: LICENSE -author: Herbert Valerio Riedel -maintainer: hvr@gnu.org -copyright: (c) 2016, Herbert Valerio Riedel -category: Codec, Compression, IO-Streams - -description: - <http://brotli.org Brotli> (<https://tools.ietf.org/html/rfc7932 RFC7932>) is a generic-purpose lossless compression algorithm suitable for <https://en.wikipedia.org/wiki/HTTP_compression HTTP compression> that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling. - . - This package provides an IO-Streams interface for the Brotli compression algorithm. - . - Decompressing Brotli 'InputStreams' and compressing 'OutputStreams' - to Brotli streams with tunable (de)compression parameters is supported. - . - -source-repository head - type: git - location: https://github.com/hvr/brotli-streams.git - -library - default-language: Haskell2010 - other-extensions: Trustworthy - - hs-source-dirs: src - exposed-modules: System.IO.Streams.Brotli - - build-depends: base >=4.5 && <4.15, - bytestring >=0.9.2 && <0.11, - io-streams >=1.3 && <1.6, - brotli ==0.0.* - - ghc-options: -Wall - -test-suite lzma-streams-test - default-language: Haskell2010 - hs-source-dirs: src-tests - main-is: lzma-streams-test.hs - type: exitcode-stdio-1.0 - - build-depends: base, - bytestring, - io-streams, - brotli-streams, - - HUnit == 1.6.*, - QuickCheck == 2.13.*, - test-framework == 0.8.*, - test-framework-hunit == 0.3.*, - test-framework-quickcheck2 == 0.3.* - - ghc-options: -Wall -threaded +cabal-version: 1.12+build-type: Simple+name: brotli-streams+version: 0.0.0.0+x-revision: 3++synopsis: IO-Streams interface for Brotli (RFC7932) compression+homepage: https://github.com/hvr/brotli-streams+bug-reports: https://github.com/hvr/brotli-streams/issues+license: BSD3+license-file: LICENSE+author: Herbert Valerio Riedel+maintainer: hvr@gnu.org+copyright: (c) 2016, Herbert Valerio Riedel+category: Codec, Compression, IO-Streams++description:+ <http://brotli.org Brotli> (<https://tools.ietf.org/html/rfc7932 RFC7932>) is a generic-purpose lossless compression algorithm suitable for <https://en.wikipedia.org/wiki/HTTP_compression HTTP compression> that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling.+ .+ This package provides an IO-Streams interface for the Brotli compression algorithm.+ .+ Decompressing Brotli 'InputStreams' and compressing 'OutputStreams'+ to Brotli streams with tunable (de)compression parameters is supported.+ .++tested-with:+ GHC == 9.0.2+ GHC == 8.10.7+ GHC == 8.8.4+ GHC == 8.6.5+ GHC == 8.4.4+ GHC == 8.2.2+ GHC == 8.0.2+ GHC == 7.10.3+ GHC == 7.8.4+ GHC == 7.6.3+ GHC == 7.4.2++source-repository head+ type: git+ location: https://github.com/hvr/brotli-streams.git++library+ default-language: Haskell2010+ other-extensions: Trustworthy++ hs-source-dirs: src+ exposed-modules: System.IO.Streams.Brotli++ build-depends: base >= 4.5 && < 4.16,+ bytestring >= 0.9.2 && < 0.12,+ io-streams >= 1.3 && < 1.6,+ brotli == 0.0.*++ ghc-options: -Wall++test-suite lzma-streams-test+ default-language: Haskell2010+ hs-source-dirs: src-tests+ main-is: lzma-streams-test.hs+ type: exitcode-stdio-1.0++ build-depends: base,+ bytestring,+ io-streams,+ brotli-streams,++ HUnit == 1.6.*,+ QuickCheck == 2.14.*,+ test-framework == 0.8.*,+ test-framework-hunit == 0.3.*,+ test-framework-quickcheck2 == 0.3.*++ ghc-options: -Wall -threaded
revision 4
build-type: Simple name: brotli-streams version: 0.0.0.0-x-revision: 3+x-revision: 4 synopsis: IO-Streams interface for Brotli (RFC7932) compression homepage: https://github.com/hvr/brotli-streams . tested-with:+ GHC == 9.2.2 GHC == 9.0.2 GHC == 8.10.7 GHC == 8.8.4 hs-source-dirs: src exposed-modules: System.IO.Streams.Brotli - build-depends: base >= 4.5 && < 4.16,+ build-depends: base >= 4.5 && < 4.17, bytestring >= 0.9.2 && < 0.12, io-streams >= 1.3 && < 1.6, brotli == 0.0.*
revision 5
build-type: Simple name: brotli-streams version: 0.0.0.0-x-revision: 4+x-revision: 5 synopsis: IO-Streams interface for Brotli (RFC7932) compression-homepage: https://github.com/hvr/brotli-streams-bug-reports: https://github.com/hvr/brotli-streams/issues+homepage: https://github.com/haskell-hvr/brotli-streams+bug-reports: https://github.com/haskell-hvr/brotli-streams/issues license: BSD3 license-file: LICENSE author: Herbert Valerio Riedel-maintainer: hvr@gnu.org+maintainer: https://github.com/haskell-hvr/brotli-streams copyright: (c) 2016, Herbert Valerio Riedel category: Codec, Compression, IO-Streams . tested-with:- GHC == 9.2.2+ GHC == 9.4.1+ GHC == 9.2.3 GHC == 9.0.2 GHC == 8.10.7 GHC == 8.8.4 source-repository head type: git- location: https://github.com/hvr/brotli-streams.git+ location: https://github.com/haskell-hvr/brotli-streams.git library default-language: Haskell2010 hs-source-dirs: src exposed-modules: System.IO.Streams.Brotli - build-depends: base >= 4.5 && < 4.17,+ build-depends: base >= 4.5 && < 4.18, bytestring >= 0.9.2 && < 0.12, io-streams >= 1.3 && < 1.6, brotli == 0.0.*
revision 6
build-type: Simple name: brotli-streams version: 0.0.0.0-x-revision: 5+x-revision: 6 synopsis: IO-Streams interface for Brotli (RFC7932) compression homepage: https://github.com/haskell-hvr/brotli-streams . tested-with:- GHC == 9.4.1- GHC == 9.2.3+ GHC == 9.6.0+ GHC == 9.4.4+ GHC == 9.2.5 GHC == 9.0.2 GHC == 8.10.7 GHC == 8.8.4 hs-source-dirs: src exposed-modules: System.IO.Streams.Brotli - build-depends: base >= 4.5 && < 4.18,+ build-depends: base >= 4.5 && < 4.19, bytestring >= 0.9.2 && < 0.12, io-streams >= 1.3 && < 1.6, brotli == 0.0.*
revision 7
build-type: Simple name: brotli-streams version: 0.0.0.0-x-revision: 6+x-revision: 7 synopsis: IO-Streams interface for Brotli (RFC7932) compression homepage: https://github.com/haskell-hvr/brotli-streams . tested-with:- GHC == 9.6.0- GHC == 9.4.4- GHC == 9.2.5+ GHC == 9.6.2+ GHC == 9.4.5+ GHC == 9.2.8 GHC == 9.0.2 GHC == 8.10.7 GHC == 8.8.4 exposed-modules: System.IO.Streams.Brotli build-depends: base >= 4.5 && < 4.19,- bytestring >= 0.9.2 && < 0.12,+ bytestring >= 0.9.2 && < 0.13, io-streams >= 1.3 && < 1.6, brotli == 0.0.*
revision 8
build-type: Simple name: brotli-streams version: 0.0.0.0-x-revision: 7+x-revision: 8 synopsis: IO-Streams interface for Brotli (RFC7932) compression homepage: https://github.com/haskell-hvr/brotli-streams hs-source-dirs: src exposed-modules: System.IO.Streams.Brotli - build-depends: base >= 4.5 && < 4.19,+ build-depends: base >= 4.5 && < 5, bytestring >= 0.9.2 && < 0.13, io-streams >= 1.3 && < 1.6, brotli == 0.0.*
revision 9
build-type: Simple name: brotli-streams version: 0.0.0.0-x-revision: 8+x-revision: 9 synopsis: IO-Streams interface for Brotli (RFC7932) compression homepage: https://github.com/haskell-hvr/brotli-streams . tested-with:- GHC == 9.6.2- GHC == 9.4.5+ GHC == 9.10.0+ GHC == 9.8.2+ GHC == 9.6.5+ GHC == 9.4.8 GHC == 9.2.8 GHC == 9.0.2 GHC == 8.10.7 GHC == 8.4.4 GHC == 8.2.2 GHC == 8.0.2- GHC == 7.10.3- GHC == 7.8.4- GHC == 7.6.3- GHC == 7.4.2+ -- Not supported by ghcup on ubuntu-22.04+ -- GHC == 7.10.3+ -- GHC == 7.8.4+ -- GHC == 7.6.3+ -- GHC == 7.4.2 source-repository head type: git brotli-streams, HUnit == 1.6.*,- QuickCheck == 2.14.*,+ QuickCheck >= 2.14 && < 2.16, test-framework == 0.8.*, test-framework-hunit == 0.3.*, test-framework-quickcheck2 == 0.3.*
revision 10
build-type: Simple name: brotli-streams version: 0.0.0.0-x-revision: 9+x-revision: 10 synopsis: IO-Streams interface for Brotli (RFC7932) compression homepage: https://github.com/haskell-hvr/brotli-streams . tested-with:- GHC == 9.10.0- GHC == 9.8.2- GHC == 9.6.5+ GHC == 9.12.2+ GHC == 9.10.2+ GHC == 9.8.4+ GHC == 9.6.7 GHC == 9.4.8 GHC == 9.2.8 GHC == 9.0.2 GHC == 8.4.4 GHC == 8.2.2 GHC == 8.0.2- -- Not supported by ghcup on ubuntu-22.04- -- GHC == 7.10.3- -- GHC == 7.8.4- -- GHC == 7.6.3- -- GHC == 7.4.2 source-repository head type: git brotli-streams, HUnit == 1.6.*,- QuickCheck >= 2.14 && < 2.16,+ QuickCheck >= 2.14 && < 3, test-framework == 0.8.*, test-framework-hunit == 0.3.*, test-framework-quickcheck2 == 0.3.*