File tree Expand file tree Collapse file tree 1 file changed +52
-0
lines changed Expand file tree Collapse file tree 1 file changed +52
-0
lines changed Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "RE is a regular expression library for OCaml"
3+ description: """\
4+ Pure OCaml regular expressions with:
5+ * Perl-style regular expressions (module Re.Perl)
6+ * Posix extended regular expressions (module Re.Posix)
7+ * Emacs-style regular expressions (module Re.Emacs)
8+ * Shell-style file globbing (module Re.Glob)
9+ * Compatibility layer for OCaml's built-in Str module (module Re.Str)"""
10+ maintainer: "Rudi Grinberg <
[email protected] >"
11+ authors: [
12+ "Jerome Vouillon"
13+ "Thomas Gazagnaire"
14+ "Anil Madhavapeddy"
15+ "Rudi Grinberg"
16+ "Gabriel Radanne"
17+ ]
18+ license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
19+ homepage: "https://github.com/ocaml/ocaml-re"
20+ bug-reports: "https://github.com/ocaml/ocaml-re/issues"
21+ depends: [
22+ "dune" {>= "3.12"}
23+ "ocaml" {>= "4.13.0"}
24+ "seq"
25+ "conf-npm" {with-test}
26+ "ppx_expect" {with-test}
27+ "js_of_ocaml" {post & with-test}
28+ "ounit2" {with-test}
29+ "odoc" {with-doc}
30+ ]
31+ build: [
32+ ["dune" "subst"] {dev}
33+ [
34+ "dune"
35+ "build"
36+ "-p"
37+ name
38+ "-j"
39+ jobs
40+ "@install"
41+ "@runtest" {with-test}
42+ "@doc" {with-doc}
43+ ]
44+ ]
45+ dev-repo: "git+https://github.com/ocaml/ocaml-re.git"
46+ url {
47+ src: "https://github.com/ocaml/ocaml-re/archive/refs/tags/1.13.2.tar.gz"
48+ checksum: [
49+ "md5=df37d9787450525a2182ce4364048d11"
50+ "sha512=376b3ba1e351317a34b4c9a331fdc9ca5ae7c6a90eb2eb3393403a33b9f35ece63af7444a7c0c71ef29d512aa7fe56f7e485a118946e35d90039ddfd9127c020"
51+ ]
52+ }
You can’t perform that action at this time.
0 commit comments