-
Notifications
You must be signed in to change notification settings - Fork 3
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
34 changed files
with
1,136 additions
and
4,498 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,22 +1,7 @@ | ||
Makefile | ||
aclocal.m4 | ||
autom4te.cache/ | ||
config.guess | ||
config.log | ||
config.status | ||
config.sub | ||
configure | ||
install-sh | ||
src/META | ||
src/Makefile | ||
._bcdi | ||
._d | ||
._ncdi | ||
src/*.a | ||
src/*.cm* | ||
src/*.o | ||
src/*.so | ||
src/*.annot | ||
examples/Makefile.http | ||
examples/Makefile.telnet | ||
*.sw* | ||
*~ | ||
_build | ||
*.byte | ||
*.native | ||
_tests | ||
.merlin | ||
*.install |
This file was deleted.
Oops, something went wrong.
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,9 @@ | ||
profile = conventional | ||
break-separators = after | ||
space-around-lists = false | ||
doc-comments = before | ||
match-indent = 2 | ||
match-indent-nested = always | ||
parens-ite | ||
exp-grouping = preserve | ||
module-item-spacing = compact |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,17 @@ | ||
(lang dune 2.0) | ||
(version 0.6.5) | ||
(name duppy) | ||
(source (github savonet/ocaml-duppy)) | ||
(license GPL-2.0) | ||
(authors "Romain Beauxis <[email protected]>") | ||
(maintainers "The Savonet Team <[email protected]>") | ||
|
||
(generate_opam_files true) | ||
|
||
(package | ||
(name duppy) | ||
(synopsis "Library providing monadic threads") | ||
(depends | ||
(dune (> 2.0)) | ||
pcre) | ||
) |
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,22 +1,28 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
name: "duppy" | ||
version: "0.8.1" | ||
maintainer: "Romain Beauxis <[email protected]>" | ||
authors: "The Savonet Team <[email protected]>" | ||
version: "0.6.5" | ||
synopsis: "Library providing monadic threads" | ||
maintainer: ["The Savonet Team <[email protected]>"] | ||
authors: ["Romain Beauxis <[email protected]>"] | ||
license: "GPL-2.0" | ||
homepage: "https://github.com/savonet/ocaml-duppy" | ||
bug-reports: "https://github.com/savonet/ocaml-duppy/issues" | ||
depends: [ | ||
"ocaml" | ||
"ocamlfind" {build} | ||
"dune" {> "2.0"} | ||
"pcre" | ||
] | ||
depopts: ["ssl" "osx-secure-transport"] | ||
build: [ | ||
["./bootstrap"] {dev} | ||
["./configure" "--prefix" prefix] | ||
[make "clean"] {dev} | ||
[make] | ||
["dune" "subst"] {pinned} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
install: [make "install"] | ||
dev-repo: "git+https://github.com/savonet/ocaml-duppy.git" | ||
synopsis: "Library providing monadic threads" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.