Hello community,

here is the log from the commit of package perl-NetPacket for openSUSE:Factory 
checked in at 2013-09-08 11:40:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-NetPacket (Old)
 and      /work/SRC/openSUSE:Factory/.perl-NetPacket.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-NetPacket"

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-NetPacket/perl-NetPacket.changes    
2013-08-27 21:04:18.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.perl-NetPacket.new/perl-NetPacket.changes       
2013-09-08 11:40:59.000000000 +0200
@@ -1,0 +2,7 @@
+Fri Sep  6 19:35:34 UTC 2013 - greg.freem...@gmail.com
+
+- update to 1.4.1 2013-09-05
+ [BUG FIXES]
+ - Test was using Errno constant and failing on some platforms.
+
+-------------------------------------------------------------------

Old:
----
  NetPacket-1.4.0.tar.gz

New:
----
  NetPacket-1.4.1.tar.gz

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

Other differences:
------------------
++++++ perl-NetPacket.spec ++++++
--- /var/tmp/diff_new_pack.JS2CpO/_old  2013-09-08 11:41:00.000000000 +0200
+++ /var/tmp/diff_new_pack.JS2CpO/_new  2013-09-08 11:41:00.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           perl-NetPacket
-Version:        1.4.0
+Version:        1.4.1
 Release:        0
 Summary:        Assemble/disassemble network packets at the protocol level
 License:        Artistic-2.0

++++++ NetPacket-1.4.0.tar.gz -> NetPacket-1.4.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetPacket-1.4.0/Build.PL new/NetPacket-1.4.1/Build.PL
--- old/NetPacket-1.4.0/Build.PL        2013-08-27 02:05:47.000000000 +0200
+++ new/NetPacket-1.4.1/Build.PL        2013-09-06 02:05:44.000000000 +0200
@@ -7,12 +7,7 @@
 
 my %module_build_args = (
   "build_requires" => {
-    "Errno" => 0,
-    "File::Spec" => 0,
-    "IO::Handle" => 0,
-    "IPC::Open3" => 0,
-    "Module::Build" => "0.3601",
-    "Test::More" => "0.88"
+    "Module::Build" => "0.3601"
   },
   "configure_requires" => {
     "Module::Build" => "0.3601"
@@ -24,7 +19,7 @@
     "Yanick Champoux <yanick\@cpan.org>"
   ],
   "dist_name" => "NetPacket",
-  "dist_version" => "1.4.0",
+  "dist_version" => "1.4.1",
   "license" => "artistic_2",
   "module_name" => "NetPacket",
   "recommends" => {},
@@ -35,10 +30,29 @@
     "vars" => 0,
     "warnings" => 0
   },
-  "script_files" => []
+  "script_files" => [],
+  "test_requires" => {
+    "File::Spec" => 0,
+    "IO::Handle" => 0,
+    "IPC::Open3" => 0,
+    "Test::More" => "0.88"
+  }
 );
 
 
+unless ( eval { Module::Build->VERSION(0.4004) } ) {
+  my $tr = delete $module_build_args{test_requires};
+  my $br = $module_build_args{build_requires};
+  for my $mod ( keys %$tr ) {
+    if ( exists $br->{$mod} ) {
+      $br->{$mod} = $tr->{$mod} if $tr->{$mod} > $br->{$mod};
+    }
+    else {
+      $br->{$mod} = $tr->{$mod};
+    }
+  }
+}
+
 my $build = Module::Build->new(%module_build_args);
 
 $build->create_build_script;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetPacket-1.4.0/Changes new/NetPacket-1.4.1/Changes
--- old/NetPacket-1.4.0/Changes 2013-08-27 02:05:47.000000000 +0200
+++ new/NetPacket-1.4.1/Changes 2013-09-06 02:05:44.000000000 +0200
@@ -1,5 +1,12 @@
 revision history for NetPacket
 
