diff -Nru ocaml-topkg-1.0.1/CHANGES.md ocaml-topkg-1.0.2/CHANGES.md --- ocaml-topkg-1.0.1/CHANGES.md 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/CHANGES.md 2020-07-30 13:26:20.000000000 +0000 @@ -1,3 +1,9 @@ +v1.0.2 2020-07-30 Zagreb +------------------------ + +- Support OCaml configurations without shared library support + (#136). Thanks to Antonio Nuno Monteiro for the help. + v1.0.1 2019-07-19 Zagreb ------------------------ diff -Nru ocaml-topkg-1.0.1/debian/changelog ocaml-topkg-1.0.2/debian/changelog --- ocaml-topkg-1.0.1/debian/changelog 2020-02-21 07:32:03.000000000 +0000 +++ ocaml-topkg-1.0.2/debian/changelog 2020-08-05 11:12:31.000000000 +0000 @@ -1,8 +1,11 @@ -ocaml-topkg (1.0.1-1build1) focal; urgency=medium +ocaml-topkg (1.0.2-1) unstable; urgency=medium - * No-change rebuild against ocaml-nox-4.08.1 + * New upstream release + * Bump debhelper compat level to 13 + * Bump Standards-Version to 4.5.0 + * Add Rules-Requires-Root: no - -- Steve Langasek Fri, 21 Feb 2020 07:32:03 +0000 + -- Stéphane Glondu Wed, 05 Aug 2020 13:12:31 +0200 ocaml-topkg (1.0.1-1) unstable; urgency=medium diff -Nru ocaml-topkg-1.0.1/debian/control ocaml-topkg-1.0.2/debian/control --- ocaml-topkg-1.0.1/debian/control 2020-02-21 07:32:03.000000000 +0000 +++ ocaml-topkg-1.0.2/debian/control 2020-08-05 11:12:31.000000000 +0000 @@ -1,19 +1,19 @@ Source: ocaml-topkg Section: ocaml Priority: optional -Maintainer: Ubuntu Developers -XSBC-Original-Maintainer: Debian OCaml Maintainers +Maintainer: Debian OCaml Maintainers Uploaders: Stéphane Glondu Build-Depends: - debhelper-compat (= 12), - dh-ocaml (>= 0.9), - ocaml-nox (>= 4.01), + debhelper-compat (= 13), + dh-ocaml, + ocaml-nox, ocamlbuild, ocaml-findlib, - libfindlib-ocaml-dev (>= 1.6.1), + libfindlib-ocaml-dev, opam-installer -Standards-Version: 4.4.0 +Standards-Version: 4.5.0 +Rules-Requires-Root: no Homepage: https://erratique.ch/software/topkg Vcs-Git: https://salsa.debian.org/ocaml-team/ocaml-topkg.git Vcs-Browser: https://salsa.debian.org/ocaml-team/ocaml-topkg diff -Nru ocaml-topkg-1.0.1/debian/copyright ocaml-topkg-1.0.2/debian/copyright --- ocaml-topkg-1.0.1/debian/copyright 2019-08-17 08:15:11.000000000 +0000 +++ ocaml-topkg-1.0.2/debian/copyright 2020-08-05 11:12:31.000000000 +0000 @@ -1,12 +1,12 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Source: http://erratique.ch/software/topkg Files: * -Copyright: (c) 2016 Daniel C. Bünzli +Copyright: © 2016 Daniel C. Bünzli License: ISC Files: debian/* -Copyright: (c) 2017 Hendrik Tews +Copyright: © 2017 Hendrik Tews + © 2019 Stéphane Glondu License: ISC License: ISC diff -Nru ocaml-topkg-1.0.1/debian/rules ocaml-topkg-1.0.2/debian/rules --- ocaml-topkg-1.0.1/debian/rules 2019-08-17 08:20:16.000000000 +0000 +++ ocaml-topkg-1.0.2/debian/rules 2020-08-05 11:12:31.000000000 +0000 @@ -15,5 +15,4 @@ opam-installer --prefix=$(DESTDIR)/usr --libdir=..$(OCAML_STDLIB_DIR) rm -f $(DESTDIR)/usr/doc/topkg/LICENSE.md -override_dh_missing: - dh_missing --fail-missing +override_dh_dwz: diff -Nru ocaml-topkg-1.0.1/pkg/META ocaml-topkg-1.0.2/pkg/META --- ocaml-topkg-1.0.1/pkg/META 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/pkg/META 2020-07-30 13:26:20.000000000 +0000 @@ -1,5 +1,5 @@ description = "The transitory OCaml software packager" -version = "1.0.1" +version = "1.0.2" requires = "" archive(byte) = "topkg.cma" archive(native) = "topkg.cmxa" @@ -9,7 +9,7 @@ package "care" ( directory = "../topkg-care" description = "Topkg package care tools" - version = "1.0.1" + version = "1.0.2" requires = "topkg opam-format cmdliner bos.setup" archive(byte) = "topkg_care.cma" archive(native) = "topkg_care.cmxa" diff -Nru ocaml-topkg-1.0.1/README.md ocaml-topkg-1.0.2/README.md --- ocaml-topkg-1.0.1/README.md 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/README.md 2020-07-30 13:26:20.000000000 +0000 @@ -1,6 +1,6 @@ Topkg — The transitory OCaml software packager ------------------------------------------------------------------------------- -v1.0.1 +v1.0.2 Topkg is a packager for distributing OCaml software. It provides an API to describe the files a package installs in a given build diff -Nru ocaml-topkg-1.0.1/src/topkg_build.ml ocaml-topkg-1.0.2/src/topkg_build.ml --- ocaml-topkg-1.0.1/src/topkg_build.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_build.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Topkg_result diff -Nru ocaml-topkg-1.0.1/src/topkg_build.mli ocaml-topkg-1.0.2/src/topkg_build.mli --- ocaml-topkg-1.0.1/src/topkg_build.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_build.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** Package build description. *) diff -Nru ocaml-topkg-1.0.1/src/topkg_cmd.ml ocaml-topkg-1.0.2/src/topkg_cmd.ml --- ocaml-topkg-1.0.1/src/topkg_cmd.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_cmd.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (* Command line fragments *) diff -Nru ocaml-topkg-1.0.1/src/topkg_cmd.mli ocaml-topkg-1.0.2/src/topkg_cmd.mli --- ocaml-topkg-1.0.1/src/topkg_cmd.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_cmd.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** Command lines diff -Nru ocaml-topkg-1.0.1/src/topkg_codec.ml ocaml-topkg-1.0.2/src/topkg_codec.ml --- ocaml-topkg-1.0.1/src/topkg_codec.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_codec.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Topkg_result diff -Nru ocaml-topkg-1.0.1/src/topkg_codec.mli ocaml-topkg-1.0.2/src/topkg_codec.mli --- ocaml-topkg-1.0.1/src/topkg_codec.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_codec.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** Topkg interprocess communication codec. diff -Nru ocaml-topkg-1.0.1/src/topkg_conf.ml ocaml-topkg-1.0.2/src/topkg_conf.ml --- ocaml-topkg-1.0.1/src/topkg_conf.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_conf.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Topkg_result @@ -563,6 +563,14 @@ let file _ = "dynlink.cmxa" in get_bool_stdlib_file_exists_discovery "natdynlink" c ~file ~on_error:false + let supports_shared_libraries c = + let key = "supports_shared_libraries" in + let asm_dynlib c = "libasmrun_shared" ^ (ext_dll c) in + let caml_dynlib c = "libcamlrun_shared" ^ (ext_dll c) in + let on_error = false in + get_bool_stdlib_file_exists_discovery key c ~file:asm_dynlib ~on_error || + get_bool_stdlib_file_exists_discovery key c ~file:caml_dynlib ~on_error + let word_size c = let sizeof_ptr_of_config_h file = let err l = diff -Nru ocaml-topkg-1.0.1/src/topkg_conf.mli ocaml-topkg-1.0.2/src/topkg_conf.mli --- ocaml-topkg-1.0.1/src/topkg_conf.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_conf.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** Build configuration @@ -91,6 +91,7 @@ val ext_exe : t -> string val native : t -> bool val native_dynlink : t -> bool + val supports_shared_libraries : t -> bool val word_size : t -> int val dump : Format.formatter -> t -> unit end diff -Nru ocaml-topkg-1.0.1/src/topkg_distrib.ml ocaml-topkg-1.0.2/src/topkg_distrib.ml --- ocaml-topkg-1.0.1/src/topkg_distrib.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_distrib.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Topkg_result diff -Nru ocaml-topkg-1.0.1/src/topkg_distrib.mli ocaml-topkg-1.0.2/src/topkg_distrib.mli --- ocaml-topkg-1.0.1/src/topkg_distrib.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_distrib.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** {1 Distribution description} diff -Nru ocaml-topkg-1.0.1/src/topkg_fexts.ml ocaml-topkg-1.0.2/src/topkg_fexts.ml --- ocaml-topkg-1.0.1/src/topkg_fexts.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_fexts.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) type ext = [ `Ext of string | `Obj | `Lib | `Dll | `Exe ] diff -Nru ocaml-topkg-1.0.1/src/topkg_fexts.mli ocaml-topkg-1.0.2/src/topkg_fexts.mli --- ocaml-topkg-1.0.1/src/topkg_fexts.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_fexts.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** File extensions. diff -Nru ocaml-topkg-1.0.1/src/topkg_fpath.ml ocaml-topkg-1.0.2/src/topkg_fpath.ml --- ocaml-topkg-1.0.1/src/topkg_fpath.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_fpath.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) type t = string diff -Nru ocaml-topkg-1.0.1/src/topkg_fpath.mli ocaml-topkg-1.0.2/src/topkg_fpath.mli --- ocaml-topkg-1.0.1/src/topkg_fpath.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_fpath.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** File system paths. diff -Nru ocaml-topkg-1.0.1/src/topkg_install.ml ocaml-topkg-1.0.2/src/topkg_install.ml --- ocaml-topkg-1.0.1/src/topkg_install.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_install.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Topkg_result @@ -36,10 +36,16 @@ | Some (name, ext) -> name, `Ext (Topkg_string.strf ".%s" ext) let bin_drop_exts native = if native then [] else Topkg_fexts.ext ".native" -let lib_drop_exts native native_dynlink = - if native - then (if native_dynlink then [] else Topkg_fexts.ext ".cmxs") - else Topkg_fexts.(c_library @ exts [".cmx"; ".cmxa"; ".cmxs"]) +let lib_drop_exts native native_dynlink supports_shared_libraries = + match native with + | false -> Topkg_fexts.(c_library @ exts [".cmx"; ".cmxa"; ".cmxs"]) + | true -> + match supports_shared_libraries with + | false -> `Dll :: Topkg_fexts.ext ".cmxs" + | true -> + match native_dynlink with + | false -> Topkg_fexts.ext ".cmxs" + | true -> [] let to_build ?header c os i = let bdir = Topkg_conf.build_dir c in @@ -48,18 +54,25 @@ let ocaml_conf = Topkg_conf.OCaml.v c os in let native = Topkg_conf.OCaml.native ocaml_conf in let native_dylink = Topkg_conf.OCaml.native_dynlink ocaml_conf in + let supports_shared_libraries = + Topkg_conf.OCaml.supports_shared_libraries ocaml_conf + in let ext_to_string = Topkg_fexts.ext_to_string ocaml_conf in let file_to_str (n, ext) = Topkg_string.strf "%s%s" n (ext_to_string ext) in let maybe_build = [ ".cmti"; ".cmt" ] in let bin_drops = List.map ext_to_string (bin_drop_exts native) in - let lib_drops = List.map ext_to_string (lib_drop_exts native native_dylink) in + let lib_drops = + List.map ext_to_string + (lib_drop_exts native native_dylink supports_shared_libraries) + in let add acc m = if m.debugger_support && not debugger_support then acc else let mv (targets, moves, tests as acc) src dst = let src = file_to_str src in let drop = not m.force && match m.field with | `Bin -> List.exists (Filename.check_suffix src) bin_drops - | `Lib -> List.exists (Filename.check_suffix src) lib_drops + | `Lib | `Lib_root | `Stublibs -> + List.exists (Filename.check_suffix src) lib_drops | _ -> false in if drop then (targets, moves, tests) else diff -Nru ocaml-topkg-1.0.1/src/topkg_install.mli ocaml-topkg-1.0.2/src/topkg_install.mli --- ocaml-topkg-1.0.1/src/topkg_install.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_install.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** Package install. *) diff -Nru ocaml-topkg-1.0.1/src/topkg_ipc.ml ocaml-topkg-1.0.2/src/topkg_ipc.ml --- ocaml-topkg-1.0.1/src/topkg_ipc.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_ipc.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Topkg_result diff -Nru ocaml-topkg-1.0.1/src/topkg_ipc.mli ocaml-topkg-1.0.2/src/topkg_ipc.mli --- ocaml-topkg-1.0.1/src/topkg_ipc.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_ipc.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** Topkg interprocess communication. diff -Nru ocaml-topkg-1.0.1/src/topkg_log.ml ocaml-topkg-1.0.2/src/topkg_log.ml --- ocaml-topkg-1.0.1/src/topkg_log.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_log.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Topkg_result diff -Nru ocaml-topkg-1.0.1/src/topkg_log.mli ocaml-topkg-1.0.2/src/topkg_log.mli --- ocaml-topkg-1.0.1/src/topkg_log.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_log.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** Log diff -Nru ocaml-topkg-1.0.1/src/topkg_main.ml ocaml-topkg-1.0.2/src/topkg_main.ml --- ocaml-topkg-1.0.1/src/topkg_main.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_main.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Topkg_result @@ -73,7 +73,7 @@ pr "%a@." pp_help (); Ok 0 -let version_cmd pkg = print_endline "topkg v1.0.1"; Ok 0 +let version_cmd pkg = print_endline "topkg v1.0.2"; Ok 0 let build_cmd pkg kind args = let log_conf c = @@ -239,7 +239,7 @@ let setup_log_level level = Topkg_log.set_level level; - Topkg_log.info (fun m -> m "topkg v1.0.1, running main"); + Topkg_log.info (fun m -> m "topkg v1.0.2, running main"); Ok () let main pkg = diff -Nru ocaml-topkg-1.0.1/src/topkg_main.mli ocaml-topkg-1.0.2/src/topkg_main.mli --- ocaml-topkg-1.0.1/src/topkg_main.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_main.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** Entry point for [pkg.ml] files. *) diff -Nru ocaml-topkg-1.0.1/src/topkg.ml ocaml-topkg-1.0.2/src/topkg.ml --- ocaml-topkg-1.0.1/src/topkg.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (* Preliminaries *) diff -Nru ocaml-topkg-1.0.1/src/topkg.mli ocaml-topkg-1.0.2/src/topkg.mli --- ocaml-topkg-1.0.1/src/topkg.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** The transitory OCaml package builder. @@ -9,7 +9,7 @@ See the {{!basics}basics} and the {{!menagerie}menagerie} of [pkg.ml] files. - {e v1.0.1 - {{:http://erratique.ch/software/topkg }homepage}} *) + {e v1.0.2 - {{:http://erratique.ch/software/topkg }homepage}} *) (** {1:prels Preliminaries} @@ -918,6 +918,15 @@ [true] is returned iff the standard library directory has the [dynlink.cmxa] library. *) + val supports_shared_libraries : t -> bool + (** [supports_shared_libraries] is [true] if compilation of C + shared libraries is supported. Until OCaml 4.08 this + information is not readily available (see + {{:https://github.com/ocaml/ocaml/pull/1691}PR 1691}). Before + that it checks for the existence of either ["libasmrun_shared" + ^ ext_dll c] or ["libcamlrun_shared" ^ ext_dll c] in the standard + library directory. *) + val word_size : t -> int (** [word_size] is the bit size of one word on the OS that will execute the programs produced by the compiler (i.e. the value diff -Nru ocaml-topkg-1.0.1/src/topkg_opam.ml ocaml-topkg-1.0.2/src/topkg_opam.ml --- ocaml-topkg-1.0.1/src/topkg_opam.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_opam.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Topkg_result diff -Nru ocaml-topkg-1.0.1/src/topkg_opam.mli ocaml-topkg-1.0.2/src/topkg_opam.mli --- ocaml-topkg-1.0.1/src/topkg_opam.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_opam.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** opam helpers. diff -Nru ocaml-topkg-1.0.1/src/topkg_os.ml ocaml-topkg-1.0.2/src/topkg_os.ml --- ocaml-topkg-1.0.1/src/topkg_os.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_os.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Topkg_result diff -Nru ocaml-topkg-1.0.1/src/topkg_os.mli ocaml-topkg-1.0.2/src/topkg_os.mli --- ocaml-topkg-1.0.1/src/topkg_os.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_os.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** OS interaction. diff -Nru ocaml-topkg-1.0.1/src/topkg_pkg.ml ocaml-topkg-1.0.2/src/topkg_pkg.ml --- ocaml-topkg-1.0.1/src/topkg_pkg.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_pkg.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Topkg_result diff -Nru ocaml-topkg-1.0.1/src/topkg_pkg.mli ocaml-topkg-1.0.2/src/topkg_pkg.mli --- ocaml-topkg-1.0.1/src/topkg_pkg.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_pkg.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** Package descriptions. *) diff -Nru ocaml-topkg-1.0.1/src/topkg_publish.ml ocaml-topkg-1.0.2/src/topkg_publish.ml --- ocaml-topkg-1.0.1/src/topkg_publish.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_publish.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Topkg_result diff -Nru ocaml-topkg-1.0.1/src/topkg_publish.mli ocaml-topkg-1.0.2/src/topkg_publish.mli --- ocaml-topkg-1.0.1/src/topkg_publish.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_publish.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** {1 Distribution publication description} diff -Nru ocaml-topkg-1.0.1/src/topkg_result.ml ocaml-topkg-1.0.2/src/topkg_result.ml --- ocaml-topkg-1.0.1/src/topkg_result.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_result.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) let ( >>= ) v f = match v with Ok v -> f v | Error _ as e -> e diff -Nru ocaml-topkg-1.0.1/src/topkg_result.mli ocaml-topkg-1.0.2/src/topkg_result.mli --- ocaml-topkg-1.0.1/src/topkg_result.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_result.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** Results diff -Nru ocaml-topkg-1.0.1/src/topkg_string.ml ocaml-topkg-1.0.2/src/topkg_string.ml --- ocaml-topkg-1.0.1/src/topkg_string.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_string.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) let strf = Format.asprintf diff -Nru ocaml-topkg-1.0.1/src/topkg_string.mli ocaml-topkg-1.0.2/src/topkg_string.mli --- ocaml-topkg-1.0.1/src/topkg_string.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_string.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** Strings. diff -Nru ocaml-topkg-1.0.1/src/topkg_test.ml ocaml-topkg-1.0.2/src/topkg_test.ml --- ocaml-topkg-1.0.1/src/topkg_test.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_test.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) type t = diff -Nru ocaml-topkg-1.0.1/src/topkg_test.mli ocaml-topkg-1.0.2/src/topkg_test.mli --- ocaml-topkg-1.0.1/src/topkg_test.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_test.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** Topkg test description. *) diff -Nru ocaml-topkg-1.0.1/src/topkg_vcs.ml ocaml-topkg-1.0.2/src/topkg_vcs.ml --- ocaml-topkg-1.0.1/src/topkg_vcs.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_vcs.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Topkg_result diff -Nru ocaml-topkg-1.0.1/src/topkg_vcs.mli ocaml-topkg-1.0.2/src/topkg_vcs.mli --- ocaml-topkg-1.0.1/src/topkg_vcs.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src/topkg_vcs.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** VCS repositories. diff -Nru ocaml-topkg-1.0.1/src-bin/bistro.ml ocaml-topkg-1.0.2/src-bin/bistro.ml --- ocaml-topkg-1.0.1/src-bin/bistro.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/bistro.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-bin/bistro.mli ocaml-topkg-1.0.2/src-bin/bistro.mli --- ocaml-topkg-1.0.1/src-bin/bistro.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/bistro.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** The [bistro] command. *) diff -Nru ocaml-topkg-1.0.1/src-bin/browse.ml ocaml-topkg-1.0.2/src-bin/browse.ml --- ocaml-topkg-1.0.1/src-bin/browse.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/browse.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-bin/browse.mli ocaml-topkg-1.0.2/src-bin/browse.mli --- ocaml-topkg-1.0.1/src-bin/browse.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/browse.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** The [browse] command. *) diff -Nru ocaml-topkg-1.0.1/src-bin/build.ml ocaml-topkg-1.0.2/src-bin/build.ml --- ocaml-topkg-1.0.1/src-bin/build.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/build.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-bin/build.mli ocaml-topkg-1.0.2/src-bin/build.mli --- ocaml-topkg-1.0.1/src-bin/build.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/build.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** The [build] command. *) diff -Nru ocaml-topkg-1.0.1/src-bin/clean.ml ocaml-topkg-1.0.2/src-bin/clean.ml --- ocaml-topkg-1.0.1/src-bin/clean.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/clean.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-bin/clean.mli ocaml-topkg-1.0.2/src-bin/clean.mli --- ocaml-topkg-1.0.1/src-bin/clean.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/clean.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** The [clean] command. *) diff -Nru ocaml-topkg-1.0.1/src-bin/cli.ml ocaml-topkg-1.0.2/src-bin/cli.ml --- ocaml-topkg-1.0.1/src-bin/cli.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/cli.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup @@ -122,7 +122,7 @@ Topkg.Log.set_level (logs_to_topkg_log_level log_level); Logs.set_level log_level; Logs.set_reporter (Logs_fmt.reporter ~app:Fmt.stdout ()); - Logs.info (fun m -> m "topkg v1.0.1 running"); + Logs.info (fun m -> m "topkg v1.0.2 running"); match cwd with | None -> `Ok () | Some dir -> diff -Nru ocaml-topkg-1.0.1/src-bin/cli.mli ocaml-topkg-1.0.2/src-bin/cli.mli --- ocaml-topkg-1.0.1/src-bin/cli.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/cli.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** {!Cmdliner} and common definitions for commands. *) diff -Nru ocaml-topkg-1.0.1/src-bin/distrib.ml ocaml-topkg-1.0.2/src-bin/distrib.ml --- ocaml-topkg-1.0.1/src-bin/distrib.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/distrib.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-bin/distrib.mli ocaml-topkg-1.0.2/src-bin/distrib.mli --- ocaml-topkg-1.0.1/src-bin/distrib.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/distrib.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** The [distrib] command. *) diff -Nru ocaml-topkg-1.0.1/src-bin/doc.ml ocaml-topkg-1.0.2/src-bin/doc.ml --- ocaml-topkg-1.0.1/src-bin/doc.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/doc.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-bin/doc.mli ocaml-topkg-1.0.2/src-bin/doc.mli --- ocaml-topkg-1.0.1/src-bin/doc.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/doc.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** The [doc] command. *) diff -Nru ocaml-topkg-1.0.1/src-bin/help.ml ocaml-topkg-1.0.2/src-bin/help.ml --- ocaml-topkg-1.0.1/src-bin/help.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/help.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,11 +1,11 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) let topkg_manual = "Topkg manual" -let version = "v1.0.1" +let version = "v1.0.2" (* Help manuals *) diff -Nru ocaml-topkg-1.0.1/src-bin/help.mli ocaml-topkg-1.0.2/src-bin/help.mli --- ocaml-topkg-1.0.1/src-bin/help.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/help.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** The [help] command. *) diff -Nru ocaml-topkg-1.0.1/src-bin/ipc.ml ocaml-topkg-1.0.2/src-bin/ipc.ml --- ocaml-topkg-1.0.1/src-bin/ipc.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/ipc.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-bin/ipc.mli ocaml-topkg-1.0.2/src-bin/ipc.mli --- ocaml-topkg-1.0.1/src-bin/ipc.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/ipc.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** The [ipc] command. *) diff -Nru ocaml-topkg-1.0.1/src-bin/issue.ml ocaml-topkg-1.0.2/src-bin/issue.ml --- ocaml-topkg-1.0.1/src-bin/issue.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/issue.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-bin/issue.mli ocaml-topkg-1.0.2/src-bin/issue.mli --- ocaml-topkg-1.0.1/src-bin/issue.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/issue.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** The [issue] command. *) diff -Nru ocaml-topkg-1.0.1/src-bin/lint.ml ocaml-topkg-1.0.2/src-bin/lint.ml --- ocaml-topkg-1.0.1/src-bin/lint.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/lint.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-bin/lint.mli ocaml-topkg-1.0.2/src-bin/lint.mli --- ocaml-topkg-1.0.1/src-bin/lint.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/lint.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** The [lint] command. *) diff -Nru ocaml-topkg-1.0.1/src-bin/log.ml ocaml-topkg-1.0.2/src-bin/log.ml --- ocaml-topkg-1.0.1/src-bin/log.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/log.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-bin/log.mli ocaml-topkg-1.0.2/src-bin/log.mli --- ocaml-topkg-1.0.1/src-bin/log.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/log.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** The [log] command. *) diff -Nru ocaml-topkg-1.0.1/src-bin/opam.ml ocaml-topkg-1.0.2/src-bin/opam.ml --- ocaml-topkg-1.0.1/src-bin/opam.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/opam.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-bin/opam.mli ocaml-topkg-1.0.2/src-bin/opam.mli --- ocaml-topkg-1.0.1/src-bin/opam.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/opam.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** The [opam] command. *) diff -Nru ocaml-topkg-1.0.1/src-bin/publish.ml ocaml-topkg-1.0.2/src-bin/publish.ml --- ocaml-topkg-1.0.1/src-bin/publish.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/publish.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-bin/publish.mli ocaml-topkg-1.0.2/src-bin/publish.mli --- ocaml-topkg-1.0.1/src-bin/publish.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/publish.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** The [publish] command. *) diff -Nru ocaml-topkg-1.0.1/src-bin/run.ml ocaml-topkg-1.0.2/src-bin/run.ml --- ocaml-topkg-1.0.1/src-bin/run.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/run.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-bin/run.mli ocaml-topkg-1.0.2/src-bin/run.mli --- ocaml-topkg-1.0.1/src-bin/run.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/run.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** The [run] command. *) diff -Nru ocaml-topkg-1.0.1/src-bin/status.ml ocaml-topkg-1.0.2/src-bin/status.ml --- ocaml-topkg-1.0.1/src-bin/status.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/status.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-bin/status.mli ocaml-topkg-1.0.2/src-bin/status.mli --- ocaml-topkg-1.0.1/src-bin/status.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/status.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** The [status] command. *) diff -Nru ocaml-topkg-1.0.1/src-bin/tag.ml ocaml-topkg-1.0.2/src-bin/tag.ml --- ocaml-topkg-1.0.1/src-bin/tag.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/tag.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-bin/tag.mli ocaml-topkg-1.0.2/src-bin/tag.mli --- ocaml-topkg-1.0.1/src-bin/tag.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/tag.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** The [tag] command. *) diff -Nru ocaml-topkg-1.0.1/src-bin/test.ml ocaml-topkg-1.0.2/src-bin/test.ml --- ocaml-topkg-1.0.1/src-bin/test.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/test.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-bin/test.mli ocaml-topkg-1.0.2/src-bin/test.mli --- ocaml-topkg-1.0.1/src-bin/test.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/test.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** The [test] command. *) diff -Nru ocaml-topkg-1.0.1/src-bin/topkg_bin.ml ocaml-topkg-1.0.2/src-bin/topkg_bin.ml --- ocaml-topkg-1.0.1/src-bin/topkg_bin.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/topkg_bin.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Cmdliner @@ -35,7 +35,7 @@ let main = Term.(ret (const main $ Cli.setup)), - Term.info "topkg" ~version:"v1.0.1" ~doc ~sdocs ~exits ~man + Term.info "topkg" ~version:"v1.0.2" ~doc ~sdocs ~exits ~man let main () = Topkg.Private.disable_main (); diff -Nru ocaml-topkg-1.0.1/src-bin/toy_github_delegate.ml ocaml-topkg-1.0.2/src-bin/toy_github_delegate.ml --- ocaml-topkg-1.0.1/src-bin/toy_github_delegate.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-bin/toy_github_delegate.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup @@ -312,7 +312,7 @@ documentation for more details); in this case your GitHub password will be prompted twice on the command line by curl (ugh).")] in - let version = "v1.0.1" in + let version = "v1.0.2" in Term.(ret (const main_cmd $ const ())), Term.info "toy-github-topkg-delegate" ~version ~doc ~envs ~man ~man_xrefs diff -Nru ocaml-topkg-1.0.1/src-care/topkg_care_archive.ml ocaml-topkg-1.0.2/src-care/topkg_care_archive.ml --- ocaml-topkg-1.0.1/src-care/topkg_care_archive.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-care/topkg_care_archive.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-care/topkg_care_archive.mli ocaml-topkg-1.0.2/src-care/topkg_care_archive.mli --- ocaml-topkg-1.0.1/src-care/topkg_care_archive.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-care/topkg_care_archive.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** Archive creation. diff -Nru ocaml-topkg-1.0.1/src-care/topkg_care_delegate.ml ocaml-topkg-1.0.2/src-care/topkg_care_delegate.ml --- ocaml-topkg-1.0.1/src-care/topkg_care_delegate.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-care/topkg_care_delegate.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-care/topkg_care_delegate.mli ocaml-topkg-1.0.2/src-care/topkg_care_delegate.mli --- ocaml-topkg-1.0.1/src-care/topkg_care_delegate.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-care/topkg_care_delegate.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** Package delegate. diff -Nru ocaml-topkg-1.0.1/src-care/topkg_care_ipc.ml ocaml-topkg-1.0.2/src-care/topkg_care_ipc.ml --- ocaml-topkg-1.0.1/src-care/topkg_care_ipc.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-care/topkg_care_ipc.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-care/topkg_care_ipc.mli ocaml-topkg-1.0.2/src-care/topkg_care_ipc.mli --- ocaml-topkg-1.0.1/src-care/topkg_care_ipc.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-care/topkg_care_ipc.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** IPC with package description files *) diff -Nru ocaml-topkg-1.0.1/src-care/topkg_care.ml ocaml-topkg-1.0.2/src-care/topkg_care.ml --- ocaml-topkg-1.0.1/src-care/topkg_care.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-care/topkg_care.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) module Text = Topkg_care_text diff -Nru ocaml-topkg-1.0.1/src-care/topkg_care.mli ocaml-topkg-1.0.2/src-care/topkg_care.mli --- ocaml-topkg-1.0.1/src-care/topkg_care.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-care/topkg_care.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** Topkg package care. @@ -16,7 +16,7 @@ may change even between minor versions of [topkg]. Use at your own risk. - {e v1.0.1 - {{:http://erratique.ch/software/topkg }homepage}} *) + {e v1.0.2 - {{:http://erratique.ch/software/topkg }homepage}} *) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-care/topkg_care_ocamlbuild.ml ocaml-topkg-1.0.2/src-care/topkg_care_ocamlbuild.ml --- ocaml-topkg-1.0.1/src-care/topkg_care_ocamlbuild.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-care/topkg_care_ocamlbuild.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-care/topkg_care_ocamlbuild.mli ocaml-topkg-1.0.2/src-care/topkg_care_ocamlbuild.mli --- ocaml-topkg-1.0.1/src-care/topkg_care_ocamlbuild.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-care/topkg_care_ocamlbuild.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** [ocamlbuild] helpers. diff -Nru ocaml-topkg-1.0.1/src-care/topkg_care_ocamlfind.ml ocaml-topkg-1.0.2/src-care/topkg_care_ocamlfind.ml --- ocaml-topkg-1.0.1/src-care/topkg_care_ocamlfind.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-care/topkg_care_ocamlfind.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-care/topkg_care_ocamlfind.mli ocaml-topkg-1.0.2/src-care/topkg_care_ocamlfind.mli --- ocaml-topkg-1.0.1/src-care/topkg_care_ocamlfind.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-care/topkg_care_ocamlfind.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** [ocamlfind] helpers. diff -Nru ocaml-topkg-1.0.1/src-care/topkg_care_opam.ml ocaml-topkg-1.0.2/src-care/topkg_care_opam.ml --- ocaml-topkg-1.0.1/src-care/topkg_care_opam.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-care/topkg_care_opam.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-care/topkg_care_opam.mli ocaml-topkg-1.0.2/src-care/topkg_care_opam.mli --- ocaml-topkg-1.0.1/src-care/topkg_care_opam.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-care/topkg_care_opam.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** opam interaction. diff -Nru ocaml-topkg-1.0.1/src-care/topkg_care_pkg.ml ocaml-topkg-1.0.2/src-care/topkg_care_pkg.ml --- ocaml-topkg-1.0.1/src-care/topkg_care_pkg.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-care/topkg_care_pkg.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-care/topkg_care_pkg.mli ocaml-topkg-1.0.2/src-care/topkg_care_pkg.mli --- ocaml-topkg-1.0.1/src-care/topkg_care_pkg.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-care/topkg_care_pkg.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** Package descriptions. diff -Nru ocaml-topkg-1.0.1/src-care/topkg_care_text.ml ocaml-topkg-1.0.2/src-care/topkg_care_text.ml --- ocaml-topkg-1.0.1/src-care/topkg_care_text.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-care/topkg_care_text.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) open Bos_setup diff -Nru ocaml-topkg-1.0.1/src-care/topkg_care_text.mli ocaml-topkg-1.0.2/src-care/topkg_care_text.mli --- ocaml-topkg-1.0.1/src-care/topkg_care_text.mli 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/src-care/topkg_care_text.mli 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) (** Text processing helpers. diff -Nru ocaml-topkg-1.0.1/test/test.ml ocaml-topkg-1.0.2/test/test.ml --- ocaml-topkg-1.0.1/test/test.ml 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/test/test.ml 2020-07-30 13:26:20.000000000 +0000 @@ -1,7 +1,7 @@ (*--------------------------------------------------------------------------- Copyright (c) 2016 Daniel C. Bünzli. All rights reserved. Distributed under the ISC license, see terms at the end of the file. - topkg v1.0.1 + topkg v1.0.2 ---------------------------------------------------------------------------*) let () = diff -Nru ocaml-topkg-1.0.1/topkg-care.opam ocaml-topkg-1.0.2/topkg-care.opam --- ocaml-topkg-1.0.1/topkg-care.opam 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/topkg-care.opam 2020-07-30 13:26:20.000000000 +0000 @@ -1,4 +1,4 @@ -version: "1.0.1" +version: "1.0.2" synopsis: """The transitory OCaml software packager""" description: """\ @@ -39,7 +39,7 @@ "ocaml" {>= "4.03.0"} "ocamlfind" {build & >= "1.6.1"} "ocamlbuild" - "topkg" {= "1.0.1"} + "topkg" {= version} "fmt" "logs" "bos" {>= "0.1.5"} diff -Nru ocaml-topkg-1.0.1/topkg.opam ocaml-topkg-1.0.2/topkg.opam --- ocaml-topkg-1.0.1/topkg.opam 2019-07-19 12:58:44.000000000 +0000 +++ ocaml-topkg-1.0.2/topkg.opam 2020-07-30 13:26:20.000000000 +0000 @@ -1,4 +1,4 @@ -version: "1.0.1" +version: "1.0.2" synopsis: """The transitory OCaml software packager""" description: """\