From a5cba7bbe3d19ce136d52cfdf5f6ec71667a53be Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Tue, 20 Aug 2019 17:40:28 +0700 Subject: [PATCH] [new release] dune-build-info and dune (1.11.2) CHANGES: - Remove the optimisation of passing `-nodynlink` for executalbes when not necessary. It seems to be breaking things (see ocaml/dune#2527, @diml) - Fix invalid library names in `dune-package` files. Only public names should exist in such files. (ocaml/dune#2558, fix ocaml/dune#2425, @rgrinberg) --- .../dune-build-info.1.11.2/opam | 42 +++++++++++++++ packages/dune/dune.1.11.2/opam | 53 +++++++++++++++++++ 2 files changed, 95 insertions(+) create mode 100644 packages/dune-build-info/dune-build-info.1.11.2/opam create mode 100644 packages/dune/dune.1.11.2/opam diff --git a/packages/dune-build-info/dune-build-info.1.11.2/opam b/packages/dune-build-info/dune-build-info.1.11.2/opam new file mode 100644 index 00000000000..2f93ccace12 --- /dev/null +++ b/packages/dune-build-info/dune-build-info.1.11.2/opam @@ -0,0 +1,42 @@ +opam-version: "2.0" +synopsis: "Embed build informations inside executable" +description: """ +The build-info library allows to access information about how the +executable was built, such as the version of the project at which it +was built or the list of statically linked libraries with their +versions. It supports reporting the version from the version control +system during development to get an precise reference of when the +executable was built. +""" +maintainer: ["Jane Street Group, LLC "] +authors: ["Jane Street Group, LLC "] +license: "MIT" +homepage: "https://github.com/ocaml/dune" +doc: "https://dune.readthedocs.io/" +bug-reports: "https://github.com/ocaml/dune/issues" +depends: [ + "ocaml" {>= "4.02"} + "dune" {>= "1.11"} +] +dev-repo: "git+https://github.com/ocaml/dune.git" +build: [ + ["dune" "subst"] {pinned} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@doc" {with-doc} + ] +] +url { + src: + "https://github.com/ocaml/dune/releases/download/1.11.2/dune-build-info-1.11.2.tbz" + checksum: [ + "sha256=5bc5a6b505bbc24ea5ee4f7fb5d4c5c914016961eacf1ae688d3f00c893bda23" + "sha512=e5af097d022cedda0b27224504a3533a2e2e0f6f63d2f52686418fbff849d295a94da4980391a1b1a111ce6b037a14a2241b50d4ba00625a16f025e0c4eeaac0" + ] +} diff --git a/packages/dune/dune.1.11.2/opam b/packages/dune/dune.1.11.2/opam new file mode 100644 index 00000000000..c4511802dba --- /dev/null +++ b/packages/dune/dune.1.11.2/opam @@ -0,0 +1,53 @@ +opam-version: "2.0" +synopsis: "Fast, portable and opinionated build system" +description: """ + +dune is a build system that was designed to simplify the release of +Jane Street packages. It reads metadata from "dune" files following a +very simple s-expression syntax. + +dune is fast, it has very low-overhead and support parallel builds on +all platforms. It has no system dependencies, all you need to build +dune and packages using dune is OCaml. You don't need or make or bash +as long as the packages themselves don't use bash explicitly. + +dune supports multi-package development by simply dropping multiple +repositories into the same directory. + +It also supports multi-context builds, such as building against +several opam roots/switches simultaneously. This helps maintaining +packages across several versions of OCaml and gives cross-compilation +for free. +""" +maintainer: ["Jane Street Group, LLC "] +authors: ["Jane Street Group, LLC "] +license: "MIT" +homepage: "https://github.com/ocaml/dune" +doc: "https://dune.readthedocs.io/" +bug-reports: "https://github.com/ocaml/dune/issues" +depends: [ + "ocaml" {>= "4.02"} + "base-unix" + "base-threads" +] +conflicts: [ + "jbuilder" {!= "transition"} + "odoc" {< "1.3.0"} + "dune-release" {< "1.3.0"} +] +dev-repo: "git+https://github.com/ocaml/dune.git" +build: [ + # opam 2 sets OPAM_SWITCH_PREFIX, so we don't need a hardcoded path + ["ocaml" "configure.ml" "--libdir" lib] {opam-version < "2"} + ["ocaml" "bootstrap.ml"] + ["./boot.exe" "--release" "--subst"] {pinned} + ["./boot.exe" "--release" "-j" jobs] +] +url { + src: + "https://github.com/ocaml/dune/releases/download/1.11.2/dune-build-info-1.11.2.tbz" + checksum: [ + "sha256=5bc5a6b505bbc24ea5ee4f7fb5d4c5c914016961eacf1ae688d3f00c893bda23" + "sha512=e5af097d022cedda0b27224504a3533a2e2e0f6f63d2f52686418fbff849d295a94da4980391a1b1a111ce6b037a14a2241b50d4ba00625a16f025e0c4eeaac0" + ] +}