+1.4.1 2013-09-05
+ [BUG FIXES]
+ - Test was using Errno constant and failing on some platforms.
+
+ [STATISTICS]
+ - code churn: 2 files changed, 15 insertions(+), 7 deletions(-)
+
 1.4.0 2013-08-26
  [DOCUMENTATION]
  - Fixing NetPacked::UDP documentation. (RT#85361, Ben Magistro)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetPacket-1.4.0/META.json 
new/NetPacket-1.4.1/META.json
--- old/NetPacket-1.4.0/META.json       2013-08-27 02:05:47.000000000 +0200
+++ new/NetPacket-1.4.1/META.json       2013-09-06 02:05:44.000000000 +0200
@@ -6,7 +6,7 @@
       "Yanick Champoux <yan...@cpan.org>"
    ],
    "dynamic_config" : 0,
-   "generated_by" : "Dist::Zilla version 4.300030, CPAN::Meta::Converter 
version 2.120921",
+   "generated_by" : "Dist::Zilla version 4.300037, CPAN::Meta::Converter 
version 2.120921",
    "license" : [
       "artistic_2"
    ],
@@ -41,7 +41,6 @@
       },
       "test" : {
          "requires" : {
-            "Errno" : "0",
             "File::Spec" : "0",
             "IO::Handle" : "0",
             "IPC::Open3" : "0",
@@ -52,39 +51,39 @@
    "provides" : {
       "NetPacket" : {
          "file" : "lib/NetPacket.pm",
-         "version" : "v1.4.0"
+         "version" : "v1.4.1"
       },
       "NetPacket::ARP" : {
          "file" : "lib/NetPacket/ARP.pm",
-         "version" : "v1.4.0"
+         "version" : "v1.4.1"
       },
       "NetPacket::Ethernet" : {
          "file" : "lib/NetPacket/Ethernet.pm",
-         "version" : "v1.4.0"
+         "version" : "v1.4.1"
       },
       "NetPacket::ICMP" : {
          "file" : "lib/NetPacket/ICMP.pm",
-         "version" : "v1.4.0"
+         "version" : "v1.4.1"
       },
       "NetPacket::IGMP" : {
          "file" : "lib/NetPacket/IGMP.pm",
-         "version" : "v1.4.0"
+         "version" : "v1.4.1"
       },
       "NetPacket::IP" : {
          "file" : "lib/NetPacket/IP.pm",
-         "version" : "v1.4.0"
+         "version" : "v1.4.1"
       },
       "NetPacket::TCP" : {
          "file" : "lib/NetPacket/TCP.pm",
-         "version" : "v1.4.0"
+         "version" : "v1.4.1"
       },
       "NetPacket::UDP" : {
          "file" : "lib/NetPacket/UDP.pm",
-         "version" : "v1.4.0"
+         "version" : "v1.4.1"
       },
       "NetPacket::USBMon" : {
          "file" : "lib/NetPacket/USBMon.pm",
-         "version" : "v1.4.0"
+         "version" : "v1.4.1"
       }
    },
    "release_status" : "stable",
@@ -100,7 +99,7 @@
          "web" : "https://github.com/yanick/netpacket";
       }
    },
