Skip to content

Commit 481ffcf

Browse files
committed
[new release] dkim, dkim-mirage and dkim-bin (0.5.0)
CHANGES: - Separate binaries provided by dkim into a new package `dkim-bin` (@dinosaure, mirage/ocaml-dkim#38) - Upgrade tests with `mirage-crypto-rng.0.11.0` (@dinosaure, mirage/ocaml-dkim#38) - Adapt to `dns-client.7.0.0` repackaging (@hannesm, mirage/ocaml-dkim#38) - Really delete the `rresult` package (@dinosaure, mirage/ocaml-dkim#39)
1 parent 1328651 commit 481ffcf

File tree

3 files changed

+130
-0
lines changed
  • packages
    • dkim-bin/dkim-bin.0.5.0
    • dkim-mirage/dkim-mirage.0.5.0
    • dkim/dkim.0.5.0

3 files changed

+130
-0
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
opam-version: "2.0"
2+
maintainer: "Romain Calascibetta <[email protected]>"
3+
authors: "Romain Calascibetta <[email protected]>"
4+
homepage: "https://github.com/mirage/ocaml-dkim"
5+
bug-reports: "https://github.com/mirage/ocaml-dkim/issues"
6+
dev-repo: "git+https://github.com/mirage/ocaml-dkim.git"
7+
doc: "https://mirage.github.io/ocaml-dkim/"
8+
license: "MIT"
9+
synopsis: "Implementation of DKIM in OCaml"
10+
description: """A library and a binary to verify and sign an email
11+
with the DKIM mechanism described by the RFC 6376"""
12+
13+
build: [
14+
[ "dune" "subst" ] {dev}
15+
[ "dune" "build" "-p" name "-j" jobs ]
16+
[ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
17+
]
18+
19+
depends: [
20+
"ocaml" {>= "4.08.0"}
21+
"dune" {>= "2.0.0"}
22+
"dkim" {= version}
23+
"base-unix"
24+
"cmdliner" {>= "1.1.0"}
25+
"logs"
26+
"fmt" {>= "0.8.7"}
27+
"fpath"
28+
"dns-client"
29+
"alcotest" {with-test}
30+
]
31+
url {
32+
src:
33+
"https://github.com/mirage/ocaml-dkim/releases/download/v0.5.0/dkim-0.5.0.tbz"
34+
checksum: [
35+
"sha256=6274cce79f084cc0196d1699ce8afa20ab106928d076883d94203209a1e410b9"
36+
"sha512=d442c7e8cae22b08639efa66bd5451b0a536ea1f38699d74dfe352cd3437593d9185ec676bf8c82b0f19dd568adf2185af0f0bd9626686ff4b063931a2d333ad"
37+
]
38+
}
39+
x-commit-hash: "59cd7b5919b984b6511cc099454cd82657f51e27"
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
opam-version: "2.0"
2+
maintainer: "Romain Calascibetta <[email protected]>"
3+
authors: "Romain Calascibetta <[email protected]>"
4+
homepage: "https://github.com/mirage/ocaml-dkim"
5+
bug-reports: "https://github.com/mirage/ocaml-dkim/issues"
6+
dev-repo: "git+https://github.com/mirage/ocaml-dkim.git"
7+
doc: "https://mirage.github.io/ocaml-dkim/"
8+
license: "MIT"
9+
synopsis: "Implementation of DKIM in OCaml for MirageOS"
10+
description: """A light layer of the dkim library for MirageOS"""
11+
12+
build: [
13+
[ "dune" "subst" ] {dev}
14+
[ "dune" "build" "-p" name "-j" jobs ]
15+
[ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
16+
]
17+
18+
depends: [
19+
"ocaml" {>= "4.08.0"}
20+
"dune" {>= "2.0.0"}
21+
"dkim" {= version}
22+
"dns-client-mirage" {>= "7.0.0"}
23+
"mirage-time"
24+
"mirage-random"
25+
"mirage-clock"
26+
"tcpip" {>= "7.0.0"}
27+
"lwt"
28+
"alcotest" {with-test}
29+
"digestif" {with-test}
30+
"fmt" {with-test}
31+
"logs" {with-test}
32+
"mirage-crypto-rng" {with-test & >= "0.11.0"}
33+
]
34+
url {
35+
src:
36+
"https://github.com/mirage/ocaml-dkim/releases/download/v0.5.0/dkim-0.5.0.tbz"
37+
checksum: [
38+
"sha256=6274cce79f084cc0196d1699ce8afa20ab106928d076883d94203209a1e410b9"
39+
"sha512=d442c7e8cae22b08639efa66bd5451b0a536ea1f38699d74dfe352cd3437593d9185ec676bf8c82b0f19dd568adf2185af0f0bd9626686ff4b063931a2d333ad"
40+
]
41+
}
42+
x-commit-hash: "59cd7b5919b984b6511cc099454cd82657f51e27"

packages/dkim/dkim.0.5.0/opam

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
opam-version: "2.0"
2+
maintainer: "Romain Calascibetta <[email protected]>"
3+
authors: "Romain Calascibetta <[email protected]>"
4+
homepage: "https://github.com/mirage/ocaml-dkim"
5+
bug-reports: "https://github.com/mirage/ocaml-dkim/issues"
6+
dev-repo: "git+https://github.com/mirage/ocaml-dkim.git"
7+
doc: "https://mirage.github.io/ocaml-dkim/"
8+
license: "MIT"
9+
synopsis: "Implementation of DKIM in OCaml"
10+
description: """A library and a binary to verify and sign an email
11+
with the DKIM mechanism described by the RFC 6376"""
12+
13+
build: [
14+
[ "dune" "subst" ] {dev}
15+
[ "dune" "build" "-p" name "-j" jobs ]
16+
[ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
17+
]
18+
19+
depends: [
20+
"ocaml" {>= "4.08.0"}
21+
"dune" {>= "2.0.0"}
22+
"mrmime" {>= "0.5.0"}
23+
"digestif" {>= "0.9.0"}
24+
"ipaddr"
25+
"astring" {>= "0.8.5"}
26+
"base-unix"
27+
"hmap"
28+
"domain-name"
29+
"dns-client" {>= "6.4.0"}
30+
"cmdliner" {>= "1.1.0"}
31+
"logs"
32+
"fmt" {>= "0.8.7"}
33+
"fpath"
34+
"base64" {>= "3.0.0"}
35+
"mirage-crypto" {>= "0.9.2"}
36+
"mirage-crypto-pk" {>= "0.9.2"}
37+
"x509" {>= "0.12.0"}
38+
"mirage-crypto-rng" {with-test & >= "0.11.0"}
39+
"alcotest" {with-test}
40+
]
41+
url {
42+
src:
43+
"https://github.com/mirage/ocaml-dkim/releases/download/v0.5.0/dkim-0.5.0.tbz"
44+
checksum: [
45+
"sha256=6274cce79f084cc0196d1699ce8afa20ab106928d076883d94203209a1e410b9"
46+
"sha512=d442c7e8cae22b08639efa66bd5451b0a536ea1f38699d74dfe352cd3437593d9185ec676bf8c82b0f19dd568adf2185af0f0bd9626686ff4b063931a2d333ad"
47+
]
48+
}
49+
x-commit-hash: "59cd7b5919b984b6511cc099454cd82657f51e27"

0 commit comments

Comments
 (0)