Skip to content

Commit 3f21ebe

Browse files
authored
Merge pull request #28544 from vouillon/opam-publish-re.1.14.0
Package re.1.14.0
2 parents bf453cf + 8165ebc commit 3f21ebe

File tree

1 file changed

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

1 file changed

+54
-0
lines changed

packages/re/re.1.14.0/opam

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
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.17"}
26+
"ocaml" {>= "4.13.0"}
27+
"ppx_expect" {with-test}
28+
"ounit2" {with-test}
29+
"js_of_ocaml" {with-test}
30+
"conf-npm" {with-test}
31+
"odoc" {with-doc}
32+
]
33+
build: [
34+
["dune" "subst"] {dev}
35+
[
36+
"dune"
37+
"build"
38+
"-p"
39+
name
40+
"-j"
41+
jobs
42+
"@install"
43+
"@runtest" {with-test}
44+
"@doc" {with-doc}
45+
]
46+
]
47+
dev-repo: "git+https://github.com/ocaml/ocaml-re.git"
48+
url {
49+
src: "https://github.com/ocaml/ocaml-re/archive/refs/tags/1.14.0.tar.gz"
50+
checksum: [
51+
"md5=03f4a83100cb9229a796b85c698076e1"
52+
"sha512=cd2cc39f951ca6b7be631bbb5531ed13bc040e629842671bf6fef3911b20ef1653fa9a1f0aa23b094d252cffc9a9efe7ffca69e50d362ab935bc0cc447548124"
53+
]
54+
}

0 commit comments

Comments
 (0)