Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions packages/ppx_protocol_conv/ppx_protocol_conv.5.2.3/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
opam-version: "2.0"
maintainer: "Anders Fugmann <[email protected]>"
authors: "Anders Fugmann"
license: "BSD-3-Clause"
homepage: "https://github.com/andersfugmann/ppx_protocol_conv"
dev-repo: "git+https://github.com/andersfugmann/ppx_protocol_conv"
bug-reports: "https://github.com/andersfugmann/ppx_protocol_conv/issues"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.08"}
"base" {>= "v0.14.0"}
"dune" {>= "1.2"}
"ppxlib" {>= "0.36.0"}
"ppx_sexp_conv" {with-test}
"sexplib" {with-test}
"alcotest" {with-test & >= "0.8.0"}
]
x-maintenance-intent: ["(latest)"]
synopsis:
"Ppx for generating serialisation and de-serialisation functions of ocaml types"
description: """
Ppx_protocol_conv generates code to serialize and de-serialize
types. The ppx itself does not contain any protocol specific code,
but relies on 'drivers' that defines serialisation and
de-serialisation of basic types and structures.

Pre-defined drivers are available in separate packages:
ppx_protocol_conv_json (Yojson.Safe.json)
ppx_protocol_conv_jsonm (Ezjson.value)
ppx_protocol_conv_msgpack (Msgpck.t)
ppx_protocol_conv_xml-light (Xml.xml)
ppx_protocol_conv_xmlm (Xmlm.node)
ppx_protocol_conv_yaml (Yaml.value)"""
url {
src:
"https://github.com/andersfugmann/ppx_protocol_conv/releases/download/5.2.3/ppx_protocol_conv-5.2.3.tbz"
checksum: [
"sha256=3fe42f8deaee6b686cae81ac8cf650be299dd6c86b718e90ea05e903d7fa51b4"
"sha512=aa8c0798432f097e468996e4fb2e7e936557d013406ba9558c5edd8926172a5499578e4ee7138d9cade1dc6b387f4ddb120499441a4070404fe0d107d639fc3a"
]
}
x-commit-hash: "425a7a1a26c26fcb740e5574e252043fd03eff46"
37 changes: 37 additions & 0 deletions packages/ppx_protocol_conv_json/ppx_protocol_conv_json.5.2.3/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
opam-version: "2.0"
maintainer: "Anders Fugmann <[email protected]>"
authors: "Anders Fugmann"
license: "BSD-3-Clause"
homepage: "https://github.com/andersfugmann/ppx_protocol_conv"
dev-repo: "git+https://github.com/andersfugmann/ppx_protocol_conv"
bug-reports: "https://github.com/andersfugmann/ppx_protocol_conv/issues"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.08"}
"ppx_protocol_conv" {= version}
"yojson" {>= "1.6.0"}
"dune" {>= "1.2"}
"ppx_expect"
"ppx_inline_test"
"ppx_sexp_conv" {with-test}
"sexplib" {with-test}
"alcotest" {with-test & >= "0.8.0"}
]
x-maintenance-intent: ["(latest)"]
synopsis: "Json driver for Ppx_protocol_conv"
description: """
This package provides a driver for json (Yojson.Safe.json)
serialization and de-serialization using the yojson library"""
url {
src:
"https://github.com/andersfugmann/ppx_protocol_conv/releases/download/5.2.3/ppx_protocol_conv-5.2.3.tbz"
checksum: [
"sha256=3fe42f8deaee6b686cae81ac8cf650be299dd6c86b718e90ea05e903d7fa51b4"
"sha512=aa8c0798432f097e468996e4fb2e7e936557d013406ba9558c5edd8926172a5499578e4ee7138d9cade1dc6b387f4ddb120499441a4070404fe0d107d639fc3a"
]
}
x-commit-hash: "425a7a1a26c26fcb740e5574e252043fd03eff46"
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
opam-version: "2.0"
maintainer: "Anders Fugmann <[email protected]>"
authors: "Anders Fugmann"
license: "BSD-3-Clause"
homepage: "https://github.com/andersfugmann/ppx_protocol_conv"
dev-repo: "git+https://github.com/andersfugmann/ppx_protocol_conv"
bug-reports: "https://github.com/andersfugmann/ppx_protocol_conv/issues"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.08"}
"ppx_protocol_conv" {= version}
"ezjsonm"
"dune" {>= "1.2"}
"ppx_sexp_conv" {with-test}
"sexplib" {with-test}
"alcotest" {with-test & >= "0.8.0"}
]
x-maintenance-intent: ["(latest)"]
synopsis: "Jsonm driver for Ppx_protocol_conv"
description: """
This package provides a driver for json (Ezjson.value)
serialization and de-serialization using the Ezjson library"""
url {
src:
"https://github.com/andersfugmann/ppx_protocol_conv/releases/download/5.2.3/ppx_protocol_conv-5.2.3.tbz"
checksum: [
"sha256=3fe42f8deaee6b686cae81ac8cf650be299dd6c86b718e90ea05e903d7fa51b4"
"sha512=aa8c0798432f097e468996e4fb2e7e936557d013406ba9558c5edd8926172a5499578e4ee7138d9cade1dc6b387f4ddb120499441a4070404fe0d107d639fc3a"
]
}
x-commit-hash: "425a7a1a26c26fcb740e5574e252043fd03eff46"
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
opam-version: "2.0"
maintainer: "Anders Fugmann <[email protected]>"
authors: "Anders Fugmann"
license: "BSD-3-Clause"
homepage: "https://github.com/andersfugmann/ppx_protocol_conv"
dev-repo: "git+https://github.com/andersfugmann/ppx_protocol_conv"
bug-reports: "https://github.com/andersfugmann/ppx_protocol_conv/issues"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.08"}
"ppx_protocol_conv" {= version}
"msgpck" {>= "1.3"}
"msgpck" {with-test & >= "1.7"}
"dune" {>= "1.2"}
"ppx_sexp_conv" {with-test}
"sexplib" {with-test}
"alcotest" {with-test & >= "0.8.0"}
]
x-maintenance-intent: ["(latest)"]
synopsis: "MessagePack driver for Ppx_protocol_conv"
description: """
This package provides a driver for message pack (Msgpck.t)
serialization and deserialization using the msgpck library"""
url {
src:
"https://github.com/andersfugmann/ppx_protocol_conv/releases/download/5.2.3/ppx_protocol_conv-5.2.3.tbz"
checksum: [
"sha256=3fe42f8deaee6b686cae81ac8cf650be299dd6c86b718e90ea05e903d7fa51b4"
"sha512=aa8c0798432f097e468996e4fb2e7e936557d013406ba9558c5edd8926172a5499578e4ee7138d9cade1dc6b387f4ddb120499441a4070404fe0d107d639fc3a"
]
}
x-commit-hash: "425a7a1a26c26fcb740e5574e252043fd03eff46"
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
opam-version: "2.0"
maintainer: "Anders Fugmann <[email protected]>"
authors: "Anders Fugmann"
license: "BSD-3-Clause"
homepage: "https://github.com/andersfugmann/ppx_protocol_conv"
dev-repo: "git+https://github.com/andersfugmann/ppx_protocol_conv"
bug-reports: "https://github.com/andersfugmann/ppx_protocol_conv/issues"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.08"}
"ppx_protocol_conv" {= version}
"xml-light"
"dune" {>= "1.2"}
"ppx_sexp_conv" {with-test}
"sexplib" {with-test}
"alcotest" {with-test & >= "0.8.0"}
]
x-maintenance-intent: ["(latest)"]
synopsis: "Xml driver for Ppx_protocol_conv"
description: """
This package provides a driver for xml (Xml.t) serialization and
de-serialization using the xml-light library"""
url {
src:
"https://github.com/andersfugmann/ppx_protocol_conv/releases/download/5.2.3/ppx_protocol_conv-5.2.3.tbz"
checksum: [
"sha256=3fe42f8deaee6b686cae81ac8cf650be299dd6c86b718e90ea05e903d7fa51b4"
"sha512=aa8c0798432f097e468996e4fb2e7e936557d013406ba9558c5edd8926172a5499578e4ee7138d9cade1dc6b387f4ddb120499441a4070404fe0d107d639fc3a"
]
}
x-commit-hash: "425a7a1a26c26fcb740e5574e252043fd03eff46"
35 changes: 35 additions & 0 deletions packages/ppx_protocol_conv_xmlm/ppx_protocol_conv_xmlm.5.2.3/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
opam-version: "2.0"
maintainer: "Anders Fugmann <[email protected]>"
authors: ["Anders Fugmann <[email protected]>" "Nick Betteridge <[email protected]"]
license: "BSD-3-Clause"
homepage: "https://github.com/andersfugmann/ppx_protocol_conv"
dev-repo: "git+https://github.com/andersfugmann/ppx_protocol_conv"
bug-reports: "https://github.com/andersfugmann/ppx_protocol_conv/issues"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.08"}
"ppx_protocol_conv" {= version}
"ezxmlm"
"dune" {>= "1.2"}
"ppx_sexp_conv" {with-test}
"sexplib" {with-test}
"alcotest" {with-test & >= "0.8.0"}
]
x-maintenance-intent: ["(latest)"]
synopsis: "Xmlm driver for Ppx_protocol_conv"
description: """
This package provides a driver for xmlm (Ezxmlm.node)
serialization and de-serialization using the Ezxmlm library"""
url {
src:
"https://github.com/andersfugmann/ppx_protocol_conv/releases/download/5.2.3/ppx_protocol_conv-5.2.3.tbz"
checksum: [
"sha256=3fe42f8deaee6b686cae81ac8cf650be299dd6c86b718e90ea05e903d7fa51b4"
"sha512=aa8c0798432f097e468996e4fb2e7e936557d013406ba9558c5edd8926172a5499578e4ee7138d9cade1dc6b387f4ddb120499441a4070404fe0d107d639fc3a"
]
}
x-commit-hash: "425a7a1a26c26fcb740e5574e252043fd03eff46"
36 changes: 36 additions & 0 deletions packages/ppx_protocol_conv_yaml/ppx_protocol_conv_yaml.5.2.3/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
opam-version: "2.0"
maintainer: "Anders Fugmann <[email protected]>"
authors: "Anders Fugmann"
license: "BSD-3-Clause"
homepage: "https://github.com/andersfugmann/ppx_protocol_conv"
dev-repo: "git+https://github.com/andersfugmann/ppx_protocol_conv"
bug-reports: "https://github.com/andersfugmann/ppx_protocol_conv/issues"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.08"}
"dune" {>= "1.2"}
"ppx_protocol_conv" {= version}
"yaml" { >= "2.0.0"}
"yaml" {with-test & >= "3.0.0"}
"ppx_sexp_conv" {with-test}
"sexplib" {with-test}
"alcotest" {with-test & >= "0.8.0"}
]
x-maintenance-intent: ["(latest)"]
synopsis: "Yaml driver for Ppx_protocol_conv"
description: """
This package provides a driver for yaml (Yaml.value)
serialization and de-serialization using the Yaml"""
url {
src:
"https://github.com/andersfugmann/ppx_protocol_conv/releases/download/5.2.3/ppx_protocol_conv-5.2.3.tbz"
checksum: [
"sha256=3fe42f8deaee6b686cae81ac8cf650be299dd6c86b718e90ea05e903d7fa51b4"
"sha512=aa8c0798432f097e468996e4fb2e7e936557d013406ba9558c5edd8926172a5499578e4ee7138d9cade1dc6b387f4ddb120499441a4070404fe0d107d639fc3a"
]
}
x-commit-hash: "425a7a1a26c26fcb740e5574e252043fd03eff46"
Loading