-   "version" : "1.4.0",
+   "version" : "1.4.1",
    "x_authority" : "cpan:YANICK",
    "x_contributors" : [
       "Ben Magistro <konce...@gmail.com>",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetPacket-1.4.0/META.yml new/NetPacket-1.4.1/META.yml
--- old/NetPacket-1.4.0/META.yml        2013-08-27 02:05:47.000000000 +0200
+++ new/NetPacket-1.4.1/META.yml        2013-09-06 02:05:44.000000000 +0200
@@ -5,7 +5,6 @@
   - 'Stephanie Wehner <at...@itsx.com>'
   - 'Yanick Champoux <yan...@cpan.org>'
 build_requires:
-  Errno: 0
   File::Spec: 0
   IO::Handle: 0
   IPC::Open3: 0
@@ -14,7 +13,7 @@
 configure_requires:
   Module::Build: 0.3601
 dynamic_config: 0
-generated_by: 'Dist::Zilla version 4.300030, CPAN::Meta::Converter version 
2.120921'
+generated_by: 'Dist::Zilla version 4.300037, CPAN::Meta::Converter version 
2.120921'
 license: artistic_2
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -23,31 +22,31 @@
 provides:
   NetPacket:
     file: lib/NetPacket.pm
-    version: v1.4.0
+    version: v1.4.1
   NetPacket::ARP:
     file: lib/NetPacket/ARP.pm
-    version: v1.4.0
+    version: v1.4.1
   NetPacket::Ethernet:
     file: lib/NetPacket/Ethernet.pm
-    version: v1.4.0
+    version: v1.4.1
   NetPacket::ICMP:
     file: lib/NetPacket/ICMP.pm
-    version: v1.4.0
+    version: v1.4.1
   NetPacket::IGMP:
     file: lib/NetPacket/IGMP.pm
-    version: v1.4.0
+    version: v1.4.1
   NetPacket::IP:
     file: lib/NetPacket/IP.pm
-    version: v1.4.0
+    version: v1.4.1
   NetPacket::TCP:
     file: lib/NetPacket/TCP.pm
-    version: v1.4.0
+    version: v1.4.1
   NetPacket::UDP:
     file: lib/NetPacket/UDP.pm
-    version: v1.4.0
+    version: v1.4.1
   NetPacket::USBMon:
     file: lib/NetPacket/USBMon.pm
-    version: v1.4.0
+    version: v1.4.1
 requires:
   constant: 0
   strict: 0
@@ -57,7 +56,7 @@
   bugtracker: http://rt.cpan.org/Public/Dist/Display.html?Name=NetPacket
   homepage: http://search.cpan.org/dist/NetPacket/
   repository: https://github.com/yanick/netpacket.git
-version: 1.4.0
+version: 1.4.1
 x_authority: cpan:YANICK
 x_contributors:
   - 'Ben Magistro <konce...@gmail.com>'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetPacket-1.4.0/README new/NetPacket-1.4.1/README
--- old/NetPacket-1.4.0/README  2013-08-27 02:05:47.000000000 +0200
+++ new/NetPacket-1.4.1/README  2013-09-06 02:05:44.000000000 +0200
@@ -2,7 +2,7 @@
     NetPacket - assemble/disassemble network packets at the protocol level
 
 VERSION
-    version 1.4.0
+    version 1.4.1
 
 SYNOPSIS
         # NetPacket is a base class only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetPacket-1.4.0/README.mkdn 
new/NetPacket-1.4.1/README.mkdn
--- old/NetPacket-1.4.0/README.mkdn     2013-08-27 02:05:47.000000000 +0200
+++ new/NetPacket-1.4.1/README.mkdn     2013-09-06 02:05:44.000000000 +0200
@@ -4,7 +4,7 @@
 
 # VERSION
 
-version 1.4.0
+version 1.4.1
 
 # SYNOPSIS
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetPacket-1.4.0/SIGNATURE 
new/NetPacket-1.4.1/SIGNATURE
--- old/NetPacket-1.4.0/SIGNATURE       2013-08-27 02:05:47.000000000 +0200
+++ new/NetPacket-1.4.1/SIGNATURE       2013-09-06 02:05:44.000000000 +0200
@@ -14,27 +14,27 @@
 -----BEGIN PGP SIGNED MESSAGE-----
 Hash: SHA1
 
-SHA1 3af748937ec0905d2787656c31016f60fc939bc0 Build.PL
+SHA1 ca0e57f2cf703ff0e0459ced37bbac90f0e86a17 Build.PL
 SHA1 8678bf3cb46c9f3cb1165844f6e39021ce2081d2 CONTRIBUTORS
-SHA1 e019c27e405869a65c77a0294c446f42816bc987 Changes
+SHA1 1213e8292ff3b944f8cb9e15044e0d2512cd9ab0 Changes
 SHA1 29b0b7b9d088441a05d8786d0dc4bb3bd558d205 INSTALL
 SHA1 c2cbad0911cac62d6016e01230686f431b8e8e79 LICENSE
 SHA1 af5b779acd642a12e7e5d7eb2a76278239fdada8 MANIFEST
-SHA1 7e7665f5701aa1f3f03b0a9b190441e68265d787 META.json
-SHA1 7ef26627fc9cd54fd5a795bc64304e25f0ec0898 META.yml
-SHA1 7c2f349dccbb4f889d8bca1149b2914f4e7b16dd README
-SHA1 bdae1b0c4ff8b9d3ab0d351782bd84e1fc5d0387 README.mkdn
-SHA1 386874164f1f12629b6bfea56647c9568ed3af4a lib/NetPacket.pm
-SHA1 b1dcd33410d2a6691d54d816003934fd75be84f5 lib/NetPacket/ARP.pm
-SHA1 515fcc4374df08d8e86101bdca22f91128f50c14 lib/NetPacket/Ethernet.pm
-SHA1 fd86f99d675e3546f5853b8f9dbcdf6ff5505583 lib/NetPacket/ICMP.pm
-SHA1 140eb07b4e044aca856de2ba201cb069e1411544 lib/NetPacket/IGMP.pm
-SHA1 656cc272576c436072d222b17f86fd9a2ef54c2a lib/NetPacket/IP.pm
-SHA1 d471bf8038db3b6df1f948035cb48adcefe6544b lib/NetPacket/TCP.pm
-SHA1 63e43824bdf638cc3b7de3cb9c77f3e3238b9159 lib/NetPacket/UDP.pm
-SHA1 043eb01639829997140bdd0d1b4548e8379b9338 lib/NetPacket/USBMon.pm
+SHA1 c422f3971b944b3270ff6b86800276f9388f77b9 META.json
+SHA1 ce6d4da9fa8eeaa2e9f873dff3202ccb2cf0fe3d META.yml
+SHA1 fdd6abfaa7078155cc5913256bf72c336301b3f6 README
+SHA1 fefcdb5ccb3b5d82e02f8b6d612f2c78607f714e README.mkdn
+SHA1 22482c6297a8c473fd29b55f16ce70a7fefae4d7 lib/NetPacket.pm
+SHA1 957716750df00a60d82293832aa04da00e9cd5e0 lib/NetPacket/ARP.pm
+SHA1 01eabeedc165ff91ad963bcae2bf48ac9d3bdbe9 lib/NetPacket/Ethernet.pm
+SHA1 e41d7f6d10e9adb70b9b9611b3ed803641ac2a24 lib/NetPacket/ICMP.pm
+SHA1 26d06357e5783010f597c1778331fb91fcd339bc lib/NetPacket/IGMP.pm
+SHA1 9d070cb139cd35ab161b19ca213d752c1debdccc lib/NetPacket/IP.pm
+SHA1 722ac37568a58da5fc4cc66723c013e7e63e77e0 lib/NetPacket/TCP.pm
+SHA1 c15cc77827c01211fa4fb33a66c6698de328bfd5 lib/NetPacket/UDP.pm
+SHA1 c867b2f0ba338d01ca55e452394e32d26f1eb524 lib/NetPacket/USBMon.pm
 SHA1 73a132106eac2c407a4dbcd26f518a8c9c094c28 t/00-compile.t
-SHA1 e73e19a8cc8cb6a8183d86e8de3f0aac70e081d9 t/000-report-versions-tiny.t
+SHA1 e546e4fa1eaf515173636be6723fc09726dddf79 t/000-report-versions-tiny.t
 SHA1 2f95a288a42eed0173859c5bb9d37caee7e4b26b t/bug-37931.t
 SHA1 721a206d861139f8f73081b8d337bfcdce4247e5 t/checksum.t
 SHA1 45f23540d419a608363a53ed11b81c589866406e t/ethernet.t
@@ -45,11 +45,11 @@
 SHA1 bb7498ea4eba6a9df548038c1ad77960ee1633fb t/tcp.t
 SHA1 540bff42594ee78beb63a7316a4478bc58d7e37b t/udp-checksum.t
 SHA1 35bfbabbd32ddf83a0ac49db63f69de9ff6eadb2 t/udp.t
-SHA1 8b904bd8229e0c1108d09168452d7dd9d1bd988c t/usbmon.t
+SHA1 86e62e4a5bceec942b536d2b29f7910f883c6387 t/usbmon.t
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.11 (GNU/Linux)
 
-iEYEARECAAYFAlIb7VkACgkQ34Hwf+GwC4yOlgCdF4IFL39JglB3D04KSrAO2LBY
-p9kAoI5KQIKh4N4hs2CFuameytyXPbG8
-=JeGQ
+iEYEARECAAYFAlIpHFUACgkQ34Hwf+GwC4wFqACfbKRziJ31sbmFab9Xh7v7IzxU
+yGwAnA0UTlVDlf+jvbv5ixP25DcLn4Rl
+=i9AK
 -----END PGP SIGNATURE-----
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetPacket-1.4.0/lib/NetPacket/ARP.pm 
new/NetPacket-1.4.1/lib/NetPacket/ARP.pm
--- old/NetPacket-1.4.0/lib/NetPacket/ARP.pm    2013-08-27 02:05:47.000000000 
+0200
+++ new/NetPacket-1.4.1/lib/NetPacket/ARP.pm    2013-09-06 02:05:44.000000000 
+0200
@@ -3,7 +3,7 @@
   $NetPacket::ARP::AUTHORITY = 'cpan:YANICK';
 }
 {
-  $NetPacket::ARP::VERSION = '1.4.0';
+  $NetPacket::ARP::VERSION = '1.4.1';
 }
 # ABSTRACT: Assemble and disassemble ARP (Address Resolution Protocol) packets.
 
