unikernel-repo/packages/builder-web.0.2.0~dev/opam

67 lines
1.9 KiB
Text
Raw Permalink Normal View History

2021-06-09 15:44:18 +00:00
opam-version: "2.0"
maintainer: "Reynir Björnsson <reynir@reynir.dk>"
authors: ["Reynir Björnsson <reynir@reynir.dk>"]
2023-09-09 12:19:41 +00:00
homepage: "https://github.com/robur-coop/builder-web"
dev-repo: "git+https://github.com/robur-coop/builder-web.git"
bug-reports: "https://github.com/robur-coop/builder-web/issues"
2021-06-09 15:44:18 +00:00
license: "ISC"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
2021-08-02 13:43:47 +00:00
["sh" "-ex" "packaging/FreeBSD/create_package.sh"] {os = "freebsd"}
["sh" "-ex" "packaging/debian/create_package.sh"] {os-family = "debian"}
2021-06-09 15:44:18 +00:00
]
depends: [
"ocaml" {>= "4.13.0" & < "5.0.0"}
"dune" {>= "2.7.0"}
2024-09-05 17:06:53 +00:00
"builder" {>= "0.4.0"}
"dream" {>= "1.0.0~alpha7"}
2021-06-09 15:44:18 +00:00
"bos"
2024-09-05 17:06:53 +00:00
"ohex" {>= "0.2.0"}
2023-08-25 09:55:11 +00:00
"lwt" {>= "5.7.0"}
2024-09-05 17:06:53 +00:00
"caqti" {>= "2.1.2"}
2021-06-09 15:44:18 +00:00
"caqti-lwt"
"caqti-driver-sqlite3"
2023-08-25 09:55:11 +00:00
"mirage-crypto-rng" {>= "0.11.0"}
2024-09-05 17:06:53 +00:00
"kdf"
2021-06-09 15:44:18 +00:00
"opam-core"
2021-11-14 12:57:50 +00:00
"opam-format" {>= "2.1.0"}
"metrics" {>= "0.3.0"}
"metrics-lwt" {>= "0.3.0"}
"metrics-influx" {>= "0.3.0"}
"metrics-rusage" {>= "0.3.0"}
2021-06-09 15:44:18 +00:00
"ipaddr"
2021-11-14 12:57:50 +00:00
"tyxml" {>= "4.3.0"}
2021-06-09 16:03:55 +00:00
"ptime"
"duration"
2024-09-05 17:06:53 +00:00
"asn1-combinators" {>= "0.3.0"}
2021-06-09 16:03:55 +00:00
"logs"
2022-03-16 12:25:18 +00:00
"cmdliner" {>= "1.1.0"}
2021-06-09 16:03:55 +00:00
"uri"
2021-11-14 12:57:50 +00:00
"fmt" {>= "0.8.7"}
"cmarkit" {>= "0.3.0"}
"tar" {>= "3.0.0"}
"tar-unix" {>= "3.0.0"}
2022-02-23 21:13:31 +00:00
"owee"
2022-06-23 10:26:08 +00:00
"solo5-elftool" {>= "0.3.0"}
"decompress" {>= "1.5.0"}
2024-09-05 17:06:53 +00:00
"digestif" {>= "1.2.0"}
"alcotest" {>= "1.2.0" & with-test}
2022-07-12 15:24:32 +00:00
"ppx_deriving" {with-test}
"ppx_deriving_yojson" {with-test}
2024-09-05 17:06:53 +00:00
"yojson" {with-test}
2021-06-09 15:44:18 +00:00
]
synopsis: "Web interface for builder"
2021-11-14 12:57:50 +00:00
description: """
2023-09-09 12:19:41 +00:00
Builder-web takes in submissions of builds, typically from [builder](https://github.com/robur-coop/builder/), and displays the produced artifacts in a way that makes it easy to compare checksums and build status.
2021-11-14 12:57:50 +00:00
Produced binaries can be downloaded and executed.
[builds.robur.coop](https://builds.robur.coop/) itself runs builder-web.
"""
2021-06-09 15:44:18 +00:00
url {
src: "git+https://github.com/robur-coop/builder-web.git"
2021-06-09 15:44:18 +00:00
}