Hello community,

here is the log from the commit of package perl-NetAddr-IP for openSUSE:Factory
checked in at Fri Apr 8 09:01:24 CEST 2011.



--------
--- perl-NetAddr-IP/perl-NetAddr-IP.changes     2011-03-31 10:51:58.000000000 
+0200
+++ /mounts/work_src_done/STABLE/perl-NetAddr-IP/perl-NetAddr-IP.changes        
2011-04-07 10:46:53.000000000 +0200
@@ -1,0 +2,7 @@
+Thu Apr  7 05:25:11 UTC 2011 - [email protected]
+
+- updated to 4.043
+    Update documentation on the use of "adding constants 
+    to an IP address".
+
+-------------------------------------------------------------------
@@ -4 +11 @@
-- initial package 4.042
+- update to 4.042

calling whatdependson for head-i586


Old:
----
  NetAddr-IP-4.042.tar.gz

New:
----
  NetAddr-IP-4.043.tar.gz

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

Other differences:
------------------
++++++ perl-NetAddr-IP.spec ++++++
--- /var/tmp/diff_new_pack.Poo5cm/_old  2011-04-08 08:57:48.000000000 +0200
+++ /var/tmp/diff_new_pack.Poo5cm/_new  2011-04-08 08:57:48.000000000 +0200
@@ -18,9 +18,9 @@
 
 
 Name:           perl-NetAddr-IP
-Version:        4.042
+Version:        4.043
 Release:        1
-License:        CHECK(GPL+ or Artistic)
+License:        GPL+ or Artistic
 %define cpan_name NetAddr-IP
 Summary:        Manages IPv4 and IPv6 addresses and subnets
 Url:            http://search.cpan.org/dist/NetAddr-IP/
@@ -60,7 +60,7 @@
 %{__rm} -rf %{buildroot}
 
 %files -f %{name}.files
-%defattr(644,root,root,755)
-%doc Changes README TODO
+%defattr(-,root,root,755)
+%doc %attr(644,-,-) Changes README TODO
 
 %changelog

++++++ NetAddr-IP-4.042.tar.gz -> NetAddr-IP-4.043.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetAddr-IP-4.042/Changes new/NetAddr-IP-4.043/Changes
--- old/NetAddr-IP-4.042/Changes        2011-03-22 23:43:41.000000000 +0100
+++ new/NetAddr-IP-4.043/Changes        2011-04-06 20:32:05.000000000 +0200
@@ -1,5 +1,9 @@
 Revision history for Perl extension NetAddr::IP
 
+4.043 Wed Apr  6 11:31:19 PDT 2011
+       Update documentation on the use of "adding constants 
+       to an IP address".
+
 4.042 Tue Mar 22 15:26:02 PDT 2011
        Update Lite.pm v1.27 to encompass treatment of /31 and /127 
        point-to-point networks as described in RFC 3021
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetAddr-IP-4.042/IP.pm new/NetAddr-IP-4.043/IP.pm
--- old/NetAddr-IP-4.042/IP.pm  2011-03-22 23:38:06.000000000 +0100
+++ new/NetAddr-IP-4.043/IP.pm  2011-04-06 20:31:14.000000000 +0200
@@ -34,7 +34,7 @@
 
 @ISA = qw(Exporter NetAddr::IP::Lite);
 
-$VERSION = do { sprintf " %d.%03d", (q$Revision: 4.42 $ =~ /\d+/g) };
+$VERSION = do { sprintf " %d.%03d", (q$Revision: 4.43 $ =~ /\d+/g) };
 
 =pod
 
@@ -271,7 +271,7 @@
 This operation changes the address part to point so many hosts above the
 current objects start address. For instance, this code:
 
-    print NetAddr::IP::Lite->new('127.0.0.1') + 5;
+    print NetAddr::IP::Lite->new('127.0.0.1/8') + 5;
 
 will output 127.0.0.6/8. The address will wrap around at the broadcast
 back to the network address. This code:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetAddr-IP-4.042/Lite/Changes 
new/NetAddr-IP-4.043/Lite/Changes
--- old/NetAddr-IP-4.042/Lite/Changes   2011-03-22 23:43:57.000000000 +0100
+++ new/NetAddr-IP-4.043/Lite/Changes   2011-04-06 20:34:02.000000000 +0200
@@ -1,5 +1,9 @@
 Revision history for Perl extension NetAddr::IP::Lite
 
+1.28  Wed Apr  6 11:31:19 PDT 2011
+       Update documentation on the use of "adding constants
+       to an IP address".
+
 1.27  Tue Mar 22 15:26:02 PDT 2011
        Update Lite.pm to encompass treatment of /31 and /127 
        point-to-point networks as described in RFC 3021
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetAddr-IP-4.042/Lite/Lite.pm 
new/NetAddr-IP-4.043/Lite/Lite.pm
--- old/NetAddr-IP-4.042/Lite/Lite.pm   2011-03-22 23:37:05.000000000 +0100
+++ new/NetAddr-IP-4.043/Lite/Lite.pm   2011-04-06 20:32:46.000000000 +0200
@@ -29,7 +29,7 @@
 
 use vars qw(@ISA @EXPORT_OK $VERSION $Accept_Binary_IP $Old_nth $AUTOLOAD 
*Zero);
 
-$VERSION = do { my @r = (q$Revision: 1.27 $ =~ /\d+/g); sprintf "%d."."%02d" x 
$#r, @r };
+$VERSION = do { my @r = (q$Revision: 1.28 $ =~ /\d+/g); sprintf "%d."."%02d" x 
$#r, @r };
 
 require Exporter;
 
@@ -352,7 +352,7 @@
 This operation changes the address part to point so many hosts above the
 current objects start address. For instance, this code:
 
-    print NetAddr::IP::Lite->new('127.0.0.1') + 5;
+    print NetAddr::IP::Lite->new('127.0.0.1/8') + 5;
 
 will output 127.0.0.6/8. The address will wrap around at the broadcast
 back to the network address. This code:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetAddr-IP-4.042/META.yml 
new/NetAddr-IP-4.043/META.yml
--- old/NetAddr-IP-4.042/META.yml       2011-03-22 23:44:27.000000000 +0100
+++ new/NetAddr-IP-4.043/META.yml       2011-04-06 20:34:38.000000000 +0200
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                NetAddr-IP
-version:             4.042
+version:             4.043
 abstract:            Manages IPv4 and IPv6 addresses and subnets
 license:             ~
 author:              


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



Remember to have fun...

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

Reply via email to