@@ -112,7 +112,7 @@
 
 =head1 VERSION
 
-version 1.4.0
+version 1.4.1
 
 =head1 SYNOPSIS
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetPacket-1.4.0/lib/NetPacket/Ethernet.pm 
new/NetPacket-1.4.1/lib/NetPacket/Ethernet.pm
--- old/NetPacket-1.4.0/lib/NetPacket/Ethernet.pm       2013-08-27 
02:05:47.000000000 +0200
+++ new/NetPacket-1.4.1/lib/NetPacket/Ethernet.pm       2013-09-06 
02:05:44.000000000 +0200
@@ -3,7 +3,7 @@
   $NetPacket::Ethernet::AUTHORITY = 'cpan:YANICK';
 }
 {
-  $NetPacket::Ethernet::VERSION = '1.4.0';
+  $NetPacket::Ethernet::VERSION = '1.4.1';
 }
 # ABSTRACT: Assemble and disassemble ethernet packets.
 
@@ -149,7 +149,7 @@
 
 =head1 VERSION
 
-version 1.4.0
+version 1.4.1
 
 =head1 SYNOPSIS
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetPacket-1.4.0/lib/NetPacket/ICMP.pm 
new/NetPacket-1.4.1/lib/NetPacket/ICMP.pm
--- old/NetPacket-1.4.0/lib/NetPacket/ICMP.pm   2013-08-27 02:05:47.000000000 
+0200
+++ new/NetPacket-1.4.1/lib/NetPacket/ICMP.pm   2013-09-06 02:05:44.000000000 
+0200
@@ -3,7 +3,7 @@
   $NetPacket::ICMP::AUTHORITY = 'cpan:YANICK';
 }
 {
-  $NetPacket::ICMP::VERSION = '1.4.0';
+  $NetPacket::ICMP::VERSION = '1.4.1';
 }
 # ABSTRACT: Assemble and disassemble ICMP (Internet Control Message Protocol) 
