Skip to content

Commit 9c115ea

Browse files
authored
Merge pull request ocaml#27262 from dinosaure/release-carton-1.0.0
[new release] carton (4 packages) (1.0.0)
2 parents bae1d2f + 01953e3 commit 9c115ea

File tree

4 files changed

+157
-0
lines changed
  • packages
    • carton-git-lwt/carton-git-lwt.1.0.0
    • carton-lwt/carton-lwt.1.0.0
    • carton-miou-unix/carton-miou-unix.1.0.0
    • carton/carton.1.0.0

4 files changed

+157
-0
lines changed
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: "Implementation of PACK file in OCaml"
3+
description: """\
4+
Carton is an implementation of the PACK file
5+
in OCaml. PACK file is used by Git to store Git objects. Carton is more
6+
abstracted when it can store any objects."""
7+
maintainer: "Romain Calascibetta <[email protected]>"
8+
authors: "Romain Calascibetta <[email protected]>"
9+
license: "MIT"
10+
homepage: "https://git.robur.coop/robur/carton"
11+
doc: "https://robur-coop.github.io/carton/"
12+
bug-reports: "https://git.robur.coop/robur/carton/issues"
13+
depends: [
14+
"ocaml" {>= "4.08.0"}
15+
"dune" {>= "3.11.0"}
16+
"carton" {= version}
17+
"cachet-lwt"
18+
"carton-lwt" {= version}
19+
"alcotest-lwt" {>= "1.8.0" & with-test}
20+
"digestif" {>= "1.2.0"}
21+
]
22+
conflicts: [ "result" {< "1.5"} ]
23+
build: [
24+
["dune" "subst"] {dev}
25+
["dune" "build" "-p" name "-j" jobs]
26+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
27+
]
28+
dev-repo: "git+https://github.com/robur-coop/carton.git"
29+
x-maintenance-intent: [ "(latest)" ]
30+
url {
31+
src:
32+
"https://github.com/robur-coop/carton/releases/download/1.0.0/carton-1.0.0.tbz"
33+
checksum: [
34+
"sha256=0d5e34a76527d6537264667c9a27625600c1d84ca38cdb2da6563aabc70135cd"
35+
"sha512=3ef5fe849a51cca67eddd57869aacf38e4f3efa30f69f81fd5d32603a79e0706efebcfd3def4889a1713dce1e568e12e28936552ba561dd4d575c43e8962e44b"
36+
]
37+
}
38+
x-commit-hash: "c5c59afc1e42e50e4b9b5032a76e6c92094b3531"
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: "Implementation of PACK file in OCaml"
3+
description: """\
4+
Carton is an implementation of the PACK file
5+
in OCaml. PACK file is used by Git to store Git objects. Carton is more
6+
abstracted when it can store any objects."""
7+
maintainer: "Romain Calascibetta <[email protected]>"
8+
authors: "Romain Calascibetta <[email protected]>"
9+
license: "MIT"
10+
homepage: "https://git.robur.coop/robur/carton"
11+
doc: "https://robur-coop.github.io/carton/"
12+
bug-reports: "https://git.robur.coop/robur/carton/issues"
13+
depends: [
14+
"ocaml" {>= "4.08.0"}
15+
"dune" {>= "3.11.0"}
16+
"carton" {= version}
17+
"lwt" {>= "5.5.0"}
18+
"cachet-lwt" {>= "0.0.2"}
19+
"alcotest-lwt" {>= "1.8.0" & with-test}
20+
"digestif" {>= "1.2.0" & with-test}
21+
]
22+
conflicts: [ "result" {< "1.5"} ]
23+
build: [
24+
["dune" "subst"] {dev}
25+
["dune" "build" "-p" name "-j" jobs]
26+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
27+
]
28+
dev-repo: "git+https://github.com/robur-coop/carton.git"
29+
x-maintenance-intent: [ "(latest)" ]
30+
url {
31+
src:
32+
"https://github.com/robur-coop/carton/releases/download/1.0.0/carton-1.0.0.tbz"
33+
checksum: [
34+
"sha256=0d5e34a76527d6537264667c9a27625600c1d84ca38cdb2da6563aabc70135cd"
35+
"sha512=3ef5fe849a51cca67eddd57869aacf38e4f3efa30f69f81fd5d32603a79e0706efebcfd3def4889a1713dce1e568e12e28936552ba561dd4d575c43e8962e44b"
36+
]
37+
}
38+
x-commit-hash: "c5c59afc1e42e50e4b9b5032a76e6c92094b3531"
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
opam-version: "2.0"
2+
synopsis: "Implementation of PACK file in OCaml for Miou"
3+
description: """Carton is an implementation of the PACK file
4+
in OCaml. PACK file is used by Git to store Git objects. Carton is more
5+
abstracted when it can store any objects."""
6+
maintainer: "Romain Calascibetta <[email protected]>"
7+
authors: "Romain Calascibetta <[email protected]>"
8+
license: "MIT"
9+
homepage: "https://git.robur.coop/robur/carton"
10+
doc: "https://robur-coop.github.io/carton/"
11+
bug-reports: "https://git.robur.coop/robur/carton/issues"
12+
depends: [
13+
"ocaml" {>= "5.0.0"}
14+
"dune" {>= "3.11.0"}
15+
"carton" {= version}
16+
"fmt"
17+
"hxd"
18+
"logs" {>= "0.7.0"}
19+
"fpath"
20+
"ohex" {>= "0.2.0"}
21+
"miou" {>= "0.3.1"}
22+
"digestif" {>= "1.2.0"}
23+
"progress" {>= "0.4.0"}
24+
"cmdliner" {>= "1.3.0"}
25+
]
26+
build: [
27+
["dune" "subst"] {dev}
28+
["dune" "build" "-p" name "-j" jobs]
29+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
30+
]
31+
dev-repo: "git+https://github.com/robur-coop/carton.git"
32+
x-maintenance-intent: [ "(latest)" ]
33+
url {
34+
src:
35+
"https://github.com/robur-coop/carton/releases/download/1.0.0/carton-1.0.0.tbz"
36+
checksum: [
37+
"sha256=0d5e34a76527d6537264667c9a27625600c1d84ca38cdb2da6563aabc70135cd"
38+
"sha512=3ef5fe849a51cca67eddd57869aacf38e4f3efa30f69f81fd5d32603a79e0706efebcfd3def4889a1713dce1e568e12e28936552ba561dd4d575c43e8962e44b"
39+
]
40+
}
41+
x-commit-hash: "c5c59afc1e42e50e4b9b5032a76e6c92094b3531"

