OK jca@
replace random number generation with non-random
This perhaps ridiculous-seeming module was created to test routines
that manipulate random numbers by providing a known output from
rand. Given a list of seeds with srand, it will return each in
turn. After seeded random numbers are exhausted, it will always
return 0. Seed numbers must be of a form that meets the expected
output from rand as called with no arguments -- i.e. they must be
between 0 (inclusive) and 1 (exclusive). In order to facilitate
generating and testing a nearly-one number, this module exports the
function oneish, which returns a number just fractionally less than
one.
the .pc file, so that at the end a list of full paths to the libraries
is returned.
This makes the pkg_check_modules() behaviour consistent with the
normal CMake convention, where use of link_directories() is discouraged
in favour of using absolute paths to system libraries.
Patch by Sam Thursfield <sam.thursfield@codethink.co.uk>
https://cmake.org/Bug/view.php?id=15804
are various ports that aren't (e.g. py-cryptography and py-qt5 (QtWebKit)).
obviously not a long-term "fix" but helps to keep moving forward
ok jca@ sthen@ rpointel@ (MAINTAINER)
"Many C++ developers miss an easy and portable way of handling Unicode
encoded strings. The original C++ Standard (known as C++98 or C++03) is
Unicode agnostic. C++11 provides some support for Unicode on core
language and library level: u8, u, and U character and string literals,
char16_t and char32_t character types, u16string and u32string library
classes, and codecvt support for conversions between Unicode encoding
forms. In the meantime, developers use third party libraries like ICU,
OS specific capabilities, or simply roll out their own solutions.
In order to easily handle UTF-8 encoded Unicode strings, I came up with
a small generic library. For anybody used to work with STL algorithms
and iterators, it should be easy and natural to use."
from maintainer Sergey Bronnikov
ok sthen@
pyPEG is a plain and simple intrinsic parser interpreter framework for
Python version 2.7 and 3.x. It is based on Parsing Expression Grammar,
PEG. With pyPEG you can parse many formal languages in a very easy way.
ok shadchin@
With the update of elasticsearch Curator to the 4.x version, the CLI interface
changed. Instead of parameters, yaml configuration files are used to steer
actions of curator. Configuration file documentation can be found on the
curator reference pages.
https://www.elastic.co/guide/en/elasticsearch/client/curator/4.0/index.html
Update from Pavel Korovin (p AT tristero se)
Also tested by jasper@