packets. 
 
@@ -156,7 +156,7 @@
 
 =head1 VERSION
 
-version 1.4.0
+version 1.4.1
 
 =head1 SYNOPSIS
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetPacket-1.4.0/lib/NetPacket/IGMP.pm 
new/NetPacket-1.4.1/lib/NetPacket/IGMP.pm
--- old/NetPacket-1.4.0/lib/NetPacket/IGMP.pm   2013-08-27 02:05:47.000000000 
+0200
+++ new/NetPacket-1.4.1/lib/NetPacket/IGMP.pm   2013-09-06 02:05:44.000000000 
+0200
@@ -7,7 +7,7 @@
   $NetPacket::IGMP::AUTHORITY = 'cpan:YANICK';
 }
 {
-  $NetPacket::IGMP::VERSION = '1.4.0';
+  $NetPacket::IGMP::VERSION = '1.4.1';
 }
 # ABSTRACT: Assemble and disassemble IGMP (Internet Group Mangement Protocol) 
packets. 
 
@@ -154,7 +154,7 @@
 
 =head1 VERSION
 
-version 1.4.0
+version 1.4.1
 
 =head1 SYNOPSIS
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetPacket-1.4.0/lib/NetPacket/IP.pm 
new/NetPacket-1.4.1/lib/NetPacket/IP.pm
--- old/NetPacket-1.4.0/lib/NetPacket/IP.pm     2013-08-27 02:05:47.000000000 
+0200
+++ new/NetPacket-1.4.1/lib/NetPacket/IP.pm     2013-09-06 02:05:44.000000000 
+0200
@@ -8,7 +8,7 @@
   $NetPacket::IP::AUTHORITY = 'cpan:YANICK';
 }
 {
-  $NetPacket::IP::VERSION = '1.4.0';
+  $NetPacket::IP::VERSION = '1.4.1';
 }
 # ABSTRACT: Assemble and disassemble IP (Internet Protocol) packets.
 
