-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
92 additions
and
66 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,46 @@ | ||
(lang dune 2.8) | ||
|
||
(name irmin-watcher) | ||
|
||
(generate_opam_files true) | ||
|
||
(source (github mirage/irmin-watcher)) | ||
(source | ||
(github mirage/irmin-watcher)) | ||
|
||
(license ISC) | ||
|
||
(authors "Thomas Gazagnaire") | ||
|
||
(maintainers "Thomas Gazagnaire") | ||
|
||
(documentation "https://mirage.github.io/irmin-watcher/") | ||
|
||
(package | ||
(name irmin-watcher) | ||
(synopsis "Portable Irmin watch backends using FSevents or Inotify") | ||
(description "irmin-watcher implements [Irmin's watch hooks][watch] for various OS, | ||
using FSevents in macOS and Inotify on Linux. | ||
irmin-watcher is distributed under the ISC license. | ||
[watch]: http://mirage.github.io/irmin/irmin/Irmin/Private/Watch/index.html#type-hook | ||
") | ||
(description | ||
"irmin-watcher implements [Irmin's watch hooks][watch] for various OS,\nusing FSevents in macOS and Inotify on Linux.\n\nirmin-watcher is distributed under the ISC license.\n\n[watch]: http://mirage.github.io/irmin/irmin/Irmin/Private/Watch/index.html#type-hook\n") | ||
(depends | ||
(ocaml (>= "4.02.0")) | ||
(alcotest :with-test) | ||
(mtime (and :with-test (>= "2.0.0"))) | ||
(inotify (= :os "linux")) | ||
(cf-lwt (>="0.4")) | ||
lwt | ||
logs | ||
fmt | ||
astring | ||
fsevents-lwt | ||
) | ||
) | ||
(ocaml | ||
(>= "5.1.0")) | ||
(alcotest :with-test) | ||
(mtime | ||
(and | ||
:with-test | ||
(>= "2.0.0"))) | ||
(inotify | ||
(= :os "linux")) | ||
(cf-lwt | ||
(>= "0.4")) | ||
lwt | ||
(eio | ||
(>= "1.0")) | ||
(eio_main | ||
(and | ||
:with-test | ||
(>= "1.0"))) | ||
logs | ||
fmt | ||
astring | ||
fsevents-lwt | ||
lwt_eio)) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
pin-depends: [ | ||
[ "inotify.dev" "git+https://github.com/whitequark/ocaml-inotify#b9cadad68ef3f4965853ea693171adf1d18c0599" ] | ||
] |
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
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
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