Skip to content

Commit c38b45c

Browse files
committed
Package re.1.14.0
1 parent 151ffce commit c38b45c

File tree

1 file changed

+53
-0
lines changed
  • packages/re/re.1.14.0

1 file changed

+53
-0
lines changed

packages/re/re.1.14.0/opam

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# This file is generated by dune, edit dune-project instead
2+
opam-version: "2.0"
3+
synopsis: "RE is a regular expression library for OCaml"
4+
description: """
5+
6+
Pure OCaml regular expressions with:
7+
* Perl-style regular expressions (module Re.Perl)
8+
* Posix extended regular expressions (module Re.Posix)
9+
* Emacs-style regular expressions (module Re.Emacs)
10+
* Shell-style file globbing (module Re.Glob)
11+
* Compatibility layer for OCaml's built-in Str module (module Re.Str)
12+
"""
13+
maintainer: ["Rudi Grinberg <[email protected]>"]
14+
authors: [
15+
"Jerome Vouillon"
16+
"Thomas Gazagnaire"
17+
"Anil Madhavapeddy"
18+
"Rudi Grinberg"
19+
"Gabriel Radanne"
20+
]
21+
license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
22+
homepage: "https://github.com/ocaml/ocaml-re"
23+
bug-reports: "https://github.com/ocaml/ocaml-re/issues"
24+
depends: [
25+
"dune" {>= "3.15"}
26+
"ocaml" {>= "4.12.0"}
27+
"ppx_expect" {with-test}
28+
"ounit2" {with-test}
29+
"js_of_ocaml" {with-test}
30+
"odoc" {with-doc}
31+
]
32+
build: [
33+
["dune" "subst"] {dev}
34+
[
35+
"dune"
36+
"build"
37+
"-p"
38+
name
39+
"-j"
40+
jobs
41+
"@install"
42+
"@runtest" {with-test}
43+
"@doc" {with-doc}
44+
]
45+
]
46+
dev-repo: "git+https://github.com/ocaml/ocaml-re.git"
47+
url {
48+
src: "https://github.com/ocaml/ocaml-re/archive/refs/tags/1.14.0.tar.gz"
49+
checksum: [
50+
"md5=03f4a83100cb9229a796b85c698076e1"
51+
"sha512=cd2cc39f951ca6b7be631bbb5531ed13bc040e629842671bf6fef3911b20ef1653fa9a1f0aa23b094d252cffc9a9efe7ffca69e50d362ab935bc0cc447548124"
52+
]
53+
}

0 commit comments

Comments
 (0)