@@ -221,7 +221,7 @@
 
 =head1 VERSION
 
-version 1.4.0
+version 1.4.1
 
 =head1 SYNOPSIS
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetPacket-1.4.0/lib/NetPacket/TCP.pm 
new/NetPacket-1.4.1/lib/NetPacket/TCP.pm
--- old/NetPacket-1.4.0/lib/NetPacket/TCP.pm    2013-08-27 02:05:47.000000000 
+0200
+++ new/NetPacket-1.4.1/lib/NetPacket/TCP.pm    2013-09-06 02:05:44.000000000 
+0200
@@ -9,7 +9,7 @@
   $NetPacket::TCP::AUTHORITY = 'cpan:YANICK';
 }
 {
-  $NetPacket::TCP::VERSION = '1.4.0';
+  $NetPacket::TCP::VERSION = '1.4.1';
 }
 # ABSTRACT: Assemble and disassemble TCP (Transmission Control Protocol) 
packets.
 
@@ -302,7 +302,7 @@
 
 =head1 VERSION
 
-version 1.4.0
+version 1.4.1
 
 =head1 SYNOPSIS
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetPacket-1.4.0/lib/NetPacket/UDP.pm 
new/NetPacket-1.4.1/lib/NetPacket/UDP.pm
--- old/NetPacket-1.4.0/lib/NetPacket/UDP.pm    2013-08-27 02:05:47.000000000 
+0200
+++ new/NetPacket-1.4.1/lib/NetPacket/UDP.pm    2013-09-06 02:05:44.000000000 
+0200
@@ -7,7 +7,7 @@
   $NetPacket::UDP::AUTHORITY = 'cpan:YANICK';
 }
 {
-  $NetPacket::UDP::VERSION = '1.4.0';
+  $NetPacket::UDP::VERSION = '1.4.1';
 }
 # ABSTRACT: Assemble and disassemble UDP (User Datagram Protocol) packets.
 
@@ -140,7 +140,7 @@
 
 =head1 VERSION
 
-version 1.4.0
+version 1.4.1
 
 =head1 SYNOPSIS
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetPacket-1.4.0/lib/NetPacket/USBMon.pm 
new/NetPacket-1.4.1/lib/NetPacket/USBMon.pm
--- old/NetPacket-1.4.0/lib/NetPacket/USBMon.pm 2013-08-27 02:05:47.000000000 
+0200
+++ new/NetPacket-1.4.1/lib/NetPacket/USBMon.pm 2013-09-06 02:05:44.000000000 
+0200
@@ -3,7 +3,7 @@
   $NetPacket::USBMon::AUTHORITY = 'cpan:YANICK';
 }
 {
-  $NetPacket::USBMon::VERSION = '1.4.0';
+  $NetPacket::USBMon::VERSION = '1.4.1';
 }
 
 use strict;
@@ -151,7 +151,7 @@
 
 =head1 VERSION
 
