Hello community,

here is the log from the commit of package perl-IO-Interface for 
openSUSE:Factory checked in at 2011-12-01 12:25:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-IO-Interface (Old)
 and      /work/SRC/openSUSE:Factory/.perl-IO-Interface.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-IO-Interface", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-IO-Interface/perl-IO-Interface.changes      
2011-09-23 12:37:28.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.perl-IO-Interface.new/perl-IO-Interface.changes 
2011-12-01 12:25:20.000000000 +0100
@@ -1,0 +2,6 @@
+Tue Nov 29 15:15:17 UTC 2011 - co...@suse.com
+
+- update to 1.06
+    Address test 5 failure on systems with aliases on loopback. 
+
+-------------------------------------------------------------------

Old:
----
  IO-Interface-1.05.tar.gz

New:
----
  IO-Interface-1.06.tar.gz

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

Other differences:
------------------
++++++ perl-IO-Interface.spec ++++++
--- /var/tmp/diff_new_pack.baoZ0x/_old  2011-12-01 12:25:21.000000000 +0100
+++ /var/tmp/diff_new_pack.baoZ0x/_new  2011-12-01 12:25:21.000000000 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-IO-Interface (Version 1.05)
+# spec file for package perl-IO-Interface
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 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
@@ -20,8 +20,8 @@
 
 Name:           perl-IO-Interface
 Summary:        Perl extension for access to network card configuration 
information
-Version:        1.05
-Release:        4
+Version:        1.06
+Release:        0
 License:        Artistic
 Group:          Development/Libraries/Perl
 Url:            http://search.cpan.org/dist/IO-Interface/

++++++ IO-Interface-1.05.tar.gz -> IO-Interface-1.06.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/IO-Interface-1.05/Changes 
new/IO-Interface-1.06/Changes
--- old/IO-Interface-1.05/Changes       2008-06-06 17:53:45.000000000 +0200
+++ new/IO-Interface-1.06/Changes       2011-07-21 19:41:12.000000000 +0200
@@ -1,4 +1,7 @@
 Revision history for Perl extension IO::Interface.
+1.06    Thu Jul 21 13:40:49 EDT 2011
+        Address test 5 failure on systems with aliases on loopback.        
+
 1.05    Fri Jun  6 11:53:21 EDT 2008
         Fix from Mitsuru Yoshida to compile on FreeBSD.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/IO-Interface-1.05/Interface.pm 
new/IO-Interface-1.06/Interface.pm
--- old/IO-Interface-1.05/Interface.pm  2008-06-06 17:54:33.000000000 +0200
+++ new/IO-Interface-1.06/Interface.pm  2011-07-21 19:41:27.000000000 +0200
@@ -28,7 +28,7 @@
 @EXPORT = qw( );
 
 @ISA = qw(Exporter DynaLoader);
-$VERSION = '1.05';
+$VERSION = '1.06';
 
 sub AUTOLOAD {
     # This AUTOLOAD is used to 'autoload' constants from the constant()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/IO-Interface-1.05/META.yml 
new/IO-Interface-1.06/META.yml
--- old/IO-Interface-1.05/META.yml      2008-06-06 17:55:08.000000000 +0200
+++ new/IO-Interface-1.06/META.yml      2011-07-21 19:42:07.000000000 +0200
@@ -1,12 +1,20 @@
 --- #YAML:1.0
-name:                IO-Interface
-version:             1.05
-abstract:            ~
-license:             ~
-author:              ~
-generated_by:        ExtUtils::MakeMaker version 6.44
-distribution_type:   module
-requires:     
+name:               IO-Interface
+version:            1.06
+abstract:           ~
+author:  []
+license:            unknown
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
+requires:  {}
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.55_02
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
-    version: 1.3
+    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/IO-Interface-1.05/t/basic.t 
new/IO-Interface-1.06/t/basic.t
--- old/IO-Interface-1.05/t/basic.t     2004-03-27 00:18:31.000000000 +0100
+++ new/IO-Interface-1.06/t/basic.t     2011-07-21 19:40:15.000000000 +0200
@@ -26,13 +26,15 @@
 print @if ? 'ok ': 'not ok ',3,"\n";
 
 # find loopback interface
-my $loopback;
+my @loopback;
 foreach (@if) {
        next unless $s->if_flags($_) & IFF_UP;
-        $loopback = $_ if $s->if_flags($_) & IFF_LOOPBACK;
+       push @loopback,$_ if $s->if_flags($_) & IFF_LOOPBACK;
 }
 
-print $loopback ? 'ok ':'not ok ',4,"\n";
-print $s->if_addr($loopback) eq '127.0.0.1' ? 'ok ': 'not ok ',5,"\n";
+print @loopback ? 'ok ':'not ok ',4,"\n";
+my @local = grep {$s->if_addr($_) eq '127.0.0.1'} @loopback;
+
+print @local ? 'ok ': 'not ok ',5,"\n";
 
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to