this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #22520 from tmcgilchrist/release-dockerfile-v8.1.0

[new release] dockerfile, dockerfile-opam and dockerfile-cmd (8.1.0)

authored by

Kate and committed by
GitHub
19f4c40d aa8c3857

+207
+74
packages/dockerfile-cmd/dockerfile-cmd.8.1.0/opam
··· 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 + """ 11 + maintainer: [ 12 + "Anil Madhavapeddy <anil@recoil.org>" 13 + "Antonin Décimo <antonin@tarides.com>" 14 + "David Allsopp <david.allsopp@metastack.com>" 15 + "Kate <kit.ty.kate@disroot.org>" 16 + "Thomas Leonard <talex5@gmail.com>" 17 + "Tim McGilchrist <timmcgil@gmail.com>" 18 + ] 19 + authors: [ 20 + "Anil Madhavapeddy" 21 + "Anton Kochkov" 22 + "Antonin Décimo" 23 + "David Allsopp" 24 + "Ewan Mellor" 25 + "Kate Deplaix" 26 + "Louis Gesbert" 27 + "Mark Elvers" 28 + "Thomas Leonard" 29 + "Tim McGilchrist" 30 + ] 31 + license: "ISC" 32 + tags: ["org:mirage" "org:ocamllabs"] 33 + homepage: "https://github.com/ocurrent/ocaml-dockerfile" 34 + doc: "https://ocurrent.github.io/ocaml-dockerfile/doc/dockerfile-cmd/" 35 + bug-reports: "https://github.com/ocurrent/ocaml-dockerfile/issues" 36 + depends: [ 37 + "dune" {>= "3.0"} 38 + "bos" {>= "0.2"} 39 + "cmdliner" 40 + "dockerfile-opam" {= version} 41 + "fmt" {>= "0.8.7"} 42 + "logs" 43 + "ppx_sexp_conv" {>= "v0.9.0"} 44 + "sexplib" 45 + "odoc" {with-doc} 46 + ] 47 + build: [ 48 + ["dune" "subst"] {dev} 49 + [ 50 + "dune" 51 + "build" 52 + "-p" 53 + name 54 + "-j" 55 + jobs 56 + "@install" 57 + "@runtest" {with-test} 58 + "@doc" {with-doc} 59 + ] 60 + ] 61 + conflicts: [ 62 + "result" {< "1.5"} 63 + "rresult" {< "0.7.0"} 64 + ] 65 + dev-repo: "git+https://github.com/ocurrent/ocaml-dockerfile.git" 66 + url { 67 + src: 68 + "https://github.com/ocurrent/ocaml-dockerfile/releases/download/v8.1.0/dockerfile-8.1.0.tbz" 69 + checksum: [ 70 + "sha256=7d01e40d0f128160dd3ad078221ea42c306720fd2c65e941c456895e21e7b227" 71 + "sha512=92a402c09c65b01ed2faf7687c24721b7baa54e623e2b85401c8816f6afbeb3aec0cc0c2cb4282ca8377f7552aac834573c6b0deb16832a0c50984063256ce9b" 72 + ] 73 + } 74 + x-commit-hash: "3074cdaa605ef38b323652028c05e624a4a7e187"
+69
packages/dockerfile-opam/dockerfile-opam.8.1.0/opam
··· 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 + """ 11 + maintainer: [ 12 + "Anil Madhavapeddy <anil@recoil.org>" 13 + "Antonin Décimo <antonin@tarides.com>" 14 + "David Allsopp <david.allsopp@metastack.com>" 15 + "Kate <kit.ty.kate@disroot.org>" 16 + "Thomas Leonard <talex5@gmail.com>" 17 + "Tim McGilchrist <timmcgil@gmail.com>" 18 + ] 19 + authors: [ 20 + "Anil Madhavapeddy" 21 + "Anton Kochkov" 22 + "Antonin Décimo" 23 + "David Allsopp" 24 + "Ewan Mellor" 25 + "Kate Deplaix" 26 + "Louis Gesbert" 27 + "Mark Elvers" 28 + "Thomas Leonard" 29 + "Tim McGilchrist" 30 + ] 31 + license: "ISC" 32 + tags: ["org:mirage" "org:ocamllabs"] 33 + homepage: "https://github.com/ocurrent/ocaml-dockerfile" 34 + doc: "https://ocurrent.github.io/ocaml-dockerfile/doc/dockerfile-opam/" 35 + bug-reports: "https://github.com/ocurrent/ocaml-dockerfile/issues" 36 + depends: [ 37 + "dune" {>= "3.0"} 38 + "astring" 39 + "dockerfile" {= version} 40 + "fmt" {>= "0.8.7"} 41 + "ocaml-version" {>= "3.5.0"} 42 + "ppx_sexp_conv" {>= "v0.9.0"} 43 + "sexplib" 44 + "odoc" {with-doc} 45 + ] 46 + build: [ 47 + ["dune" "subst"] {dev} 48 + [ 49 + "dune" 50 + "build" 51 + "-p" 52 + name 53 + "-j" 54 + jobs 55 + "@install" 56 + "@runtest" {with-test} 57 + "@doc" {with-doc} 58 + ] 59 + ] 60 + dev-repo: "git+https://github.com/ocurrent/ocaml-dockerfile.git" 61 + url { 62 + src: 63 + "https://github.com/ocurrent/ocaml-dockerfile/releases/download/v8.1.0/dockerfile-8.1.0.tbz" 64 + checksum: [ 65 + "sha256=7d01e40d0f128160dd3ad078221ea42c306720fd2c65e941c456895e21e7b227" 66 + "sha512=92a402c09c65b01ed2faf7687c24721b7baa54e623e2b85401c8816f6afbeb3aec0cc0c2cb4282ca8377f7552aac834573c6b0deb16832a0c50984063256ce9b" 67 + ] 68 + } 69 + x-commit-hash: "3074cdaa605ef38b323652028c05e624a4a7e187"
+64
packages/dockerfile/dockerfile.8.1.0/opam
··· 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 + """ 8 + maintainer: [ 9 + "Anil Madhavapeddy <anil@recoil.org>" 10 + "Antonin Décimo <antonin@tarides.com>" 11 + "David Allsopp <david.allsopp@metastack.com>" 12 + "Kate <kit.ty.kate@disroot.org>" 13 + "Thomas Leonard <talex5@gmail.com>" 14 + "Tim McGilchrist <timmcgil@gmail.com>" 15 + ] 16 + authors: [ 17 + "Anil Madhavapeddy" 18 + "Anton Kochkov" 19 + "Antonin Décimo" 20 + "David Allsopp" 21 + "Ewan Mellor" 22 + "Kate Deplaix" 23 + "Louis Gesbert" 24 + "Mark Elvers" 25 + "Thomas Leonard" 26 + "Tim McGilchrist" 27 + ] 28 + license: "ISC" 29 + tags: ["org:mirage" "org:ocamllabs"] 30 + homepage: "https://github.com/ocurrent/ocaml-dockerfile" 31 + doc: "https://ocurrent.github.io/ocaml-dockerfile/doc/dockerfile/" 32 + bug-reports: "https://github.com/ocurrent/ocaml-dockerfile/issues" 33 + depends: [ 34 + "dune" {>= "3.0"} 35 + "ocaml" {>= "4.08"} 36 + "fmt" {>= "0.8.7"} 37 + "ppx_sexp_conv" {>= "v0.9.0"} 38 + "sexplib" 39 + "odoc" {with-doc} 40 + ] 41 + build: [ 42 + ["dune" "subst"] {dev} 43 + [ 44 + "dune" 45 + "build" 46 + "-p" 47 + name 48 + "-j" 49 + jobs 50 + "@install" 51 + "@runtest" {with-test} 52 + "@doc" {with-doc} 53 + ] 54 + ] 55 + dev-repo: "git+https://github.com/ocurrent/ocaml-dockerfile.git" 56 + url { 57 + src: 58 + "https://github.com/ocurrent/ocaml-dockerfile/releases/download/v8.1.0/dockerfile-8.1.0.tbz" 59 + checksum: [ 60 + "sha256=7d01e40d0f128160dd3ad078221ea42c306720fd2c65e941c456895e21e7b227" 61 + "sha512=92a402c09c65b01ed2faf7687c24721b7baa54e623e2b85401c8816f6afbeb3aec0cc0c2cb4282ca8377f7552aac834573c6b0deb16832a0c50984063256ce9b" 62 + ] 63 + } 64 + x-commit-hash: "3074cdaa605ef38b323652028c05e624a4a7e187"