File tree Expand file tree Collapse file tree 3 files changed +213
-0
lines changed
dockerfile-cmd/dockerfile-cmd.8.3.0
dockerfile-opam/dockerfile-opam.8.3.0
dockerfile/dockerfile.8.3.0 Expand file tree Collapse file tree 3 files changed +213
-0
lines changed Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Dockerfile eDSL -- generation support"
3+ description: """\
4+ This library provides a typed OCaml interface to generating Dockerfiles
5+ programmatically without having to resort to lots of shell scripting and
6+ awk/sed-style assembly.
7+
8+ This sublibrary has support functions for generating arrays of Dockerfiles
9+ programmatically."""
10+ maintainer: [
11+ "Anil Madhavapeddy <anil@recoil.org>"
12+ "Antonin Décimo <antonin@tarides.com>"
13+ "David Allsopp <david.allsopp@metastack.com>"
14+ "Kate <kit.ty.kate@disroot.org>"
15+ "Thomas Leonard <talex5@gmail.com>"
16+ "Tim McGilchrist <timmcgil@gmail.com>"
17+ ]
18+ authors: [
19+ "Anil Madhavapeddy"
20+ "Anton Kochkov"
21+ "Antonin Décimo"
22+ "David Allsopp"
23+ "Ewan Mellor"
24+ "Kate Deplaix"
25+ "Louis Gesbert"
26+ "Mark Elvers"
27+ "Thomas Leonard"
28+ "Tim McGilchrist"
29+ ]
30+ license: "ISC"
31+ tags: ["org:mirage" "org:ocamllabs"]
32+ homepage: "https://github.com/ocurrent/ocaml-dockerfile"
33+ doc: "https://ocurrent.github.io/ocaml-dockerfile/doc/dockerfile-cmd/"
34+ bug-reports: "https://github.com/ocurrent/ocaml-dockerfile/issues"
35+ depends: [
36+ "dune" {>= "3.0"}
37+ "bos" {>= "0.2"}
38+ "cmdliner"
39+ "dockerfile-opam" {= version}
40+ "fmt" {>= "0.8.7"}
41+ "logs"
42+ "ppx_sexp_conv" {>= "v0.9.0"}
43+ "sexplib"
44+ "odoc" {with-doc}
45+ ]
46+ conflicts: [
47+ "result" {< "1.5"}
48+ "rresult" {< "0.7.0"}
49+ ]
50+ build: [
51+ ["dune" "subst"] {dev}
52+ [
53+ "dune"
54+ "build"
55+ "-p"
56+ name
57+ "-j"
58+ jobs
59+ "@install"
60+ "@runtest" {with-test}
61+ "@doc" {with-doc}
62+ ]
63+ ]
64+ dev-repo: "git+https://github.com/ocurrent/ocaml-dockerfile.git"
65+ url {
66+ src:
67+ "https://github.com/ocurrent/ocaml-dockerfile/releases/download/8.3.0/ocaml-dockerfile-8.3.0.tbz"
68+ checksum: [
69+ "md5=0aeafb54ee66c61ff097c272a8a6f64b"
70+ "sha512=fddaf283a1dc82fbf14d6358cbc44596f7e274f2f5198b8ae2f393c0cf1e03be97f7949be9f07c92425a24c6342d839c31c139b491d85306ef4dbfb7f8ee578c"
71+ ]
72+ }
73+ x-maintenance-intent: ["(latest)"]
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Dockerfile eDSL -- opam support"
3+ description: """\
4+ This library provides a typed OCaml interface to generating Dockerfiles
5+ programmatically without having to resort to lots of shell scripting and
6+ awk/sed-style assembly.
7+
8+ The opam subpackage provides opam and Linux-specific distribution support
9+ for generating dockerfiles."""
10+ maintainer: [
11+ "Anil Madhavapeddy <anil@recoil.org>"
12+ "Antonin Décimo <antonin@tarides.com>"
13+ "David Allsopp <david.allsopp@metastack.com>"
14+ "Kate <kit.ty.kate@disroot.org>"
15+ "Thomas Leonard <talex5@gmail.com>"
16+ "Tim McGilchrist <timmcgil@gmail.com>"
17+ ]
18+ authors: [
19+ "Anil Madhavapeddy"
20+ "Anton Kochkov"
21+ "Antonin Décimo"
22+ "David Allsopp"
23+ "Ewan Mellor"
24+ "Kate Deplaix"
25+ "Louis Gesbert"
26+ "Mark Elvers"
27+ "Thomas Leonard"
28+ "Tim McGilchrist"
29+ ]
30+ license: "ISC"
31+ tags: ["org:mirage" "org:ocamllabs"]
32+ homepage: "https://github.com/ocurrent/ocaml-dockerfile"
33+ doc: "https://ocurrent.github.io/ocaml-dockerfile/doc/dockerfile-opam/"
34+ bug-reports: "https://github.com/ocurrent/ocaml-dockerfile/issues"
35+ depends: [
36+ "dune" {>= "3.0"}
37+ "astring"
38+ "dockerfile" {= version}
39+ "fmt" {>= "0.8.7"}
40+ "ocaml-version" {>= "3.5.0"}
41+ "ppx_sexp_conv" {>= "v0.9.0"}
42+ "sexplib"
43+ "odoc" {with-doc}
44+ ]
45+ conflicts: [
46+ "result" {< "1.5"}
47+ "rresult" {< "0.7.0"}
48+ ]
49+ build: [
50+ ["dune" "subst"] {dev}
51+ [
52+ "dune"
53+ "build"
54+ "-p"
55+ name
56+ "-j"
57+ jobs
58+ "@install"
59+ "@runtest" {with-test}
60+ "@doc" {with-doc}
61+ ]
62+ ]
63+ dev-repo: "git+https://github.com/ocurrent/ocaml-dockerfile.git"
64+ url {
65+ src:
66+ "https://github.com/ocurrent/ocaml-dockerfile/releases/download/8.3.0/ocaml-dockerfile-8.3.0.tbz"
67+ checksum: [
68+ "md5=0aeafb54ee66c61ff097c272a8a6f64b"
69+ "sha512=fddaf283a1dc82fbf14d6358cbc44596f7e274f2f5198b8ae2f393c0cf1e03be97f7949be9f07c92425a24c6342d839c31c139b491d85306ef4dbfb7f8ee578c"
70+ ]
71+ }
72+ x-maintenance-intent: ["(latest)"]
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Dockerfile eDSL in OCaml"
3+ description: """\
4+ This library provides a typed OCaml interface to generating Dockerfiles
5+ programmatically without having to resort to lots of shell scripting and
6+ awk/sed-style assembly."""
7+ maintainer: [
8+ "Anil Madhavapeddy <anil@recoil.org>"
9+ "Antonin Décimo <antonin@tarides.com>"
10+ "David Allsopp <david.allsopp@metastack.com>"
11+ "Kate <kit.ty.kate@disroot.org>"
12+ "Thomas Leonard <talex5@gmail.com>"
13+ "Tim McGilchrist <timmcgil@gmail.com>"
14+ ]
15+ authors: [
16+ "Anil Madhavapeddy"
17+ "Anton Kochkov"
18+ "Antonin Décimo"
19+ "David Allsopp"
20+ "Ewan Mellor"
21+ "Kate Deplaix"
22+ "Louis Gesbert"
23+ "Mark Elvers"
24+ "Thomas Leonard"
25+ "Tim McGilchrist"
26+ ]
27+ license: "ISC"
28+ tags: ["org:mirage" "org:ocamllabs"]
29+ homepage: "https://github.com/ocurrent/ocaml-dockerfile"
30+ doc: "https://ocurrent.github.io/ocaml-dockerfile/doc/dockerfile/"
31+ bug-reports: "https://github.com/ocurrent/ocaml-dockerfile/issues"
32+ depends: [
33+ "dune" {>= "3.0"}
34+ "ocaml" {>= "4.08"}
35+ "fmt" {>= "0.8.7"}
36+ "ppx_sexp_conv" {>= "v0.9.0"}
37+ "sexplib"
38+ "alcotest" {>= "1.7.0" & with-test}
39+ "odoc" {with-doc}
40+ ]
41+ conflicts: [
42+ "result" {< "1.5"}
43+ "rresult" {< "0.7.0"}
44+ ]
45+ build: [
46+ ["dune" "subst"] {dev}
47+ [
48+ "dune"
49+ "build"
50+ "-p"
51+ name
52+ "-j"
53+ jobs
54+ "@install"
55+ "@runtest" {with-test}
56+ "@doc" {with-doc}
57+ ]
58+ ]
59+ dev-repo: "git+https://github.com/ocurrent/ocaml-dockerfile.git"
60+ url {
61+ src:
62+ "https://github.com/ocurrent/ocaml-dockerfile/releases/download/8.3.0/ocaml-dockerfile-8.3.0.tbz"
63+ checksum: [
64+ "md5=0aeafb54ee66c61ff097c272a8a6f64b"
65+ "sha512=fddaf283a1dc82fbf14d6358cbc44596f7e274f2f5198b8ae2f393c0cf1e03be97f7949be9f07c92425a24c6342d839c31c139b491d85306ef4dbfb7f8ee578c"
66+ ]
67+ }
68+ x-maintenance-intent: ["(latest)"]
You can’t perform that action at this time.
0 commit comments