Opam: update package description to opam.2.0
Co-authored-by: Pietro Abate <pietro.abate@nomadic-labs.com> Co-authored-by: Gregoire Henry <gregoire.henry@tezos.com>
This commit is contained in:
parent
de171a63f0
commit
dbf4736e6b
@ -42,7 +42,7 @@ cleanup () {
|
|||||||
rm -rf "$tmp_dir"
|
rm -rf "$tmp_dir"
|
||||||
rm -rf Dockerfile
|
rm -rf Dockerfile
|
||||||
}
|
}
|
||||||
# trap cleanup EXIT INT
|
trap cleanup EXIT INT
|
||||||
|
|
||||||
script_dir="$(cd "$(dirname "$0")" && echo "$(pwd -P)/")"
|
script_dir="$(cd "$(dirname "$0")" && echo "$(pwd -P)/")"
|
||||||
src_dir="$(dirname "$script_dir")"
|
src_dir="$(dirname "$script_dir")"
|
||||||
@ -71,12 +71,12 @@ for opam in $opams; do
|
|||||||
## install`), so we manually remove the tag the most
|
## install`), so we manually remove the tag the most
|
||||||
## ugliest-possible way...
|
## ugliest-possible way...
|
||||||
|
|
||||||
sed -e "s/{ *test *}//" \
|
sed -e "s/{ *with-test *}//" \
|
||||||
-e "s/test \& //" \
|
-e "s/with-test \& //" \
|
||||||
-e "s/\& test//" \
|
-e "s/\& with-test//" \
|
||||||
-e "s/{ *doc *}//" \
|
-e "s/{ *with-doc *}//" \
|
||||||
-e "s/doc \& //" \
|
-e "s/with-doc \& //" \
|
||||||
-e "s/\& doc//" \
|
-e "s/\& with-doc//" \
|
||||||
$opam > "$tmp_dir"/packages/$package/$package.dev/opam
|
$opam > "$tmp_dir"/packages/$package/$package.dev/opam
|
||||||
|
|
||||||
done
|
done
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -18,12 +17,12 @@ depends: [
|
|||||||
"tezos-baking-alpha-commands"
|
"tezos-baking-alpha-commands"
|
||||||
"tezos-client-base-unix"
|
"tezos-client-base-unix"
|
||||||
"tezos-signer-backends"
|
"tezos-signer-backends"
|
||||||
"tezos-node" { test }
|
"tezos-node" { with-test }
|
||||||
"tezos-protocol-compiler" { test }
|
"tezos-protocol-compiler" { with-test }
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -23,6 +22,6 @@ depends: [
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -21,6 +20,6 @@ depends: [
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -24,6 +23,6 @@ depends: [
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -15,6 +14,6 @@ depends: [
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -21,6 +20,6 @@ depends: [
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -19,6 +18,6 @@ depends: [
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -18,6 +17,6 @@ depends: [
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -20,11 +19,11 @@ depends: [
|
|||||||
"zarith"
|
"zarith"
|
||||||
"secp256k1"
|
"secp256k1"
|
||||||
"uecc"
|
"uecc"
|
||||||
"alcotest" { test & >= "0.8.3" }
|
"alcotest" { with-test & >= "0.8.3" }
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -14,12 +13,12 @@ depends: [
|
|||||||
"ocplib-json-typed"
|
"ocplib-json-typed"
|
||||||
"ocplib-json-typed-bson"
|
"ocplib-json-typed-bson"
|
||||||
"ocplib-endian"
|
"ocplib-endian"
|
||||||
"alcotest" { test }
|
"alcotest" { with-test }
|
||||||
"crowbar" { test }
|
"crowbar" { with-test }
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -16,6 +15,6 @@ depends: [
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -16,6 +15,6 @@ depends: [
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -12,11 +11,11 @@ depends: [
|
|||||||
"tezos-base"
|
"tezos-base"
|
||||||
"tezos-stdlib-unix"
|
"tezos-stdlib-unix"
|
||||||
"tezos-shell-services"
|
"tezos-shell-services"
|
||||||
"alcotest-lwt" { test }
|
"alcotest-lwt" { with-test }
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
|
## ocaml should be in sync with `script/version.sh`
|
||||||
|
"ocaml" { = "4.06.1" }
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
"dune" { build & >= "1.0.1" }
|
"dune" { build & >= "1.0.1" }
|
||||||
"base-unix"
|
"base-unix"
|
||||||
@ -19,8 +20,6 @@ depends: [
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
## ocaml-version should be in sync with `script/version.sh`
|
|
||||||
available: [ ocaml-version = "4.06.1" ]
|
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -16,6 +15,6 @@ depends: [
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,19 +1,18 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
"dune" { build & >= "1.0.1" }
|
"dune" { build & >= "1.0.1" }
|
||||||
"tezos-stdlib" { test }
|
"tezos-stdlib" { with-test }
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,21 +1,20 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
"dune" { build & >= "1.0.1" }
|
"dune" { build & >= "1.0.1" }
|
||||||
"tezos-base"
|
"tezos-base"
|
||||||
"tezos-protocol-environment-sigs"
|
"tezos-protocol-environment-sigs"
|
||||||
"alcotest-lwt" { test }
|
"alcotest-lwt" { with-test }
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -20,6 +19,6 @@ depends: [
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -17,6 +16,6 @@ depends: [
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -16,6 +15,6 @@ depends: [
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -15,14 +14,14 @@ depends: [
|
|||||||
"tezos-shell-services"
|
"tezos-shell-services"
|
||||||
"tezos-protocol-updater"
|
"tezos-protocol-updater"
|
||||||
"tezos-validation"
|
"tezos-validation"
|
||||||
"alcotest-lwt" { test }
|
"alcotest-lwt" { with-test }
|
||||||
"tezos-embedded-protocol-demo" { test }
|
"tezos-embedded-protocol-demo" { with-test }
|
||||||
"tezos-protocol-environment" { test }
|
"tezos-protocol-environment" { with-test }
|
||||||
"tezos-protocol-alpha" { test }
|
"tezos-protocol-alpha" { with-test }
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -14,6 +13,6 @@ depends: [
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -17,12 +16,12 @@ depends: [
|
|||||||
"pbkdf"
|
"pbkdf"
|
||||||
"bip39"
|
"bip39"
|
||||||
"ledgerwallet-tezos"
|
"ledgerwallet-tezos"
|
||||||
"alcotest" {test & >= "0.8.1"}
|
"alcotest" {with-test & >= "0.8.1"}
|
||||||
"alcotest-lwt" {test & >= "0.8.0"}
|
"alcotest-lwt" {with-test & >= "0.8.0"}
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -16,6 +15,6 @@ depends: [
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -15,12 +14,12 @@ depends: [
|
|||||||
"re"
|
"re"
|
||||||
"lwt"
|
"lwt"
|
||||||
"zarith"
|
"zarith"
|
||||||
"alcotest" { test }
|
"alcotest" { with-test }
|
||||||
"ocp-indent" { test }
|
"ocp-indent" { with-test }
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -17,6 +16,6 @@ depends: [
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -12,12 +11,12 @@ depends: [
|
|||||||
"tezos-base"
|
"tezos-base"
|
||||||
"lmdb"
|
"lmdb"
|
||||||
"irmin-lmdb"
|
"irmin-lmdb"
|
||||||
"tezos-stdlib-unix" { test }
|
"tezos-stdlib-unix" { with-test }
|
||||||
"alcotest-lwt" { test }
|
"alcotest-lwt" { with-test }
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -17,6 +16,6 @@ depends: [
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -17,7 +16,7 @@ depends: [
|
|||||||
"tezos-client-commands"
|
"tezos-client-commands"
|
||||||
"tezos-client-alpha"
|
"tezos-client-alpha"
|
||||||
"tezos-baking-alpha"
|
"tezos-baking-alpha"
|
||||||
"tezos-signer-backends" { test }
|
"tezos-signer-backends" { with-test }
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -17,7 +16,7 @@ depends: [
|
|||||||
"tezos-client-commands"
|
"tezos-client-commands"
|
||||||
"tezos-client-alpha"
|
"tezos-client-alpha"
|
||||||
"tezos-baking-alpha"
|
"tezos-baking-alpha"
|
||||||
"tezos-signer-backends" { test }
|
"tezos-signer-backends" { with-test }
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -17,7 +16,7 @@ depends: [
|
|||||||
"tezos-client-commands"
|
"tezos-client-commands"
|
||||||
"tezos-client-alpha"
|
"tezos-client-alpha"
|
||||||
"tezos-baking-alpha"
|
"tezos-baking-alpha"
|
||||||
"tezos-signer-backends" { test }
|
"tezos-signer-backends" { with-test }
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -16,14 +15,14 @@ depends: [
|
|||||||
"tezos-client-base"
|
"tezos-client-base"
|
||||||
"tezos-client-commands"
|
"tezos-client-commands"
|
||||||
"tezos-client-alpha"
|
"tezos-client-alpha"
|
||||||
"tezos-node" { test }
|
"tezos-node" { with-test }
|
||||||
"tezos-client-genesis" { test }
|
"tezos-client-genesis" { with-test }
|
||||||
"tezos-client-base-unix" { test }
|
"tezos-client-base-unix" { with-test }
|
||||||
"alcotest-lwt" { test }
|
"alcotest-lwt" { with-test }
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -17,7 +16,7 @@ depends: [
|
|||||||
"tezos-client-commands"
|
"tezos-client-commands"
|
||||||
"tezos-client-alpha"
|
"tezos-client-alpha"
|
||||||
"tezos-baking-alpha"
|
"tezos-baking-alpha"
|
||||||
"tezos-signer-backends" { test }
|
"tezos-signer-backends" { with-test }
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -19,6 +18,6 @@ build: [
|
|||||||
[ "sed" "-i" "s/let predefined_version = None/let predefined_version = Some \"alpha\"/" "src/dune" ]
|
[ "sed" "-i" "s/let predefined_version = None/let predefined_version = Some \"alpha\"/" "src/dune" ]
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,21 +1,20 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
"dune" { build & >= "1.0.1" }
|
"dune" { build & >= "1.0.1" }
|
||||||
"tezos-base"
|
"tezos-base"
|
||||||
"tezos-protocol-compiler"
|
"tezos-protocol-compiler"
|
||||||
"alcotest-lwt" { test }
|
"alcotest-lwt" { with-test }
|
||||||
"tezos-stdlib-unix" { test }
|
"tezos-stdlib-unix" { with-test }
|
||||||
"tezos-protocol-environment" { test }
|
"tezos-protocol-environment" { with-test }
|
||||||
"tezos-shell-services" { test }
|
"tezos-shell-services" { with-test }
|
||||||
"bip39" { test }
|
"bip39" { with-test }
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
[ "rm" "dune" "src/dune" ]
|
[ "rm" "dune" "src/dune" ]
|
||||||
@ -23,6 +22,6 @@ build: [
|
|||||||
[ "sed" "-i" "s/let predefined_version = None/let predefined_version = Some \"alpha\"/" "dune" ]
|
[ "sed" "-i" "s/let predefined_version = None/let predefined_version = Some \"alpha\"/" "dune" ]
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -18,6 +17,6 @@ build: [
|
|||||||
[ "sed" "-i" "s/let predefined_version = None/let predefined_version = Some \"demo\"/" "src/dune" ]
|
[ "sed" "-i" "s/let predefined_version = None/let predefined_version = Some \"demo\"/" "src/dune" ]
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -17,6 +16,6 @@ build: [
|
|||||||
[ "sed" "-i" "s/let predefined_version = None/let predefined_version = Some \"demo\"/" "dune" ]
|
[ "sed" "-i" "s/let predefined_version = None/let predefined_version = Some \"demo\"/" "dune" ]
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -19,6 +18,6 @@ depends: [
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -18,6 +17,6 @@ build: [
|
|||||||
[ "sed" "-i" "s/let predefined_version = None/let predefined_version = Some \"genesis\"/" "src/dune" ]
|
[ "sed" "-i" "s/let predefined_version = None/let predefined_version = Some \"genesis\"/" "src/dune" ]
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
version: "dev"
|
|
||||||
maintainer: "contact@tezos.com"
|
maintainer: "contact@tezos.com"
|
||||||
authors: [ "Tezos devteam" ]
|
authors: [ "Tezos devteam" ]
|
||||||
homepage: "https://www.tezos.com/"
|
homepage: "https://www.tezos.com/"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"ocamlfind" { build }
|
"ocamlfind" { build }
|
||||||
@ -17,6 +16,6 @@ build: [
|
|||||||
[ "sed" "-i" "s/let predefined_version = None/let predefined_version = Some \"genesis\"/" "dune" ]
|
[ "sed" "-i" "s/let predefined_version = None/let predefined_version = Some \"genesis\"/" "dune" ]
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
8
vendors/irmin-lmdb/irmin-lmdb.opam
vendored
8
vendors/irmin-lmdb/irmin-lmdb.opam
vendored
@ -1,22 +1,20 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
maintainer: "gregoire.henry@tezos.com"
|
maintainer: "gregoire.henry@tezos.com"
|
||||||
authors: ["Grégoire Henry"]
|
authors: ["Grégoire Henry"]
|
||||||
license: "ISC"
|
license: "ISC"
|
||||||
homepage: "https://gitlab.com/tezos/irmin-lmdb"
|
homepage: "https://gitlab.com/tezos/irmin-lmdb"
|
||||||
bug-reports: "https://gitlab.com/tezos/irmin-lmdb/issues"
|
bug-reports: "https://gitlab.com/tezos/irmin-lmdb/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/irmin-lmdb.git"
|
dev-repo: "git+https://gitlab.com/tezos/irmin-lmdb.git"
|
||||||
doc: "https://tezos.gitlab.io/irmin-lmdb/"
|
doc: "https://tezos.gitlab.io/irmin-lmdb/"
|
||||||
|
|
||||||
build: [
|
build: [
|
||||||
["dune" "subst"] {pinned}
|
["dune" "subst"] {pinned}
|
||||||
["dune" "build" "-p" name "-j" jobs]
|
["dune" "build" "-p" name "-j" jobs]
|
||||||
]
|
]
|
||||||
build-test: ["dune" "runtest" "-p" name]
|
run-test: ["dune" "runtest" "-p" name]
|
||||||
|
|
||||||
depends: [
|
depends: [
|
||||||
"dune" {build & >= "1.0.1"}
|
"dune" {build & >= "1.0.1"}
|
||||||
"irmin" {>= "1.4.0"}
|
"irmin" {>= "1.4.0"}
|
||||||
"lmdb" {>= "0.1"}
|
"lmdb" {>= "0.1"}
|
||||||
]
|
]
|
||||||
|
|
||||||
available: [ocaml-version >= "4.01.0"]
|
|
||||||
|
9
vendors/ocaml-bip39/bip39.opam
vendored
9
vendors/ocaml-bip39/bip39.opam
vendored
@ -1,4 +1,4 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
name: "bip39"
|
name: "bip39"
|
||||||
version: "1.0"
|
version: "1.0"
|
||||||
maintainer: "Vincent Bernardoff <vb@luminar.eu.org>"
|
maintainer: "Vincent Bernardoff <vb@luminar.eu.org>"
|
||||||
@ -6,10 +6,9 @@ authors: ["Vincent Bernardoff <vb@luminar.eu.org>"]
|
|||||||
homepage: "https://github.com/vbmithr/ocaml-bip39"
|
homepage: "https://github.com/vbmithr/ocaml-bip39"
|
||||||
doc: "https://vbmithr.github.io/ocaml-bip39/doc"
|
doc: "https://vbmithr.github.io/ocaml-bip39/doc"
|
||||||
license: "ISC"
|
license: "ISC"
|
||||||
dev-repo: "https://github.com/vbmithr/ocaml-bip39.git"
|
dev-repo: "git+https://github.com/vbmithr/ocaml-bip39.git"
|
||||||
bug-reports: "https://github.com/vbmithr/ocaml-bip39/issues"
|
bug-reports: "https://github.com/vbmithr/ocaml-bip39/issues"
|
||||||
tags: []
|
tags: []
|
||||||
available: [ ocaml-version >= "4.03.0" ]
|
|
||||||
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
||||||
depends: [
|
depends: [
|
||||||
"dune" {build & >= "1.0.1"}
|
"dune" {build & >= "1.0.1"}
|
||||||
@ -18,6 +17,6 @@ depends: [
|
|||||||
"hacl"
|
"hacl"
|
||||||
"bigstring" {>= "0.2"}
|
"bigstring" {>= "0.2"}
|
||||||
"pbkdf" {>= "0.2.0"}
|
"pbkdf" {>= "0.2.0"}
|
||||||
"hex" {test & >= "1.2.0"}
|
"hex" {with-test & >= "1.2.0"}
|
||||||
"alcotest" {test & >= "0.8.1"}
|
"alcotest" {with-test & >= "0.8.1"}
|
||||||
]
|
]
|
||||||
|
14
vendors/ocaml-blake2/blake2.opam
vendored
14
vendors/ocaml-blake2/blake2.opam
vendored
@ -1,22 +1,16 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
name: "blake2"
|
name: "blake2"
|
||||||
version: "dev"
|
|
||||||
authors: "Vincent Bernardoff <vb@luminar.eu.org>"
|
authors: "Vincent Bernardoff <vb@luminar.eu.org>"
|
||||||
maintainer: "Vincent Bernardoff <vb@luminar.eu.org>"
|
maintainer: "Vincent Bernardoff <vb@luminar.eu.org>"
|
||||||
license: "ISC"
|
license: "ISC"
|
||||||
homepage: "https://github.com/vbmithr/ocaml-blake2"
|
homepage: "https://github.com/vbmithr/ocaml-blake2"
|
||||||
bug-reports: "https://github.com/vbmithr/ocaml-blake2/issues"
|
bug-reports: "https://github.com/vbmithr/ocaml-blake2/issues"
|
||||||
dev-repo: "git://github.com/vbmithr/ocaml-blake2"
|
dev-repo: "git://github.com/vbmithr/ocaml-blake2"
|
||||||
|
|
||||||
available: [
|
|
||||||
ocaml-version >= "4.02.0"
|
|
||||||
]
|
|
||||||
|
|
||||||
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
||||||
build-test: [ "dune" "runtest" "-p" name "-j" jobs ]
|
run-test: [ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
depends: [
|
depends: [
|
||||||
"dune" {build & >= "1.0.1"}
|
"dune" {build & >= "1.0.1"}
|
||||||
"bigstring" {>= "0.1.1"}
|
"bigstring" {>= "0.1.1"}
|
||||||
"alcotest" { test }
|
"alcotest" { with-test }
|
||||||
"hex" {test & >= "1.2.0"}
|
"hex" {with-test & >= "1.2.0"}
|
||||||
]
|
]
|
||||||
|
12
vendors/ocaml-hacl/hacl.opam
vendored
12
vendors/ocaml-hacl/hacl.opam
vendored
@ -1,22 +1,20 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
name: "hacl"
|
name: "hacl"
|
||||||
version: "dev"
|
|
||||||
authors: [ "Vincent Bernardoff <vb@luminar.eu.org>" "Marco Stronati <marco@stronati.org>" ]
|
authors: [ "Vincent Bernardoff <vb@luminar.eu.org>" "Marco Stronati <marco@stronati.org>" ]
|
||||||
maintainer: "Vincent Bernardoff <vb@luminar.eu.org>"
|
maintainer: "Vincent Bernardoff <vb@luminar.eu.org>"
|
||||||
homepage: "https://gitlab.com/tezos/tezos"
|
homepage: "https://gitlab.com/tezos/tezos"
|
||||||
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
bug-reports: "https://gitlab.com/tezos/tezos/issues"
|
||||||
dev-repo: "https://gitlab.com/tezos/tezos.git"
|
dev-repo: "git+https://gitlab.com/tezos/tezos.git"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
depends: [
|
depends: [
|
||||||
"dune" {build & >= "1.0.1"}
|
"dune" {build & >= "1.0.1"}
|
||||||
"bigstring" {>= "0.1.1"}
|
"bigstring" {>= "0.1.1"}
|
||||||
"ocplib-endian" {>= "1.0"}
|
"ocplib-endian" {>= "1.0"}
|
||||||
"zarith" {>= "1.7"}
|
"zarith" {>= "1.7"}
|
||||||
"alcotest" {test & >= "0.8.1"}
|
"alcotest" {with-test & >= "0.8.1"}
|
||||||
"hex" {test & >= "1.2.0"}
|
"hex" {with-test & >= "1.2.0"}
|
||||||
"base"
|
"base"
|
||||||
"stdio"
|
"stdio"
|
||||||
]
|
]
|
||||||
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
||||||
build-test: [ "dune" "runtest" "-p" name "-j" jobs ]
|
run-test: [ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
available: [ ocaml-version >= "4.02.0" ]
|
|
||||||
|
@ -1,19 +1,13 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
name: "ledgerwallet-tezos"
|
name: "ledgerwallet-tezos"
|
||||||
version: "dev"
|
|
||||||
authors: "Vincent Bernardoff <vb@luminar.eu.org>"
|
authors: "Vincent Bernardoff <vb@luminar.eu.org>"
|
||||||
maintainer: "Vincent Bernardoff <vb@luminar.eu.org>"
|
maintainer: "Vincent Bernardoff <vb@luminar.eu.org>"
|
||||||
license: "ISC"
|
license: "ISC"
|
||||||
homepage: "https://github.com/vbmithr/ocaml-ledger-wallet"
|
homepage: "https://github.com/vbmithr/ocaml-ledger-wallet"
|
||||||
bug-reports: "https://github.com/vbmithr/ocaml-ledger-wallet/issues"
|
bug-reports: "https://github.com/vbmithr/ocaml-ledger-wallet/issues"
|
||||||
dev-repo: "git://github.com/vbmithr/ocaml-ledger-wallet"
|
dev-repo: "git://github.com/vbmithr/ocaml-ledger-wallet"
|
||||||
|
|
||||||
available: [
|
|
||||||
ocaml-version >= "4.02.0"
|
|
||||||
]
|
|
||||||
|
|
||||||
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
||||||
build-test: [ "dune" "runtest" "-p" name "-j" jobs ]
|
run-test: [ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
depends: [
|
depends: [
|
||||||
"dune" {build & >= "1.0.1"}
|
"dune" {build & >= "1.0.1"}
|
||||||
"ledgerwallet" {= "dev"}
|
"ledgerwallet" {= "dev"}
|
||||||
|
11
vendors/ocaml-ledger-wallet/ledgerwallet.opam
vendored
11
vendors/ocaml-ledger-wallet/ledgerwallet.opam
vendored
@ -1,19 +1,14 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
name: "ledgerwallet"
|
|
||||||
version: "dev"
|
version: "dev"
|
||||||
|
name: "ledgerwallet"
|
||||||
authors: "Vincent Bernardoff <vb@luminar.eu.org>"
|
authors: "Vincent Bernardoff <vb@luminar.eu.org>"
|
||||||
maintainer: "Vincent Bernardoff <vb@luminar.eu.org>"
|
maintainer: "Vincent Bernardoff <vb@luminar.eu.org>"
|
||||||
license: "ISC"
|
license: "ISC"
|
||||||
homepage: "https://github.com/vbmithr/ocaml-ledger-wallet"
|
homepage: "https://github.com/vbmithr/ocaml-ledger-wallet"
|
||||||
bug-reports: "https://github.com/vbmithr/ocaml-ledger-wallet/issues"
|
bug-reports: "https://github.com/vbmithr/ocaml-ledger-wallet/issues"
|
||||||
dev-repo: "git://github.com/vbmithr/ocaml-ledger-wallet"
|
dev-repo: "git://github.com/vbmithr/ocaml-ledger-wallet"
|
||||||
|
|
||||||
available: [
|
|
||||||
ocaml-version >= "4.02.0"
|
|
||||||
]
|
|
||||||
|
|
||||||
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
||||||
build-test: [ "dune" "runtest" "-p" name "-j" jobs ]
|
run-test: [ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
depends: [
|
depends: [
|
||||||
"dune" {build & >= "1.0.1"}
|
"dune" {build & >= "1.0.1"}
|
||||||
"rresult" {>= "0.5.0"}
|
"rresult" {>= "0.5.0"}
|
||||||
|
11
vendors/ocaml-lmdb/lmdb.opam
vendored
11
vendors/ocaml-lmdb/lmdb.opam
vendored
@ -1,4 +1,4 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
name: "lmdb"
|
name: "lmdb"
|
||||||
version: "0.1"
|
version: "0.1"
|
||||||
authors: "Vincent Bernardoff <vb@luminar.eu.org>"
|
authors: "Vincent Bernardoff <vb@luminar.eu.org>"
|
||||||
@ -7,15 +7,10 @@ license: "ISC"
|
|||||||
homepage: "https://github.com/vbmithr/ocaml-lmdb"
|
homepage: "https://github.com/vbmithr/ocaml-lmdb"
|
||||||
bug-reports: "https://github.com/vbmithr/ocaml-lmdb/issues"
|
bug-reports: "https://github.com/vbmithr/ocaml-lmdb/issues"
|
||||||
dev-repo: "git://github.com/vbmithr/ocaml-lmdb"
|
dev-repo: "git://github.com/vbmithr/ocaml-lmdb"
|
||||||
|
|
||||||
available: [
|
|
||||||
ocaml-version >= "4.02.0"
|
|
||||||
]
|
|
||||||
|
|
||||||
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
||||||
depends: [
|
depends: [
|
||||||
"dune" {build & >= "1.0.1"}
|
"dune" {build & >= "1.0.1"}
|
||||||
"rresult" {>= "0.5.0"}
|
"rresult" {>= "0.5.0"}
|
||||||
"cstruct" {test & >= "3.2.1"}
|
"cstruct" {with-test & >= "3.2.1"}
|
||||||
"alcotest" {test & >= "0.8.1"}
|
"alcotest" {with-test & >= "0.8.1"}
|
||||||
]
|
]
|
||||||
|
10
vendors/ocaml-pbkdf/pbkdf.opam
vendored
10
vendors/ocaml-pbkdf/pbkdf.opam
vendored
@ -1,20 +1,20 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
name: "pbkdf"
|
name: "pbkdf"
|
||||||
version: "0.3.0"
|
version: "0.3.0"
|
||||||
homepage: "https://github.com/abeaumont/ocaml-pbkdf"
|
homepage: "https://github.com/abeaumont/ocaml-pbkdf"
|
||||||
dev-repo: "https://github.com/abeaumont/ocaml-pbkdf.git"
|
dev-repo: "git+https://github.com/abeaumont/ocaml-pbkdf.git"
|
||||||
bug-reports: "https://github.com/abeaumont/ocaml-pbkdf/issues"
|
bug-reports: "https://github.com/abeaumont/ocaml-pbkdf/issues"
|
||||||
authors: ["Alfredo Beaumont <alfredo.beaumont@gmail.com>" "Sonia Meruelo <smeruelo@gmail.com>"]
|
authors: ["Alfredo Beaumont <alfredo.beaumont@gmail.com>" "Sonia Meruelo <smeruelo@gmail.com>"]
|
||||||
maintainer: ["Alfredo Beaumont <alfredo.beaumont@gmail.com>"]
|
maintainer: ["Alfredo Beaumont <alfredo.beaumont@gmail.com>"]
|
||||||
license: "BSD2"
|
license: "BSD2"
|
||||||
|
|
||||||
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
||||||
build-test: [ "dune" "runtest" "-p" name "-j" jobs ]
|
run-test: [ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
depends: [
|
depends: [
|
||||||
"dune" { build & >= "1.0.1" }
|
"dune" { build & >= "1.0.1" }
|
||||||
"hacl"
|
"hacl"
|
||||||
"bigstring" {>= "0.2"}
|
"bigstring" {>= "0.2"}
|
||||||
"ocplib-endian" {>= "1.0"}
|
"ocplib-endian" {>= "1.0"}
|
||||||
"alcotest" {test & >= "0.8.1"}
|
"alcotest" {with-test & >= "0.8.1"}
|
||||||
"hex" {test & >= "1.2.0"}
|
"hex" {with-test & >= "1.2.0"}
|
||||||
]
|
]
|
||||||
|
7
vendors/ocaml-secp256k1/secp256k1.opam
vendored
7
vendors/ocaml-secp256k1/secp256k1.opam
vendored
@ -1,4 +1,4 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
name: "secp256k1"
|
name: "secp256k1"
|
||||||
version: "0.1"
|
version: "0.1"
|
||||||
authors: "Vincent Bernardoff <vb@luminar.eu.org>"
|
authors: "Vincent Bernardoff <vb@luminar.eu.org>"
|
||||||
@ -6,11 +6,6 @@ maintainer: "Vincent Bernardoff <vb@luminar.eu.org>"
|
|||||||
homepage: "https://github.com/vbmithr/ocaml-secp256k1-internal"
|
homepage: "https://github.com/vbmithr/ocaml-secp256k1-internal"
|
||||||
bug-reports: "https://github.com/vbmithr/ocaml-secp256k1-internal/issues"
|
bug-reports: "https://github.com/vbmithr/ocaml-secp256k1-internal/issues"
|
||||||
dev-repo: "git://github.com/vbmithr/ocaml-secp256k1-internal"
|
dev-repo: "git://github.com/vbmithr/ocaml-secp256k1-internal"
|
||||||
|
|
||||||
available: [
|
|
||||||
ocaml-version >= "4.03.0"
|
|
||||||
]
|
|
||||||
|
|
||||||
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
||||||
depends: [
|
depends: [
|
||||||
"conf-gmp" {build}
|
"conf-gmp" {build}
|
||||||
|
15
vendors/ocaml-uecc/uecc.opam
vendored
15
vendors/ocaml-uecc/uecc.opam
vendored
@ -1,4 +1,4 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
name: "uecc"
|
name: "uecc"
|
||||||
version: "1.0"
|
version: "1.0"
|
||||||
authors: "Vincent Bernardoff <vb@luminar.eu.org>"
|
authors: "Vincent Bernardoff <vb@luminar.eu.org>"
|
||||||
@ -7,17 +7,12 @@ license: "ISC"
|
|||||||
homepage: "https://github.com/vbmithr/ocaml-uecc"
|
homepage: "https://github.com/vbmithr/ocaml-uecc"
|
||||||
bug-reports: "https://github.com/vbmithr/ocaml-uecc/issues"
|
bug-reports: "https://github.com/vbmithr/ocaml-uecc/issues"
|
||||||
dev-repo: "git://github.com/vbmithr/ocaml-uecc"
|
dev-repo: "git://github.com/vbmithr/ocaml-uecc"
|
||||||
|
|
||||||
available: [
|
|
||||||
ocaml-version >= "4.02.0"
|
|
||||||
]
|
|
||||||
|
|
||||||
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
||||||
build-test: [ "dune" "runtest" "-p" name "-j" jobs ]
|
run-test: [ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
depends: [
|
depends: [
|
||||||
"dune" {build & >= "1.0.1"}
|
"dune" {build & >= "1.0.1"}
|
||||||
"bigstring" {>= "0.1.1"}
|
"bigstring" {>= "0.1.1"}
|
||||||
"alcotest" {test & >= "0.8.1"}
|
"alcotest" {with-test & >= "0.8.1"}
|
||||||
"cstruct" {test & >= "3.2.1"}
|
"cstruct" {with-test & >= "3.2.1"}
|
||||||
"hex" {test}
|
"hex" {with-test}
|
||||||
]
|
]
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
name: "ocplib-json-typed"
|
name: "ocplib-json-typed"
|
||||||
version: "0.6"
|
version: "0.6"
|
||||||
maintainer: "Benjamin Canou <benjamin@ocamlpro.com>"
|
maintainer: "Benjamin Canou <benjamin@ocamlpro.com>"
|
||||||
@ -6,11 +6,9 @@ authors: "Benjamin Canou <benjamin@ocamlpro.com>"
|
|||||||
homepage: "https://github.com/ocamlpro/ocplib-json-typed"
|
homepage: "https://github.com/ocamlpro/ocplib-json-typed"
|
||||||
bug-reports: "https://github.com/ocamlpro/ocplib-json-typed/issues"
|
bug-reports: "https://github.com/ocamlpro/ocplib-json-typed/issues"
|
||||||
license: "LGPLv3 w/ linking exception"
|
license: "LGPLv3 w/ linking exception"
|
||||||
dev-repo: "https://github.com/ocamlpro/ocplib-json-typed.git"
|
dev-repo: "git+https://github.com/ocamlpro/ocplib-json-typed.git"
|
||||||
available: [ ocaml-version >= "4.02.0" ]
|
|
||||||
|
|
||||||
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
||||||
build-test: [ "dune" "runtest" "-p" name "-j" jobs ]
|
run-test: [ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
depends: [
|
depends: [
|
||||||
"dune" {build & >= "1.0.1"}
|
"dune" {build & >= "1.0.1"}
|
||||||
"uri" {>= "1.9.0" }
|
"uri" {>= "1.9.0" }
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
name: "ocplib-json-typed-browser"
|
name: "ocplib-json-typed-browser"
|
||||||
version: "0.6"
|
version: "0.6"
|
||||||
maintainer: "Benjamin Canou <benjamin@ocamlpro.com>"
|
maintainer: "Benjamin Canou <benjamin@ocamlpro.com>"
|
||||||
@ -6,11 +6,9 @@ authors: "Benjamin Canou <benjamin@ocamlpro.com>"
|
|||||||
homepage: "https://github.com/ocamlpro/ocplib-json-typed"
|
homepage: "https://github.com/ocamlpro/ocplib-json-typed"
|
||||||
bug-reports: "https://github.com/ocamlpro/ocplib-json-typed/issues"
|
bug-reports: "https://github.com/ocamlpro/ocplib-json-typed/issues"
|
||||||
license: "LGPLv3 w/ linking exception"
|
license: "LGPLv3 w/ linking exception"
|
||||||
dev-repo: "https://github.com/ocamlpro/ocplib-json-typed.git"
|
dev-repo: "git+https://github.com/ocamlpro/ocplib-json-typed.git"
|
||||||
available: [ ocaml-version >= "4.02.0" ]
|
|
||||||
|
|
||||||
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
||||||
build-test: [ "dune" "runtest" "-p" name "-j" jobs ]
|
run-test: [ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
depends: [
|
depends: [
|
||||||
"dune" {build & >= "1.0.1"}
|
"dune" {build & >= "1.0.1"}
|
||||||
"ocplib-json-typed" {= "0.6" }
|
"ocplib-json-typed" {= "0.6" }
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
name: "ocplib-json-typed-bson"
|
name: "ocplib-json-typed-bson"
|
||||||
version: "0.6"
|
version: "0.6"
|
||||||
maintainer: "Benjamin Canou <benjamin@ocamlpro.com>"
|
maintainer: "Benjamin Canou <benjamin@ocamlpro.com>"
|
||||||
@ -6,11 +6,9 @@ authors: "Benjamin Canou <benjamin@ocamlpro.com>"
|
|||||||
homepage: "https://github.com/ocamlpro/ocplib-json-typed"
|
homepage: "https://github.com/ocamlpro/ocplib-json-typed"
|
||||||
bug-reports: "https://github.com/ocamlpro/ocplib-json-typed/issues"
|
bug-reports: "https://github.com/ocamlpro/ocplib-json-typed/issues"
|
||||||
license: "LGPLv3 w/ linking exception"
|
license: "LGPLv3 w/ linking exception"
|
||||||
dev-repo: "https://github.com/ocamlpro/ocplib-json-typed.git"
|
dev-repo: "git+https://github.com/ocamlpro/ocplib-json-typed.git"
|
||||||
available: [ ocaml-version >= "4.02.0" ]
|
|
||||||
|
|
||||||
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
build: [ "dune" "build" "-j" jobs "-p" name "@install" ]
|
||||||
build-test: [ "dune" "runtest" "-p" name "-j" jobs ]
|
run-test: [ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
depends: [
|
depends: [
|
||||||
"dune" {build & >= "1.0.1"}
|
"dune" {build & >= "1.0.1"}
|
||||||
"ocplib-json-typed" {= "0.6" }
|
"ocplib-json-typed" {= "0.6" }
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
version: "dev"
|
version: "dev"
|
||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
maintainer: "Grégoire Henry <gregoire.henry@tezos.com>"
|
maintainer: "Grégoire Henry <gregoire.henry@tezos.com>"
|
||||||
authors: "Grégoire Henry <gregoire.henry@tezos.com>"
|
authors: "Grégoire Henry <gregoire.henry@tezos.com>"
|
||||||
license: "LGPL-2.1-with-OCaml-exception"
|
license: "LGPL-2.1-with-OCaml-exception"
|
||||||
@ -10,7 +10,7 @@ dev-repo: "git+https://github.com/OCamlPro/ocplib-resto"
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
version: "dev"
|
version: "dev"
|
||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
maintainer: "Grégoire Henry <gregoire.henry@tezos.com>"
|
maintainer: "Grégoire Henry <gregoire.henry@tezos.com>"
|
||||||
authors: "Grégoire Henry <gregoire.henry@tezos.com>"
|
authors: "Grégoire Henry <gregoire.henry@tezos.com>"
|
||||||
license: "LGPL-2.1-with-OCaml-exception"
|
license: "LGPL-2.1-with-OCaml-exception"
|
||||||
@ -10,7 +10,7 @@ dev-repo: "git+https://github.com/OCamlPro/ocplib-resto"
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
version: "dev"
|
version: "dev"
|
||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
maintainer: "Grégoire Henry <gregoire.henry@tezos.com>"
|
maintainer: "Grégoire Henry <gregoire.henry@tezos.com>"
|
||||||
authors: "Grégoire Henry <gregoire.henry@tezos.com>"
|
authors: "Grégoire Henry <gregoire.henry@tezos.com>"
|
||||||
license: "LGPL-2.1-with-OCaml-exception"
|
license: "LGPL-2.1-with-OCaml-exception"
|
||||||
@ -10,7 +10,7 @@ dev-repo: "git+https://github.com/OCamlPro/ocplib-resto"
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
version: "dev"
|
version: "dev"
|
||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
maintainer: "Grégoire Henry <gregoire.henry@tezos.com>"
|
maintainer: "Grégoire Henry <gregoire.henry@tezos.com>"
|
||||||
authors: "Grégoire Henry <gregoire.henry@tezos.com>"
|
authors: "Grégoire Henry <gregoire.henry@tezos.com>"
|
||||||
license: "LGPL-2.1-with-OCaml-exception"
|
license: "LGPL-2.1-with-OCaml-exception"
|
||||||
@ -10,7 +10,7 @@ dev-repo: "git+https://github.com/OCamlPro/ocplib-resto"
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
|
||||||
@ -18,6 +18,6 @@ depends: [
|
|||||||
"ocamlfind" {build}
|
"ocamlfind" {build}
|
||||||
"dune" {build}
|
"dune" {build}
|
||||||
"ocplib-resto" {= "dev" }
|
"ocplib-resto" {= "dev" }
|
||||||
"ocplib-resto-json" {= "dev" & test }
|
"ocplib-resto-json" {= "dev" & with-test }
|
||||||
"lwt" { >= "3.0.0" }
|
"lwt" { >= "3.0.0" }
|
||||||
]
|
]
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
version: "dev"
|
version: "dev"
|
||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
maintainer: "Grégoire Henry <gregoire.henry@tezos.com>"
|
maintainer: "Grégoire Henry <gregoire.henry@tezos.com>"
|
||||||
authors: "Grégoire Henry <gregoire.henry@tezos.com>"
|
authors: "Grégoire Henry <gregoire.henry@tezos.com>"
|
||||||
license: "LGPL-2.1-with-OCaml-exception"
|
license: "LGPL-2.1-with-OCaml-exception"
|
||||||
@ -10,7 +10,7 @@ dev-repo: "git+https://github.com/OCamlPro/ocplib-resto"
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
version: "dev"
|
version: "dev"
|
||||||
opam-version: "1.2"
|
opam-version: "2.0"
|
||||||
maintainer: "Grégoire Henry <gregoire.henry@tezos.com>"
|
maintainer: "Grégoire Henry <gregoire.henry@tezos.com>"
|
||||||
authors: "Grégoire Henry <gregoire.henry@tezos.com>"
|
authors: "Grégoire Henry <gregoire.henry@tezos.com>"
|
||||||
license: "LGPL-2.1-with-OCaml-exception"
|
license: "LGPL-2.1-with-OCaml-exception"
|
||||||
@ -10,7 +10,7 @@ dev-repo: "git+https://github.com/OCamlPro/ocplib-resto"
|
|||||||
build: [
|
build: [
|
||||||
[ "dune" "build" "-p" name "-j" jobs ]
|
[ "dune" "build" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
build-test: [
|
run-test: [
|
||||||
[ "dune" "runtest" "-p" name "-j" jobs ]
|
[ "dune" "runtest" "-p" name "-j" jobs ]
|
||||||
]
|
]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user