-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #127 from mirage/next
- Remove Archive modules - Add `Tar.HEADERREADER` and `Tar.HEADERWRITER` module types, and rename `Tar.{READER,WRITER}.t` to `io`. - When reading the compatibility level is no longer considered. In most cases the compatibility level was not enforced, and the semantics were very unclear. - Better support for GNU LongLink/LongName - Add a separate `write_global` function for writing a global `Tar.Header.Extended.t`. This allows writing an archive with a PAX comment and nothing else. - Simplify zero padding and to_sectors computations - Rework IO-specific modules (tar-unix etc) and harmonizing them - Remove debug code - Remove camlp-streams - Remove unused tar_cstruct module - Remove unused End_of_stream exception - Remove Checksum_mismatch exception, use result - read/unmarshal: avoid exceptions, use Error instead - Extend authors: add reynir and hannes - Distinguish Eof from other errors, as suggested by @kit-ty-kate --------- Co-authored-by: Robur <[email protected]> Co-authored-by: Hannes Mehnert <[email protected]> Co-authored-by: Kate <[email protected]>
- Loading branch information
Showing
23 changed files
with
738 additions
and
1,265 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,8 @@ | |
"Thomas Gazagnaire" | ||
"David Allsopp" | ||
"Antonin Décimo" | ||
"Reynir Björnsson" | ||
"Hannes Mehnert" | ||
) | ||
(maintainers | ||
"Reynir Björnsson <[email protected]>" | ||
|
@@ -29,7 +31,6 @@ | |
) | ||
(tags ("org:xapi-project" "org:mirage")) | ||
(depends | ||
camlp-streams | ||
(ocaml (>= 4.08.0)) | ||
(cstruct (>= 6.0.0)) | ||
(decompress (>= 1.5.1)) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.