packages feed

Cabal revisions of zlib-0.5.2.0

Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.

revision 1
-name:            zlib-version:         0.5.2.0-copyright:       (c) 2006-2008 Duncan Coutts-license:         BSD3-license-file:    LICENSE-author:          Duncan Coutts <duncan@haskell.org>-maintainer:      Duncan Coutts <duncan@haskell.org>-category:        Codec-synopsis:        Compression and decompression in the gzip and zlib formats-description:     This package provides a pure interface for compressing and -                 decompressing streams of data represented as lazy -                 'ByteString's. It uses the zlib C library so it has high-                 performance. It supports the \"zlib\", \"gzip\" and \"raw\"-                 compression formats.-                 .-                 It provides a convenient high level API suitable for most-                 tasks and for the few cases where more control is needed it-                 provides access to the full zlib feature set.-stability:       provisional-build-type:      Simple-cabal-version:   >= 1.2.1-extra-source-files: cbits/crc32.h cbits/inffast.h cbits/inflate.h-                    cbits/trees.h cbits/deflate.h cbits/inffixed.h-                    cbits/inftrees.h cbits/zutil.h-                    -- demo programs:-                    examples/gzip.hs examples/gunzip.hs--flag bytestring-in-base-  description: In the ghc-6.6 era the bytestring modules were-               included in the base package.--library-  exposed-modules: Codec.Compression.GZip,-                   Codec.Compression.Zlib,-                   Codec.Compression.Zlib.Raw,-                   Codec.Compression.Zlib.Internal-  other-modules:   Codec.Compression.Zlib.Stream-  extensions:      CPP, ForeignFunctionInterface-  build-depends: base < 5-  if flag(bytestring-in-base)-    -- bytestring was in base-2.0 and 2.1.1-    build-depends: base >= 2.0 && < 2.2-    cpp-options: -DBYTESTRING_IN_BASE-  else-    build-depends: base < 2.0 || >= 2.2, bytestring >= 0.9-  includes:        zlib.h-  ghc-options:     -Wall-  if !os(windows)-    -- Normally we use the the standard system zlib:-    extra-libraries: z-  else-    -- However for the benefit of users of Windows (which does not have zlib-    -- by default) we bundle a complete copy of the C sources of zlib-1.2.3-    c-sources:     cbits/adler32.c cbits/compress.c cbits/crc32.c-                   cbits/deflate.c cbits/gzio.c cbits/infback.c-                   cbits/inffast.c cbits/inflate.c cbits/inftrees.c-                   cbits/trees.c cbits/uncompr.c cbits/zutil.c-    include-dirs:  cbits-    install-includes: zlib.h zconf.h+name:            zlib
+version:         0.5.2.0
+x-revision: 1
+copyright:       (c) 2006-2008 Duncan Coutts
+license:         BSD3
+license-file:    LICENSE
+author:          Duncan Coutts <duncan@haskell.org>
+maintainer:      Duncan Coutts <duncan@haskell.org>
+category:        Codec
+synopsis:        Compression and decompression in the gzip and zlib formats
+description:     This package provides a pure interface for compressing and 
+                 decompressing streams of data represented as lazy 
+                 'ByteString's. It uses the zlib C library so it has high
+                 performance. It supports the \"zlib\", \"gzip\" and \"raw\"
+                 compression formats.
+                 .
+                 It provides a convenient high level API suitable for most
+                 tasks and for the few cases where more control is needed it
+                 provides access to the full zlib feature set.
+stability:       provisional
+build-type:      Simple
+cabal-version:   >= 1.2.1
+extra-source-files: cbits/crc32.h cbits/inffast.h cbits/inflate.h
+                    cbits/trees.h cbits/deflate.h cbits/inffixed.h
+                    cbits/inftrees.h cbits/zutil.h
+                    -- demo programs:
+                    examples/gzip.hs examples/gunzip.hs
+
+flag bytestring-in-base
+  description: In the ghc-6.6 era the bytestring modules were
+               included in the base package.
+
+library
+  exposed-modules: Codec.Compression.GZip,
+                   Codec.Compression.Zlib,
+                   Codec.Compression.Zlib.Raw,
+                   Codec.Compression.Zlib.Internal
+  other-modules:   Codec.Compression.Zlib.Stream
+  extensions:      CPP, ForeignFunctionInterface
+  build-depends: base < 4.7
+  if flag(bytestring-in-base)
+    -- bytestring was in base-2.0 and 2.1.1
+    build-depends: base >= 2.0 && < 2.2
+    cpp-options: -DBYTESTRING_IN_BASE
+  else
+    build-depends: base < 2.0 || >= 2.2, bytestring >= 0.9
+  includes:        zlib.h
+  ghc-options:     -Wall
+  if !os(windows)
+    -- Normally we use the the standard system zlib:
+    extra-libraries: z
+  else
+    -- However for the benefit of users of Windows (which does not have zlib
+    -- by default) we bundle a complete copy of the C sources of zlib-1.2.3
+    c-sources:     cbits/adler32.c cbits/compress.c cbits/crc32.c
+                   cbits/deflate.c cbits/gzio.c cbits/infback.c
+                   cbits/inffast.c cbits/inflate.c cbits/inftrees.c
+                   cbits/trees.c cbits/uncompr.c cbits/zutil.c
+    include-dirs:  cbits
+    install-includes: zlib.h zconf.h
revision 2
-name:            zlib
-version:         0.5.2.0
-x-revision: 1
-copyright:       (c) 2006-2008 Duncan Coutts
-license:         BSD3
-license-file:    LICENSE
-author:          Duncan Coutts <duncan@haskell.org>
-maintainer:      Duncan Coutts <duncan@haskell.org>
-category:        Codec
-synopsis:        Compression and decompression in the gzip and zlib formats
-description:     This package provides a pure interface for compressing and 
-                 decompressing streams of data represented as lazy 
-                 'ByteString's. It uses the zlib C library so it has high
-                 performance. It supports the \"zlib\", \"gzip\" and \"raw\"
-                 compression formats.
-                 .
-                 It provides a convenient high level API suitable for most
-                 tasks and for the few cases where more control is needed it
-                 provides access to the full zlib feature set.
-stability:       provisional
-build-type:      Simple
-cabal-version:   >= 1.2.1
-extra-source-files: cbits/crc32.h cbits/inffast.h cbits/inflate.h
-                    cbits/trees.h cbits/deflate.h cbits/inffixed.h
-                    cbits/inftrees.h cbits/zutil.h
-                    -- demo programs:
-                    examples/gzip.hs examples/gunzip.hs
-
-flag bytestring-in-base
-  description: In the ghc-6.6 era the bytestring modules were
-               included in the base package.
-
-library
-  exposed-modules: Codec.Compression.GZip,
-                   Codec.Compression.Zlib,
-                   Codec.Compression.Zlib.Raw,
-                   Codec.Compression.Zlib.Internal
-  other-modules:   Codec.Compression.Zlib.Stream
-  extensions:      CPP, ForeignFunctionInterface
-  build-depends: base < 4.7
-  if flag(bytestring-in-base)
-    -- bytestring was in base-2.0 and 2.1.1
-    build-depends: base >= 2.0 && < 2.2
-    cpp-options: -DBYTESTRING_IN_BASE
-  else
-    build-depends: base < 2.0 || >= 2.2, bytestring >= 0.9
-  includes:        zlib.h
-  ghc-options:     -Wall
-  if !os(windows)
-    -- Normally we use the the standard system zlib:
-    extra-libraries: z
-  else
-    -- However for the benefit of users of Windows (which does not have zlib
-    -- by default) we bundle a complete copy of the C sources of zlib-1.2.3
-    c-sources:     cbits/adler32.c cbits/compress.c cbits/crc32.c
-                   cbits/deflate.c cbits/gzio.c cbits/infback.c
-                   cbits/inffast.c cbits/inflate.c cbits/inftrees.c
-                   cbits/trees.c cbits/uncompr.c cbits/zutil.c
-    include-dirs:  cbits
-    install-includes: zlib.h zconf.h
+name:            zlib+version:         0.5.2.0+x-revision: 2+copyright:       (c) 2006-2008 Duncan Coutts+license:         BSD3+license-file:    LICENSE+author:          Duncan Coutts <duncan@haskell.org>+maintainer:      Duncan Coutts <duncan@haskell.org>+category:        Codec+synopsis:        Compression and decompression in the gzip and zlib formats+description:     This package provides a pure interface for compressing and +                 decompressing streams of data represented as lazy +                 'ByteString's. It uses the zlib C library so it has high+                 performance. It supports the \"zlib\", \"gzip\" and \"raw\"+                 compression formats.+                 .+                 It provides a convenient high level API suitable for most+                 tasks and for the few cases where more control is needed it+                 provides access to the full zlib feature set.+stability:       provisional+build-type:      Simple+cabal-version:   >= 1.2.1+extra-source-files: cbits/crc32.h cbits/inffast.h cbits/inflate.h+                    cbits/trees.h cbits/deflate.h cbits/inffixed.h+                    cbits/inftrees.h cbits/zutil.h+                    -- demo programs:+                    examples/gzip.hs examples/gunzip.hs++flag bytestring-in-base+  description: In the ghc-6.6 era the bytestring modules were+               included in the base package.++library+  exposed-modules: Codec.Compression.GZip,+                   Codec.Compression.Zlib,+                   Codec.Compression.Zlib.Raw,+                   Codec.Compression.Zlib.Internal+  other-modules:   Codec.Compression.Zlib.Stream+  extensions:      CPP, ForeignFunctionInterface+  build-depends: base < 4.6+  if flag(bytestring-in-base)+    -- bytestring was in base-2.0 and 2.1.1+    build-depends: base >= 2.0 && < 2.2+    cpp-options: -DBYTESTRING_IN_BASE+  else+    build-depends: base < 2.0 || >= 2.2, bytestring >= 0.9+  includes:        zlib.h+  ghc-options:     -Wall+  if !os(windows)+    -- Normally we use the the standard system zlib:+    extra-libraries: z+  else+    -- However for the benefit of users of Windows (which does not have zlib+    -- by default) we bundle a complete copy of the C sources of zlib-1.2.3+    c-sources:     cbits/adler32.c cbits/compress.c cbits/crc32.c+                   cbits/deflate.c cbits/gzio.c cbits/infback.c+                   cbits/inffast.c cbits/inflate.c cbits/inftrees.c+                   cbits/trees.c cbits/uncompr.c cbits/zutil.c+    include-dirs:  cbits+    install-includes: zlib.h zconf.h