this repo has no description
0
fork

Configure Feed

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

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

CHANGES:

- Add ArchLinux support (@kit-ty-kate avsm/ocaml-dockerfile#23)
- Move Alpine 3.11 to deprecated (@kit-ty-kate avsm/ocaml-dockerfile#23).
- Add OracleLinux v8 (@kit-ty-kate avsm/ocaml-dockerfile#24)
- Add Ubuntu 20.10 and Fedora 33 (@avsm)
- Make Alpine 3.13 and Fedora 33 the latest versions.
- Update the latest versions of Ubuntu LTS to 20.04
and CentOS to 8 and OracleLinux to 8 (@avsm)
- Activate Powertools for CentOS 8 (@kit-ty-kate avsm/ocaml-dockerfile#26)
- Build aarch64 images for Fedora 33 and higher as well (@avsm).
- Remove outdated bulk-build and archive functions from
`Dockerfile_opam` (@avsm)
- Create a Tier 3 for distros for things we do not want
to test in the opam repository (@avsm @kit-ty-kate)

+115
+40
packages/dockerfile-cmd/dockerfile-cmd.7.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 + maintainer: "Anil Madhavapeddy <anil@recoil.org>" 11 + authors: "Anil Madhavapeddy <anil@recoil.org>" 12 + license: "ISC" 13 + tags: ["org:mirage" "org:ocamllabs"] 14 + homepage: "https://github.com/avsm/ocaml-dockerfile" 15 + doc: "https://avsm.github.io/ocaml-dockerfile/doc" 16 + bug-reports: "https://github.com/avsm/ocaml-dockerfile/issues" 17 + depends: [ 18 + "ocaml" {>= "4.02.3"} 19 + "dune" {>= "2.0.0"} 20 + "dockerfile-opam" {= version} 21 + "cmdliner" 22 + "fmt" 23 + "logs" 24 + "bos" 25 + "ppx_sexp_conv" {>= "v0.9.0"} 26 + ] 27 + build: [ 28 + ["dune" "subst"] {dev} 29 + ["dune" "build" "-p" name "-j" jobs] 30 + ] 31 + dev-repo: "git+https://github.com/avsm/ocaml-dockerfile.git" 32 + x-commit-hash: "054dc07bf0cc196708357905e3b8ec8b4d84993d" 33 + url { 34 + src: 35 + "https://github.com/avsm/ocaml-dockerfile/releases/download/v7.1.0/dockerfile-v7.1.0.tbz" 36 + checksum: [ 37 + "sha256=471ee833f127d091d61280ed7cb29dd55d0dc63b2cb03b7b767f9f658214eda4" 38 + "sha512=ae4146e1747a82f28095e6e02a74ca8f645530cbe571953208ab15645733a77aac321d83bd62b5a9c8e71b73a98cf1ee9d3eb13b206c32a88d68ae017112b82f" 39 + ] 40 + }
+41
packages/dockerfile-opam/dockerfile-opam.7.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 9 + support for generating dockerfiles.""" 10 + maintainer: "Anil Madhavapeddy <anil@recoil.org>" 11 + authors: "Anil Madhavapeddy <anil@recoil.org>" 12 + license: "ISC" 13 + tags: ["org:mirage" "org:ocamllabs"] 14 + homepage: "https://github.com/avsm/ocaml-dockerfile" 15 + doc: "https://avsm.github.io/ocaml-dockerfile/doc" 16 + bug-reports: "https://github.com/avsm/ocaml-dockerfile/issues" 17 + depends: [ 18 + "ocaml" {>= "4.02.3"} 19 + "dune" {>= "2.0.0"} 20 + "dockerfile" {= version} 21 + "ocaml-version" {>= "1.0.0"} 22 + "cmdliner" 23 + "astring" 24 + "ppx_sexp_conv" {>= "v0.9.0"} 25 + "sexplib" 26 + "fmt" 27 + ] 28 + build: [ 29 + ["dune" "subst"] {dev} 30 + ["dune" "build" "-p" name "-j" jobs] 31 + ] 32 + dev-repo: "git+https://github.com/avsm/ocaml-dockerfile.git" 33 + x-commit-hash: "054dc07bf0cc196708357905e3b8ec8b4d84993d" 34 + url { 35 + src: 36 + "https://github.com/avsm/ocaml-dockerfile/releases/download/v7.1.0/dockerfile-v7.1.0.tbz" 37 + checksum: [ 38 + "sha256=471ee833f127d091d61280ed7cb29dd55d0dc63b2cb03b7b767f9f658214eda4" 39 + "sha512=ae4146e1747a82f28095e6e02a74ca8f645530cbe571953208ab15645733a77aac321d83bd62b5a9c8e71b73a98cf1ee9d3eb13b206c32a88d68ae017112b82f" 40 + ] 41 + }
+34
packages/dockerfile/dockerfile.7.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 + maintainer: "Anil Madhavapeddy <anil@recoil.org>" 8 + authors: "Anil Madhavapeddy <anil@recoil.org>" 9 + license: "ISC" 10 + tags: ["org:mirage" "org:ocamllabs"] 11 + homepage: "https://github.com/avsm/ocaml-dockerfile" 12 + doc: "https://avsm.github.io/ocaml-dockerfile/doc" 13 + bug-reports: "https://github.com/avsm/ocaml-dockerfile/issues" 14 + depends: [ 15 + "ocaml" {>= "4.02.3"} 16 + "dune" {>= "2.0.0"} 17 + "ppx_sexp_conv" {>= "v0.9.0"} 18 + "sexplib" 19 + "fmt" 20 + ] 21 + build: [ 22 + ["dune" "subst"] {dev} 23 + ["dune" "build" "-p" name "-j" jobs] 24 + ] 25 + dev-repo: "git+https://github.com/avsm/ocaml-dockerfile.git" 26 + x-commit-hash: "054dc07bf0cc196708357905e3b8ec8b4d84993d" 27 + url { 28 + src: 29 + "https://github.com/avsm/ocaml-dockerfile/releases/download/v7.1.0/dockerfile-v7.1.0.tbz" 30 + checksum: [ 31 + "sha256=471ee833f127d091d61280ed7cb29dd55d0dc63b2cb03b7b767f9f658214eda4" 32 + "sha512=ae4146e1747a82f28095e6e02a74ca8f645530cbe571953208ab15645733a77aac321d83bd62b5a9c8e71b73a98cf1ee9d3eb13b206c32a88d68ae017112b82f" 33 + ] 34 + }