Skip to content

Commit

Permalink
Bump deps/base64 to v3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alavrik committed Jun 29, 2019
1 parent 82829ad commit 078753b
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 7 deletions.
1 change: 1 addition & 0 deletions deps/.gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
*/upstream
*/META
!ulex/META
!base64/META
*/*.ml
*/*.mli
*/*.tar.gz
Expand Down
17 changes: 17 additions & 0 deletions deps/base64/META
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
version = "3.2.0"
description = ""
requires = "bytes"
archive(byte) = "base64.cma"
archive(native) = "base64.cmxa"
plugin(byte) = "base64.cma"
plugin(native) = "base64.cmxs"
package "rfc2045" (
directory = "rfc2045"
version = "3.2.0"
description = ""
requires = "bytes"
archive(byte) = "base64_rfc2045.cma"
archive(native) = "base64_rfc2045.cmxa"
plugin(byte) = "base64_rfc2045.cma"
plugin(native) = "base64_rfc2045.cmxs"
)
4 changes: 2 additions & 2 deletions deps/base64/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ OCAMLMAKEFILE := ../../make/OCamlMakefile

RESULT = base64

SOURCES = b64.ml
SOURCES = base64.ml base64_rfc2045.ml

LIBINSTALL_FILES = b64.mli b64.cmi b64.cmx base64.cma base64.cmxa base64.a
LIBINSTALL_FILES = base64.mli base64.cmi base64_rfc2045.mli base64_rfc2045.cmi base64.cma base64.cmxa base64.a


all: bcl ncl
Expand Down
10 changes: 5 additions & 5 deletions deps/base64/Makefile.download
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
TARBALL := v2.0.0.tar.gz
TARBALL := v3.2.0.tar.gz
URL := https://github.com/mirage/ocaml-base64/archive/$(TARBALL)
MD5 := 52b9736839c83cf88a9fb1373cf2e35c
MD5 := de7c122c5fbbcd7ec31a3163a27d04c3


UPSTREAM_FILES := \
b64.ml b64.mli \
META
base64.ml base64.mli \
base64_rfc2045.ml base64_rfc2045.mli \


UPSTREAM_DIR := upstream
Expand All @@ -14,7 +14,7 @@ UPSTREAM_DIR := upstream
all: $(TARBALL) $(UPSTREAM_DIR) $(UPSTREAM_FILES)


$(UPSTREAM_FILES): %: $(UPSTREAM_DIR)/lib/%
$(UPSTREAM_FILES): %: $(UPSTREAM_DIR)/src/%
cp $< $@


Expand Down

0 comments on commit 078753b

Please sign in to comment.