|
|
@ -1,13 +1,34 @@
|
|
|
|
Name: zip-archive
|
|
|
|
Name: zip-archive
|
|
|
|
Version: 0.3.3
|
|
|
|
Version: 0.4.1
|
|
|
|
x-revision: 1
|
|
|
|
x-revision: 1
|
|
|
|
Cabal-Version: >= 1.10
|
|
|
|
Cabal-Version: 2.0
|
|
|
|
Build-type: Custom
|
|
|
|
Build-type: Simple
|
|
|
|
Synopsis: Library for creating and modifying zip archives.
|
|
|
|
Synopsis: Library for creating and modifying zip archives.
|
|
|
|
Description: The zip-archive library provides functions for creating, modifying,
|
|
|
|
Description:
|
|
|
|
and extracting files from zip archives.
|
|
|
|
The zip-archive library provides functions for creating, modifying, and
|
|
|
|
|
|
|
|
extracting files from zip archives. The zip archive format is
|
|
|
|
|
|
|
|
documented in <http://www.pkware.com/documents/casestudies/APPNOTE.TXT>.
|
|
|
|
|
|
|
|
.
|
|
|
|
|
|
|
|
Certain simplifying assumptions are made about the zip archives: in
|
|
|
|
|
|
|
|
particular, there is no support for strong encryption, zip files that
|
|
|
|
|
|
|
|
span multiple disks, ZIP64, OS-specific file attributes, or compression
|
|
|
|
|
|
|
|
methods other than Deflate. However, the library should be able to read
|
|
|
|
|
|
|
|
the most common zip archives, and the archives it produces should be
|
|
|
|
|
|
|
|
readable by all standard unzip programs.
|
|
|
|
|
|
|
|
.
|
|
|
|
|
|
|
|
Archives are built and extracted in memory, so manipulating large zip
|
|
|
|
|
|
|
|
files will consume a lot of memory. If you work with large zip files or
|
|
|
|
|
|
|
|
need features not supported by this library, a better choice may be
|
|
|
|
|
|
|
|
<http://hackage.haskell.org/package/zip zip>, which uses a
|
|
|
|
|
|
|
|
memory-efficient streaming approach. However, zip can only read and
|
|
|
|
|
|
|
|
write archives inside instances of MonadIO, so zip-archive is a better
|
|
|
|
|
|
|
|
choice if you want to manipulate zip archives in "pure" contexts.
|
|
|
|
|
|
|
|
.
|
|
|
|
|
|
|
|
As an example of the use of the library, a standalone zip archiver and
|
|
|
|
|
|
|
|
extracter is provided in the source distribution.
|
|
|
|
Category: Codec
|
|
|
|
Category: Codec
|
|
|
|
Tested-with: GHC == 7.8.2, GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2
|
|
|
|
Tested-with: GHC == 7.8.2, GHC == 7.10.3, GHC == 8.0.2,
|
|
|
|
|
|
|
|
GHC == 8.2.2, GHC == 8.4.3, GHC == 8.6.1
|
|
|
|
License: BSD3
|
|
|
|
License: BSD3
|
|
|
|
License-file: LICENSE
|
|
|
|
License-file: LICENSE
|
|
|
|
Homepage: http://github.com/jgm/zip-archive
|
|
|
|
Homepage: http://github.com/jgm/zip-archive
|
|
|
@ -20,6 +41,8 @@ Extra-Source-Files: changelog
|
|
|
|
tests/test4/b.bin
|
|
|
|
tests/test4/b.bin
|
|
|
|
"tests/test4/c/with spaces.txt"
|
|
|
|
"tests/test4/c/with spaces.txt"
|
|
|
|
tests/zip_with_symlinks.zip
|
|
|
|
tests/zip_with_symlinks.zip
|
|
|
|
|
|
|
|
tests/zip_with_password.zip
|
|
|
|
|
|
|
|
tests/zip_with_evil_path.zip
|
|
|
|
|
|
|
|
|
|
|
|
Source-repository head
|
|
|
|
Source-repository head
|
|
|
|
type: git
|
|
|
|
type: git
|
|
|
@ -52,9 +75,6 @@ Library
|
|
|
|
else
|
|
|
|
else
|
|
|
|
Build-depends: unix
|
|
|
|
Build-depends: unix
|
|
|
|
|
|
|
|
|
|
|
|
custom-setup
|
|
|
|
|
|
|
|
setup-depends: base, Cabal
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Executable zip-archive
|
|
|
|
Executable zip-archive
|
|
|
|
if flag(executable)
|
|
|
|
if flag(executable)
|
|
|
|
Buildable: True
|
|
|
|
Buildable: True
|
|
|
@ -67,6 +87,7 @@ Executable zip-archive
|
|
|
|
bytestring >= 0.9.0,
|
|
|
|
bytestring >= 0.9.0,
|
|
|
|
zip-archive
|
|
|
|
zip-archive
|
|
|
|
Other-Modules: Paths_zip_archive
|
|
|
|
Other-Modules: Paths_zip_archive
|
|
|
|
|
|
|
|
Autogen-Modules: Paths_zip_archive
|
|
|
|
Ghc-Options: -Wall
|
|
|
|
Ghc-Options: -Wall
|
|
|
|
Default-Language: Haskell98
|
|
|
|
Default-Language: Haskell98
|
|
|
|
|
|
|
|
|
|
|
@ -82,5 +103,5 @@ Test-Suite test-zip-archive
|
|
|
|
if os(windows)
|
|
|
|
if os(windows)
|
|
|
|
cpp-options: -D_WINDOWS
|
|
|
|
cpp-options: -D_WINDOWS
|
|
|
|
else
|
|
|
|
else
|
|
|
|
Build-tools: unzip
|
|
|
|
|
|
|
|
Build-depends: unix
|
|
|
|
Build-depends: unix
|
|
|
|
|
|
|
|
build-tools: unzip
|