Skip to content

Commit c426b36

Browse files
committed
[new release] conex (2 packages) (1.0.0)
CHANGES: * Various bugfixes and quality of life improvements of the tooling * Various fixes to the conex diff provider (robur-coop/conex#47 robur-coop/conex#49) * Improve performance (allocate less, robur-coop/conex#43) * Use the now separate patch library (robur-coop/conex#41) * Avoid Format.str_formatter due to it being racy (robur-coop/conex#39 robur-coop/conex#40) * FEATURE: Support Ed25519 signatures (robur-coop/conex#35) * Speedup conex-verify-openssl by using sha instead of openssl dgst (robur-coop/conex#36) * Adapt to newer dependencies (remove rresult, mirage-crypto-rng 1.2.0, cmdliner 2.0.0 compatibility) * Add snapshot and timestamp support, and applications for these (robur-coop/conex#22, robur-coop/conex#26) * Require OCaml 4.08
1 parent fa8c506 commit c426b36

File tree

2 files changed

+88
-0
lines changed
  • packages
    • conex-mirage-crypto/conex-mirage-crypto.1.0.0
    • conex/conex.1.0.0

2 files changed

+88
-0
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
opam-version: "2.0"
2+
maintainer: "Hannes Mehnert <[email protected]>"
3+
authors: "Hannes Mehnert <[email protected]>"
4+
license: "BSD-2-Clause"
5+
homepage: "https://github.com/robur-coop/conex"
6+
doc: "https://robur-coop.github.io/conex/doc"
7+
bug-reports: "https://github.com/robur-coop/conex/issues"
8+
depends: [
9+
"ocaml" {>= "4.08.0"}
10+
"dune" {>= "2.7"}
11+
"alcotest" {with-test}
12+
# "bisect_ppx" {dev & >= "2.5.0"} #until they support cmdliner >= 2
13+
"cmdliner" {>= "1.1.0"}
14+
"conex" {= version}
15+
"mirage-crypto-pk" {>= "1.0.0"}
16+
"mirage-crypto-ec" {>= "1.0.0"}
17+
"mirage-crypto-rng" {>= "1.2.0"}
18+
"x509" {>= "1.0.0"}
19+
"logs"
20+
"fmt"
21+
"ptime"
22+
"base64" {>= "3.4.0"}
23+
"digestif" {>= "1.2.0"}
24+
"conf-openssl" {with-test}
25+
]
26+
conflicts: [ "result" {< "1.5"} ]
27+
build: [
28+
["dune" "subst"] {dev}
29+
["dune" "build" "-p" name "-j" jobs]
30+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
31+
]
32+
dev-repo: "git+https://github.com/robur-coop/conex.git"
33+
synopsis: "Establishing trust in community repositories: crypto provided via mirage-crypto"
34+
description: """
35+
Conex is a system based on [TUF](https://theupdateframework.github.io/) to
36+
establish trust in community repositories. Since opam2, the required hooks
37+
are present.
38+
39+
This package uses the crypto primitives provided by mirage-crypto.
40+
"""
41+
x-maintenance-intent: [ "(latest)" ]
42+
url {
43+
src:
44+
"https://github.com/robur-coop/conex/releases/download/v1.0.0/conex-1.0.0.tbz"
45+
checksum: [
46+
"sha256=8ba730718cbf0a381f0bce3493d18bfea1823bee0f43e4cbddad222b66dc164f"
47+
"sha512=a76787c46b7c867e41daba10989841e95e7a2ba142dd09ae078649fd60340fcef703f41ddffc67b9c899fb4a2956906a0c8f9d04db7da435ac502b19851a490a"
48+
]
49+
}
50+
x-commit-hash: "2a654143e12270bf8c562771e9f2e9861bd4660a"

packages/conex/conex.1.0.0/opam

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
opam-version: "2.0"
2+
maintainer: "Hannes Mehnert <[email protected]>"
3+
authors: "Hannes Mehnert <[email protected]>"
4+
license: "BSD-2-Clause"
5+
homepage: "https://github.com/robur-coop/conex"
6+
doc: "https://robur-coop.github.io/conex/doc"
7+
bug-reports: "https://github.com/robur-coop/conex/issues"
8+
depends: [
9+
"ocaml" {>= "4.08.0"}
10+
"dune" {>= "2.7"}
11+
"cmdliner" {>= "1.1.0"}
12+
"opam-file-format" {>= "2.1.1"}
13+
"sha" {>= "1.15.4"}
14+
"patch" {>= "3.0.0"}
15+
]
16+
build: [
17+
["dune" "subst"] {dev}
18+
["dune" "build" "-p" name "-j" jobs]
19+
]
20+
dev-repo: "git+https://github.com/robur-coop/conex.git"
21+
synopsis: "Establishing trust in community repositories"
22+
description: """
23+
Conex is a system based on [TUF](https://theupdateframework.github.io/) to
24+
establish trust in community repositories. Since opam2, the required hooks
25+
are present.
26+
27+
This package uses openssl for the required crypto primitives (>=3.0.0 for Ed25519).
28+
"""
29+
x-maintenance-intent: [ "(latest)" ]
30+
url {
31+
src:
32+
"https://github.com/robur-coop/conex/releases/download/v1.0.0/conex-1.0.0.tbz"
33+
checksum: [
34+
"sha256=8ba730718cbf0a381f0bce3493d18bfea1823bee0f43e4cbddad222b66dc164f"
35+
"sha512=a76787c46b7c867e41daba10989841e95e7a2ba142dd09ae078649fd60340fcef703f41ddffc67b9c899fb4a2956906a0c8f9d04db7da435ac502b19851a490a"
36+
]
37+
}
38+
x-commit-hash: "2a654143e12270bf8c562771e9f2e9861bd4660a"

0 commit comments

Comments
 (0)