Skip to content

Commit ad2202b

Browse files
authored
Merge pull request ocaml#27720 from kit-ty-kate/opam-publish-opam-build.0.2.5
2 packages from kit-ty-kate/opam-build at 0.2.5
2 parents 7481045 + a6fd8b2 commit ad2202b

File tree

2 files changed

+58
-0
lines changed
  • packages
    • opam-build/opam-build.0.2.5
    • opam-test/opam-test.0.2.5

2 files changed

+58
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
opam-version: "2.0"
2+
synopsis: "An opam plugin to build projects"
3+
maintainer: "Kate <[email protected]>"
4+
description: """
5+
opam-build allows to build any project easily with just one command: opam build. This will setup a local switch and install all the required dependencies.
6+
"""
7+
authors: "Kate <[email protected]>"
8+
license: "MIT"
9+
homepage: "https://github.com/kit-ty-kate/opam-build"
10+
bug-reports: "https://github.com/kit-ty-kate/opam-build/issues"
11+
depends: [
12+
"ocaml" {>= "4.08"}
13+
"dune" {>= "2.0"}
14+
"opam-client" {>= "2.3" & < "2.4"}
15+
"cmdliner" {>= "1.1"}
16+
"xdg" {>= "3.0.0"}
17+
]
18+
available: opam-version >= "2.3" & opam-version < "2.4"
19+
flags: plugin
20+
build: ["dune" "build" "-p" name "-j" jobs]
21+
dev-repo: "git+https://github.com/kit-ty-kate/opam-build.git"
22+
url {
23+
src:
24+
"https://github.com/kit-ty-kate/opam-build/releases/download/v0.2.5/opam-build-0.2.5.tar.gz"
25+
checksum: [
26+
"md5=7d68bc72a303aafa5d1546fa6bc55d7b"
27+
"sha512=a07acfff1f566c9f4e50fba8b9dae9c25a09acd304e6a5c260602e31eb3932aef02795de16f2616ba78a93db2499114cc6a1371d65dd34c1a45418b16f75886a"
28+
]
29+
}
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
opam-version: "2.0"
2+
synopsis: "An opam plugin to test projects"
3+
maintainer: "Kate <[email protected]>"
4+
description: """
5+
opam-test: similar to opam-build, this will setup a local switch and install all the required dependencies, but will also run the tests on top of it. It also circumvents issues with cyclic test dependencies in opam (where the tests require a package that needs the library it is trying to test). Such cyclic dependency is present in packages such as odoc or base. See https://github.com/ocaml/opam/issues/4594
6+
"""
7+
authors: "Kate <[email protected]>"
8+
license: "MIT"
9+
homepage: "https://github.com/kit-ty-kate/opam-build"
10+
bug-reports: "https://github.com/kit-ty-kate/opam-build/issues"
11+
depends: [
12+
"ocaml" {>= "4.08"}
13+
"dune" {>= "2.0"}
14+
"opam-client" {>= "2.3" & < "2.4"}
15+
"cmdliner" {>= "1.1"}
16+
"xdg" {>= "3.0.0"}
17+
]
18+
available: opam-version >= "2.3" & opam-version < "2.4"
19+
flags: plugin
20+
build: ["dune" "build" "-p" name "-j" jobs]
21+
dev-repo: "git+https://github.com/kit-ty-kate/opam-build.git"
22+
url {
23+
src:
24+
"https://github.com/kit-ty-kate/opam-build/releases/download/v0.2.5/opam-build-0.2.5.tar.gz"
25+
checksum: [
26+
"md5=7d68bc72a303aafa5d1546fa6bc55d7b"
27+
"sha512=a07acfff1f566c9f4e50fba8b9dae9c25a09acd304e6a5c260602e31eb3932aef02795de16f2616ba78a93db2499114cc6a1371d65dd34c1a45418b16f75886a"
28+
]
29+
}

0 commit comments

Comments
 (0)