Skip to content

Commit eb45f7e

Browse files
authored
Merge pull request #28982 from dinosaure/release-dkim-v0.9.0
[new release] dkim (4 packages) (0.9.0)
2 parents 623cbe9 + fcaf412 commit eb45f7e

File tree

4 files changed

+164
-0
lines changed
  • packages
    • dkim-bin/dkim-bin.0.9.0
    • dkim-lwt-unix/dkim-lwt-unix.0.9.0
    • dkim-mirage/dkim-mirage.0.9.0
    • dkim/dkim.0.9.0

4 files changed

+164
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
opam-version: "2.0"
2+
maintainer: "Romain Calascibetta <romain.calascibetta@gmail.com>"
3+
authors: "Romain Calascibetta <romain.calascibetta@gmail.com>"
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+
"ca-certs"
24+
"cmdliner" {>= "1.1.0"}
25+
"logs"
26+
"fmt" {>= "0.8.7"}
27+
"fpath"
28+
"dkim-lwt-unix" {= version}
29+
"alcotest" {with-test}
30+
]
31+
x-maintenance-intent: [ "(latest)" ]
32+
url {
33+
src:
34+
"https://github.com/mirage/ocaml-dkim/releases/download/v0.9.0/dkim-0.9.0.tbz"
35+
checksum: [
36+
"sha256=a3a9ceb7e463799ca6f1d336bbdc64ac8ee67d879c8c761c02b6b9817545610c"
37+
"sha512=20151e2cd7ca1a0c33d8b078c3ecdcfddb5c9e846e88400ceb02e61663056c1d9a88b117b8b47aa14a06f45427310901048998c5c6b67a0c50528d6235adf549"
38+
]
39+
}
40+
x-commit-hash: "8c31a8bc213954c1cca0ed7a7b8dd30372487301"
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
opam-version: "2.0"
2+
maintainer: "Romain Calascibetta <romain.calascibetta@gmail.com>"
3+
authors: "Romain Calascibetta <romain.calascibetta@gmail.com>"
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 with LWT"
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+
"lwt"
24+
"dns-client-lwt"
25+
]
26+
x-maintenance-intent: [ "(latest)" ]
27+
url {
28+
src:
29+
"https://github.com/mirage/ocaml-dkim/releases/download/v0.9.0/dkim-0.9.0.tbz"
30+
checksum: [
31+
"sha256=a3a9ceb7e463799ca6f1d336bbdc64ac8ee67d879c8c761c02b6b9817545610c"
32+
"sha512=20151e2cd7ca1a0c33d8b078c3ecdcfddb5c9e846e88400ceb02e61663056c1d9a88b117b8b47aa14a06f45427310901048998c5c6b67a0c50528d6235adf549"
33+
]
34+
}
35+
x-commit-hash: "8c31a8bc213954c1cca0ed7a7b8dd30372487301"
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
opam-version: "2.0"
2+
maintainer: "Romain Calascibetta <romain.calascibetta@gmail.com>"
3+
authors: "Romain Calascibetta <romain.calascibetta@gmail.com>"
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" {>= "8.0.0"}
23+
"mirage-ptime"
24+
"lwt"
25+
"alcotest" {with-test}
26+
"digestif" {with-test}
27+
"fmt" {with-test}
28+
"logs" {with-test}
29+
"mirage-crypto-rng" {with-test & >= "1.0.0"}
30+
]
31+
x-maintenance-intent: [ "(latest)" ]
32+
url {
33+
src:
34+
"https://github.com/mirage/ocaml-dkim/releases/download/v0.9.0/dkim-0.9.0.tbz"
35+
checksum: [
36+
"sha256=a3a9ceb7e463799ca6f1d336bbdc64ac8ee67d879c8c761c02b6b9817545610c"
37+
"sha512=20151e2cd7ca1a0c33d8b078c3ecdcfddb5c9e846e88400ceb02e61663056c1d9a88b117b8b47aa14a06f45427310901048998c5c6b67a0c50528d6235adf549"
38+
]
39+
}
40+
x-commit-hash: "8c31a8bc213954c1cca0ed7a7b8dd30372487301"

packages/dkim/dkim.0.9.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 <romain.calascibetta@gmail.com>"
3+
authors: "Romain Calascibetta <romain.calascibetta@gmail.com>"
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+
"base-unix"
26+
"hmap"
27+
"domain-name"
28+
"dns-client" {>= "6.4.0"}
29+
"cmdliner" {>= "1.1.0"}
30+
"logs"
31+
"fmt" {>= "0.8.7"}
32+
"fpath"
33+
"base64" {>= "3.0.0"}
34+
"mirage-crypto" {>= "1.0.0"}
35+
"mirage-crypto-pk" {>= "1.0.0"}
36+
"x509" {>= "1.0.0"}
37+
"mirage-crypto-rng" {with-test & >= "1.2.0"}
38+
"alcotest" {with-test}
39+
]
40+
x-maintenance-intent: [ "(latest)" ]
41+
url {
42+
src:
43+
"https://github.com/mirage/ocaml-dkim/releases/download/v0.9.0/dkim-0.9.0.tbz"
44+
checksum: [
45+
"sha256=a3a9ceb7e463799ca6f1d336bbdc64ac8ee67d879c8c761c02b6b9817545610c"
46+
"sha512=20151e2cd7ca1a0c33d8b078c3ecdcfddb5c9e846e88400ceb02e61663056c1d9a88b117b8b47aa14a06f45427310901048998c5c6b67a0c50528d6235adf549"
47+
]
48+
}
49+
x-commit-hash: "8c31a8bc213954c1cca0ed7a7b8dd30372487301"

0 commit comments

Comments
 (0)