From 25a3941cf860ad73bf2aa53c6a0d5b87ec2e26cf Mon Sep 17 00:00:00 2001 From: Craig Ferguson Date: Tue, 29 Jun 2021 14:40:37 +0100 Subject: [PATCH] [new release] terminal and progress (0.2.1) CHANGES: - Fix the count segment of `Progress.counter` (when `pp` is passed) to show the running total rather than the latest reported value. (CraigFe/progress#19; @CraigFe, report by @Ngoguey42) - Fix `Terminal` stubs on MacOS. (CraigFe/progress#13; @CraigFe, report by @Ngoguey42) - Fix package tests on Windows. `Progress` does not yet support the Windows and Cygwin terminals; this is tracked by CraigFe/progress#16. (CraigFe/progress#15; @emillon) --- packages/progress/progress.0.2.1/opam | 50 +++++++++++++++++++++++++++ packages/terminal/terminal.0.2.1/opam | 45 ++++++++++++++++++++++++ 2 files changed, 95 insertions(+) create mode 100644 packages/progress/progress.0.2.1/opam create mode 100644 packages/terminal/terminal.0.2.1/opam diff --git a/packages/progress/progress.0.2.1/opam b/packages/progress/progress.0.2.1/opam new file mode 100644 index 000000000000..e95c50f756e3 --- /dev/null +++ b/packages/progress/progress.0.2.1/opam @@ -0,0 +1,50 @@ +opam-version: "2.0" +synopsis: "User-definable progress bars" +description: """ +A progress bar library for OCaml, featuring a DSL for declaratively specifying +progress bar formats. Supports rendering multiple progress bars simultaneously.""" +maintainer: ["Craig Ferguson "] +authors: ["Craig Ferguson "] +license: "MIT" +homepage: "https://github.com/CraigFe/progress" +doc: "https://CraigFe.github.io/progress/" +bug-reports: "https://github.com/CraigFe/progress/issues" +depends: [ + "dune" {>= "2.7"} + "ocaml" {>= "4.08.0"} + "terminal" {= version} + "fmt" {>= "0.8.4"} + "logs" {>= "0.7.0"} + "mtime" {>= "1.1.0"} + "uucp" + "uutf" + "vector" + "optint" {>= "0.1.0"} + "alcotest" {with-test & >= "1.4.0"} + "astring" {with-test} + "odoc" {with-doc} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] +] +dev-repo: "git+https://github.com/CraigFe/progress.git" +url { + src: + "https://github.com/CraigFe/progress/releases/download/0.2.1/terminal-0.2.1.tbz" + checksum: [ + "sha256=7ae7f5c5a2db88107d0b3fd37d5344f066921270a3e74d56dd13457feb9e586e" + "sha512=3828ac568e447e5f1e59450ee48491c256d8bc77abe234190e14e2db5be7b81f379837083f0eb28ea9572fce2781fd0addd7adc1701947c0b2de9d8319ace042" + ] +} +x-commit-hash: "04ad0ff1dcfdbd46133b640a4481924a56724640" diff --git a/packages/terminal/terminal.0.2.1/opam b/packages/terminal/terminal.0.2.1/opam new file mode 100644 index 000000000000..c538815d7d79 --- /dev/null +++ b/packages/terminal/terminal.0.2.1/opam @@ -0,0 +1,45 @@ +opam-version: "2.0" +synopsis: "Basic utilities for interacting with terminals" +description: "Basic utilities for interacting with terminals" +maintainer: ["Craig Ferguson "] +authors: ["Craig Ferguson "] +license: "MIT" +homepage: "https://github.com/CraigFe/progress" +doc: "https://CraigFe.github.io/progress/" +bug-reports: "https://github.com/CraigFe/progress/issues" +depends: [ + "dune" {>= "2.7"} + "ocaml" {>= "4.03.0"} + "uucp" {>= "2.0.0"} + "uutf" {>= "1.0.0"} + "stdlib-shims" + "alcotest" {with-test & >= "1.4.0"} + "fmt" {with-test} + "astring" {with-test} + "mtime" {with-test & >= "1.1.0"} + "odoc" {with-doc} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] +] +dev-repo: "git+https://github.com/CraigFe/progress.git" +url { + src: + "https://github.com/CraigFe/progress/releases/download/0.2.1/terminal-0.2.1.tbz" + checksum: [ + "sha256=7ae7f5c5a2db88107d0b3fd37d5344f066921270a3e74d56dd13457feb9e586e" + "sha512=3828ac568e447e5f1e59450ee48491c256d8bc77abe234190e14e2db5be7b81f379837083f0eb28ea9572fce2781fd0addd7adc1701947c0b2de9d8319ace042" + ] +} +x-commit-hash: "04ad0ff1dcfdbd46133b640a4481924a56724640"