-version 1.4.0
+version 1.4.1
 
 =head1 SYNOPSIS
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetPacket-1.4.0/lib/NetPacket.pm 
new/NetPacket-1.4.1/lib/NetPacket.pm
--- old/NetPacket-1.4.0/lib/NetPacket.pm        2013-08-27 02:05:47.000000000 
+0200
+++ new/NetPacket-1.4.1/lib/NetPacket.pm        2013-09-06 02:05:44.000000000 
+0200
@@ -9,7 +9,7 @@
   $NetPacket::AUTHORITY = 'cpan:YANICK';
 }
 {
-  $NetPacket::VERSION = '1.4.0';
+  $NetPacket::VERSION = '1.4.1';
 }
 # ABSTRACT: assemble/disassemble network packets at the protocol level
 
@@ -117,7 +117,7 @@
 
 =head1 VERSION
 
-version 1.4.0
+version 1.4.1
 
 =head1 SYNOPSIS
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetPacket-1.4.0/t/000-report-versions-tiny.t 
new/NetPacket-1.4.1/t/000-report-versions-tiny.t
--- old/NetPacket-1.4.0/t/000-report-versions-tiny.t    2013-08-27 
02:05:47.000000000 +0200
+++ new/NetPacket-1.4.1/t/000-report-versions-tiny.t    2013-09-06 
02:05:44.000000000 +0200
@@ -48,7 +48,6 @@
     return sprintf('%-45s => %-10s%-15s%s', $module, $pmver, $wanted, "\n");
 }
 
-eval { $v .= pmver('Errno','any version') };
 eval { $v .= pmver('File::Spec','any version') };
 eval { $v .= pmver('IO::Handle','any version') };
 eval { $v .= pmver('IPC::Open3','any version') };
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NetPacket-1.4.0/t/usbmon.t 
new/NetPacket-1.4.1/t/usbmon.t
--- old/NetPacket-1.4.0/t/usbmon.t      2013-08-27 02:05:47.000000000 +0200
+++ new/NetPacket-1.4.1/t/usbmon.t      2013-09-06 02:05:44.000000000 +0200
@@ -4,7 +4,6 @@
 use Test::More tests => 103;
 
 use NetPacket::USBMon qw/:ALL/;
-use Errno qw(:POSIX);
 
 my $frame;
 my $usbmon;
@@ -29,7 +28,7 @@
 is $usbmon->{flag_setup} => USB_FLAG_SETUP_RELEVANT;
 is $usbmon->{ts_sec} => 1376576584;
 is $usbmon->{ts_usec} => 448303;
-is $usbmon->{status} => -(EINPROGRESS);
+is $usbmon->{status} => -115;
 is $usbmon->{length} => 40;
 is $usbmon->{len_cap} => 0;
 is $usbmon->{xfer_flags} => 0x200;
@@ -79,7 +78,7 @@
 is $usbmon->{flag_setup} => USB_FLAG_SETUP_RELEVANT;
 is $usbmon->{ts_sec} => 1376576613;
 is $usbmon->{ts_usec} => 483875;
-is $usbmon->{status} => -(EINPROGRESS);
+is $usbmon->{status} => -115;
 is $usbmon->{length} => 0;
 is $usbmon->{len_cap} => 0;
 is $usbmon->{xfer_flags} => 0;
@@ -132,7 +131,7 @@
 is $usbmon->{flag_setup} => USB_FLAG_SETUP_RELEVANT;
 is $usbmon->{ts_sec} => 1376576613;
 is $usbmon->{ts_usec} => 483875;
-is $usbmon->{status} => -(EINPROGRESS);
+is $usbmon->{status} => -115;
 is $usbmon->{length} => 0;
 is $usbmon->{len_cap} => 0;
 is $usbmon->{xfer_flags} => 0;
@@ -188,7 +187,7 @@
 is $usbmon->{flag_setup} => USB_FLAG_SETUP_IRRELEVANT;
 is $usbmon->{ts_sec} => 1376576613;
 is $usbmon->{ts_usec} => 530110;
-is $usbmon->{status} => -(EINPROGRESS);
+is $usbmon->{status} => -115;
 is $usbmon->{length} => 24576;
 is $usbmon->{len_cap} => 128;
 is $usbmon->{xfer_flags} => 514;

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

Reply via email to