File tree Expand file tree Collapse file tree 4 files changed +145
-0
lines changed
ounit-lwt/ounit-lwt.2.2.7
ounit2-lwt/ounit2-lwt.2.2.7 Expand file tree Collapse file tree 4 files changed +145
-0
lines changed Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "This is a transition package, ounit-lwt is now ounit2-lwt"
3+ description: """
4+ More details for the transition:
5+ https://github.com/gildor478/ounit#transition-to-ounit2
6+ """
7+ maintainer: ["Sylvain Le Gall <
[email protected] >"]
8+ authors: ["Sylvain Le Gall"]
9+ license: "MIT"
10+ homepage: "https://github.com/gildor478/ounit"
11+ doc: "https://gildor478.github.io/ounit"
12+ bug-reports: "https://github.com/gildor478/ounit/issues"
13+ depends: [
14+ "ocamlfind" {build}
15+ "ounit2-lwt" {= version}
16+ ]
17+ install: [
18+ [make "install-ounit-lwt" "version=%{version}%"]
19+ ]
20+ dev-repo: "git+https://github.com/gildor478/ounit.git"
21+ url {
22+ src:
23+ "https://github.com/gildor478/ounit/releases/download/v2.2.7/ounit-2.2.7.tbz"
24+ checksum: [
25+ "sha256=90f6e63bd1240a51d8b9b2f722059bd79ce00b5276bdd6238b8f5c613c0e7388"
26+ "sha512=53463e5b1b5a40f424e19f5f6a86338a544079600d1fd121ffc1a6fcaa239630194018faf91ccf360ba40b1b2a8b01cf491935e014c68d2947f6e027a2f0a0f9"
27+ ]
28+ }
29+ x-commit-hash: "3c0464871690562b93bd2501811d5a4b9821a5aa"
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "This is a transition package, ounit-lwt is now ounit2-lwt"
3+ description: """
4+ More details for the transition:
5+ https://github.com/gildor478/ounit#transition-to-ounit2
6+ """
7+ maintainer: ["Sylvain Le Gall <
[email protected] >"]
8+ authors: ["Sylvain Le Gall"]
9+ license: "MIT"
10+ homepage: "https://github.com/gildor478/ounit"
11+ doc: "https://gildor478.github.io/ounit"
12+ bug-reports: "https://github.com/gildor478/ounit/issues"
13+ depends: [
14+ "ocamlfind" {build}
15+ "ounit2" {= version}
16+ ]
17+ install: [
18+ [make "install-ounit" "version=%{version}%"]
19+ ]
20+ dev-repo: "git+https://github.com/gildor478/ounit.git"
21+ url {
22+ src:
23+ "https://github.com/gildor478/ounit/releases/download/v2.2.7/ounit-2.2.7.tbz"
24+ checksum: [
25+ "sha256=90f6e63bd1240a51d8b9b2f722059bd79ce00b5276bdd6238b8f5c613c0e7388"
26+ "sha512=53463e5b1b5a40f424e19f5f6a86338a544079600d1fd121ffc1a6fcaa239630194018faf91ccf360ba40b1b2a8b01cf491935e014c68d2947f6e027a2f0a0f9"
27+ ]
28+ }
29+ x-commit-hash: "3c0464871690562b93bd2501811d5a4b9821a5aa"
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "OUnit testing framework"
3+ description: """
4+ This library contains helper functions for building Lwt tests using OUnit.
5+ """
6+ maintainer: ["Sylvain Le Gall <
[email protected] >"]
7+ authors: ["Sylvain Le Gall"]
8+ license: "MIT"
9+ homepage: "https://github.com/gildor478/ounit"
10+ doc: "https://gildor478.github.io/ounit"
11+ bug-reports: "https://github.com/gildor478/ounit/issues"
12+ depends: [
13+ "dune" {>= "3.0"}
14+ "ocaml" {>= "4.04.0"}
15+ "lwt" {>= "2.5.2"}
16+ "seq"
17+ "ounit2" {= version}
18+ "odoc" {with-doc}
19+ ]
20+ build: [
21+ [
22+ "dune"
23+ "build"
24+ "-p"
25+ name
26+ "-j"
27+ jobs
28+ "@install"
29+ "@runtest" {with-test}
30+ "@doc" {with-doc}
31+ ]
32+ ]
33+ dev-repo: "git+https://github.com/gildor478/ounit.git"
34+ url {
35+ src:
36+ "https://github.com/gildor478/ounit/releases/download/v2.2.7/ounit-2.2.7.tbz"
37+ checksum: [
38+ "sha256=90f6e63bd1240a51d8b9b2f722059bd79ce00b5276bdd6238b8f5c613c0e7388"
39+ "sha512=53463e5b1b5a40f424e19f5f6a86338a544079600d1fd121ffc1a6fcaa239630194018faf91ccf360ba40b1b2a8b01cf491935e014c68d2947f6e027a2f0a0f9"
40+ ]
41+ }
42+ x-commit-hash: "3c0464871690562b93bd2501811d5a4b9821a5aa"
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "OUnit testing framework"
3+ description: """
4+ OUnit is a unit test framework for OCaml. It allows one to easily
5+ create unit-tests for OCaml code. It is loosely based on [HUnit], a
6+ unit testing framework for Haskell. It is similar to [JUnit], and
7+ other XUnit testing frameworks.
8+ """
9+ maintainer: ["Sylvain Le Gall <
[email protected] >"]
10+ authors: ["Maas-Maarten Zeeman" "Sylvain Le Gall"]
11+ license: "MIT"
12+ homepage: "https://github.com/gildor478/ounit"
13+ doc: "https://gildor478.github.io/ounit"
14+ bug-reports: "https://github.com/gildor478/ounit/issues"
15+ depends: [
16+ "dune" {>= "3.0"}
17+ "ocaml" {>= "4.04.0"}
18+ "base-unix"
19+ "seq"
20+ "stdlib-shims"
21+ "odoc" {with-doc}
22+ ]
23+ build: [
24+ [
25+ "dune"
26+ "build"
27+ "-p"
28+ name
29+ "-j"
30+ jobs
31+ "@install"
32+ "@runtest" {with-test}
33+ "@doc" {with-doc}
34+ ]
35+ ]
36+ dev-repo: "git+https://github.com/gildor478/ounit.git"
37+ url {
38+ src:
39+ "https://github.com/gildor478/ounit/releases/download/v2.2.7/ounit-2.2.7.tbz"
40+ checksum: [
41+ "sha256=90f6e63bd1240a51d8b9b2f722059bd79ce00b5276bdd6238b8f5c613c0e7388"
42+ "sha512=53463e5b1b5a40f424e19f5f6a86338a544079600d1fd121ffc1a6fcaa239630194018faf91ccf360ba40b1b2a8b01cf491935e014c68d2947f6e027a2f0a0f9"
43+ ]
44+ }
45+ x-commit-hash: "3c0464871690562b93bd2501811d5a4b9821a5aa"
You can’t perform that action at this time.
0 commit comments