Hello community,

here is the log from the commit of package perl-Event for openSUSE:Factory
checked in at Mon Sep 19 21:38:17 CEST 2011.



--------
--- perl-Event/perl-Event.changes       2011-06-20 10:56:18.000000000 +0200
+++ /mounts/work_src_done/STABLE/perl-Event/perl-Event.changes  2011-09-19 
17:53:39.000000000 +0200
@@ -1,0 +2,5 @@
+Mon Sep 19 15:52:50 UTC 2011 - [email protected]
+
+- updated to 1.20, no Changelog provided
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


Old:
----
  Event-1.17.tar.gz
  _service:download_files:Event-1.17.tar.gz

New:
----
  Event-1.20.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ perl-Event.spec ++++++
--- /var/tmp/diff_new_pack.eUeaHD/_old  2011-09-19 21:38:13.000000000 +0200
+++ /var/tmp/diff_new_pack.eUeaHD/_new  2011-09-19 21:38:13.000000000 +0200
@@ -18,7 +18,7 @@
 
 
 Name:           perl-Event
-Version:        1.17
+Version:        1.20
 Release:        1
 License:        GPL+ or Artistic
 %define cpan_name Event
@@ -26,10 +26,19 @@
 Url:            http://search.cpan.org/dist/Event/
 Group:          Development/Libraries/Perl
 Source:         
http://www.cpan.org/authors/id/J/JP/JPRIT/%{cpan_name}-%{version}.tar.gz
-Patch0:         Event-1.0-warning.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+#BuildRequires: perl(Event)
+#BuildRequires: perl(Event::generic)
+#BuildRequires: perl(Event::group)
+#BuildRequires: perl(Event::io)
+#BuildRequires: perl(Event::MakeMaker)
+#BuildRequires: perl(Event::timer)
+#BuildRequires: perl(Event::Watcher)
+#BuildRequires: perl(Qt) >= 2.0
+#BuildRequires: perl(Qt::MainWindow)
+#BuildRequires: perl(Qt::slots)
 %{perl_requires}
 
 %description
@@ -82,7 +91,6 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
-%patch0
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
@@ -96,9 +104,6 @@
 %perl_process_packlist
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf %{buildroot}
-
 %files -f %{name}.files
 %defattr(-,root,root,755)
 %doc ANNOUNCE ChangeLog README README.EV TODO Tutorial.pdf 
Tutorial.pdf-errata.txt util

++++++ Event-1.17.tar.gz -> Event-1.20.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Event-1.17/META.yml new/Event-1.20/META.yml
--- old/Event-1.17/META.yml     2011-05-18 19:13:10.000000000 +0200
+++ new/Event-1.20/META.yml     2011-07-27 04:53:07.000000000 +0200
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Event
-version:            1.17
+version:            1.20
 abstract:           ~
 author:  []
 license:            unknown
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Event-1.17/lib/Event.pm new/Event-1.20/lib/Event.pm
--- old/Event-1.17/lib/Event.pm 2011-05-18 19:12:44.000000000 +0200
+++ new/Event-1.20/lib/Event.pm 2011-07-27 04:52:29.000000000 +0200
@@ -14,7 +14,7 @@
 eval { require Carp::Heavy; };  # work around perl_call_pv bug XXX
 use vars qw($VERSION @EXPORT_OK
            $API $DebugLevel $Eval $DIED $Now);
-$VERSION = '1.17';
+$VERSION = '1.20';
 
 # If we inherit DynaLoader then we inherit AutoLoader; Bletch!
 require DynaLoader;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Event-1.17/t/io.t new/Event-1.20/t/io.t
--- old/Event-1.17/t/io.t       2011-05-18 17:54:46.000000000 +0200
+++ new/Event-1.20/t/io.t       2011-07-27 04:52:01.000000000 +0200
@@ -21,12 +21,23 @@
 eval { Event->io(fd => \*STDIN, cb => \&die, poll => 0) };
 ok $@, "/nothing to watch/";
 
+my $cannot_detect_bogus_fd;
+if ($Config{osname} eq 'darwin' or $Config{osname} eq 'gnu' or
+    $Config{archname} =~ m/^armv5tejl/) {
+    # GNU/Hurd's poll returns with -EBADF which is accurate
+    # but we cannot determine which fd is bad.
+    $cannot_detect_bogus_fd = 'Cannot detect bogus file descriptors';
+}
+
 my $noticed_bogus_fd=0;
 my $bogus_timeout=0;
-my $bogus = Event->io(desc => 'oops', poll => 'r', fd => 123,
+my $bogus;
+if (!$cannot_detect_bogus_fd) {
+    $bogus = Event->io(desc => 'oops', poll => 'r', fd => 123,
                      timeout => .1, cb => sub {
                          ++$bogus_timeout;
                      });
+}
 
 $SIG{__WARN__} = sub {
     my $is_it = $_[0] =~ m/\'oops\' was unexpectedly/;
@@ -84,12 +95,6 @@
 
 loop();
 
-my $bogus_fd_detection;
-if ($Config{osname} eq 'darwin' or $Config{osname} eq 'gnu' or
-    $Config{archname} =~ m/^armv5tejl/) {
-    $bogus_fd_detection = 'Cannot detect bogus file descriptors';
-}
-
-skip $bogus_fd_detection, $noticed_bogus_fd, 1;
-skip $bogus_fd_detection, !defined $bogus->fd;
-ok $bogus_timeout > 0;
+skip $cannot_detect_bogus_fd, $noticed_bogus_fd, 1;
+skip $cannot_detect_bogus_fd, $bogus && !defined $bogus->fd;
+skip $cannot_detect_bogus_fd, $bogus_timeout > 0;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Event-1.17/t/unconfigured.t 
new/Event-1.20/t/unconfigured.t
--- old/Event-1.17/t/unconfigured.t     2007-05-22 08:39:48.000000000 +0200
+++ new/Event-1.20/t/unconfigured.t     2011-06-25 13:18:18.000000000 +0200
@@ -23,5 +23,5 @@
 eval { Event->var(@p, poll => 0, var => \$var) };
 ok $@, '/without poll events/';
 
-eval { Event->var(@p, var => \$$) };
+eval { Event->var(@p, var => \$]) };
 ok $@, '/read\-only/';


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to