Skip to content

Commit

Permalink
Camlzip 1.13
Browse files Browse the repository at this point in the history
- ocaml#44: tolerate ZIP entries that are marked "deflated" but have size 0
  [Antoine Provot]
- ocaml#46: provide `Zip.open_update` to add entries to an existing ZIP file
- ocaml#47: in `Zlib.inflate`, detect and fail on truncated input instead of looping
- ocaml#48: under Windows, store file names in ZIP entries using forward slashes `/`
  instead of backslashes `\`
  • Loading branch information
xavierleroy committed Oct 24, 2024
1 parent 4ffa004 commit 5bee15d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions packages/camlzip/camlzip.1.13/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
opam-version: "2.0"
synopsis:
"Accessing compressed files in ZIP, GZIP and JAR format"
description:
"The Camlzip library provides easy access to compressed files in ZIP and GZIP format, as well as to Java JAR files. It provides functions for reading from and writing to compressed files in these formats."
maintainer: ["Xavier Leroy <[email protected]>"]
authors: ["Xavier Leroy"]
homepage: "https://github.com/xavierleroy/camlzip"
bug-reports: "https://github.com/xavierleroy/camlzip/issues"
dev-repo: "git+https://github.com/xavierleroy/camlzip.git"
license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
depends: [
"ocaml" {>= "4.13.0"}
"ocamlfind" {build}
"conf-zlib"
]
build: [
[make "all"]
]
install: [make "install"]
url {
src: "https://github.com/xavierleroy/camlzip/archive/rel113.tar.gz"
checksum: [
"sha256=8a038692ac811cdd2fdff9b37b5892b7a912c2042641187eae29757d98565d9e"
"sha512=dc0fff718b089b89b753fe7d70f100f005b4bb4efcb29afb30bb1ccfd0a7c9a1aa8685c033b0c2c86f0573a7bb0772e499d1149bac159ec8fc11426f71903e51"
]
}

0 comments on commit 5bee15d

Please sign in to comment.