Skip to content

Commit 311efe7

Browse files
committed
[new release] junit (3 packages) (2.3.0)
CHANGES: - upgrade minimal alcotest to 1.9.0
1 parent 999bff3 commit 311efe7

File tree

3 files changed

+123
-0
lines changed
  • packages
    • junit_alcotest/junit_alcotest.2.3.0
    • junit_ounit/junit_ounit.2.3.0
    • junit/junit.2.3.0

3 files changed

+123
-0
lines changed

packages/junit/junit.2.3.0/opam

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
opam-version: "2.0"
2+
maintainer: "Louis Roché <[email protected]>"
3+
authors: "Louis Roché <[email protected]>"
4+
homepage: "https://github.com/Khady/ocaml-junit"
5+
bug-reports: "https://github.com/Khady/ocaml-junit/issues"
6+
license: "LGPL-3.0-or-later WITH OCaml-LGPL-linking-exception"
7+
dev-repo: "git+https://github.com/Khady/ocaml-junit.git"
8+
doc: "https://khady.github.io/ocaml-junit/"
9+
tags: ["junit" "jenkins"]
10+
depends: [
11+
"dune" {>= "3.0"}
12+
"ptime"
13+
"tyxml" {>= "4.0.0"}
14+
"odoc" {with-doc & >= "1.1.1"}
15+
"ocamlformat" {= "0.27.0" & with-dev-setup}
16+
]
17+
build: [
18+
["dune" "subst"] {dev}
19+
[
20+
"dune"
21+
"build"
22+
"-p"
23+
name
24+
"-j"
25+
jobs
26+
"@install"
27+
"@runtest" {with-test}
28+
"@doc" {with-doc}
29+
]
30+
]
31+
synopsis: "JUnit XML reports generation library"
32+
description: "JUnit XML reports generation library"
33+
url {
34+
src:
35+
"https://github.com/Khady/ocaml-junit/releases/download/2.3.0/junit-2.3.0.tbz"
36+
checksum: [
37+
"sha256=8fee257ee4045aaf33f2293fcdf039a615aabfc926fad184cea1bfeb771b8533"
38+
"sha512=546b155c65e6cbe4141c29cd95da68903c8845703bd81b12dd8ceaeb5c91d19137ca8202848d0b5cdfc3090694266c3a1815669c85b4d3d980c6122411136da3"
39+
]
40+
}
41+
x-commit-hash: "9bebaba23bb930398fa1e0b513a95352da77cf2d"
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
opam-version: "2.0"
2+
maintainer: "Louis Roché <[email protected]>"
3+
authors: ["Louis Roché <[email protected]>"]
4+
homepage: "https://github.com/Khady/ocaml-junit"
5+
bug-reports: "https://github.com/Khady/ocaml-junit/issues"
6+
license: "LGPL-3.0-or-later WITH OCaml-LGPL-linking-exception"
7+
dev-repo: "git+https://github.com/Khady/ocaml-junit.git"
8+
doc: "https://khady.github.io/ocaml-junit/"
9+
tags: ["junit" "jenkins" "alcotest"]
10+
depends: [
11+
"dune" {>= "3.0"}
12+
"odoc" {with-doc & >= "1.1.1"}
13+
"alcotest" {>= "1.9.0"}
14+
"junit" {= version}
15+
"ocamlformat" {= "0.27.0" & with-dev-setup}
16+
]
17+
build: [
18+
["dune" "subst"] {dev}
19+
[
20+
"dune"
21+
"build"
22+
"-p"
23+
name
24+
"-j"
25+
jobs
26+
"@install"
27+
"@runtest" {with-test}
28+
"@doc" {with-doc}
29+
]
30+
]
31+
synopsis: "JUnit XML reports generation for alcotest tests"
32+
description: "JUnit XML reports generation for alcotest tests"
33+
url {
34+
src:
35+
"https://github.com/Khady/ocaml-junit/releases/download/2.3.0/junit-2.3.0.tbz"
36+
checksum: [
37+
"sha256=8fee257ee4045aaf33f2293fcdf039a615aabfc926fad184cea1bfeb771b8533"
38+
"sha512=546b155c65e6cbe4141c29cd95da68903c8845703bd81b12dd8ceaeb5c91d19137ca8202848d0b5cdfc3090694266c3a1815669c85b4d3d980c6122411136da3"
39+
]
40+
}
41+
x-commit-hash: "9bebaba23bb930398fa1e0b513a95352da77cf2d"
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
opam-version: "2.0"
2+
maintainer: "Louis Roché <[email protected]>"
3+
authors: ["Louis Roché <[email protected]>" "Simon Cruanes <[email protected]>"]
4+
homepage: "https://github.com/Khady/ocaml-junit"
5+
bug-reports: "https://github.com/Khady/ocaml-junit/issues"
6+
license: "LGPL-3.0-or-later WITH OCaml-LGPL-linking-exception"
7+
dev-repo: "git+https://github.com/Khady/ocaml-junit.git"
8+
doc: "https://khady.github.io/ocaml-junit/"
9+
tags: ["junit" "jenkins" "ounit"]
10+
depends: [
11+
"dune" {>= "3.0"}
12+
"odoc" {with-doc & >= "1.1.1"}
13+
"ounit2"
14+
"junit" {= version}
15+
"ocamlformat" {= "0.27.0" & with-dev-setup}
16+
]
17+
build: [
18+
["dune" "subst"] {dev}
19+
[
20+
"dune"
21+
"build"
22+
"-p"
23+
name
24+
"-j"
25+
jobs
26+
"@install"
27+
"@runtest" {with-test}
28+
"@doc" {with-doc}
29+
]
30+
]
31+
synopsis: "JUnit XML reports generation for OUnit tests"
32+
description: "JUnit XML reports generation for OUnit tests"
33+
url {
34+
src:
35+
"https://github.com/Khady/ocaml-junit/releases/download/2.3.0/junit-2.3.0.tbz"
36+
checksum: [
37+
"sha256=8fee257ee4045aaf33f2293fcdf039a615aabfc926fad184cea1bfeb771b8533"
38+
"sha512=546b155c65e6cbe4141c29cd95da68903c8845703bd81b12dd8ceaeb5c91d19137ca8202848d0b5cdfc3090694266c3a1815669c85b4d3d980c6122411136da3"
39+
]
40+
}
41+
x-commit-hash: "9bebaba23bb930398fa1e0b513a95352da77cf2d"

0 commit comments

Comments
 (0)