[libio-async-perl] 01/09: Merge tag 'upstream/0.60'

Florian Schlichting fsfs at alioth.debian.org
Fri Sep 20 18:09:20 UTC 2013


This is an automated email from the git hooks/post-receive script.

fsfs pushed a commit to branch master
in repository libio-async-perl.

commit 93eb3539b5ed5fe4a6b0f6d7adaae17760c8e8ba
Merge: 9a0621d b0fb0ce
Author: Florian Schlichting <fsfs at debian.org>
Date:   Fri Sep 20 18:19:56 2013 +0200

    Merge tag 'upstream/0.60'
    
    Upstream version 0.60

 Build.PL                            |   13 +-
 Changes                             |   92 ++++
 LICENSE                             |    6 +-
 MANIFEST                            |   13 +-
 META.json                           |   97 +++--
 META.yml                            |   91 ++--
 Makefile.PL                         |   10 +-
 README                              |   51 ++-
 examples/netcat-client.pl           |   11 +-
 examples/readwrite-futures.pl       |   17 +
 lib/IO/Async.pm                     |   62 ++-
 lib/IO/Async/Channel.pm             |    6 +-
 lib/IO/Async/ChildManager.pm        |    2 +-
 lib/IO/Async/Connector.pm           |  526 -----------------------
 lib/IO/Async/DetachedCode.pm        |  184 --------
 lib/IO/Async/File.pm                |    3 +-
 lib/IO/Async/FileStream.pm          |    6 +-
 lib/IO/Async/Function.pm            |   77 ++--
 lib/IO/Async/Future.pm              |  106 +++++
 lib/IO/Async/Handle.pm              |  121 +++++-
 lib/IO/Async/Internals/Connector.pm |  247 +++++++++++
 lib/IO/Async/Internals/TimeQueue.pm |    7 +-
 lib/IO/Async/Listener.pm            |    2 +-
 lib/IO/Async/Loop.pm                |  505 +++++++++++++++++++---
 lib/IO/Async/Loop/Poll.pm           |   33 +-
 lib/IO/Async/Loop/Select.pm         |   20 +-
 lib/IO/Async/LoopTests.pm           |   75 ++--
 lib/IO/Async/MergePoint.pm          |    4 +-
 lib/IO/Async/Notifier.pm            |    9 +-
 lib/IO/Async/OS.pm                  |   38 +-
 lib/IO/Async/OS/MSWin32.pm          |   69 +--
 lib/IO/Async/OS/cygwin.pm           |   37 ++
 lib/IO/Async/PID.pm                 |    5 +-
 lib/IO/Async/Process.pm             |   43 +-
 lib/IO/Async/Protocol.pm            |    4 +-
 lib/IO/Async/Protocol/LineStream.pm |    2 +-
 lib/IO/Async/Protocol/Stream.pm     |   37 +-
 lib/IO/Async/Resolver.pm            |  127 ++++--
 lib/IO/Async/Routine.pm             |    2 +-
 lib/IO/Async/Sequencer.pm           |  585 --------------------------
 lib/IO/Async/Signal.pm              |    2 +-
 lib/IO/Async/Socket.pm              |    4 +-
 lib/IO/Async/Stream.pm              |  792 +++++++++++++++++++++++++++++------
 lib/IO/Async/Test.pm                |    2 +-
 lib/IO/Async/Timer.pm               |    2 +-
 lib/IO/Async/Timer/Absolute.pm      |    4 +-
 lib/IO/Async/Timer/Countdown.pm     |    4 +-
 lib/IO/Async/Timer/Periodic.pm      |    7 +-
 t/00use.t                           |   11 +-
 t/01timequeue.t                     |   21 +-
 t/02os.t                            |   37 +-
 t/03loop-magic.t                    |   11 +-
 t/04notifier.t                      |    7 +-
 t/05notifier-child.t                |    7 +-
 t/06notifier-mixin.t                |    7 +-
 t/10loop-poll-io.t                  |    5 +-
 t/10loop-select-io.t                |    5 +-
 t/11loop-poll-timer.t               |    5 +-
 t/11loop-select-timer.t             |    5 +-
 t/12loop-poll-signal.t              |    5 +-
 t/12loop-select-signal.t            |    5 +-
 t/13loop-poll-idle.t                |    5 +-
 t/13loop-select-idle.t              |    5 +-
 t/14loop-poll-child.t               |    5 +-
 t/14loop-select-child.t             |    5 +-
 t/15loop-poll-control.t             |    5 +-
 t/15loop-select-control.t           |    5 +-
 t/18loop-poll-legacy.t              |    7 +-
 t/18loop-select-legacy.t            |    7 +-
 t/19loop-future.t                   |   85 ++++
 t/19test.t                          |    9 +-
 t/20handle.t                        |   56 ++-
 t/21stream-1read.t                  |  218 +++++++++-
 t/21stream-2write.t                 |  239 +++++++++--
 t/21stream-3split.t                 |    9 +-
 t/21stream-4encoding.t              |   26 +-
 t/22timer-absolute.t                |   32 +-
 t/22timer-countdown.t               |   34 +-
 t/22timer-periodic.t                |   57 +--
 t/23signal.t                        |    9 +-
 t/24listener.t                      |   36 +-
 t/25socket.t                        |    9 +-
 t/26pid.t                           |    9 +-
 t/27file.t                          |    9 +-
 t/28filestream.t                    |    9 +-
 t/30loop-fork.t                     |   11 +-
 t/31loop-spawnchild.t               |   11 +-
 t/32loop-spawnchild-setup.t         |   11 +-
 t/33process.t                       |   11 +-
 t/34process-handles.t               |   37 +-
 t/35loop-openchild.t                |   11 +-
 t/36loop-runchild.t                 |   11 +-
 t/37loop-child-root.t               |   16 +-
 t/40channel.t                       |   11 +-
 t/41routine.t                       |   11 +-
 t/42function.t                      |   61 ++-
 t/43detachedcode.t                  |  264 ------------
 t/50resolver.t                      |   94 ++++-
 t/51loop-connect.t                  |  149 ++++++-
 t/52loop-listen.t                   |   43 +-
 t/53loop-extend.t                   |  148 ++++---
 t/60protocol.t                      |    9 +-
 t/60sequencer-client.t              |  298 -------------
 t/60sequencer-server.t              |  165 --------
 t/61protocol-stream.t               |  276 ++++++------
 t/62protocol-linestream.t           |    9 +-
 t/63handle-connect.t                |   84 ++++
 t/99pod.t                           |    5 +-
 t/TimeAbout.pm                      |   31 ++
 109 files changed, 3883 insertions(+), 3077 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libio-async-perl.git



More information about the Pkg-perl-cvs-commits mailing list