From d1f5226a1c8960fb0ec35cda0abf2f8499fafc5a Mon Sep 17 00:00:00 2001 From: saroupille Date: Sun, 12 May 2024 23:39:01 +0200 Subject: [PATCH] [new release] bam (3 packages) (0.2) CHANGES: - francoisthire/bam#2,francoisthire/bam#5: Add a PPX for Bam derving generators from a type or a module type - francoisthire/bam#1: Fix the `Bam.Std.oneof` generator --- packages/bam-ppx/bam-ppx.0.2/opam | 42 ++++++++++++++++++++++++++++ packages/bam/bam.0.2/opam | 43 +++++++++++++++++++++++++++++ packages/tezt-bam/tezt-bam.0.2/opam | 42 ++++++++++++++++++++++++++++ 3 files changed, 127 insertions(+) create mode 100644 packages/bam-ppx/bam-ppx.0.2/opam create mode 100644 packages/bam/bam.0.2/opam create mode 100644 packages/tezt-bam/tezt-bam.0.2/opam diff --git a/packages/bam-ppx/bam-ppx.0.2/opam b/packages/bam-ppx/bam-ppx.0.2/opam new file mode 100644 index 000000000000..0a1e5c2c5fde --- /dev/null +++ b/packages/bam-ppx/bam-ppx.0.2/opam @@ -0,0 +1,42 @@ +opam-version: "2.0" +synopsis: "A PPX deriving generators for OCaml types" +description: + "Provides a way to automatically get generators for a given type" +maintainer: ["François Thiré"] +authors: ["François Thiré"] +license: "MIT" +tags: ["test" "pbt" "shrinking" "internal" "bam" "ppx"] +homepage: "https://github.com/francoisthire/bam" +doc: "https://francoisthire.github.io/bam/" +bug-reports: "https://github.com/francoisthire/bam/issues" +depends: [ + "ocaml" + "dune" {>= "3.7"} + "ppxlib" {<= "0.32.0"} + "dmap" {>= "0.5"} + "odoc" {with-doc} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] +] +dev-repo: "git+https://github.com/francoisthire/bam.git" +url { + src: + "https://github.com/francoisthire/bam/releases/download/v0.2/bam-0.2.tbz" + checksum: [ + "sha256=20ab139b2b82dd57a9a7542af8d9261ff95263d081c3fcb5e36d1424da0fcbb9" + "sha512=0058cf950183643e8abdf0acb6b34ab9898110bd883da930e6d2e404111be36b0e94cc15fe21522a3fd9c313b261b08a2e5a78464d35cba4b8a9695fb0a2df88" + ] +} +x-commit-hash: "b5006a3f7692012576f982bfed5cb1098668073e" diff --git a/packages/bam/bam.0.2/opam b/packages/bam/bam.0.2/opam new file mode 100644 index 000000000000..57b1a4ce5fed --- /dev/null +++ b/packages/bam/bam.0.2/opam @@ -0,0 +1,43 @@ +opam-version: "2.0" +synopsis: "A property-based testing library with internal shrinking" +description: + "A property-based testing allowing to define generators with internal shrinking easily" +maintainer: ["François Thiré"] +authors: ["François Thiré"] +license: "MIT" +tags: ["test" "pbt" "shrinking" "internal"] +homepage: "https://github.com/francoisthire/bam" +doc: "https://francoisthire.github.io/bam/" +bug-reports: "https://github.com/francoisthire/bam/issues" +depends: [ + "ocaml" {>= "4.14"} + "dune" {>= "3.7" & >= "3.7"} + "pringo" + "zarith" {>= "1.13"} + "odoc" {with-doc} + "tezt" {with-test} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] +] +dev-repo: "git+https://github.com/francoisthire/bam.git" +url { + src: + "https://github.com/francoisthire/bam/releases/download/v0.2/bam-0.2.tbz" + checksum: [ + "sha256=20ab139b2b82dd57a9a7542af8d9261ff95263d081c3fcb5e36d1424da0fcbb9" + "sha512=0058cf950183643e8abdf0acb6b34ab9898110bd883da930e6d2e404111be36b0e94cc15fe21522a3fd9c313b261b08a2e5a78464d35cba4b8a9695fb0a2df88" + ] +} +x-commit-hash: "b5006a3f7692012576f982bfed5cb1098668073e" diff --git a/packages/tezt-bam/tezt-bam.0.2/opam b/packages/tezt-bam/tezt-bam.0.2/opam new file mode 100644 index 000000000000..edd13f968c70 --- /dev/null +++ b/packages/tezt-bam/tezt-bam.0.2/opam @@ -0,0 +1,42 @@ +opam-version: "2.0" +synopsis: "A plugin of [bam] for Tezt" +description: "Provides a way to register PBT tests with Tezt" +maintainer: ["François Thiré"] +authors: ["François Thiré"] +license: "MIT" +tags: ["test" "tezt" "pbt" "shrinking" "internal" "bam"] +homepage: "https://github.com/francoisthire/bam" +doc: "https://francoisthire.github.io/bam/" +bug-reports: "https://github.com/francoisthire/bam/issues" +depends: [ + "ocaml" + "dune" {>= "3.7"} + "tezt" + "bam" + "mtime" {>= "2.0"} + "odoc" {with-doc} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] +] +dev-repo: "git+https://github.com/francoisthire/bam.git" +url { + src: + "https://github.com/francoisthire/bam/releases/download/v0.2/bam-0.2.tbz" + checksum: [ + "sha256=20ab139b2b82dd57a9a7542af8d9261ff95263d081c3fcb5e36d1424da0fcbb9" + "sha512=0058cf950183643e8abdf0acb6b34ab9898110bd883da930e6d2e404111be36b0e94cc15fe21522a3fd9c313b261b08a2e5a78464d35cba4b8a9695fb0a2df88" + ] +} +x-commit-hash: "b5006a3f7692012576f982bfed5cb1098668073e"