Skip to content

Commit 26052da

Browse files
committed
[new release] dune-build-info, dune, dune-configurator, dune-site, dune-action-plugin, dune-private-libs and dune-glob (2.8.3)
CHANGES: - Make `patdiff` show refined diffs (ocaml/dune#4257, fixes ocaml/dune#4254, @hakuch) - Fixed a bug that could result in needless recompilation under Windows due to case differences in the result of `Sys.getcwd` (observed under `emacs`). (ocaml/dune#3966, @nojb). - Restore compatibility with Coq < 8.10 for coq-lang < 0.3 , document that `(using coq 0.3)` does require Coq 8.10 at least (ocaml/dune#4224, fixes ocaml/dune#4142, @ejgallego) - Add a META rule for 'compiler-libs.native-toplevel' (ocaml/dune#4175, @AltGr) - No longer call `chmod` on symbolic links (fixes ocaml/dune#4195, @dannywillems) - Dune no longer automatically create or edit `dune-project` files (ocaml/dune#4239, fixes ocaml/dune#4108, @jeremiedimino) - Have `dune` communicate the location of the standard library directory to `merlin` (ocaml/dune#4211, fixes ocaml/dune#4188, @nojb) - Workaround incorrect exception raised by Unix.utimes (OCaml PR#8857) in Path.touch on Windows (ocaml/dune#4223, @dra27) - `dune ocaml-merlin` is now able to provide configuration for source files in the `_build` directory. (ocaml/dune#4274, @voodoos) - Automatically delete left-over Merlin files when rebuilding for the first time a project previously built with Dune `<= 2.7`. (ocaml/dune#4261, @voodoos, @aalekseyev) - Fix `ppx.exe` being compiled for the wrong target when cross-compiling (ocaml/dune#3751, fixes ocaml/dune#3698, @toots) - `dune top` correctly escapes the generated toplevel directives, and make it easier for `dune top` to locate C stubs associated to concerned libraries. (ocaml/dune#4242, fixes ocaml/dune#4231, @nojb) - Do not pass include directories containing native objects when compiling bytecode (ocaml/dune#4200, @nojb)
1 parent 3c1e5ca commit 26052da

File tree

7 files changed

+309
-0
lines changed
  • packages
    • dune/dune.2.8.3
    • dune-action-plugin/dune-action-plugin.2.8.3
    • dune-build-info/dune-build-info.2.8.3
    • dune-configurator/dune-configurator.2.8.3
    • dune-glob/dune-glob.2.8.3
    • dune-private-libs/dune-private-libs.2.8.3
    • dune-site/dune-site.2.8.3

7 files changed

+309
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
opam-version: "2.0"
2+
synopsis: "[experimental] API for writing dynamic Dune actions"
3+
description: """
4+
5+
This library is experimental. No backwards compatibility is implied.
6+
7+
dune-action-plugin provides an API for writing dynamic Dune actions.
8+
Dynamic dune actions do not need to declare their dependencies
9+
upfront; they are instead discovered automatically during the
10+
execution of the action.
11+
"""
12+
maintainer: ["Jane Street Group, LLC <opensource@janestreet.com>"]
13+
authors: ["Jane Street Group, LLC <opensource@janestreet.com>"]
14+
license: "MIT"
15+
homepage: "https://github.com/ocaml/dune"
16+
doc: "https://dune.readthedocs.io/"
17+
bug-reports: "https://github.com/ocaml/dune/issues"
18+
depends: [
19+
"dune" {>= "2.8"}
20+
"dune-glob"
21+
"ppx_expect" {with-test}
22+
"dune-private-libs" {= version}
23+
"odoc" {with-doc}
24+
]
25+
dev-repo: "git+https://github.com/ocaml/dune.git"
26+
build: [
27+
["dune" "subst"] {dev}
28+
[
29+
"dune"
30+
"build"
31+
"-p"
32+
name
33+
"-j"
34+
jobs
35+
"@install"
36+
"@doc" {with-doc}
37+
]
38+
]
39+
x-commit-hash: "afc891abda455a87fc7e968f706ab65c822d7122"
40+
url {
41+
src: "https://github.com/ocaml/dune/releases/download/2.8.3/dune-2.8.3.tbz"
42+
checksum: [
43+
"sha256=67a8c5a048bb13bccb39149bedc4704376ffdbe7a27f19d6fc58e3cf6d124de8"
44+
"sha512=fed134a978a86f9ed0cd007853291d8e072f67ba16197b033693fd32b19f44c6fa0ee370afda260b541944b1bf1dc3f8427618e2ab86e787ad784a30bed91aa3"
45+
]
46+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
opam-version: "2.0"
2+
synopsis: "Embed build informations inside executable"
3+
description: """
4+
The build-info library allows to access information about how the
5+
executable was built, such as the version of the project at which it
6+
was built or the list of statically linked libraries with their
7+
versions. It supports reporting the version from the version control
8+
system during development to get an precise reference of when the
9+
executable was built.
10+
"""
11+
maintainer: ["Jane Street Group, LLC <opensource@janestreet.com>"]
12+
authors: ["Jane Street Group, LLC <opensource@janestreet.com>"]
13+
license: "MIT"
14+
homepage: "https://github.com/ocaml/dune"
15+
doc: "https://dune.readthedocs.io/"
16+
bug-reports: "https://github.com/ocaml/dune/issues"
17+
depends: [
18+
"dune" {>= "2.8"}
19+
"odoc" {with-doc}
20+
]
21+
dev-repo: "git+https://github.com/ocaml/dune.git"
22+
build: [
23+
["dune" "subst"] {dev}
24+
[
25+
"dune"
26+
"build"
27+
"-p"
28+
name
29+
"-j"
30+
jobs
31+
"@install"
32+
"@doc" {with-doc}
33+
]
34+
]
35+
x-commit-hash: "afc891abda455a87fc7e968f706ab65c822d7122"
36+
url {
37+
src: "https://github.com/ocaml/dune/releases/download/2.8.3/dune-2.8.3.tbz"
38+
checksum: [
39+
"sha256=67a8c5a048bb13bccb39149bedc4704376ffdbe7a27f19d6fc58e3cf6d124de8"
40+
"sha512=fed134a978a86f9ed0cd007853291d8e072f67ba16197b033693fd32b19f44c6fa0ee370afda260b541944b1bf1dc3f8427618e2ab86e787ad784a30bed91aa3"
41+
]
42+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
opam-version: "2.0"
2+
synopsis: "Helper library for gathering system configuration"
3+
description: """
4+
dune-configurator is a small library that helps writing OCaml scripts that
5+
test features available on the system, in order to generate config.h
6+
files for instance.
7+
Among other things, dune-configurator allows one to:
8+
- test if a C program compiles
9+
- query pkg-config
10+
- import #define from OCaml header files
11+
- generate config.h file
12+
"""
13+
maintainer: ["Jane Street Group, LLC <opensource@janestreet.com>"]
14+
authors: ["Jane Street Group, LLC <opensource@janestreet.com>"]
15+
license: "MIT"
16+
homepage: "https://github.com/ocaml/dune"
17+
doc: "https://dune.readthedocs.io/"
18+
bug-reports: "https://github.com/ocaml/dune/issues"
19+
depends: [
20+
"dune" {>= "2.8"}
21+
"ocaml" {>= "4.03.0"}
22+
"result"
23+
"csexp" {>= "1.3.0"}
24+
"odoc" {with-doc}
25+
]
26+
dev-repo: "git+https://github.com/ocaml/dune.git"
27+
build: [
28+
["dune" "subst"] {dev}
29+
[
30+
"dune"
31+
"build"
32+
"-p"
33+
name
34+
"-j"
35+
jobs
36+
"@install"
37+
"@doc" {with-doc}
38+
]
39+
]
40+
x-commit-hash: "afc891abda455a87fc7e968f706ab65c822d7122"
41+
url {
42+
src: "https://github.com/ocaml/dune/releases/download/2.8.3/dune-2.8.3.tbz"
43+
checksum: [
44+
"sha256=67a8c5a048bb13bccb39149bedc4704376ffdbe7a27f19d6fc58e3cf6d124de8"
45+
"sha512=fed134a978a86f9ed0cd007853291d8e072f67ba16197b033693fd32b19f44c6fa0ee370afda260b541944b1bf1dc3f8427618e2ab86e787ad784a30bed91aa3"
46+
]
47+
}
+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
opam-version: "2.0"
2+
synopsis: "Glob string matching language supported by dune"
3+
description:
4+
"dune-glob provides a parser and interpreter for globs as understood by dune language."
5+
maintainer: ["Jane Street Group, LLC <opensource@janestreet.com>"]
6+
authors: ["Jane Street Group, LLC <opensource@janestreet.com>"]
7+
license: "MIT"
8+
homepage: "https://github.com/ocaml/dune"
9+
doc: "https://dune.readthedocs.io/"
10+
bug-reports: "https://github.com/ocaml/dune/issues"
11+
depends: [
12+
"dune" {>= "2.8"}
13+
"dune-private-libs" {= version}
14+
"odoc" {with-doc}
15+
]
16+
dev-repo: "git+https://github.com/ocaml/dune.git"
17+
build: [
18+
["dune" "subst"] {dev}
19+
[
20+
"dune"
21+
"build"
22+
"-p"
23+
name
24+
"-j"
25+
jobs
26+
"@install"
27+
"@doc" {with-doc}
28+
]
29+
]
30+
x-commit-hash: "afc891abda455a87fc7e968f706ab65c822d7122"
31+
url {
32+
src: "https://github.com/ocaml/dune/releases/download/2.8.3/dune-2.8.3.tbz"
33+
checksum: [
34+
"sha256=67a8c5a048bb13bccb39149bedc4704376ffdbe7a27f19d6fc58e3cf6d124de8"
35+
"sha512=fed134a978a86f9ed0cd007853291d8e072f67ba16197b033693fd32b19f44c6fa0ee370afda260b541944b1bf1dc3f8427618e2ab86e787ad784a30bed91aa3"
36+
]
37+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
opam-version: "2.0"
2+
synopsis: "Private libraries of Dune"
3+
description: """
4+
!!!!!!!!!!!!!!!!!!!!!!
5+
!!!!! DO NOT USE !!!!!
6+
!!!!!!!!!!!!!!!!!!!!!!
7+
8+
This package contains code that is shared between various dune-xxx
9+
packages. However, it is not meant for public consumption and provides
10+
no stability guarantee.
11+
"""
12+
maintainer: ["Jane Street Group, LLC <opensource@janestreet.com>"]
13+
authors: ["Jane Street Group, LLC <opensource@janestreet.com>"]
14+
license: "MIT"
15+
homepage: "https://github.com/ocaml/dune"
16+
doc: "https://dune.readthedocs.io/"
17+
bug-reports: "https://github.com/ocaml/dune/issues"
18+
depends: [
19+
"dune" {>= "2.8"}
20+
"ocaml" {>= "4.08"}
21+
"odoc" {with-doc}
22+
]
23+
dev-repo: "git+https://github.com/ocaml/dune.git"
24+
build: [
25+
["dune" "subst"] {dev}
26+
[
27+
"dune"
28+
"build"
29+
"-p"
30+
name
31+
"-j"
32+
jobs
33+
"@install"
34+
"@doc" {with-doc}
35+
]
36+
]
37+
x-commit-hash: "afc891abda455a87fc7e968f706ab65c822d7122"
38+
url {
39+
src: "https://github.com/ocaml/dune/releases/download/2.8.3/dune-2.8.3.tbz"
40+
checksum: [
41+
"sha256=67a8c5a048bb13bccb39149bedc4704376ffdbe7a27f19d6fc58e3cf6d124de8"
42+
"sha512=fed134a978a86f9ed0cd007853291d8e072f67ba16197b033693fd32b19f44c6fa0ee370afda260b541944b1bf1dc3f8427618e2ab86e787ad784a30bed91aa3"
43+
]
44+
}
+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
opam-version: "2.0"
2+
synopsis: "Embed locations informations inside executable and libraries"
3+
maintainer: ["Jane Street Group, LLC <opensource@janestreet.com>"]
4+
authors: ["Jane Street Group, LLC <opensource@janestreet.com>"]
5+
license: "MIT"
6+
homepage: "https://github.com/ocaml/dune"
7+
doc: "https://dune.readthedocs.io/"
8+
bug-reports: "https://github.com/ocaml/dune/issues"
9+
depends: [
10+
"dune" {>= "2.8"}
11+
"dune-private-libs" {= version}
12+
"odoc" {with-doc}
13+
]
14+
dev-repo: "git+https://github.com/ocaml/dune.git"
15+
build: [
16+
["dune" "subst"] {dev}
17+
[
18+
"dune"
19+
"build"
20+
"-p"
21+
name
22+
"-j"
23+
jobs
24+
"@install"
25+
"@doc" {with-doc}
26+
]
27+
]
28+
x-commit-hash: "afc891abda455a87fc7e968f706ab65c822d7122"
29+
url {
30+
src: "https://github.com/ocaml/dune/releases/download/2.8.3/dune-2.8.3.tbz"
31+
checksum: [
32+
"sha256=67a8c5a048bb13bccb39149bedc4704376ffdbe7a27f19d6fc58e3cf6d124de8"
33+
"sha512=fed134a978a86f9ed0cd007853291d8e072f67ba16197b033693fd32b19f44c6fa0ee370afda260b541944b1bf1dc3f8427618e2ab86e787ad784a30bed91aa3"
34+
]
35+
}

packages/dune/dune.2.8.3/opam

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
opam-version: "2.0"
2+
synopsis: "Fast, portable, and opinionated build system"
3+
description: """
4+
5+
dune is a build system that was designed to simplify the release of
6+
Jane Street packages. It reads metadata from "dune" files following a
7+
very simple s-expression syntax.
8+
9+
dune is fast, has very low-overhead, and supports parallel builds on
10+
all platforms. It has no system dependencies; all you need to build
11+
dune or packages using dune is OCaml. You don't need make or bash
12+
as long as the packages themselves don't use bash explicitly.
13+
14+
dune supports multi-package development by simply dropping multiple
15+
repositories into the same directory.
16+
17+
It also supports multi-context builds, such as building against
18+
several opam roots/switches simultaneously. This helps maintaining
19+
packages across several versions of OCaml and gives cross-compilation
20+
for free.
21+
"""
22+
maintainer: ["Jane Street Group, LLC <opensource@janestreet.com>"]
23+
authors: ["Jane Street Group, LLC <opensource@janestreet.com>"]
24+
license: "MIT"
25+
homepage: "https://github.com/ocaml/dune"
26+
doc: "https://dune.readthedocs.io/"
27+
bug-reports: "https://github.com/ocaml/dune/issues"
28+
conflicts: [
29+
"merlin" {< "3.4.0"}
30+
"ocaml-lsp-server" {< "1.3.0"}
31+
"dune-configurator" {< "2.3.0"}
32+
"odoc" {< "1.3.0"}
33+
"dune-release" {< "1.3.0"}
34+
"js_of_ocaml-compiler" {< "3.6.0"}
35+
"jbuilder" {= "transition"}
36+
]
37+
dev-repo: "git+https://github.com/ocaml/dune.git"
38+
build: [
39+
# opam 2 sets OPAM_SWITCH_PREFIX, so we don't need a hardcoded path
40+
["ocaml" "configure.ml" "--libdir" lib] {opam-version < "2"}
41+
["ocaml" "bootstrap.ml" "-j" jobs]
42+
["./dune.exe" "build" "-p" name "--profile" "dune-bootstrap" "-j" jobs]
43+
]
44+
depends: [
45+
# Please keep the lower bound in sync with .github/workflows/workflow.yml,
46+
# dune-project and min_ocaml_version in bootstrap.ml
47+
("ocaml" {>= "4.08"} | ("ocaml" {< "4.08~~"} & "ocamlfind-secondary"))
48+
"base-unix"
49+
"base-threads"
50+
]
51+
x-commit-hash: "afc891abda455a87fc7e968f706ab65c822d7122"
52+
url {
53+
src: "https://github.com/ocaml/dune/releases/download/2.8.3/dune-2.8.3.tbz"
54+
checksum: [
55+
"sha256=67a8c5a048bb13bccb39149bedc4704376ffdbe7a27f19d6fc58e3cf6d124de8"
56+
"sha512=fed134a978a86f9ed0cd007853291d8e072f67ba16197b033693fd32b19f44c6fa0ee370afda260b541944b1bf1dc3f8427618e2ab86e787ad784a30bed91aa3"
57+
]
58+
}

0 commit comments

Comments
 (0)