Skip to content

Commit

Permalink
Release 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dinosaure committed Sep 20, 2015
1 parent 9d08624 commit 90cdd84
Show file tree
Hide file tree
Showing 8 changed files with 7,572 additions and 32 deletions.
2 changes: 1 addition & 1 deletion _oasis
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
OASISFormat: 0.4
Name: decompress
Version: 0.1
Version: 0.2
Synopsis: Inflate and Deflate Zlib
Description: Pure OCaml Library for Zlib
Authors: Romain Calascibetta
Expand Down
20 changes: 20 additions & 0 deletions _tags
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
# OASIS_START
# DO NOT EDIT (digest: e11f6a2d51ef709ced337022fd30ac03)
# Ignore VCS directories, you can use the same kind of rule outside
# OASIS_START/STOP if you want to exclude directories that contains
# useless stuff for the build process
true: annot, bin_annot
<**/.svn>: -traverse
<**/.svn>: not_hygienic
".bzr": -traverse
".bzr": not_hygienic
".hg": -traverse
".hg": not_hygienic
".git": -traverse
".git": not_hygienic
"_darcs": -traverse
"_darcs": not_hygienic
# Library decompress
"lib/decompress.cmxs": use_decompress
# Executable main
"bin/main.byte": use_decompress
<bin/*.ml{,i,y}>: use_decompress
# OASIS_STOP
true: annot
true: safe_string
7 changes: 7 additions & 0 deletions lib/Decompress.odocl
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# OASIS_START
# DO NOT EDIT (digest: a57c83d7c7298168659db4cfb4cdfc4e)
Decompress
Decompress_common
Decompress_inflate
Decompress_deflate
# OASIS_STOP
11 changes: 11 additions & 0 deletions lib/META
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# OASIS_START
# DO NOT EDIT (digest: 2965cd42c6c73bd93e7b16336e7e8b93)
version = "0.2"
description = "Inflate and Deflate Zlib"
archive(byte) = "decompress.cma"
archive(byte, plugin) = "decompress.cma"
archive(native) = "decompress.cmxa"
archive(native, plugin) = "decompress.cmxs"
exists_if = "decompress.cma"
# OASIS_STOP

13 changes: 13 additions & 0 deletions lib/decompress.mldylib
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# OASIS_START
# DO NOT EDIT (digest: c016e30f6d50ebbbbf9da1d075d0b205)
Decompress
Decompress_common
Decompress_inflate
Decompress_deflate
Decompress_huffman
Decompress_tree
Decompress_heap
Decompress_lz77
Decompress_window
Decompress_adler32
# OASIS_STOP
13 changes: 13 additions & 0 deletions lib/decompress.mllib
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# OASIS_START
# DO NOT EDIT (digest: c016e30f6d50ebbbbf9da1d075d0b205)
Decompress
Decompress_common
Decompress_inflate
Decompress_deflate
Decompress_huffman
Decompress_tree
Decompress_heap
Decompress_lz77
Decompress_window
Decompress_adler32
# OASIS_STOP
Loading

0 comments on commit 90cdd84

Please sign in to comment.