from Charlene Wendling; OK afresh1@
Comment:
inside-out objects with Moose
Description:
MooseX::InsideOut provides metaroles for inside-out objects. It
sets up attribute slot storage somewhere other than inside $self.
This means that you can extend non-Moose classes, whose internals
you either don't want to care about or aren't hash-based.
from Charlene Wendling; OK afresh1@
Comment:
prompt for user input with a default option
Description:
This is an extremely simple prompting module, based on the extremely
simple prompt offered by ExtUtils::MakeMaker.
It doesn't do any validation, coloring, menus, timeouts etc., it
just prompts with a default.
from Charlene Wendling; OK afresh1@
Comment:
portably create pipe() or pipe-like handles
Description:
IO::Pipely provides a couple functions to portably create one- and
two-way pipes and pipe-like socket pairs. It acknowledges and works
around known platform issues so you don't have to.
IO::Pipely currently understands pipe(), UNIX-domain socketpair()
and regular IPv4 localhost sockets.
some existing COMPILER lines with arch restrictions etc. In the usual
case this is now using "COMPILER = base-clang ports-gcc base-gcc" on
ports with c++ libraries in WANTLIB.
This is basically intended to be a noop on architectures using clang
as the system compiler, but help with other architectures where we
currently have many ports knocked out due to building with an unsuitable
compiler -
- some ports require c++11/newer so the GCC version in base that is used
on these archirtectures is too old.
- some ports have conflicts where an executable is built with one compiler
(e.g. gcc from base) but a library dependency is built with a different
one (e.g. gcc from ports), resulted in mixing incompatible libraries in the
same address space.
devel/gmp is intentionally skipped as it's on the path to building gcc -
the c++ library there is unused in ports (and not built by default upstream)
so intending to disable building gmpcxx in a future commit.
libssl internals. This effectively takes the OpenSSL 1.1 code path
instead of the OpenSSL 1.0 code path, and will allow for further
libssl clean up.
with and OK jsing@