Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions packages/obuilder-spec/obuilder-spec.0.4/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
opam-version: "2.0"
Comment thread
kit-ty-kate marked this conversation as resolved.
license: "Apache-2.0"
synopsis: "Build specification format"
description:
"A library for constructing, reading and writing OBuilder build specification files."
maintainer: ["talex5@gmail.com"]
authors: ["talex5@gmail.com"]
homepage: "https://github.com/ocurrent/obuilder"
doc: "https://ocurrent.github.io/obuilder/"
bug-reports: "https://github.com/ocurrent/obuilder/issues"
depends: [
"dune" {>= "2.7"}
"fmt" {>= "0.8.9"}
"sexplib"
"astring"
"ppx_deriving"
"ppx_sexp_conv"
"ocaml" {>= "4.10.0"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ocurrent/obuilder.git"
url {
src:
"https://github.com/ocurrent/obuilder/releases/download/v0.4/obuilder-0.4.tbz"
checksum: [
"sha256=b50d35dac6fe69cbb6a07bd82e922cb0fd842d7d70c60d74001491becdb18b13"
"sha512=1eb006a9bba83bf1f6006082cf313b03d1b9f6af6ee1faecdcb987731809e7e8f301f8373a02158c81017411f6d18f917b77b320ce78c7a9357175003c77d5d5"
]
}
x-commit-hash: "ad84405ec45ed79a4b3a52051a2981068d992768"
54 changes: 54 additions & 0 deletions packages/obuilder/obuilder.0.4/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
opam-version: "2.0"
Comment thread
kit-ty-kate marked this conversation as resolved.
license: "Apache-2.0"
synopsis: "Run build scripts for CI"
description:
"OBuilder takes a build script (similar to a Dockerfile) and performs the steps in it in a sandboxed environment."
maintainer: ["talex5@gmail.com"]
authors: ["talex5@gmail.com"]
homepage: "https://github.com/ocurrent/obuilder"
doc: "https://ocurrent.github.io/obuilder/"
bug-reports: "https://github.com/ocurrent/obuilder/issues"
depends: [
"dune" {>= "2.7"}
"lwt" {>= "5.5.0"}
"astring"
"fmt" {>= "0.8.9"}
"logs"
"cmdliner" {>= "1.1.0"}
"tar-unix" {>= "2.0.0"}
"yojson" {>= "1.6.0"}
"sexplib"
"ppx_deriving"
"ppx_sexp_conv"
"sha"
"sqlite3"
"obuilder-spec" {= version}
"ocaml" {>= "4.10.0"}
"alcotest-lwt" {with-test}
"odoc" {with-doc}
]
conflicts: [ "result" {< "1.5"} ]
build: [
Comment thread
kit-ty-kate marked this conversation as resolved.
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ocurrent/obuilder.git"
url {
src:
"https://github.com/ocurrent/obuilder/releases/download/v0.4/obuilder-0.4.tbz"
checksum: [
"sha256=b50d35dac6fe69cbb6a07bd82e922cb0fd842d7d70c60d74001491becdb18b13"
"sha512=1eb006a9bba83bf1f6006082cf313b03d1b9f6af6ee1faecdcb987731809e7e8f301f8373a02158c81017411f6d18f917b77b320ce78c7a9357175003c77d5d5"
]
}
x-commit-hash: "ad84405ec45ed79a4b3a52051a2981068d992768"
2 changes: 1 addition & 1 deletion packages/ocluster/ocluster.0.1/opam
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ depends: [
"prometheus-app" {>= "1.0" & < "1.2"}
"cohttp-lwt-unix"
"sqlite3"
"obuilder"
"obuilder" {< "0.4"}
"psq"
"mirage-crypto" {>= "0.8.5"}
"ocaml" {>= "4.10.0"}
Expand Down