-
Notifications
You must be signed in to change notification settings - Fork 10
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
1 parent
229229c
commit 21839c9
Showing
20 changed files
with
71 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
(jbuild_version 1) | ||
|
||
(executables | ||
((names (sendto_kafka_topic tail_kafka_topic)) | ||
(libraries (okafka.lwt cmdliner)))) | ||
|
||
(install | ||
((section bin) | ||
(files ( | ||
(sendto_kafka_topic.exe as sendto_kafka_topic) | ||
(tail_kafka_topic.exe as tail_kafka_topic) | ||
)))) |
File renamed without changes.
File renamed without changes.
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,7 @@ | ||
(jbuild_version 1) | ||
|
||
(library | ||
((name kafka) | ||
(public_name okafka) | ||
(c_names (ocaml_kafka)) | ||
(c_library_flags (-lrdkafka -lpthread -lz)))) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,6 @@ | ||
(jbuild_version 1) | ||
|
||
(library | ||
((name kafka_helpers) | ||
(public_name okafka.helpers) | ||
(libraries (okafka)))) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,8 @@ | ||
(jbuild_version 1) | ||
|
||
(library | ||
((name kafka_lwt) | ||
(public_name okafka.lwt) | ||
(libraries (okafka lwt.unix)) | ||
(c_names (ocaml_lwt_kafka)) | ||
(c_library_flags (-lrdkafka -lpthread -lz)))) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,16 @@ | ||
opam-version: "1.2" | ||
version: "0.3.0" | ||
name: "okafka" | ||
synopsis: "OCaml bindings for Kafka" | ||
maintainer: "Didier Wenzek <[email protected]>" | ||
authors: ["Didier Wenzek <[email protected]>"] | ||
homepage: "https://github.com/didier-wenzek/ocaml-kafka" | ||
bug-reports: "https://github.com/didier-wenzek/ocaml-kafka/issues" | ||
dev-repo: "https://github.com/didier-wenzek/ocaml-kafka" | ||
license: "GPL" | ||
build: [ | ||
["jbuilder" "build" "--only" "okafka" "--root" "." "-j" jobs "@install"] | ||
] | ||
install: [make "install"] | ||
remove: [make "uninstall"] | ||
depends: ["jbuilder"] |
File renamed without changes.
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,10 @@ | ||
(jbuild_version 1) | ||
|
||
(executables | ||
((names (tests issue3)) | ||
(libraries (okafka.lwt okafka.helpers)))) | ||
|
||
(alias | ||
((name runtest) | ||
(deps (tests.exe)) | ||
(action (run ${<})))) |
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