this repo has no description
1opam-version: "2.0" 2maintainer: "contact@tezos.com" 3authors: ["Tezos devteam"] 4homepage: "https://www.tezos.com/" 5bug-reports: "https://gitlab.com/tezos/tezos/issues" 6dev-repo: "git+https://gitlab.com/tezos/tezos.git" 7license: "MIT" 8depends: [ 9 "dune" { >= "2.9" } 10 "ocaml" { >= "4.8.0" } 11 "uri" 12 "fmt" 13 "qcheck-alcotest" { >= "0.18" } 14 "alcotest" { >= "1.5.0" } 15 "lwt" { >= "5.4.0" } 16 "pure-splitmix" { = "0.2" } 17] 18patches: [ "tests_in-packages.patch" ] 19build: [ 20 ["rm" "-r" "vendors"] 21 ["dune" "build" "-p" name "-j" jobs] 22 ["mv" "src/lib_test/%{name}%.install" "./"] 23 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 24] 25synopsis: "Tezos-agnostic test helpers" 26url { 27 src: "https://gitlab.com/tezos/tezos/-/archive/v12.3/tezos-v12.3.tar.bz2" 28 checksum: [ 29 "sha256=296bb5674bc6050afe6330326fbdd0dfc2255d414bfd6b79cc7666ac6b39316d" 30 "sha512=c061cd300a9410300851158d77bf8e56ca3c568b0b1161b38305e5b2efdcd9c746d391f832fdb2826f9a1d6babce10a9b764a4b04f5df42699f7314b9863123a" 31 ] 32} 33extra-source "tests_in-packages.patch" { 34 src: 35 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/tezos-test-helpers/tests_in-packages.patch" 36 checksum: 37 "sha256=3edeb38abfd2db7d83beac274d4f0c0b6bab148ce7da6c418145414d453ff4e5" 38}