forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CHANGES: __breaking changes__ * Add a constraint with `git.2.1.3` (mirage/duff#7) * Update the documentation (mirage/duff#6) * Work on the new API (mirage/duff#2) * Delete provided binary (mirage/duff#5) * Move to `dune.2.0.0` (mirage/duff#5) * Integrate fuzzer into tests (mirage/duff#5) * Apply ocamlformat (mirage/duff#5)
- Loading branch information
1 parent
4569efc
commit c5cda2e
Showing
1 changed file
with
43 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
opam-version: "2.0" | ||
name: "duff" | ||
maintainer: "Romain Calascibetta <[email protected]>" | ||
authors: "Romain Calascibetta <[email protected]>" | ||
homepage: "https://github.com/mirage/duff" | ||
bug-reports: "https://github.com/mirage/duff/issues" | ||
dev-repo: "git+https://github.com/mirage/duff.git" | ||
doc: "https://mirage.github.io/duff/" | ||
license: "MIT" | ||
synopsis: "Rabin's fingerprint and diff algorithm in OCaml" | ||
description: """ | ||
This library provides a pure implementation of Rabin's fingerprint and diff algorithm in OCaml. | ||
|
||
It follows libXdiff C library. It is used by ocaml-git project. | ||
""" | ||
|
||
build: [ | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
|
||
depends: [ | ||
"ocaml" {>= "4.03.0"} | ||
"dune" {>= "2.0.0"} | ||
"fmt" | ||
"bigarray-compat" | ||
"stdlib-shims" | ||
"alcotest" {with-test} | ||
"bigstringaf" {with-test} | ||
"hxd" {with-test} | ||
"crowbar" {with-test} | ||
] | ||
|
||
conflicts: [ | ||
"git" {<= "2.1.3"} | ||
] | ||
url { | ||
src: "https://github.com/mirage/duff/releases/download/v0.3/duff-v0.3.tbz" | ||
checksum: [ | ||
"sha256=d5fee97be9ce3183375fe2e8df8d44be176997e47ac47049922e8e34bb3f66d1" | ||
"sha512=406e137dba3a8c16460b25d0c5f757823e9c53ec40cc8f9538bf2d05e693b4af016801346a72b1c934577432eb506f5d63e65cf53cf5e85f09a90ee4cb40c0b2" | ||
] | ||
} |