Skip to content

Commit 69c4e4f

Browse files
authored
Merge pull request ocaml#22803 from lefessan/z-2022-12-27-opam-bin
Add opam-bin version 1.2.0
2 parents 9af04a8 + eff5e87 commit 69c4e4f

File tree

2 files changed

+99
-0
lines changed
  • packages
    • opam-bin/opam-bin.1.2.0
    • opam_bin_lib/opam_bin_lib.1.2.0

2 files changed

+99
-0
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
opam-version: "2.0"
2+
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
3+
synopsis:
4+
"The opam-bin tool is a simple framework to use `opam` with binary packages"
5+
description: """\
6+
opam-binary is a simple framework to use `opam` with binary packages.
7+
"""
8+
authors: ["Fabrice Le Fessant <[email protected]>"]
9+
maintainer: ["Fabrice Le Fessant <[email protected]>"]
10+
homepage: "https://ocamlpro.github.io/opam-bin"
11+
doc: "https://ocamlpro.github.io/opam-bin/."
12+
bug-reports: "https://github.com/ocamlpro/opam-bin/issues"
13+
dev-repo: "git+https://github.com/ocamlpro/opam-bin.git"
14+
tags: "org:ocamlpro"
15+
build: [
16+
["dune" "subst"] {dev}
17+
["sh" "-c" "./scripts/before.sh build '%{name}%'"]
18+
[
19+
"dune"
20+
"build"
21+
"-p"
22+
name
23+
"-j"
24+
jobs
25+
"@install"
26+
"@runtest" {with-test}
27+
"@doc" {with-doc}
28+
]
29+
["sh" "-c" "./scripts/after.sh build '%{name}%'"]
30+
]
31+
install: [
32+
["sh" "-c" "./scripts/before.sh install '%{name}%'"]
33+
]
34+
depends: [
35+
"ocaml" {>= "4.07.0"}
36+
"dune" {>= "2.7.0"}
37+
"opam_bin_lib" {= version}
38+
"ppx_inline_test" {with-test}
39+
"ppx_expect" {with-test}
40+
"odoc" {with-doc}
41+
"ocamlformat" {with-test}
42+
]
43+
44+
url {
45+
src: "https://github.com/ocamlpro/opam-bin/archive/v1.2.0.tar.gz"
46+
checksum: [ "sha256=1d061f53870a3212133c6713207e040fca9c76a1b81696049599f1a84b44e76c" ]
47+
}
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
opam-version: "2.0"
2+
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
3+
synopsis:
4+
"The opam-bin tool is a simple framework to use `opam` with binary packages"
5+
description: """\
6+
opam-binary is a simple framework to use `opam` with binary packages.
7+
"""
8+
authors: ["Fabrice Le Fessant <[email protected]>"]
9+
maintainer: ["Fabrice Le Fessant <[email protected]>"]
10+
homepage: "https://ocamlpro.github.io/opam-bin"
11+
doc: "https://ocamlpro.github.io/opam-bin/."
12+
bug-reports: "https://github.com/ocamlpro/opam-bin/issues"
13+
dev-repo: "git+https://github.com/ocamlpro/opam-bin.git"
14+
tags: "org:ocamlpro"
15+
build: [
16+
["dune" "subst"] {dev}
17+
["sh" "-c" "./scripts/before.sh build '%{name}%'"]
18+
[
19+
"dune"
20+
"build"
21+
"-p"
22+
name
23+
"-j"
24+
jobs
25+
"@install"
26+
"@runtest" {with-test}
27+
"@doc" {with-doc}
28+
]
29+
["sh" "-c" "./scripts/after.sh build '%{name}%'"]
30+
]
31+
install: [
32+
["sh" "-c" "./scripts/before.sh install '%{name}%'"]
33+
]
34+
depends: [
35+
"ocaml" {>= "4.07.0"}
36+
"dune" {>= "2.7.0"}
37+
"re" {> "1.0"}
38+
"ezjsonm" {>= "1.0.0" & < "2.0.0"}
39+
"ez_opam_file" {>= "0.1.0" & < "1.0.0"}
40+
"ez_file" {>= "0.3.0"}
41+
"ez_config" {>= "0.1.0" & < "1.0.0"}
42+
"ez_cmdliner" {>= "0.1.0" & < "1.0.0"}
43+
"ppx_inline_test" {with-test}
44+
"ppx_expect" {with-test}
45+
"odoc" {with-doc}
46+
"ocamlformat" {with-test}
47+
]
48+
49+
url {
50+
src: "https://github.com/ocamlpro/opam-bin/archive/v1.2.0.tar.gz"
51+
checksum: [ "sha256=1d061f53870a3212133c6713207e040fca9c76a1b81696049599f1a84b44e76c" ]
52+
}

0 commit comments

Comments
 (0)