this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #21792 from jmid/opam-publish-qcheck-qcheck-alcotest-qcheck-core-qcheck-ounit.0.19.1

4 packages from c-cube/qcheck at 0.19.1

authored by

Kate and committed by
GitHub
149b0891 b0d191a6

+151
+37
packages/qcheck-alcotest/qcheck-alcotest.0.19.1/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "simon.cruanes.2007@m4x.org" 3 + homepage: "https://github.com/c-cube/qcheck/" 4 + license: "BSD-2-Clause" 5 + synopsis: "Alcotest backend for qcheck" 6 + doc: ["http://c-cube.github.io/qcheck/"] 7 + tags: [ 8 + "test" 9 + "quickcheck" 10 + "qcheck" 11 + "alcotest" 12 + ] 13 + build: [ 14 + ["dune" "build" "-p" name "-j" jobs] 15 + ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc} 16 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 17 + ] 18 + depends: [ 19 + "dune" { >= "2.2" } 20 + "base-bytes" 21 + "base-unix" 22 + "qcheck-core" { = version } 23 + "alcotest" {>= "0.8.1"} 24 + "odoc" {with-doc} 25 + "ocaml" {>= "4.08.0"} 26 + "ocaml" {with-test & < "5.0"} 27 + ] 28 + dev-repo: "git+https://github.com/c-cube/qcheck.git" 29 + bug-reports: "https://github.com/c-cube/qcheck/issues" 30 + authors: "the qcheck contributors" 31 + url { 32 + src: "https://github.com/c-cube/qcheck/archive/v0.19.1.tar.gz" 33 + checksum: [ 34 + "md5=c100c4912ef0cf863b0191e155aeddb1" 35 + "sha512=f6af650381d4100ca019082c77f9aceda00b6158356f46a5bcb091ca1f56d41d9c819d3bae7736f1e70b3d1827c5a4af53cc80d94d66025dd52044438207a4c1" 36 + ] 37 + }
+38
packages/qcheck-core/qcheck-core.0.19.1/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "simon.cruanes.2007@m4x.org" 3 + homepage: "https://github.com/c-cube/qcheck/" 4 + license: "BSD-2-Clause" 5 + synopsis: "Core qcheck library" 6 + doc: ["http://c-cube.github.io/qcheck/"] 7 + tags: [ 8 + "test" 9 + "property" 10 + "quickcheck" 11 + ] 12 + build: [ 13 + ["dune" "build" "-p" name "-j" jobs] 14 + ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc} 15 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 16 + ] 17 + depends: [ 18 + "dune" { >= "2.2" } 19 + "base-bytes" 20 + "base-unix" 21 + "alcotest" {with-test} 22 + "odoc" {with-doc} 23 + "ocaml" {>= "4.08.0"} 24 + "ocaml" {with-test & < "5.0"} 25 + ] 26 + dev-repo: "git+https://github.com/c-cube/qcheck.git" 27 + bug-reports: "https://github.com/c-cube/qcheck/issues" 28 + conflicts: [ 29 + "ounit" { < "2.0" } 30 + ] 31 + authors: "the qcheck contributors" 32 + url { 33 + src: "https://github.com/c-cube/qcheck/archive/v0.19.1.tar.gz" 34 + checksum: [ 35 + "md5=c100c4912ef0cf863b0191e155aeddb1" 36 + "sha512=f6af650381d4100ca019082c77f9aceda00b6158356f46a5bcb091ca1f56d41d9c819d3bae7736f1e70b3d1827c5a4af53cc80d94d66025dd52044438207a4c1" 37 + ] 38 + }
+36
packages/qcheck-ounit/qcheck-ounit.0.19.1/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "simon.cruanes.2007@m4x.org" 3 + license: "BSD-2-Clause" 4 + homepage: "https://github.com/c-cube/qcheck/" 5 + doc: ["http://c-cube.github.io/qcheck/"] 6 + synopsis: "OUnit backend for qcheck" 7 + tags: [ 8 + "qcheck" 9 + "quickcheck" 10 + "ounit" 11 + ] 12 + build: [ 13 + ["dune" "build" "-p" name "-j" jobs] 14 + ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc} 15 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 16 + ] 17 + depends: [ 18 + "dune" { >= "2.2" } 19 + "base-bytes" 20 + "base-unix" 21 + "qcheck-core" { = version } 22 + "ounit2" 23 + "odoc" {with-doc} 24 + "ocaml" {>= "4.08.0"} 25 + "ocaml" {with-test & < "5.0"} 26 + ] 27 + dev-repo: "git+https://github.com/c-cube/qcheck.git" 28 + bug-reports: "https://github.com/c-cube/qcheck/issues" 29 + authors: "the qcheck contributors" 30 + url { 31 + src: "https://github.com/c-cube/qcheck/archive/v0.19.1.tar.gz" 32 + checksum: [ 33 + "md5=c100c4912ef0cf863b0191e155aeddb1" 34 + "sha512=f6af650381d4100ca019082c77f9aceda00b6158356f46a5bcb091ca1f56d41d9c819d3bae7736f1e70b3d1827c5a4af53cc80d94d66025dd52044438207a4c1" 35 + ] 36 + }
+40
packages/qcheck/qcheck.0.19.1/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "simon.cruanes.2007@m4x.org" 3 + synopsis: "Compatibility package for qcheck" 4 + homepage: "https://github.com/c-cube/qcheck/" 5 + license: "BSD-2-Clause" 6 + doc: ["http://c-cube.github.io/qcheck/"] 7 + tags: [ 8 + "test" 9 + "property" 10 + "quickcheck" 11 + ] 12 + build: [ 13 + ["dune" "build" "-p" name "-j" jobs] 14 + ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc} 15 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 16 + ] 17 + depends: [ 18 + "dune" { >= "2.2" } 19 + "base-bytes" 20 + "base-unix" 21 + "qcheck-core" { = version } 22 + "qcheck-ounit" { = version } 23 + "alcotest" {with-test} 24 + "odoc" {with-doc} 25 + "ocaml" {>= "4.08.0"} 26 + "ocaml" {with-test & < "5.0"} 27 + ] 28 + dev-repo: "git+https://github.com/c-cube/qcheck.git" 29 + bug-reports: "https://github.com/c-cube/qcheck/issues" 30 + conflicts: [ 31 + "ounit" { < "2.0" } 32 + ] 33 + authors: "the qcheck contributors" 34 + url { 35 + src: "https://github.com/c-cube/qcheck/archive/v0.19.1.tar.gz" 36 + checksum: [ 37 + "md5=c100c4912ef0cf863b0191e155aeddb1" 38 + "sha512=f6af650381d4100ca019082c77f9aceda00b6158356f46a5bcb091ca1f56d41d9c819d3bae7736f1e70b3d1827c5a4af53cc80d94d66025dd52044438207a4c1" 39 + ] 40 + }