Skip to content

Commit 93d1b91

Browse files
committed
MlFront 2.3.1
1 parent cf409d9 commit 93d1b91

File tree

9 files changed

+347
-0
lines changed
  • packages
    • MlFront_Cache/MlFront_Cache.2.3.1
    • MlFront_Cli/MlFront_Cli.2.3.1
    • MlFront_Config/MlFront_Config.2.3.1
    • MlFront_Core/MlFront_Core.2.3.1
    • MlFront_Errors/MlFront_Errors.2.3.1
    • MlFront_Logs/MlFront_Logs.2.3.1
    • MlFront_Manip/MlFront_Manip.2.3.1
    • MlFront_Signify/MlFront_Signify.2.3.1
    • MlFront_ZipFile/MlFront_ZipFile.2.3.1

9 files changed

+347
-0
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
opam-version: "2.0"
2+
synopsis: "Caching for MlFront"
3+
maintainer: "Diskuv, Inc. <[email protected]>"
4+
authors: "Diskuv, Inc. <[email protected]>"
5+
license: "Apache-2.0"
6+
homepage: "https://diskuv.com/mlfront/overview-1/"
7+
bug-reports: "https://gitlab.com/dkml/build-tools/MlFront/-/issues"
8+
depends: [
9+
"dune" {>= "3.12"}
10+
"ocaml" {>= "4.14"}
11+
"bos" {>= "0.2.1"}
12+
"fmt" {>= "0.9.0"}
13+
"fpath" {>= "0.7.3"}
14+
"mirage-crypto-rng" {>= "2.0.0"}
15+
"sqlite3" {>= "5.2.0"}
16+
"uuidm" {>= "0.9.8"}
17+
"MlFront_Core" {= version}
18+
"MlFront_Errors" {= version}
19+
"tezt" {with-test & >= "4.1.0"}
20+
"odoc" {with-doc}
21+
]
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://gitlab.com/dkml/build-tools/MlFront.git"
37+
url {
38+
src:
39+
"https://gitlab.com/api/v4/projects/60486861/packages/generic/src/2.3.1-3/MlFront.tar.gz"
40+
checksum: [
41+
"md5=cafc8d646018256e2af43c002f044785"
42+
"sha512=f563dee8aab457e7cdd76428459b0a693ef165fc595570434e4ae038158a30ff4555dcad797ccb9c2e9abaa5c5a561df2364a33e768df6cc2f05a230e3d84c13"
43+
]
44+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
opam-version: "2.0"
2+
synopsis: "Command line interfaces for MlFront"
3+
maintainer: "Diskuv, Inc. <[email protected]>"
4+
authors: "Diskuv, Inc. <[email protected]>"
5+
license: "Apache-2.0"
6+
homepage: "https://diskuv.com/mlfront/overview-1/"
7+
bug-reports: "https://gitlab.com/dkml/build-tools/MlFront/-/issues"
8+
depends: [
9+
"dune" {>= "3.12"}
10+
"ocaml" {>= "4.14"}
11+
"odoc" {with-doc}
12+
]
13+
build: [
14+
["dune" "subst"] {dev}
15+
[
16+
"dune"
17+
"build"
18+
"-p"
19+
name
20+
"-j"
21+
jobs
22+
"@install"
23+
"@runtest" {with-test}
24+
"@doc" {with-doc}
25+
]
26+
]
27+
dev-repo: "git+https://gitlab.com/dkml/build-tools/MlFront.git"
28+
url {
29+
src:
30+
"https://gitlab.com/api/v4/projects/60486861/packages/generic/src/2.3.1-3/MlFront.tar.gz"
31+
checksum: [
32+
"md5=cafc8d646018256e2af43c002f044785"
33+
"sha512=f563dee8aab457e7cdd76428459b0a693ef165fc595570434e4ae038158a30ff4555dcad797ccb9c2e9abaa5c5a561df2364a33e768df6cc2f05a230e3d84c13"
34+
]
35+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
opam-version: "2.0"
2+
synopsis: "Configuration for MlFront"
3+
maintainer: "Diskuv, Inc. <[email protected]>"
4+
authors: "Diskuv, Inc. <[email protected]>"
5+
license: "Apache-2.0"
6+
homepage: "https://diskuv.com/mlfront/overview-1/"
7+
bug-reports: "https://gitlab.com/dkml/build-tools/MlFront/-/issues"
8+
depends: [
9+
"dune" {>= "3.12"}
10+
"ocaml" {>= "4.14"}
11+
"cppo" {>= "1.6.8"}
12+
"MlFront_Core" {= version}
13+
"ppxlib" {with-test & >= "0.30.0"}
14+
"tezt" {with-test & >= "4.1.0"}
15+
"odoc" {with-doc}
16+
]
17+
build: [
18+
["dune" "subst"] {dev}
19+
[
20+
"dune"
21+
"build"
22+
"-p"
23+
name
24+
"-j"
25+
jobs
26+
"@install"
27+
"@runtest" {with-test}
28+
"@doc" {with-doc}
29+
]
30+
]
31+
dev-repo: "git+https://gitlab.com/dkml/build-tools/MlFront.git"
32+
url {
33+
src:
34+
"https://gitlab.com/api/v4/projects/60486861/packages/generic/src/2.3.1-3/MlFront.tar.gz"
35+
checksum: [
36+
"md5=cafc8d646018256e2af43c002f044785"
37+
"sha512=f563dee8aab457e7cdd76428459b0a693ef165fc595570434e4ae038158a30ff4555dcad797ccb9c2e9abaa5c5a561df2364a33e768df6cc2f05a230e3d84c13"
38+
]
39+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
opam-version: "2.0"
2+
synopsis: "Module and library identification for MlFront"
3+
maintainer: "Diskuv, Inc. <[email protected]>"
4+
authors: "Diskuv, Inc. <[email protected]>"
5+
license: "Apache-2.0"
6+
homepage: "https://diskuv.com/mlfront/overview-1/"
7+
bug-reports: "https://gitlab.com/dkml/build-tools/MlFront/-/issues"
8+
depends: [
9+
"dune" {>= "3.12"}
10+
"ocaml" {>= "4.14"}
11+
"digestif" {>= "1.1.4"}
12+
"stringext" {>= "1.6.0"}
13+
"crowbar" {with-test & >= "0.2.1"}
14+
"tezt" {with-test & >= "4.1.0"}
15+
"odoc" {with-doc}
16+
]
17+
build: [
18+
["dune" "subst"] {dev}
19+
[
20+
"dune"
21+
"build"
22+
"-p"
23+
name
24+
"-j"
25+
jobs
26+
"@install"
27+
"@runtest" {with-test}
28+
"@doc" {with-doc}
29+
]
30+
]
31+
dev-repo: "git+https://gitlab.com/dkml/build-tools/MlFront.git"
32+
url {
33+
src:
34+
"https://gitlab.com/api/v4/projects/60486861/packages/generic/src/2.3.1-3/MlFront.tar.gz"
35+
checksum: [
36+
"md5=cafc8d646018256e2af43c002f044785"
37+
"sha512=f563dee8aab457e7cdd76428459b0a693ef165fc595570434e4ae038158a30ff4555dcad797ccb9c2e9abaa5c5a561df2364a33e768df6cc2f05a230e3d84c13"
38+
]
39+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
opam-version: "2.0"
2+
synopsis: "Error handling for MlFront"
3+
maintainer: "Diskuv, Inc. <[email protected]>"
4+
authors: "Diskuv, Inc. <[email protected]>"
5+
license: "Apache-2.0"
6+
homepage: "https://diskuv.com/mlfront/overview-1/"
7+
bug-reports: "https://gitlab.com/dkml/build-tools/MlFront/-/issues"
8+
depends: [
9+
"dune" {>= "3.12"}
10+
"ocaml" {>= "4.14"}
11+
"fmt" {>= "0.9.0"}
12+
"logs" {>= "0.7.0"}
13+
"stringext" {>= "1.6.0"}
14+
"tezt" {with-test & >= "4.1.0"}
15+
"odoc" {with-doc}
16+
]
17+
build: [
18+
["dune" "subst"] {dev}
19+
[
20+
"dune"
21+
"build"
22+
"-p"
23+
name
24+
"-j"
25+
jobs
26+
"@install"
27+
"@runtest" {with-test}
28+
"@doc" {with-doc}
29+
]
30+
]
31+
dev-repo: "git+https://gitlab.com/dkml/build-tools/MlFront.git"
32+
url {
33+
src:
34+
"https://gitlab.com/api/v4/projects/60486861/packages/generic/src/2.3.1-3/MlFront.tar.gz"
35+
checksum: [
36+
"md5=cafc8d646018256e2af43c002f044785"
37+
"sha512=f563dee8aab457e7cdd76428459b0a693ef165fc595570434e4ae038158a30ff4555dcad797ccb9c2e9abaa5c5a561df2364a33e768df6cc2f05a230e3d84c13"
38+
]
39+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
opam-version: "2.0"
2+
synopsis: "Logging for MlFront"
3+
maintainer: "Diskuv, Inc. <[email protected]>"
4+
authors: "Diskuv, Inc. <[email protected]>"
5+
license: "Apache-2.0"
6+
homepage: "https://diskuv.com/mlfront/overview-1/"
7+
bug-reports: "https://gitlab.com/dkml/build-tools/MlFront/-/issues"
8+
depends: [
9+
"dune" {>= "3.12"}
10+
"ocaml" {>= "4.14"}
11+
"MlFront_Cli" {= version}
12+
"cmdliner" {>= "1.2.0"}
13+
"fmt" {>= "0.9.0"}
14+
"logs" {>= "0.7.0"}
15+
"odoc" {with-doc}
16+
]
17+
build: [
18+
["dune" "subst"] {dev}
19+
[
20+
"dune"
21+
"build"
22+
"-p"
23+
name
24+
"-j"
25+
jobs
26+
"@install"
27+
"@runtest" {with-test}
28+
"@doc" {with-doc}
29+
]
30+
]
31+
dev-repo: "git+https://gitlab.com/dkml/build-tools/MlFront.git"
32+
url {
33+
src:
34+
"https://gitlab.com/api/v4/projects/60486861/packages/generic/src/2.3.1-3/MlFront.tar.gz"
35+
checksum: [
36+
"md5=cafc8d646018256e2af43c002f044785"
37+
"sha512=f563dee8aab457e7cdd76428459b0a693ef165fc595570434e4ae038158a30ff4555dcad797ccb9c2e9abaa5c5a561df2364a33e768df6cc2f05a230e3d84c13"
38+
]
39+
}
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
opam-version: "2.0"
2+
synopsis: "Binary manipulation tools for MlFront"
3+
maintainer: "Diskuv, Inc. <[email protected]>"
4+
authors: "Diskuv, Inc. <[email protected]>"
5+
license: "Apache-2.0"
6+
homepage: "https://diskuv.com/mlfront/overview-1/"
7+
bug-reports: "https://gitlab.com/dkml/build-tools/MlFront/-/issues"
8+
depends: [
9+
"dune" {>= "3.12"}
10+
"ocaml" {>= "4.14"}
11+
"tezt" {with-test & >= "4.1.0"}
12+
"ppxlib" {with-test & >= "0.30.0"}
13+
"odoc" {with-doc}
14+
]
15+
build: [
16+
["dune" "subst"] {dev}
17+
[
18+
"dune"
19+
"build"
20+
"-p"
21+
name
22+
"-j"
23+
jobs
24+
"@install"
25+
"@runtest" {with-test}
26+
"@doc" {with-doc}
27+
]
28+
]
29+
dev-repo: "git+https://gitlab.com/dkml/build-tools/MlFront.git"
30+
url {
31+
src:
32+
"https://gitlab.com/api/v4/projects/60486861/packages/generic/src/2.3.1-3/MlFront.tar.gz"
33+
checksum: [
34+
"md5=cafc8d646018256e2af43c002f044785"
35+
"sha512=f563dee8aab457e7cdd76428459b0a693ef165fc595570434e4ae038158a30ff4555dcad797ccb9c2e9abaa5c5a561df2364a33e768df6cc2f05a230e3d84c13"
36+
]
37+
}
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
opam-version: "2.0"
2+
synopsis: "OpenBSD compatible signify for MlFront"
3+
maintainer: "Diskuv, Inc. <[email protected]>"
4+
authors: "Diskuv, Inc. <[email protected]>"
5+
license: "Apache-2.0"
6+
homepage: "https://diskuv.com/mlfront/overview-1/"
7+
bug-reports: "https://gitlab.com/dkml/build-tools/MlFront/-/issues"
8+
depends: [
9+
"dune" {>= "3.12"}
10+
"ocaml" {>= "4.14"}
11+
"mirage-crypto-rng" {>= "2.0.0"}
12+
"stringext" {with-test & >= "1.6.0"}
13+
"tezt" {with-test & >= "4.1.0"}
14+
"odoc" {with-doc}
15+
]
16+
build: [
17+
["dune" "subst"] {dev}
18+
[
19+
"dune"
20+
"build"
21+
"-p"
22+
name
23+
"-j"
24+
jobs
25+
"@install"
26+
"@runtest" {with-test}
27+
"@doc" {with-doc}
28+
]
29+
]
30+
dev-repo: "git+https://gitlab.com/dkml/build-tools/MlFront.git"
31+
url {
32+
src:
33+
"https://gitlab.com/api/v4/projects/60486861/packages/generic/src/2.3.1-3/MlFront.tar.gz"
34+
checksum: [
35+
"md5=cafc8d646018256e2af43c002f044785"
36+
"sha512=f563dee8aab457e7cdd76428459b0a693ef165fc595570434e4ae038158a30ff4555dcad797ccb9c2e9abaa5c5a561df2364a33e768df6cc2f05a230e3d84c13"
37+
]
38+
}
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
opam-version: "2.0"
2+
synopsis: "Zip files for MlFront"
3+
maintainer: "Diskuv, Inc. <[email protected]>"
4+
authors: "Diskuv, Inc. <[email protected]>"
5+
license: "Apache-2.0"
6+
homepage: "https://diskuv.com/mlfront/overview-1/"
7+
bug-reports: "https://gitlab.com/dkml/build-tools/MlFront/-/issues"
8+
depends: [
9+
"dune" {>= "3.12"}
10+
"ocaml" {>= "4.14"}
11+
"re" {>= "1.11.0"}
12+
"tezt" {with-test & >= "4.1.0"}
13+
"odoc" {with-doc}
14+
]
15+
build: [
16+
["dune" "subst"] {dev}
17+
[
18+
"dune"
19+
"build"
20+
"-p"
21+
name
22+
"-j"
23+
jobs
24+
"@install"
25+
"@runtest" {with-test}
26+
"@doc" {with-doc}
27+
]
28+
]
29+
dev-repo: "git+https://gitlab.com/dkml/build-tools/MlFront.git"
30+
url {
31+
src:
32+
"https://gitlab.com/api/v4/projects/60486861/packages/generic/src/2.3.1-3/MlFront.tar.gz"
33+
checksum: [
34+
"md5=cafc8d646018256e2af43c002f044785"
35+
"sha512=f563dee8aab457e7cdd76428459b0a693ef165fc595570434e4ae038158a30ff4555dcad797ccb9c2e9abaa5c5a561df2364a33e768df6cc2f05a230e3d84c13"
36+
]
37+
}

0 commit comments

Comments
 (0)