builder-web/builder-web.opam

65 lines
1.8 KiB
Text
Raw Normal View History

2020-12-02 13:33:15 +00:00
opam-version: "2.0"
maintainer: "Reynir Björnsson <reynir@reynir.dk>"
authors: ["Reynir Björnsson <reynir@reynir.dk>"]
2023-09-09 09:42:34 +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"
2020-12-02 13:33:15 +00:00
license: "ISC"
build: [
2021-06-09 15:17:40 +00:00
["dune" "subst"] {dev}
2020-12-02 13:33:15 +00:00
["dune" "build" "-p" name "-j" jobs]
2021-03-23 09:36:20 +00:00
["dune" "runtest" "-p" name "-j" jobs] {with-test}
2021-08-02 13:44:38 +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:17:40 +00:00
]
2020-12-02 13:33:15 +00:00
depends: [
"ocaml" {>= "4.13.0"}
2021-11-12 13:42:26 +00:00
"dune" {>= "2.7.0"}
"builder" {>= "0.2.0"}
"dream" {>= "1.0.0~alpha4"}
"cstruct" {>= "6.0.0"}
2021-01-06 10:48:24 +00:00
"bos"
"hex"
"lwt" {>= "5.7.0"}
2022-04-04 16:30:21 +00:00
"caqti" {>= "1.8.0"}
"caqti-lwt"
"caqti-driver-sqlite3"
2021-01-19 11:53:56 +00:00
"pbkdf"
"mirage-crypto-rng" {>= "0.11.0"}
"scrypt-kdf"
2021-02-12 11:26:14 +00:00
"opam-core"
"opam-format" {>= "2.1.0"}
2021-11-12 14:31:42 +00:00
"metrics" {>= "0.3.0"}
"metrics-lwt" {>= "0.3.0"}
"metrics-influx" {>= "0.3.0"}
"metrics-rusage" {>= "0.3.0"}
2021-05-26 13:16:17 +00:00
"ipaddr"
"tyxml" {>= "4.3.0"}
2021-06-09 16:03:03 +00:00
"ptime"
"duration"
"mirage-crypto"
"asn1-combinators"
"logs"
"cmdliner" {>= "1.1.0"}
2021-06-09 16:03:03 +00:00
"uri"
"fmt" {>= "0.8.7"}
2023-08-25 09:04:35 +00:00
"cmarkit"
"tar"
"owee"
"solo5-elftool" {>= "0.3.0"}
"decompress"
"alcotest" {with-test}
"ppx_deriving" {with-test}
"ppx_deriving_yojson" {with-test}
2023-09-12 11:11:14 +00:00
"yojson" {with-test}
2020-12-02 13:33:15 +00:00
]
synopsis: "Web interface for builder"
2021-11-12 13:42:26 +00:00
description: """
2023-09-09 09:42:34 +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-12 13:42:26 +00:00
Produced binaries can be downloaded and executed.
[builds.robur.coop](https://builds.robur.coop/) itself runs builder-web.
"""