Skip to content

Commit 7c530df

Browse files
committed
4 packages from c-cube/qcheck at 0.10
1 parent a2abf84 commit 7c530df

File tree

4 files changed

+124
-0
lines changed
  • packages
    • qcheck-alcotest/qcheck-alcotest.0.10
    • qcheck-core/qcheck-core.0.10
    • qcheck-ounit/qcheck-ounit.0.10
    • qcheck/qcheck.0.10

4 files changed

+124
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
opam-version: "2.0"
2+
synopsis: "Alcotest backend for qcheck"
3+
maintainer: "[email protected]"
4+
authors: "Simon Cruanes <[email protected]>"
5+
tags: ["test" "property" "quickcheck"]
6+
homepage: "https://github.com/c-cube/qcheck/"
7+
doc: "http://c-cube.github.io/qcheck/"
8+
bug-reports: "https://github.com/c-cube/qcheck/issues"
9+
depends: [
10+
"dune"
11+
"base-bytes"
12+
"base-unix"
13+
"qcheck-core" {>= "0.9"}
14+
"alcotest"
15+
"odoc" {with-doc}
16+
"ocaml" {>= "4.03.0"}
17+
]
18+
build: [
19+
["dune" "build" "-p" name "-j" jobs]
20+
["dune" "build" "@doc" "-p" name] {with-doc}
21+
]
22+
run-test: ["dune" "runtest" "-p" name]
23+
dev-repo: "git+https://github.com/c-cube/qcheck.git"
24+
url {
25+
src: "https://github.com/c-cube/qcheck/archive/0.10.tar.gz"
26+
checksum: [
27+
"md5=de3599bfa7ad2a4981c289affeb9bf6e"
28+
"sha512=250d7934012455d29d95b710f5b42bbe3ea42e6ec1b5781dba807781ac9d5a66ca39dc4535667fd9b00bfcc566e11dbdb3f7306dde1d8f0e9f90d1447cdc4d97"
29+
]
30+
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
opam-version: "2.0"
2+
synopsis: "Core qcheck library"
3+
maintainer: "[email protected]"
4+
authors: "Simon Cruanes <[email protected]>"
5+
tags: ["test" "property" "quickcheck"]
6+
homepage: "https://github.com/c-cube/qcheck/"
7+
doc: "http://c-cube.github.io/qcheck/"
8+
bug-reports: "https://github.com/c-cube/qcheck/issues"
9+
depends: [
10+
"dune"
11+
"base-bytes"
12+
"base-unix"
13+
"odoc" {with-doc}
14+
"ocaml" {>= "4.03.0"}
15+
]
16+
conflicts: [
17+
"ounit" {< "2.0"}
18+
]
19+
build: [
20+
["dune" "build" "-p" name "-j" jobs]
21+
["dune" "build" "@doc" "-p" name] {with-doc}
22+
]
23+
run-test: ["dune" "runtest" "-p" name]
24+
dev-repo: "git+https://github.com/c-cube/qcheck.git"
25+
url {
26+
src: "https://github.com/c-cube/qcheck/archive/0.10.tar.gz"
27+
checksum: [
28+
"md5=de3599bfa7ad2a4981c289affeb9bf6e"
29+
"sha512=250d7934012455d29d95b710f5b42bbe3ea42e6ec1b5781dba807781ac9d5a66ca39dc4535667fd9b00bfcc566e11dbdb3f7306dde1d8f0e9f90d1447cdc4d97"
30+
]
31+
}
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
opam-version: "2.0"
2+
synopsis: "OUnit backend for qcheck"
3+
maintainer: "[email protected]"
4+
authors: "Simon Cruanes <[email protected]>"
5+
tags: ["test" "property" "quickcheck"]
6+
homepage: "https://github.com/c-cube/qcheck/"
7+
doc: "http://c-cube.github.io/qcheck/"
8+
bug-reports: "https://github.com/c-cube/qcheck/issues"
9+
depends: [
10+
"dune"
11+
"base-bytes"
12+
"base-unix"
13+
"qcheck-core" {>= "0.9"}
14+
"ounit" {>= "2.0"}
15+
"odoc" {with-doc}
16+
"ocaml" {>= "4.03.0"}
17+
]
18+
build: [
19+
["dune" "build" "-p" name "-j" jobs]
20+
["dune" "build" "@doc" "-p" name] {with-doc}
21+
]
22+
run-test: ["dune" "runtest" "-p" name]
23+
dev-repo: "git+https://github.com/c-cube/qcheck.git"
24+
url {
25+
src: "https://github.com/c-cube/qcheck/archive/0.10.tar.gz"
26+
checksum: [
27+
"md5=de3599bfa7ad2a4981c289affeb9bf6e"
28+
"sha512=250d7934012455d29d95b710f5b42bbe3ea42e6ec1b5781dba807781ac9d5a66ca39dc4535667fd9b00bfcc566e11dbdb3f7306dde1d8f0e9f90d1447cdc4d97"
29+
]
30+
}

packages/qcheck/qcheck.0.10/opam

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
opam-version: "2.0"
2+
synopsis: "Compatibility package for qcheck"
3+
maintainer: "[email protected]"
4+
authors: "Simon Cruanes <[email protected]>"
5+
tags: ["test" "property" "quickcheck"]
6+
homepage: "https://github.com/c-cube/qcheck/"
7+
doc: "http://c-cube.github.io/qcheck/"
8+
bug-reports: "https://github.com/c-cube/qcheck/issues"
9+
depends: [
10+
"dune"
11+
"base-bytes"
12+
"base-unix"
13+
"qcheck-core" {>= "0.9"}
14+
"qcheck-ounit" {>= "0.9"}
15+
"odoc" {with-doc}
16+
"ocaml" {>= "4.03.0"}
17+
]
18+
conflicts: [
19+
"ounit" {< "2.0"}
20+
]
21+
build: [
22+
["dune" "build" "-p" name "-j" jobs]
23+
["dune" "build" "@doc" "-p" name] {with-doc}
24+
]
25+
run-test: ["dune" "runtest" "-p" name]
26+
dev-repo: "git+https://github.com/c-cube/qcheck.git"
27+
url {
28+
src: "https://github.com/c-cube/qcheck/archive/0.10.tar.gz"
29+
checksum: [
30+
"md5=de3599bfa7ad2a4981c289affeb9bf6e"
31+
"sha512=250d7934012455d29d95b710f5b42bbe3ea42e6ec1b5781dba807781ac9d5a66ca39dc4535667fd9b00bfcc566e11dbdb3f7306dde1d8f0e9f90d1447cdc4d97"
32+
]
33+
}

0 commit comments

Comments
 (0)