Skip to content

Commit e390070

Browse files
authored
Merge pull request #28611 from dbuenzli/b0-publish-b0.0.0.6-etc-5ac839b0c7859d2d
2 parents 5ea7156 + 02183dd commit e390070

File tree

2 files changed

+111
-0
lines changed
  • packages

2 files changed

+111
-0
lines changed

packages/b0/b0.0.0.6/opam

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
opam-version: "2.0"
2+
synopsis: "Software construction and deployment kit"
3+
description: """\
4+
WARNING this package is unstable and work in progress, do not depend on it.
5+
6+
b0 describes software construction and deployments using modular and
7+
customizable definitions written in OCaml.
8+
9+
At the core of b0 is the `b0.memo` library which provides arbitrary
10+
build abstraction with reliable, efficient incremental rebuilds.
11+
12+
b0 is distributed under the ISC license. It depends on [cmdliner][cmdliner].
13+
14+
[cmdliner]: https://erratique.ch/software/cmdliner"""
15+
maintainer: "Daniel Bünzli <daniel.buenzl [email protected]>"
16+
authors: "The b0 programmers"
17+
license: ["ISC" "BSD-2-Clause"]
18+
tags: ["dev" "org:erratique" "org:b0-system" "build"]
19+
homepage: "https://erratique.ch/software/b0"
20+
doc: "https://erratique.ch/software/b0/doc"
21+
bug-reports: "https://github.com/b0-system/b0/issues"
22+
depends: [
23+
"ocaml" {>= "4.14.0"}
24+
"ocamlfind" {build}
25+
"ocamlbuild" {build}
26+
"topkg" {build & >= "1.1.0"}
27+
"cmdliner" {>= "2.0.0"}
28+
]
29+
conflicts: ["ocaml-option-bytecode-only"]
30+
build: [
31+
["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"]
32+
[
33+
"cmdliner"
34+
"install"
35+
"tool-support"
36+
"--update-opam-install=%{_:name}%.install"
37+
"_build/src/tool/b0_tool_main_run.native:b0" {ocaml:native}
38+
"_build/src/tool/b0_tool_main_run.byte:b0" {!ocaml:native}
39+
"_build/src/lowtools/show_url.native:show-url" {ocaml:native}
40+
"_build/src/lowtools/show_url.byte:show-url" {!ocaml:native}
41+
"_build/src/lowtools/b0_cache_tool.native:b0-cache" {ocaml:native}
42+
"_build/src/lowtools/b0_cache_tool.byte:b0-cache" {!ocaml:native}
43+
"_build/src/lowtools/b0_hash_tool.native:b0-hash" {ocaml:native}
44+
"_build/src/lowtools/b0_hash_tool.byte:b0-hash" {!ocaml:native}
45+
"_build/src/lowtools/b0_log_tool.native:b0-log" {ocaml:native}
46+
"_build/src/lowtools/b0_log_tool.byte:b0-log" {!ocaml:native}
47+
"_build/src/lowtools/b0_sttyle.native:b0-sttyle" {ocaml:native}
48+
"_build/src/lowtools/b0_sttyle.byte:b0-sttyle" {!ocaml:native}
49+
"_build/cmdliner-install"
50+
]
51+
]
52+
build-env: CAML_LD_LIBRARY_PATH += "_build/src/std"
53+
dev-repo: "git+https://erratique.ch/repos/b0.git"
54+
url {
55+
src: "https://erratique.ch/software/b0/releases/b0-0.0.6.tbz"
56+
checksum:
57+
"sha512=e9aa779e66c08fc763019f16d4706f465d16c05d6400b58fbd0313317ef33ddea51952e2b058db28e65f7ddb7012f328c8bf02d8f1da17bb543348541a2587f0"
58+
}
59+
x-maintenance-intent: ["(latest)"]

packages/odig/odig.0.1.0/opam

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
opam-version: "2.0"
2+
synopsis: "Lookup documentation of installed OCaml packages"
3+
description: """\
4+
odig is a command line tool to lookup documentation of installed OCaml
5+
packages. It finds package metadata, readmes, change logs, licenses,
6+
cross-referenced `odoc` API documentation and manuals.
7+
8+
odig is distributed under the ISC license. The theme fonts have their
9+
own [licenses](LICENSE.md).
10+
11+
Homepage: <https://erratique.ch/software/odig>"""
12+
maintainer: "Daniel Bünzli <daniel.buenzl [email protected]>"
13+
authors: "The odig programmers"
14+
license: [
15+
"ISC" "LicenseRef-ParaType-Free-Font-License" "LicenseRef-DejaVu-fonts"
16+
]
17+
tags: [
18+
"build" "dev" "doc" "meta" "packaging" "org:erratique" "org:b0-system"
19+
]
20+
homepage: "https://erratique.ch/software/odig"
21+
doc: "https://erratique.ch/software/odig/doc"
22+
bug-reports: "https://github.com/b0-system/odig/issues"
23+
depends: [
24+
"ocaml" {>= "4.14.0"}
25+
"ocamlfind" {build}
26+
"ocamlbuild" {build}
27+
"topkg" {build & >= "1.1.0"}
28+
"cmdliner" {>= "2.0.0"}
29+
"odoc" {>= "2.0.0"}
30+
"b0" {= "0.0.6"}
31+
]
32+
build: [
33+
["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"]
34+
[
35+
"cmdliner"
36+
"install"
37+
"tool-support"
38+
"--update-opam-install=%{_:name}%.install"
39+
"_build/src/odig_main.native:odig" {ocaml:native}
40+
"_build/src/odig_main.byte:odig" {!ocaml:native}
41+
"_build/src/gh_pages_amend.native:gh-pages-amend" {ocaml:native}
42+
"_build/src/gh_pages_amend.byte:gh-pages-amend" {!ocaml:native}
43+
"_build/cmdliner-install"
44+
]
45+
]
46+
dev-repo: "git+https://erratique.ch/repos/odig.git"
47+
url {
48+
src: "https://erratique.ch/software/odig/releases/odig-0.1.0.tbz"
49+
checksum:
50+
"sha512=acabe752f5010900e9fe024321d6e34cc07f395ebd18f015a00b88c4c6482645b591a83a3f088f110adaf83e062551feb800a1dbca7646cce305eb3f542cfa41"
51+
}
52+
x-maintenance-intent: ["(latest)"]

0 commit comments

Comments
 (0)