packages/carton/carton.1.0.0/opam

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
opam-version: "2.0"
2+
synopsis: "Implementation of PACKv2 file in OCaml"
3+
description: """\
4+
Carton is an implementation of the PACKv2 file
5+
in OCaml. PACKv2 file is used by Git to store Git objects.
6+
Carton is more abstracted when it can store any objects."""
7+
maintainer: "Romain Calascibetta <[email protected]>"
8+
authors: "Romain Calascibetta <[email protected]>"
9+
license: "MIT"
10+
homepage: "https://git.robur.coop/robur/carton"
11+
doc: "https://robur-coop.github.io/carton/"
12+
bug-reports: "https://git.robur.coop/robur/carton/issues"
13+
depends: [
14+
"ocaml" {>= "4.08.0"}
15+
"dune" {>= "3.11.0"}
16+
"cachet" {>= "0.0.2"}
17+
"duff" {>= "0.5"}
18+
"optint"
19+
"checkseum"
20+
"decompress" {>= "1.5.0"}
21+
"logs"
22+
"ohex"
23+
]
24+
conflicts: [ "result" {< "1.5"} ]
25+
build: [
26+
["dune" "subst"] {dev}
27+
["dune" "build" "-p" name "-j" jobs]
28+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
29+
]
30+
dev-repo: "git+https://github.com/robur-coop/carton.git"
31+
x-maintenance-intent: [ "(latest)" ]
32+
url {
33+
src:
34+
"https://github.com/robur-coop/carton/releases/download/1.0.0/carton-1.0.0.tbz"
35+
checksum: [
36+
"sha256=0d5e34a76527d6537264667c9a27625600c1d84ca38cdb2da6563aabc70135cd"
37+
"sha512=3ef5fe849a51cca67eddd57869aacf38e4f3efa30f69f81fd5d32603a79e0706efebcfd3def4889a1713dce1e568e12e28936552ba561dd4d575c43e8962e44b"
38+
]
39+
}
40+
x-commit-hash: "c5c59afc1e42e50e4b9b5032a76e6c92094b3531"

0 commit comments

Comments
 (0)