This commit is contained in:
swrup 2025-11-11 02:07:51 +01:00
parent aa2ff7b2f0
commit 2f3113f55d
11742 changed files with 1223940 additions and 0 deletions

View file

@ -0,0 +1,42 @@
description = "POSIX time for OCaml"
version = "1.2.0"
requires = ""
archive(byte) = "ptime.cma"
archive(native) = "ptime.cmxa"
plugin(byte) = "ptime.cma"
plugin(native) = "ptime.cmxs"
exists_if = "ptime.cma ptime.cmxa"
package "clock" (
directory = "clock"
description = "The ptime.clock library"
version = "1.2.0"
requires = "ptime"
exports = "ptime"
archive(byte) = "ptime_clock.cma"
archive(native) = "ptime_clock.cmxa"
plugin(byte) = "ptime_clock.cma"
plugin(native) = "ptime_clock.cmxs"
jsoo_runtime = "runtime.js"
exists_if = "ptime_clock.cma ptime_clock.cmxa"
package "os" (
description = "The ptime.clock.os library (deprecated)"
version = "1.2.0"
requires = "ptime.clock"
exports = "ptime.clock"
warning = "Deprecated, use the ptime.clock library."
)
)
package "top" (
directory = "top"
description = "The ptime.top library"
version = "1.2.0"
requires = "ptime"
archive(byte) = "ptime_top.cma"
archive(native) = "ptime_top.cmxa"
plugin(byte) = "ptime_top.cma"
plugin(native) = "ptime_top.cmxs"
exists_if = "ptime_top.cma ptime_top.cmxa"
)