From 8167c22a1063cad18aab0f203649962d0812c9b1 Mon Sep 17 00:00:00 2001 From: Dominic Too Date: Sun, 29 Sep 2024 01:24:37 +0100 Subject: [PATCH 1/2] [new release] ocamlregextkit (1.0.2) CHANGES: ### Fix - `get_reachable_states` missing epsilon transitions (toodom02/ocamlregextkit#8). --- .../ocamlregextkit/ocamlregextkit.1.0.2/opam | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 packages/ocamlregextkit/ocamlregextkit.1.0.2/opam diff --git a/packages/ocamlregextkit/ocamlregextkit.1.0.2/opam b/packages/ocamlregextkit/ocamlregextkit.1.0.2/opam new file mode 100644 index 00000000000..174e52883d0 --- /dev/null +++ b/packages/ocamlregextkit/ocamlregextkit.1.0.2/opam @@ -0,0 +1,49 @@ +opam-version: "2.0" +synopsis: "A regular expression toolkit for OCaml" +description: + "Provides data structures and algorithms for Regular Expressions, Deterministic Finite Automata, and Non-Deterministic Finite Automata" +maintainer: ["Dominic Too"] +authors: ["Dominic Too"] +license: "GPL-3.0-or-later" +tags: [ + "automata" + "regular expressions" + "regular languages" + "regex" + "library" + "DFA" + "NFA" + "RE" +] +homepage: "https://github.com/toodom02/ocamlregextkit" +doc: "https://toodom02.github.io/ocamlregextkit/" +bug-reports: "https://github.com/toodom02/ocamlregextkit/issues" +depends: [ + "ocaml" {>= "4.14"} + "dune" {>= "3.4"} + "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/toodom02/ocamlregextkit.git" +url { + src: + "https://github.com/toodom02/ocamlregextkit/releases/download/v1.0.2/ocamlregextkit-1.0.2.tbz" + checksum: [ + "sha256=801dd74f3ac269a33015d0c56b4a400fbfec15a68637775caacde1f377d802f2" + "sha512=7ac6ba274f2420f5066b722ee1d3d6e1ba8f967c91fdbc5b8d92c54b5753f6166b398b687de47328a30f4c822eff8167fef11e8f3b26d04d96f07f7f32238f97" + ] +} +x-commit-hash: "1a5a58cc06b04d84b7f66c313ed8dfbf6662f1b4" From e24773f22d3bd0c2abebf31670ad68fe53e7d275 Mon Sep 17 00:00:00 2001 From: Dominic Too <48385221+toodom02@users.noreply.github.com> Date: Sun, 29 Sep 2024 20:46:12 +0100 Subject: [PATCH 2/2] chore: maintainer email --- packages/ocamlregextkit/ocamlregextkit.1.0.2/opam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ocamlregextkit/ocamlregextkit.1.0.2/opam b/packages/ocamlregextkit/ocamlregextkit.1.0.2/opam index 174e52883d0..77e040b6608 100644 --- a/packages/ocamlregextkit/ocamlregextkit.1.0.2/opam +++ b/packages/ocamlregextkit/ocamlregextkit.1.0.2/opam @@ -2,7 +2,7 @@ opam-version: "2.0" synopsis: "A regular expression toolkit for OCaml" description: "Provides data structures and algorithms for Regular Expressions, Deterministic Finite Automata, and Non-Deterministic Finite Automata" -maintainer: ["Dominic Too"] +maintainer: ["Dominic Too "] authors: ["Dominic Too"] license: "GPL-3.0-or-later" tags: [