operating system supports.
Asynchronous means that operations that can normally block your
program (e.g. reading from disk) will be done asynchronously: the
operation will still block, but you can do something else in the
meantime. This is extremely useful for programs that need to stay
interactive even when doing heavy I/O (GUI programs, high performance
network servers etc.), but can also be used to easily do operations in
parallel that are normally done sequentially, e.g. stat'ing many files,
which is much faster on a RAID volume or over NFS when you do a number
of stat operations concurrently.
While most of this works on all types of file descriptors (for example
sockets), using these functions on file descriptors that support
nonblocking operation (again, sockets, pipes etc.) is very inefficient
or might not work (aio_read fails on sockets/pipes/fifos). Use an
event loop for that (such as the Event module): IO::AIO will naturally
fit into such an event loop itself.
WWW: http://search.cpan.org/dist/IO-AIO/
Notes: For index unbreak.
PR: ports/106526
Submitted by: Gea-Suan Lin <gslin at gslin.org>
This allows module authors to utilise an event loop without forcing
module users to use the same event loop (as only a single event loop
can coexist peacefully at any one time).
The interface itself is vaguely similar but not identical to the Event
module.
On the first call of any method, the module tries to detect the
currently loaded event loop by probing wether any of the following
modules is loaded: Coro::Event, Event, Glib, Tk. The first one found
is used. If none is found, the module tries to load these modules in
the order given. The first one that could be successfully loaded will
be used. If still none could be found, AnyEvent will fall back to a
pure-perl event loop, which is also not very efficient.
WWW: http://search.cpan.org/dist/AnyEvent/
Noted: For index unbreak :(
PR: ports/106527
Submitted by: Gea-Suan Lin <gslin at gslin.org>
This module contains utility functions for dealing with signals.
WWW: http://search.cpan.org/dist/IPC-Signal/
PR: ports/103882
Submitted by: Rouslan Iskhakov <rouslan at rshell.net>
- add a PYCTYPES dependency macro to bsd.python.mk to unbreak ctypes using
ports on Python 2.5 [2]
- Update two of the four ports using ctypes to this macro [3]
PR: 104587 [1]
Submitted by: Marcus von Appen <mva@sysfault.org> [1]
Approved by: portmgr (pav, linimon) [2], myself [3]
- Use BUILD_DEPENDS=${RUN_DEPENDS} to prevent from unused run-depends when
using PERL_MODBUILD=yes (it will add something to BUILD_DEPENDS)
- No Clone dependency anymore, and add GraphViz dependency
- Storable 2.04 is in Perl 5.8.0+
PR: ports/102667
Submitted by: Gea-Suan Lin <gslin@gslin.org>
Approved by: maintainer timeout (3 months)
Submitter has another but miwi and I think mine is better.
- Use DATADIR
PR: ports/105910
Submitted by: trasz <trasz at pin.if.uz.zgora.pl>
OKed by: miwi (PR holder)
Approved by: portmgr (linimon)
It allows users to edit, visualize, interpret and debug
any ANTLR 3 grammar through an easy-to-use GUI.
WWW: http://www.antlr.org/works/
PR: ports/106388
Submitted by: Matthias Sund <m.sund at arcor.de>