-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from mirage/improve.upgrade
Split binaries to another package and upgrade to `mirage-crypto-rng.0.11.0`
- Loading branch information
Showing
6 changed files
with
37 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
(executable | ||
(name verify) | ||
(public_name dkim.verify) | ||
(package dkim) | ||
(package dkim-bin) | ||
(modules verify) | ||
(libraries logs.cli fmt.cli logs.fmt fmt.tty dns-client.unix cmdliner fpath | ||
digestif.c ipaddr.unix dkim)) | ||
|
||
(executable | ||
(name sign) | ||
(public_name dkim.sign) | ||
(package dkim) | ||
(package dkim-bin) | ||
(modules sign) | ||
(libraries logs.cli fmt.cli logs.fmt fmt.tty dns-client.unix cmdliner fpath | ||
digestif.c dkim)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
opam-version: "2.0" | ||
name: "dkim-bin" | ||
maintainer: "Romain Calascibetta <[email protected]>" | ||
authors: "Romain Calascibetta <[email protected]>" | ||
homepage: "https://github.com/mirage/ocaml-dkim" | ||
bug-reports: "https://github.com/mirage/ocaml-dkim/issues" | ||
dev-repo: "git+https://github.com/mirage/ocaml-dkim.git" | ||
doc: "https://mirage.github.io/ocaml-dkim/" | ||
license: "MIT" | ||
synopsis: "Implementation of DKIM in OCaml" | ||
description: """A library and a binary to verify and sign an email | ||
with the DKIM mechanism described by the RFC 6376""" | ||
|
||
build: [ | ||
[ "dune" "subst" ] {dev} | ||
[ "dune" "build" "-p" name "-j" jobs ] | ||
[ "dune" "runtest" "-p" name "-j" jobs ] {with-test} | ||
] | ||
|
||
depends: [ | ||
"ocaml" {>= "4.08.0"} | ||
"dune" {>= "2.0.0"} | ||
"dkim" {= version} | ||
"base-unix" | ||
"cmdliner" {>= "1.1.0"} | ||
"logs" | ||
"fmt" {>= "0.8.7"} | ||
"fpath" | ||
"dns-client" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters