-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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 #21947 from ivg/dune-piqi
Releases the dune-built piqi and piqilib
- Loading branch information
Showing
2 changed files
with
75 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,39 @@ | ||
opam-version: "2.0" | ||
synopsis: "Protocol Buffers, JSON and XML serialization system for OCaml" | ||
authors: "Anton Lavrik <[email protected]>" | ||
maintainer: "Anton Lavrik <[email protected]>" | ||
license: "Apache-2.0" | ||
homepage: "https://github.com/alavrik/piqi-ocaml" | ||
bug-reports: "https://github.com/alavrik/piqi-ocaml/issues" | ||
depends: [ | ||
"ocaml" {>= "4.02.0"} | ||
"dune" {>= "2.0.0"} | ||
"piqilib" | ||
"stdlib-shims" | ||
"num" {with-test} | ||
] | ||
dev-repo: "git+https://github.com/alavrik/piqi-ocaml" | ||
|
||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
"piqi,piqirun" | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
|
||
install: [ | ||
["dune" "install" "-p" "piqi,piqirun"] | ||
] | ||
|
||
url { | ||
src: "https://github.com/alavrik/piqi-ocaml/archive/v0.7.8.tar.gz" | ||
checksum: "md5=e9bd34d56f33c3fe6cfa133341f96bdf" | ||
} |
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,36 @@ | ||
opam-version: "2.0" | ||
synopsis: | ||
"The Piqi library -- runtime support for multi-format Protobuf/JSON/XML/Piq data serialization and conversion" | ||
authors: "Anton Lavrik <[email protected]>" | ||
maintainer: "Anton Lavrik <[email protected]>" | ||
homepage: "http://piqi.org" | ||
license: "Apache-2.0" | ||
bug-reports: "https://github.com/alavrik/piqi/issues" | ||
depends: [ | ||
"ocaml" {>= "4.03" & < "4.14.0"} | ||
"dune" {>= "2.0.0"} | ||
"easy-format" | ||
"sedlex" {>= "2.0" & < "3.0"} | ||
"xmlm" | ||
"base64" {>= "3.1.0"} | ||
] | ||
dev-repo: "git+https://github.com/alavrik/piqi" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
|
||
url { | ||
src: "https://github.com/alavrik/piqi/archive/v0.6.16.tar.gz" | ||
checksum: "md5=33121fae570f0949426bab875c809b78" | ||
} |