Skip to content

Commit a1ac16b

Browse files
authored
Merge pull request #28569 from dinosaure/release-progress-0.5.0
[new release] progress (2 packages) (0.5.0)
2 parents 8815e1a + 6567b64 commit a1ac16b

File tree

2 files changed

+97
-0
lines changed
  • packages
    • progress/progress.0.5.0
    • terminal/terminal.0.5.0

2 files changed

+97
-0
lines changed
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
opam-version: "2.0"
2+
synopsis: "User-definable progress bars"
3+
description: """
4+
A progress bar library for OCaml, featuring a DSL for declaratively specifying
5+
progress bar formats. Supports rendering multiple progress bars simultaneously."""
6+
maintainer: ["Craig Ferguson <[email protected]>"]
7+
authors: ["Craig Ferguson <[email protected]>"]
8+
license: "MIT"
9+
homepage: "https://github.com/CraigFe/progress"
10+
doc: "https://CraigFe.github.io/progress/"
11+
bug-reports: "https://github.com/CraigFe/progress/issues"
12+
depends: [
13+
"dune" {>= "3.20.0"}
14+
"ocaml" {>= "4.08.0"}
15+
("ocaml" {>= "5.2.0"} | ("ocaml" {< "5.2.0"} & "vector"))
16+
"terminal" {= version}
17+
"fmt" {>= "0.8.5"}
18+
"logs" {>= "0.7.0"}
19+
"mtime" {>= "2.0.0"}
20+
"uucp" {>= "2.0.0"}
21+
"uutf" {>= "1.0.0"}
22+
"optint" {>= "0.1.0"}
23+
"alcotest" {with-test & >= "1.4.0"}
24+
"astring" {with-test}
25+
"odoc" {with-doc}
26+
]
27+
build: [
28+
["dune" "subst"] {dev}
29+
[
30+
"dune"
31+
"build"
32+
"-p"
33+
name
34+
"-j"
35+
jobs
36+
"@install"
37+
"@runtest" {with-test}
38+
"@doc" {with-doc}
39+
]
40+
]
41+
dev-repo: "git+https://github.com/CraigFe/progress.git"
42+
url {
43+
src:
44+
"https://github.com/craigfe/progress/releases/download/0.5.0/progress-0.5.0.tbz"
45+
checksum: [
46+
"sha256=7f87f0597363928c45ba859ae5a1430f6aa3c29e251ff1a53cf786ed0e045961"
47+
"sha512=45dee4fe2ae0b7fc3ca675f6e854d738873eb608ef9155ea5d7edac4639c183ae1f512847a1b43bdfc1f4c459e7d5b44d03ee809455797e680f890b33d531367"
48+
]
49+
}
50+
x-commit-hash: "0c83d49dff81ffd3dab80ed123d526841e3ca5fe"
51+
x-maintenance-intent: [ "(latest)" ]
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
opam-version: "2.0"
2+
synopsis: "Basic utilities for interacting with terminals"
3+
description: "Basic utilities for interacting with terminals"
4+
maintainer: ["Craig Ferguson <[email protected]>"]
5+
authors: ["Craig Ferguson <[email protected]>"]
6+
license: "MIT"
7+
homepage: "https://github.com/CraigFe/progress"
8+
doc: "https://CraigFe.github.io/progress/"
9+
bug-reports: "https://github.com/CraigFe/progress/issues"
10+
depends: [
11+
"dune" {>= "3.20.0"}
12+
"ocaml" {>= "4.03.0"}
13+
"uucp" {>= "2.0.0"}
14+
"uutf" {>= "1.0.0"}
15+
"stdlib-shims"
16+
"alcotest" {with-test & >= "1.4.0"}
17+
"fmt" {with-test}
18+
"astring" {with-test}
19+
"mtime" {with-test & >= "2.0.0"}
20+
"odoc" {with-doc}
21+
]
22+
build: [
23+
["dune" "subst"] {dev}
24+
[
25+
"dune"
26+
"build"
27+
"-p"
28+
name
29+
"-j"
30+
jobs
31+
"@install"
32+
"@runtest" {with-test}
33+
"@doc" {with-doc}
34+
]
35+
]
36+
dev-repo: "git+https://github.com/CraigFe/progress.git"
37+
url {
38+
src:
39+
"https://github.com/craigfe/progress/releases/download/0.5.0/progress-0.5.0.tbz"
40+
checksum: [
41+
"sha256=7f87f0597363928c45ba859ae5a1430f6aa3c29e251ff1a53cf786ed0e045961"
42+
"sha512=45dee4fe2ae0b7fc3ca675f6e854d738873eb608ef9155ea5d7edac4639c183ae1f512847a1b43bdfc1f4c459e7d5b44d03ee809455797e680f890b33d531367"
43+
]
44+
}
45+
x-commit-hash: "0c83d49dff81ffd3dab80ed123d526841e3ca5fe"
46+
x-maintenance-intent: [ "(latest)" ]

0 commit comments

Comments
 (0)