Skip to content

Commit cd93eb2

Browse files
authored
Merge pull request ocaml#24779 from leostera/release-loop-0.0.1
[new release] loop (0.0.1)
2 parents c65a2e1 + 3435655 commit cd93eb2

File tree

1 file changed

+43
-0
lines changed
  • packages/loop/loop.0.0.1

1 file changed

+43
-0
lines changed

packages/loop/loop.0.0.1/opam

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
opam-version: "2.0"
2+
synopsis: "Unbounded loops with continues and breaks"
3+
description: """
4+
A small control-flow utility for unbounded loops with support for `break` and
5+
`continue`ing loops.
6+
7+
By default it will loop infinitely, but it won't get in the way of unbounded
8+
exceptions or other unhandled effects"""
9+
maintainer: ["Leandro Ostera <[email protected]>"]
10+
authors: ["Leandro Ostera <[email protected]>"]
11+
license: "MIT"
12+
tags: ["topics" "control flow" "loop" "loops"]
13+
homepage: "https://github.com/leostera/loop"
14+
bug-reports: "https://github.com/leostera/loop/issues"
15+
depends: [
16+
"ocaml" {>= "5.0"}
17+
"dune" {>= "3.11"}
18+
"odoc" {with-doc}
19+
]
20+
build: [
21+
["dune" "subst"] {dev}
22+
[
23+
"dune"
24+
"build"
25+
"-p"
26+
name
27+
"-j"
28+
jobs
29+
"@install"
30+
"@runtest" {with-test}
31+
"@doc" {with-doc}
32+
]
33+
]
34+
dev-repo: "git+https://github.com/leostera/loop.git"
35+
url {
36+
src:
37+
"https://github.com/leostera/loop/releases/download/0.0.1/loop-0.0.1.tbz"
38+
checksum: [
39+
"sha256=2b1ca83ae07257212f4dccd962a33d84a28fa33c792134bb1d2f8b65dff8b2ac"
40+
"sha512=ae285fd979a47702108fbf30f2d257a7190c308c6ea71e707a9d7cad29d9ed42f469696ff140c75867648450b482b66238ae79b1b4ac051de12dd07685061a9d"
41+
]
42+
}
43+
x-commit-hash: "19ff6d0a1c067c854b29037ef166f82b3a96307e"

0 commit comments

Comments
 (0)