~ubuntu-branches/ubuntu/precise/libanyevent-perl/precise

« back to all changes in this revision

Viewing changes to lib/AnyEvent/Impl/Tk.pm

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghedini, Ansgar Burchardt, Salvatore Bonaccorso, Alessandro Ghedini
  • Date: 2011-08-26 14:41:42 UTC
  • mfrom: (1.4.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20110826144142-kyv02a88kc6pyait
Tags: 6.010-1
[ Ansgar Burchardt ]
* debian/control: Convert Vcs-* fields to Git.

[ Salvatore Bonaccorso ]
* debian/copyright: Replace DEP5 Format-Specification URL from
  svn.debian.org to anonscm.debian.org URL.

[ Alessandro Ghedini ]
* New upstream release
* Update upstream copyright years
* Re-order (Build-)Depends
* Add debian/NEWS with incompatible changes and deprecations
* Move libasync-interrupt-perl to Suggests
* Add libtask-weaken-perl to Suggests
* Run loop tests
* Add libevent-perl, libglib-perl, libio-async-perl, libnet-ssleay-perl, 
  libpoe-perl and perl-tk to Build-Depends (needed by tests) and Suggests
* Run tests under xvfb (due to Tk tests), update Build-Depends accordingly

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
   Tk::after $mw, cancel => $${$_[0]};
134
134
}
135
135
 
136
 
sub one_event {
 
136
#sub loop {
 
137
#   Tk::MainLoop;
 
138
#}
 
139
 
 
140
sub _poll {
137
141
   Tk::DoOneEvent (0);
138
142
}
139
143
 
140
 
sub loop {
141
 
   Tk::MainLoop;
 
144
sub AnyEvent::CondVar::Base::_wait {
 
145
   Tk::DoOneEvent (0) until exists $_[0]{_ae_sent};
142
146
}
143
147
 
144
148
1;