Skip to content

Commit 668b13e

Browse files
committed
[new release] uspf (3 packages) (0.2.0)
CHANGES: - Add `Uspf.get` and `Uspf_lwt.get` to check if the SPF record exists (@dinosaure, mirage/uspf#32, mirage/uspf#33)
1 parent e4ede99 commit 668b13e

File tree

3 files changed

+110
-0
lines changed
  • packages
    • uspf-lwt/uspf-lwt.0.2.0
    • uspf-mirage/uspf-mirage.0.2.0
    • uspf/uspf.0.2.0

3 files changed

+110
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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/uspf"
5+
bug-reports: "https://github.com/mirage/uspf/issues"
6+
dev-repo: "git+https://github.com/mirage/uspf.git"
7+
doc: "https://mirage.github.io/uspf/"
8+
license: "MIT"
9+
synopsis: "SPF implementation in OCaml (with LWT)"
10+
description: """uspf-lwt is an implementation of the SPF verifier in OCaml
11+
compatible with MirageOS. It uses LWT as the scheduler."""
12+
13+
build: [ "dune" "build" "-p" name "-j" jobs ]
14+
run-test: [ "dune" "runtest" "-p" name "-j" jobs ]
15+
16+
depends: [
17+
"ocaml" {>= "4.12.0"}
18+
"dune" {>= "2.8.0"}
19+
"uspf" {= version}
20+
"lwt"
21+
"dns-client-lwt"
22+
"alcotest" {with-test}
23+
"rresult" {>= "0.7.0" & with-test}
24+
]
25+
x-maintenance-intent: [ "(latest)" ]
26+
url {
27+
src:
28+
"https://github.com/mirage/uspf/releases/download/0.2.0/uspf-0.2.0.tbz"
29+
checksum: [
30+
"sha256=ab3f115a5f0dbc98b45c93634fb3566b12be3947b7c30587fb3adb5f3037461d"
31+
"sha512=0db95f2a97796077fb241e4b91cbb7b144c4285ef1e5dbdb53c94df550345a7023438258996c9bbca0d34ff053e51e00491f42efc5eda99195b699d3d3742a47"
32+
]
33+
}
34+
x-commit-hash: "483c03df743bec3456bca22067e2e4ae9619525c"
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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/uspf"
5+
bug-reports: "https://github.com/mirage/uspf/issues"
6+
dev-repo: "git+https://github.com/mirage/uspf.git"
7+
doc: "https://mirage.github.io/uspf/"
8+
license: "MIT"
9+
synopsis: "SPF implementation in OCaml (with for Mirage)"
10+
description: """uspf-mirage is an implementation of the SPF verifier in OCaml
11+
compatible with MirageOS. It uses LWT as the scheduler."""
12+
13+
build: [ "dune" "build" "-p" name "-j" jobs ]
14+
run-test: [ "dune" "runtest" "-p" name "-j" jobs ]
15+
16+
depends: [
17+
"ocaml" {>= "4.12.0"}
18+
"dune" {>= "2.8.0"}
19+
"uspf" {= version}
20+
"lwt"
21+
"dns-client-mirage"
22+
"alcotest" {with-test}
23+
"rresult" {>= "0.7.0" & with-test}
24+
]
25+
x-maintenance-intent: [ "(latest)" ]
26+
url {
27+
src:
28+
"https://github.com/mirage/uspf/releases/download/0.2.0/uspf-0.2.0.tbz"
29+
checksum: [
30+
"sha256=ab3f115a5f0dbc98b45c93634fb3566b12be3947b7c30587fb3adb5f3037461d"
31+
"sha512=0db95f2a97796077fb241e4b91cbb7b144c4285ef1e5dbdb53c94df550345a7023438258996c9bbca0d34ff053e51e00491f42efc5eda99195b699d3d3742a47"
32+
]
33+
}
34+
x-commit-hash: "483c03df743bec3456bca22067e2e4ae9619525c"

packages/uspf/uspf.0.2.0/opam

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 <romain.calascibetta@gmail.com>"
3+
authors: "Romain Calascibetta <romain.calascibetta@gmail.com>"
4+
homepage: "https://github.com/mirage/uspf"
5+
bug-reports: "https://github.com/mirage/uspf/issues"
6+
dev-repo: "git+https://github.com/mirage/uspf.git"
7+
doc: "https://mirage.github.io/uspf/"
8+
license: "MIT"
9+
synopsis: "SPF implementation in OCaml"
10+
description: """uspf is an implementation of the SPF verifier in OCaml
11+
compatible with MirageOS."""
12+
13+
build: [ "dune" "build" "-p" name "-j" jobs ]
14+
run-test: [ "dune" "runtest" "-p" name "-j" jobs ]
15+
16+
depends: [
17+
"ocaml" {>= "4.12.0"}
18+
"dune" {>= "2.8.0"}
19+
"logs"
20+
"colombe" {>= "0.4.2"}
21+
"mrmime" {>= "0.5.0"}
22+
"ipaddr" {>= "5.2.0"}
23+
"hmap"
24+
"angstrom" {>= "0.15.0"}
25+
"domain-name"
26+
"dns" {>= "5.0.1"}
27+
"lwt"
28+
"dns-client" {>= "6.1.0"}
29+
"fmt" {>= "0.8.9"}
30+
"alcotest" {with-test}
31+
"rresult" {>= "0.7.0" & with-test}
32+
]
33+
x-maintenance-intent: [ "(latest)" ]
34+
url {
35+
src:
36+
"https://github.com/mirage/uspf/releases/download/0.2.0/uspf-0.2.0.tbz"
37+
checksum: [
38+
"sha256=ab3f115a5f0dbc98b45c93634fb3566b12be3947b7c30587fb3adb5f3037461d"
39+
"sha512=0db95f2a97796077fb241e4b91cbb7b144c4285ef1e5dbdb53c94df550345a7023438258996c9bbca0d34ff053e51e00491f42efc5eda99195b699d3d3742a47"
40+
]
41+
}
42+
x-commit-hash: "483c03df743bec3456bca22067e2e4ae9619525c"

0 commit comments

Comments
 (0)