this repo has no description
0
fork

Configure Feed

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

Merge pull request #26567 from jonahbeckford/opam-publish-dkml-install-dkml-install-installer-dkml-install-runner-dkml-package-console.0.5.3

4 packages from diskuv/dkml-install-api at 0.5.3

authored by

Shon Feder and committed by
GitHub
17707c01 ef80b771

+180
+43
packages/dkml-install-installer/dkml-install-installer.0.5.3/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Build tools for DkML installers" 3 + description: 4 + "Build-time executables that can generate Dune include files which will compile essential end-user executables." 5 + maintainer: "opensource+dkml@support.diskuv.com" 6 + authors: "Diskuv, Inc. <opensource+dkml@support.diskuv.com>" 7 + license: "Apache-2.0" 8 + homepage: "https://github.com/diskuv/dkml-install-api" 9 + bug-reports: "https://github.com/diskuv/dkml-install-api/issues" 10 + depends: [ 11 + "dune" {>= "3.2"} 12 + "ocaml" {>= "4.08.0"} 13 + "alcotest" {>= "1.4.0" & with-test} 14 + "dkml-install" {= version} 15 + "dkml-install-runner" {= version} 16 + "re" {>= "1.3.0"} 17 + "crunch" {>= "3.3.1"} 18 + "odoc" {with-doc} 19 + ] 20 + available: os = "win32" | os = "linux" | os = "macos" 21 + build: [ 22 + ["dune" "subst"] {dev} 23 + [ 24 + "dune" 25 + "build" 26 + "-p" 27 + name 28 + "-j" 29 + jobs 30 + "@install" 31 + "@runtest" {with-test} 32 + "@doc" {with-doc} 33 + ] 34 + ] 35 + dev-repo: "git+https://github.com/diskuv/dkml-install-api.git" 36 + url { 37 + src: 38 + "https://github.com/diskuv/dkml-install-api/releases/download/0.5.3/src.tar.gz" 39 + checksum: [ 40 + "md5=e61b1ab5693a4749caae1959aea6fd70" 41 + "sha512=8321e92d8c204eb26da69c8b522fbcca0c38fbc61a26d1d367aad28e6c8c3d4ee8933596b9a63f8c6d6c3bbd36582292d5bfd4680906e4a2e4bef45e3f6f17aa" 42 + ] 43 + }
+46
packages/dkml-install-runner/dkml-install-runner.0.5.3/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Runner executable for DkML installation" 3 + description: 4 + "The runner executable is responsible for loading and running all DkML installation components." 5 + maintainer: "opensource+dkml@support.diskuv.com" 6 + authors: "Diskuv, Inc. <opensource+dkml@support.diskuv.com>" 7 + license: "Apache-2.0" 8 + homepage: "https://github.com/diskuv/dkml-install-api" 9 + bug-reports: "https://github.com/diskuv/dkml-install-api/issues" 10 + depends: [ 11 + "dune" {>= "3.2"} 12 + "ocaml" {>= "4.08.0"} 13 + "alcotest" {>= "1.4.0" & with-test} 14 + "dkml-install" {= version} 15 + "astring" {>= "0.8.5"} 16 + "bos" {>= "0.2.0"} 17 + "cmdliner" {>= "1.1.1"} 18 + "fmt" {>= "0.8.9"} 19 + "logs" {>= "0.7.0"} 20 + "diskuvbox" {>= "0.1.1"} 21 + "odoc" {with-doc} 22 + ] 23 + available: os = "win32" | os = "linux" | os = "macos" 24 + build: [ 25 + ["dune" "subst"] {dev} 26 + [ 27 + "dune" 28 + "build" 29 + "-p" 30 + name 31 + "-j" 32 + jobs 33 + "@install" 34 + "@runtest" {with-test} 35 + "@doc" {with-doc} 36 + ] 37 + ] 38 + dev-repo: "git+https://github.com/diskuv/dkml-install-api.git" 39 + url { 40 + src: 41 + "https://github.com/diskuv/dkml-install-api/releases/download/0.5.3/src.tar.gz" 42 + checksum: [ 43 + "md5=e61b1ab5693a4749caae1959aea6fd70" 44 + "sha512=8321e92d8c204eb26da69c8b522fbcca0c38fbc61a26d1d367aad28e6c8c3d4ee8933596b9a63f8c6d6c3bbd36582292d5bfd4680906e4a2e4bef45e3f6f17aa" 45 + ] 46 + }
+47
packages/dkml-install/dkml-install.0.5.3/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "API and registry for DkML installation components" 3 + description: 4 + "All DkML installation components implement the interfaces exposed in this API." 5 + maintainer: "opensource+dkml@support.diskuv.com" 6 + authors: "Diskuv, Inc. <opensource+dkml@support.diskuv.com>" 7 + license: "Apache-2.0" 8 + homepage: "https://github.com/diskuv/dkml-install-api" 9 + bug-reports: "https://github.com/diskuv/dkml-install-api/issues" 10 + depends: [ 11 + "dune" {>= "3.2"} 12 + "ocaml" {>= "4.08.0"} 13 + "alcotest" {>= "1.4.0" & with-test} 14 + "ppx_deriving" {>= "5.2.1"} 15 + "result" {>= "1.5"} 16 + "astring" {>= "0.8.5"} 17 + "bos" {>= "0.2.0"} 18 + "cmdliner" {>= "1.1.1"} 19 + "fmt" {>= "0.8.9"} 20 + "tsort" {>= "2.1.0"} 21 + "diskuvbox" {>= "0.1.1" & with-test} 22 + "odoc" {with-doc} 23 + ] 24 + available: os = "win32" | os = "linux" | os = "macos" 25 + build: [ 26 + ["dune" "subst"] {dev} 27 + [ 28 + "dune" 29 + "build" 30 + "-p" 31 + name 32 + "-j" 33 + jobs 34 + "@install" 35 + "@runtest" {with-test} 36 + "@doc" {with-doc} 37 + ] 38 + ] 39 + dev-repo: "git+https://github.com/diskuv/dkml-install-api.git" 40 + url { 41 + src: 42 + "https://github.com/diskuv/dkml-install-api/releases/download/0.5.3/src.tar.gz" 43 + checksum: [ 44 + "md5=e61b1ab5693a4749caae1959aea6fd70" 45 + "sha512=8321e92d8c204eb26da69c8b522fbcca0c38fbc61a26d1d367aad28e6c8c3d4ee8933596b9a63f8c6d6c3bbd36582292d5bfd4680906e4a2e4bef45e3f6f17aa" 46 + ] 47 + }
+44
packages/dkml-package-console/dkml-package-console.0.5.3/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Console setup and uninstall executables for DkML installation" 3 + description: 4 + "The setup and uninstall executables are responsible for launching the DkML runners." 5 + maintainer: "opensource+dkml@support.diskuv.com" 6 + authors: "Diskuv, Inc. <opensource+dkml@support.diskuv.com>" 7 + license: "Apache-2.0" 8 + homepage: "https://github.com/diskuv/dkml-install-api" 9 + bug-reports: "https://github.com/diskuv/dkml-install-api/issues" 10 + depends: [ 11 + "dune" {>= "3.2"} 12 + "ocaml" {>= "4.08.0"} 13 + "alcotest" {>= "1.4.0" & with-test} 14 + "dkml-install" {= version} 15 + "dkml-install-runner" {= version} 16 + "diskuvbox" {>= "0.1.1"} 17 + "crunch" {>= "3.3.1"} 18 + "dkml-component-xx-console" {>= "0.1.1"} 19 + "odoc" {with-doc} 20 + ] 21 + available: os = "win32" | os = "linux" | os = "macos" 22 + build: [ 23 + ["dune" "subst"] {dev} 24 + [ 25 + "dune" 26 + "build" 27 + "-p" 28 + name 29 + "-j" 30 + jobs 31 + "@install" 32 + "@runtest" {with-test} 33 + "@doc" {with-doc} 34 + ] 35 + ] 36 + dev-repo: "git+https://github.com/diskuv/dkml-install-api.git" 37 + url { 38 + src: 39 + "https://github.com/diskuv/dkml-install-api/releases/download/0.5.3/src.tar.gz" 40 + checksum: [ 41 + "md5=e61b1ab5693a4749caae1959aea6fd70" 42 + "sha512=8321e92d8c204eb26da69c8b522fbcca0c38fbc61a26d1d367aad28e6c8c3d4ee8933596b9a63f8c6d6c3bbd36582292d5bfd4680906e4a2e4bef45e3f6f17aa" 43 + ] 44 + }