UTF-8 support module for Lua and LuaJIT which is mainly compatible with Lua's
own string module.
It also adds some useful routines against UTF-8 features, such as interfaces
to escape Unicode sequences in strings and translate Unicode offsets and byte
offsets.
OK jca@
This doesn't solve all the problems currently affecting openjpeg, but
makes it easier to pick up fixes. Cheating a bit, as the lib lost two
symbols, but those should never have been included in the library
anyway.
Feedback, tests and ok sthen@ (maintainer)
OK jca@
Comment:
check what OS we are running on
Description:
Devel::CheckOS provides a more friendly interface to $^O, and also
lets you check for various OS "families" such as "Unix", which
includes things like Linux, Solaris, AIX etc.
OK jca@
Comment:
skip tests when modules not available
Description:
Skip test scripts if modules are not available. The requested
modules will be loaded, and optionally have their versions checked.
If the module is missing, the test script will be skipped. Modules
that are found but fail to compile will exit with an error rather
than skip.
For release note see https://blog.rust-lang.org/2016/10/20/Rust-1.12.1.html
Please note, semarie rebuilded the bootstrap due to a bug in rustc: 1.12.0
wasn't able to rebuild 1.12.1 without intrusive patches in the build system
From semarie, ok ajacoutot
A lua library for time and date manipulation.
Features include:
- Normalisation of broken down date objects - allows for complex time/date
manipulation logic e.g. "What day is it in 2 days, 5 hours from now?"
- Conversion between locations (time zones) using your local zoneinfo database
- strftime style formatting
OK jca@