Hello community,

here is the log from the commit of package perl-Event for openSUSE:Factory 
checked in at 2013-06-06 15:02:10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Event (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Event.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Event"

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Event/perl-Event.changes    2011-09-23 
12:36:58.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Event.new/perl-Event.changes       
2013-06-06 15:02:12.000000000 +0200
@@ -1,0 +2,5 @@
+Tue Jun  4 08:45:33 UTC 2013 - [email protected]
+
+- updated to 1.21, no Changelog provided
+
+-------------------------------------------------------------------

Old:
----
  Event-1.20.tar.gz

New:
----
  Event-1.21.tar.gz

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

Other differences:
------------------
++++++ perl-Event.spec ++++++
--- /var/tmp/diff_new_pack.3NEjWb/_old  2013-06-06 15:02:13.000000000 +0200
+++ /var/tmp/diff_new_pack.3NEjWb/_new  2013-06-06 15:02:13.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Event
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,15 +16,14 @@
 #
 
 
-
 Name:           perl-Event
-Version:        1.20
-Release:        1
-License:        GPL-1.0+ or Artistic-1.0
+Version:        1.21
+Release:        0
 %define cpan_name Event
 Summary:        Event loop processing
-Url:            http://search.cpan.org/dist/Event/
+License:        GPL-1.0+ or Artistic-1.0
 Group:          Development/Libraries/Perl
+Url:            http://search.cpan.org/dist/Event/
 Source:         
http://www.cpan.org/authors/id/J/JP/JPRIT/%{cpan_name}-%{version}.tar.gz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl

++++++ Event-1.20.tar.gz -> Event-1.21.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Event-1.20/META.yml new/Event-1.21/META.yml
--- old/Event-1.20/META.yml     2011-07-27 04:53:07.000000000 +0200
+++ new/Event-1.21/META.yml     2012-12-14 18:12:51.000000000 +0100
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Event
-version:            1.20
+version:            1.21
 abstract:           ~
 author:  []
 license:            unknown
@@ -15,7 +15,7 @@
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.55_02
+generated_by:       ExtUtils::MakeMaker version 6.57_05
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Event-1.20/c/io.c new/Event-1.21/c/io.c
--- old/Event-1.20/c/io.c       2008-05-17 04:32:03.000000000 +0200
+++ new/Event-1.21/c/io.c       2012-12-14 18:12:45.000000000 +0100
@@ -208,7 +208,7 @@
        SV *ret = (WaTMPERLCB(ev)?
                   (SV*) io->tm_callback :
                   (io->tm_callback?
-                   sv_2mortal(newSVpvf("<FPTR=0x%x EXT=0x%x>",
+                   sv_2mortal(newSVpvf("<FPTR=0x%p EXT=0x%p>",
                                        io->tm_callback, io->tm_ext_data)) :
                    &PL_sv_undef));
        dSP;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Event-1.20/c/typemap.c new/Event-1.21/c/typemap.c
--- old/Event-1.20/c/typemap.c  2008-05-17 04:32:03.000000000 +0200
+++ new/Event-1.21/c/typemap.c  2012-12-14 17:59:43.000000000 +0100
@@ -166,7 +166,7 @@
 
 SV* events_mask_2sv(int mask) {
     SV *ret = newSV(0);
-    SvUPGRADE(ret, SVt_PVIV);
+    (void)SvUPGRADE(ret, SVt_PVIV);
     sv_setpvn(ret, "", 0);
     if (mask & PE_R) sv_catpv(ret, "r");
     if (mask & PE_W) sv_catpv(ret, "w");
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Event-1.20/c/var.c new/Event-1.21/c/var.c
--- old/Event-1.20/c/var.c      2007-05-22 08:38:35.000000000 +0200
+++ new/Event-1.21/c/var.c      2012-12-14 17:59:31.000000000 +0100
@@ -69,8 +69,7 @@
     sv = SvRV(sv);
     if (SvREADONLY(sv))
        return "cannot trace read-only variable";
-    if (!SvUPGRADE(sv, SVt_PVMG))
-       return "SvUPGRADE failed";
+    (void)SvUPGRADE(sv, SVt_PVMG);
 
     mgp = &SvMAGIC(sv);
     while ((mg = *mgp)) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Event-1.20/c/watcher.c new/Event-1.21/c/watcher.c
--- old/Event-1.20/c/watcher.c  2007-05-22 08:38:35.000000000 +0200
+++ new/Event-1.21/c/watcher.c  2012-12-14 18:12:45.000000000 +0100
@@ -140,7 +140,7 @@
        SV *ret = (WaPERLCB(ev)?
                   (SV*) ev->callback :
                   (ev->callback?
-                   sv_2mortal(newSVpvf("<FPTR=0x%x EXT=0x%x>",
+                   sv_2mortal(newSVpvf("<FPTR=0x%p EXT=0x%p>",
                                        ev->callback, ev->ext_data)) :
                    &PL_sv_undef));
        dSP;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Event-1.20/lib/Event.pm new/Event-1.21/lib/Event.pm
--- old/Event-1.20/lib/Event.pm 2011-07-27 04:52:29.000000000 +0200
+++ new/Event-1.21/lib/Event.pm 2012-12-14 18:12:45.000000000 +0100
@@ -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.20';
+$VERSION = '1.21';
 
 # If we inherit DynaLoader then we inherit AutoLoader; Bletch!
 require DynaLoader;

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

Reply via email to