this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #26527 from dbuenzli/b0-publish-mtime.2.1.0-etc-b00ab5a8b3cb608d

Add: mtime.2.1.0, ptime.1.2.0

authored by

Shon Feder and committed by
GitHub
0329818d abac1def

+77
+36
packages/mtime/mtime.2.1.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Monotonic wall-clock time for OCaml" 3 + description: """\ 4 + Mtime has platform independent support for monotonic wall-clock time 5 + in pure OCaml. This time increases monotonically and is not subject to 6 + operating system calendar time adjustments. The library has types to 7 + represent nanosecond precision timestamps and time spans. 8 + 9 + The additional Mtime_clock library provide access to a system 10 + monotonic clock. 11 + 12 + Mtime has a no dependency. Mtime_clock depends on your system library 13 + or JavaScript runtime system. Mtime and its libraries are distributed 14 + under the ISC license. 15 + 16 + Home page: <http://erratique.ch/software/mtime>""" 17 + maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 18 + authors: "The mtime programmers" 19 + license: "ISC" 20 + tags: ["time" "monotonic" "system" "org:erratique"] 21 + homepage: "https://erratique.ch/software/mtime" 22 + doc: "https://erratique.ch/software/mtime/doc/" 23 + bug-reports: "https://github.com/dbuenzli/mtime/issues" 24 + depends: [ 25 + "ocaml" {>= "4.08.0"} 26 + "ocamlfind" {build} 27 + "ocamlbuild" {build & != "0.9.0"} 28 + "topkg" {build & >= "1.0.3"} 29 + ] 30 + build: ["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"] 31 + dev-repo: "git+https://erratique.ch/repos/mtime.git" 32 + url { 33 + src: "https://erratique.ch/software/mtime/releases/mtime-2.1.0.tbz" 34 + checksum: 35 + "sha512=a6619f1a3f1a5b32b7a9a067b939f94e6c66244eb90762d41f2cb1c9af852dd7d270fedb20e2b9b61875d52ba46e24af6ebf5950d1284b0b75b2fd2c380d9af3" 36 + }
+41
packages/ptime/ptime.1.2.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "POSIX time for OCaml" 3 + description: """\ 4 + Ptime has platform independent POSIX time support in pure OCaml. It 5 + provides a type to represent a well-defined range of POSIX timestamps 6 + with picosecond precision, conversion with date-time values, 7 + conversion with [RFC 3339 timestamps][rfc3339] and pretty printing to 8 + a human-readable, locale-independent representation. 9 + 10 + The additional Ptime_clock library provides access to a system POSIX 11 + clock and to the system's current time zone offset. 12 + 13 + Ptime is not a calendar library. 14 + 15 + Ptime has no dependency. Ptime_clock depends on your system library or 16 + JavaScript runtime system. Ptime and its libraries are distributed 17 + under the ISC license. 18 + 19 + [rfc3339]: http://tools.ietf.org/html/rfc3339 20 + 21 + Home page: <http://erratique.ch/software/ptime>""" 22 + maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 23 + authors: "The ptime programmers" 24 + license: "ISC" 25 + tags: ["time" "posix" "system" "org:erratique"] 26 + homepage: "https://erratique.ch/software/ptime" 27 + doc: "https://erratique.ch/software/ptime/doc/" 28 + bug-reports: "https://github.com/dbuenzli/ptime/issues" 29 + depends: [ 30 + "ocaml" {>= "4.08.0"} 31 + "ocamlfind" {build} 32 + "ocamlbuild" {build & != "0.9.0"} 33 + "topkg" {build & >= "1.0.3"} 34 + ] 35 + build: ["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"] 36 + dev-repo: "git+https://erratique.ch/repos/ptime.git" 37 + url { 38 + src: "https://erratique.ch/software/ptime/releases/ptime-1.2.0.tbz" 39 + checksum: 40 + "sha512=b0c3240dd9e777a5e60b5269eb2e312fc644d29ef55e257d2f2538c03bf62274173ed36e13858c44d2dbee8fe375c9c483e705706e4aa5b3b5c4609ca6324a5c" 41 + }