forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[new release] dune (15 packages) (3.9.0)
CHANGES: - Validate file extension for `$ dune ocaml top-module`. (ocaml/dune#8005, fixes ocaml/dune#8004, @3Rafal) - Include the time it takes to read/write state files when `--trace-file` is enabled (ocaml/dune#7960, @rgrinberg) - Add `dune show` command group which is an alias of `dune describe`. (ocaml/dune#7946, @Alizter) - Include source tree scans in the traces produced by `--trace-file` (ocaml/dune#7937, @rgrinberg) - Cinaps: The promotion rules for cinaps would only offer one file at a time no matter how many promotions were available. Now we offer all the promotions at once (ocaml/dune#7901, @rgrinberg) - Do not re-run OCaml syntax files on every iteration of the watch mode. This is too memory consuming. (ocaml/dune#7894, fix ocaml/dune#6900, @rgrinberg) - Add `--all` option to `dune rpc status` to show all Dune RPC servers running. (ocaml/dune#8011, fix ocaml/dune#7902, @Alizter) - Remove some compatibility code for old version of dune that generated `.merlin` files. Now dune will never remove `.merlin` files automatically (ocaml/dune#7562) - Add `dune show env` command and make `dune printenv` an alias of it. (ocaml/dune#7985, @Alizter) - Add additional metadata to the traces provided by `--trace-file` whenever `--trace-extended` is passed (ocaml/dune#7778, @rleshchinskiy) - Extensions used in `(dialect)` can contain periods (e.g., `cppo.ml`). (ocaml/dune#7782, fixes ocaml/dune#7777, @nojb) - Allow `(include_subdirs qualified)` to be used when libraries define a `(modules ...)` field (ocaml/dune#7797, fixes ocaml/dune#7597, @anmonteiro) - `$ dune describe` is now a command group, so arguments to subcommands must be passed after subcommand itself. (ocaml/dune#7919, @Alizter) - The `interface` and `implementation` fields of a `(dialect)` are now optional (ocaml/dune#7757, @gpetiot) - Add commands `dune show targets` and `dune show aliases` that display all the available targets and aliases in a given directory respectively. (ocaml/dune#7770, grants ocaml/dune#265, @Alizter) - Allow multiple globs in library's `(stdlib (internal_modules ..))` (@anmonteiro, ocaml/dune#7878) - Attach melange rules to the default alias (ocaml/dune#7926, @haochenx) - In opam constraints, reject `(and)` and `(or)` with no arguments at parse time (ocaml/dune#7730, @emillon) - Compute digests and manage sandboxes in background threads (ocaml/dune#7947, @rgrinberg) - Add `(build_if)` to the `(test)` stanza. When it evaluates to false, the executable is not built. (ocaml/dune#7899, fixes ocaml/dune#6938, @emillon) - Add necessary parentheses in generated opam constraints (ocaml/dune#7682, fixes ocaml/dune#3431, @Lucccyo)
- Loading branch information
Showing
15 changed files
with
659 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
opam-version: "2.0" | ||
synopsis: "Chrome trace event generation library" | ||
description: | ||
"This library offers no backwards compatibility guarantees. Use at your own risk." | ||
maintainer: ["Jane Street Group, LLC <[email protected]>"] | ||
authors: ["Jane Street Group, LLC <[email protected]>"] | ||
license: "MIT" | ||
homepage: "https://github.com/ocaml/dune" | ||
doc: "https://dune.readthedocs.io/" | ||
bug-reports: "https://github.com/ocaml/dune/issues" | ||
depends: [ | ||
"dune" {>= "3.5"} | ||
"ocaml" {>= "4.08.0"} | ||
"odoc" {with-doc} | ||
] | ||
dev-repo: "git+https://github.com/ocaml/dune.git" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
["rm" "-rf" "vendor/csexp"] | ||
["rm" "-rf" "vendor/pp"] | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@doc" {with-doc} | ||
] | ||
] | ||
url { | ||
src: "https://github.com/ocaml/dune/releases/download/3.9.0/dune-3.9.0.tbz" | ||
checksum: [ | ||
"sha256=c4825a9de454aedf450c2db25ac353033e31d326a9d1b4b7a2cd7260639bd544" | ||
"sha512=55d83bfee7c741cb5b74187674f9ef992ddf0b149f8d22a0a392c4c8ddf1075e9192eebd81cf36c115331cd96e10824100c6c338835d26c25e965e68ed94673d" | ||
] | ||
} | ||
x-commit-hash: "891fa5a7d72655634378425d51a1cf703ff93336" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
opam-version: "2.0" | ||
synopsis: "[experimental] API for writing dynamic Dune actions" | ||
description: """ | ||
|
||
This library is experimental. No backwards compatibility is implied. | ||
|
||
dune-action-plugin provides an API for writing dynamic Dune actions. | ||
Dynamic dune actions do not need to declare their dependencies | ||
upfront; they are instead discovered automatically during the | ||
execution of the action. | ||
""" | ||
maintainer: ["Jane Street Group, LLC <[email protected]>"] | ||
authors: ["Jane Street Group, LLC <[email protected]>"] | ||
license: "MIT" | ||
homepage: "https://github.com/ocaml/dune" | ||
doc: "https://dune.readthedocs.io/" | ||
bug-reports: "https://github.com/ocaml/dune/issues" | ||
depends: [ | ||
"dune" {>= "3.5"} | ||
"dune-glob" {= version} | ||
"csexp" {>= "1.5.0"} | ||
"ppx_expect" {with-test} | ||
"stdune" {= version} | ||
"dune-private-libs" {= version} | ||
"dune-rpc" {= version} | ||
"base-unix" | ||
"odoc" {with-doc} | ||
] | ||
dev-repo: "git+https://github.com/ocaml/dune.git" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
["rm" "-rf" "vendor/csexp"] | ||
["rm" "-rf" "vendor/pp"] | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@doc" {with-doc} | ||
] | ||
] | ||
url { | ||
src: "https://github.com/ocaml/dune/releases/download/3.9.0/dune-3.9.0.tbz" | ||
checksum: [ | ||
"sha256=c4825a9de454aedf450c2db25ac353033e31d326a9d1b4b7a2cd7260639bd544" | ||
"sha512=55d83bfee7c741cb5b74187674f9ef992ddf0b149f8d22a0a392c4c8ddf1075e9192eebd81cf36c115331cd96e10824100c6c338835d26c25e965e68ed94673d" | ||
] | ||
} | ||
x-commit-hash: "891fa5a7d72655634378425d51a1cf703ff93336" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
opam-version: "2.0" | ||
synopsis: "Embed build information 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 <[email protected]>"] | ||
authors: ["Jane Street Group, LLC <[email protected]>"] | ||
license: "MIT" | ||
homepage: "https://github.com/ocaml/dune" | ||
doc: "https://dune.readthedocs.io/" | ||
bug-reports: "https://github.com/ocaml/dune/issues" | ||
depends: [ | ||
"dune" {>= "3.5"} | ||
"ocaml" {>= "4.08"} | ||
"odoc" {with-doc} | ||
] | ||
dev-repo: "git+https://github.com/ocaml/dune.git" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
["rm" "-rf" "vendor/csexp"] | ||
["rm" "-rf" "vendor/pp"] | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@doc" {with-doc} | ||
] | ||
] | ||
url { | ||
src: "https://github.com/ocaml/dune/releases/download/3.9.0/dune-3.9.0.tbz" | ||
checksum: [ | ||
"sha256=c4825a9de454aedf450c2db25ac353033e31d326a9d1b4b7a2cd7260639bd544" | ||
"sha512=55d83bfee7c741cb5b74187674f9ef992ddf0b149f8d22a0a392c4c8ddf1075e9192eebd81cf36c115331cd96e10824100c6c338835d26c25e965e68ed94673d" | ||
] | ||
} | ||
x-commit-hash: "891fa5a7d72655634378425d51a1cf703ff93336" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
opam-version: "2.0" | ||
synopsis: "Helper library for gathering system configuration" | ||
description: """ | ||
dune-configurator is a small library that helps writing OCaml scripts that | ||
test features available on the system, in order to generate config.h | ||
files for instance. | ||
Among other things, dune-configurator allows one to: | ||
- test if a C program compiles | ||
- query pkg-config | ||
- import #define from OCaml header files | ||
- generate config.h file | ||
""" | ||
maintainer: ["Jane Street Group, LLC <[email protected]>"] | ||
authors: ["Jane Street Group, LLC <[email protected]>"] | ||
license: "MIT" | ||
homepage: "https://github.com/ocaml/dune" | ||
doc: "https://dune.readthedocs.io/" | ||
bug-reports: "https://github.com/ocaml/dune/issues" | ||
depends: [ | ||
"dune" {>= "3.5"} | ||
"ocaml" {>= "4.04.0"} | ||
"base-unix" | ||
"csexp" {>= "1.5.0"} | ||
"odoc" {with-doc} | ||
] | ||
dev-repo: "git+https://github.com/ocaml/dune.git" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
["rm" "-rf" "vendor/csexp"] | ||
["rm" "-rf" "vendor/pp"] | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@doc" {with-doc} | ||
] | ||
] | ||
url { | ||
src: "https://github.com/ocaml/dune/releases/download/3.9.0/dune-3.9.0.tbz" | ||
checksum: [ | ||
"sha256=c4825a9de454aedf450c2db25ac353033e31d326a9d1b4b7a2cd7260639bd544" | ||
"sha512=55d83bfee7c741cb5b74187674f9ef992ddf0b149f8d22a0a392c4c8ddf1075e9192eebd81cf36c115331cd96e10824100c6c338835d26c25e965e68ed94673d" | ||
] | ||
} | ||
x-commit-hash: "891fa5a7d72655634378425d51a1cf703ff93336" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
opam-version: "2.0" | ||
synopsis: "Glob string matching language supported by dune" | ||
description: | ||
"dune-glob provides a parser and interpreter for globs as understood by dune language." | ||
maintainer: ["Jane Street Group, LLC <[email protected]>"] | ||
authors: ["Jane Street Group, LLC <[email protected]>"] | ||
license: "MIT" | ||
homepage: "https://github.com/ocaml/dune" | ||
doc: "https://dune.readthedocs.io/" | ||
bug-reports: "https://github.com/ocaml/dune/issues" | ||
depends: [ | ||
"dune" {>= "3.5"} | ||
"stdune" {= version} | ||
"dyn" | ||
"ordering" | ||
"dune-private-libs" {= version} | ||
"odoc" {with-doc} | ||
] | ||
dev-repo: "git+https://github.com/ocaml/dune.git" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
["rm" "-rf" "vendor/csexp"] | ||
["rm" "-rf" "vendor/pp"] | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@doc" {with-doc} | ||
] | ||
] | ||
url { | ||
src: "https://github.com/ocaml/dune/releases/download/3.9.0/dune-3.9.0.tbz" | ||
checksum: [ | ||
"sha256=c4825a9de454aedf450c2db25ac353033e31d326a9d1b4b7a2cd7260639bd544" | ||
"sha512=55d83bfee7c741cb5b74187674f9ef992ddf0b149f8d22a0a392c4c8ddf1075e9192eebd81cf36c115331cd96e10824100c6c338835d26c25e965e68ed94673d" | ||
] | ||
} | ||
x-commit-hash: "891fa5a7d72655634378425d51a1cf703ff93336" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
opam-version: "2.0" | ||
synopsis: "Private libraries of Dune" | ||
description: """ | ||
!!!!!!!!!!!!!!!!!!!!!! | ||
!!!!! DO NOT USE !!!!! | ||
!!!!!!!!!!!!!!!!!!!!!! | ||
|
||
This package contains code that is shared between various dune-xxx | ||
packages. However, it is not meant for public consumption and provides | ||
no stability guarantee. | ||
""" | ||
maintainer: ["Jane Street Group, LLC <[email protected]>"] | ||
authors: ["Jane Street Group, LLC <[email protected]>"] | ||
license: "MIT" | ||
homepage: "https://github.com/ocaml/dune" | ||
doc: "https://dune.readthedocs.io/" | ||
bug-reports: "https://github.com/ocaml/dune/issues" | ||
depends: [ | ||
"dune" {>= "3.5"} | ||
"csexp" {>= "1.5.0"} | ||
"pp" {>= "1.1.0"} | ||
"dyn" {= version} | ||
"stdune" {= version} | ||
"ocaml" {>= "4.08"} | ||
"odoc" {with-doc} | ||
] | ||
dev-repo: "git+https://github.com/ocaml/dune.git" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
["rm" "-rf" "vendor/csexp"] | ||
["rm" "-rf" "vendor/pp"] | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@doc" {with-doc} | ||
] | ||
] | ||
url { | ||
src: "https://github.com/ocaml/dune/releases/download/3.9.0/dune-3.9.0.tbz" | ||
checksum: [ | ||
"sha256=c4825a9de454aedf450c2db25ac353033e31d326a9d1b4b7a2cd7260639bd544" | ||
"sha512=55d83bfee7c741cb5b74187674f9ef992ddf0b149f8d22a0a392c4c8ddf1075e9192eebd81cf36c115331cd96e10824100c6c338835d26c25e965e68ed94673d" | ||
] | ||
} | ||
x-commit-hash: "891fa5a7d72655634378425d51a1cf703ff93336" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
opam-version: "2.0" | ||
synopsis: "Communicate with dune using rpc and Lwt" | ||
description: "Specialization of dune-rpc to Lwt" | ||
maintainer: ["Jane Street Group, LLC <[email protected]>"] | ||
authors: ["Jane Street Group, LLC <[email protected]>"] | ||
license: "MIT" | ||
homepage: "https://github.com/ocaml/dune" | ||
doc: "https://dune.readthedocs.io/" | ||
bug-reports: "https://github.com/ocaml/dune/issues" | ||
depends: [ | ||
"dune" {>= "3.5"} | ||
"dune-rpc" {= version} | ||
"result" {>= "1.5"} | ||
"csexp" {>= "1.5.0"} | ||
"lwt" {>= "5.3.0"} | ||
"base-unix" | ||
"odoc" {with-doc} | ||
] | ||
dev-repo: "git+https://github.com/ocaml/dune.git" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
["rm" "-rf" "vendor/csexp"] | ||
["rm" "-rf" "vendor/pp"] | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@doc" {with-doc} | ||
] | ||
] | ||
url { | ||
src: "https://github.com/ocaml/dune/releases/download/3.9.0/dune-3.9.0.tbz" | ||
checksum: [ | ||
"sha256=c4825a9de454aedf450c2db25ac353033e31d326a9d1b4b7a2cd7260639bd544" | ||
"sha512=55d83bfee7c741cb5b74187674f9ef992ddf0b149f8d22a0a392c4c8ddf1075e9192eebd81cf36c115331cd96e10824100c6c338835d26c25e965e68ed94673d" | ||
] | ||
} | ||
x-commit-hash: "891fa5a7d72655634378425d51a1cf703ff93336" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
opam-version: "2.0" | ||
synopsis: "Communicate with dune using rpc" | ||
description: "Library to connect and control a running dune instance" | ||
maintainer: ["Jane Street Group, LLC <[email protected]>"] | ||
authors: ["Jane Street Group, LLC <[email protected]>"] | ||
license: "MIT" | ||
homepage: "https://github.com/ocaml/dune" | ||
doc: "https://dune.readthedocs.io/" | ||
bug-reports: "https://github.com/ocaml/dune/issues" | ||
depends: [ | ||
"dune" {>= "3.5"} | ||
"csexp" | ||
"ordering" | ||
"dyn" | ||
"xdg" | ||
"stdune" {= version} | ||
"pp" {>= "1.1.0"} | ||
"odoc" {with-doc} | ||
] | ||
dev-repo: "git+https://github.com/ocaml/dune.git" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
["rm" "-rf" "vendor/csexp"] | ||
["rm" "-rf" "vendor/pp"] | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@doc" {with-doc} | ||
] | ||
] | ||
url { | ||
src: "https://github.com/ocaml/dune/releases/download/3.9.0/dune-3.9.0.tbz" | ||
checksum: [ | ||
"sha256=c4825a9de454aedf450c2db25ac353033e31d326a9d1b4b7a2cd7260639bd544" | ||
"sha512=55d83bfee7c741cb5b74187674f9ef992ddf0b149f8d22a0a392c4c8ddf1075e9192eebd81cf36c115331cd96e10824100c6c338835d26c25e965e68ed94673d" | ||
] | ||
} | ||
x-commit-hash: "891fa5a7d72655634378425d51a1cf703ff93336" |
Oops, something went wrong.