[libio-async-perl] branch master updated (9a0621d -> b835a2e)

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


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

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

      from  9a0621d   Remove trailing whitespace
      adds  b0fb0ce   Imported Upstream version 0.60
       new  93eb353   Merge tag 'upstream/0.60'
       new  34efde1   Import Upstream version 0.60 (closes: #723849)
       new  df34ba3   Update years of upstream copyright
       new  7673d3f   Exchange (build-)dependencies on Async::MergePoint and CPS with Future::Utils 0.16
       new  1a36110   Switch alternative dependencies on Socket | Perl >= 5.15.6 (jessie has Perl 5.18.1)
       new  3fc4c46   Recommend libio-socket-ip-perl
       new  5280173   Delete subsecond.patch, was from new upstream version
       new  3db1084   Bump Standards-Version to 3.9.4 (no change)
       new  b835a2e   Add myself to uploaders and copyright

The 9 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Build.PL                            |   13 +-
 Changes                             |   92 ++++
 LICENSE                             |    6 +-
 MANIFEST                            |   13 +-
 META.json                           |   97 +++--
 META.yml                            |   91 ++--
 Makefile.PL                         |   10 +-
 README                              |   51 ++-
 debian/changelog                    |    7 +-
 debian/control                      |   17 +-
 debian/copyright                    |    3 +-
 debian/patches/series               |    1 -
 debian/patches/subsecond.patch      |   74 ----
 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 ++
 114 files changed, 3899 insertions(+), 3163 deletions(-)
 delete mode 100644 debian/patches/series
 delete mode 100644 debian/patches/subsecond.patch
 create mode 100644 examples/readwrite-futures.pl
 delete mode 100644 lib/IO/Async/Connector.pm
 delete mode 100644 lib/IO/Async/DetachedCode.pm
 create mode 100644 lib/IO/Async/Future.pm
 create mode 100644 lib/IO/Async/Internals/Connector.pm
 create mode 100644 lib/IO/Async/OS/cygwin.pm
 delete mode 100644 lib/IO/Async/Sequencer.pm
 create mode 100644 t/19loop-future.t
 delete mode 100644 t/43detachedcode.t
 delete mode 100644 t/60sequencer-client.t
 delete mode 100644 t/60sequencer-server.t
 create mode 100644 t/63handle-connect.t
 create mode 100644 t/TimeAbout.pm

-- 
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