r77128 - in /branches/upstream/libnetpacket-perl/current: ./ lib/ lib/NetPacket/

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Mon Jul 4 20:36:49 UTC 2011


Author: periapt-guest
Date: Mon Jul  4 20:36:46 2011
New Revision: 77128

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=77128
Log:
[svn-upgrade] new version libnetpacket-perl (1.1.2)

Added:
    branches/upstream/libnetpacket-perl/current/INSTALL
Modified:
    branches/upstream/libnetpacket-perl/current/Build.PL
    branches/upstream/libnetpacket-perl/current/Changes
    branches/upstream/libnetpacket-perl/current/MANIFEST
    branches/upstream/libnetpacket-perl/current/META.json
    branches/upstream/libnetpacket-perl/current/META.yml
    branches/upstream/libnetpacket-perl/current/README
    branches/upstream/libnetpacket-perl/current/README.mkdn
    branches/upstream/libnetpacket-perl/current/SIGNATURE
    branches/upstream/libnetpacket-perl/current/lib/NetPacket.pm
    branches/upstream/libnetpacket-perl/current/lib/NetPacket/ARP.pm
    branches/upstream/libnetpacket-perl/current/lib/NetPacket/Ethernet.pm
    branches/upstream/libnetpacket-perl/current/lib/NetPacket/ICMP.pm
    branches/upstream/libnetpacket-perl/current/lib/NetPacket/IGMP.pm
    branches/upstream/libnetpacket-perl/current/lib/NetPacket/IP.pm
    branches/upstream/libnetpacket-perl/current/lib/NetPacket/TCP.pm
    branches/upstream/libnetpacket-perl/current/lib/NetPacket/UDP.pm

Modified: branches/upstream/libnetpacket-perl/current/Build.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnetpacket-perl/current/Build.PL?rev=77128&op=diff
==============================================================================
--- branches/upstream/libnetpacket-perl/current/Build.PL (original)
+++ branches/upstream/libnetpacket-perl/current/Build.PL Mon Jul  4 20:36:46 2011
@@ -21,7 +21,7 @@
     'Yanick Champoux <yanick at cpan.org>'
   ],
   'dist_name' => 'NetPacket',
-  'dist_version' => '1.1.1',
+  'dist_version' => '1.1.2',
   'license' => 'artistic_2',
   'module_name' => 'NetPacket',
   'recommends' => {},

Modified: branches/upstream/libnetpacket-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnetpacket-perl/current/Changes?rev=77128&op=diff
==============================================================================
--- branches/upstream/libnetpacket-perl/current/Changes (original)
+++ branches/upstream/libnetpacket-perl/current/Changes Mon Jul  4 20:36:46 2011
@@ -1,56 +1,60 @@
 revision history for NetPacket
 
-1.1.1     2011-02-07 19:34:30 America/Montreal
-    * Add the new Ethernet types to the export list. 
-        (thanks to Sergey, again :-) ) (RT#64799)
+1.1.2 2011-06-20
+ [BUG FIXES]
+ - Add a INSTALL file
 
-1.1.0     2011-01-15 12:51:13 America/Montreal
-    * Add a few Ethernet types. (thanks to Sergey) (RT#64799)
+1.1.1 2011-02-07T19:34:30Z
+ - Add the new Ethernet types to the export list.  (thanks to Sergey, again
+   :-) ) (RT#64799)
 
-1.0.1     2010-10-19 20:02:04 America/Montreal
-    * Make the example verbatim in pod in NetPacket::UDP (rt#62097)
+1.1.0 2011-01-15T12:51:13Z
+ - Add a few Ethernet types. (thanks to Sergey) (RT#64799)
 
-1.0.0     2010-10-17 13:42:15 America/Montreal
-    * Remove modules NetPacket::ICMPv6, NetPacket::IPv6 and NetPacket::PFLog
-        as the license of the patch clashes with the license of the
-        distribution. (RT#62197)
+1.0.1 2010-10-19T20:02:04Z
+ - Make the example verbatim in pod in NetPacket::UDP (rt#62097)
 
-0.43.2    2010-10-11 21:21:23 America/Montreal
-    * Change the COPYRIGHT sections of the pods to match the Artistic 2.0
-        license. (RT#60954)
+1.0.0 2010-10-17T13:42:15Z
+ - Remove modules NetPacket::ICMPv6, NetPacket::IPv6 and NetPacket::PFLog
+   as the license of the patch clashes with the license of the
+   distribution. (RT#62197)
 
-0.43.1    2010-06-11 21:45:15 America/Montreal
-    * Change a test to use explicit number of tests instead of 'done_testing'.
+0.41_0
+ - Fixed bug 18941 - NetPacket::IP includes trailing  trash bytes in
+   $ip->{data}
+ - Fixed bug 7010 - IP flags field lost in IP::encode()
+ - Added Build.PL 
+ - Moved history off the README file into this one (Changes)
+ - Moved module structure to /lib
+ - Version now gathered from NetPacket.pm
+ - META.yml added to MANIFEST
+ - Added myself (Yanick) as author
+ - Switched to major.minor.revision version notation
 
-0.43.0  May 23rd, 2010
-    * Fixed UDP checksum. Thanks to Hal Finkel. (RT#56235)
-    * Added Joel Knight's code for IPv6 support from 
-        http://www.packetmischief.ca/code/netpacket/. 
-        Thanks to Doug Farley for the bug report. (RT#57560)
+0.43.2 2010-10-11T21:21:23Z
+ - Change the COPYRIGHT sections of the pods to match the Artistic 2.0
+   license. (RT#60954)
+
+0.43.1 2010-06-11T21:45:15Z
+ - Change a test to use explicit number of tests instead of 'done_testing'.
+
+0.43.0 May 23rd, 2010
+ - Fixed UDP checksum. Thanks to Hal Finkel. (RT#56235)
+ - Added Joel Knight's code for IPv6 support from 
+   http://www.packetmischief.ca/code/netpacket/.  Thanks to Doug Farley for
+   the bug report. (RT#57560)
 
 0.42.0 March 25th, 2010
-    * Updated license to Artistic 2.0
-    * Fixed bad call to 'data()' in ICMP. Thanks to Ventz Petkov.
-        (RT#52627)
+ - Updated license to Artistic 2.0
+ - Fixed bad call to 'data()' in ICMP. Thanks to Ventz Petkov. (RT#52627)
 
 0.41.1
-    * Fixed bug 37931: export of ICMP_MASKREQ
-    * Fixed UDP and TCP checksums for odd-sized packets
-    * Fixed import from NetPacket::UDP
-    * Fixed bug 37931: export of ICMP_MASKREQ
-    * Added git repo and bug tracking info to META.yml
-
-0.41_0
-    * Fixed bug 18941 - NetPacket::IP includes trailing 
-        trash bytes in $ip->{data}
-    * Fixed bug 7010 - IP flags field lost in IP::encode()
-    * Added Build.PL 
-    * Moved history off the README file into this one (Changes)
-    * Moved module structure to /lib
-    * Version now gathered from NetPacket.pm
-    * META.yml added to MANIFEST
-    * Added myself (Yanick) as author
-    * Switched to major.minor.revision version notation
+ - Fixed bug 37931: export of ICMP_MASKREQ
+ - Fixed UDP and TCP checksums for odd-sized packets
+ - Fixed import from NetPacket::UDP
+ - Fixed bug 37931: export of ICMP_MASKREQ
+ - Added git repo and bug tracking info to META.yml
 
 0.04
-    * Checksum offset fix, thanks to J. Hoagland for pointing this out.
+ - Checksum offset fix, thanks to J. Hoagland for pointing this out.
+

Added: branches/upstream/libnetpacket-perl/current/INSTALL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnetpacket-perl/current/INSTALL?rev=77128&op=file
==============================================================================
--- branches/upstream/libnetpacket-perl/current/INSTALL (added)
+++ branches/upstream/libnetpacket-perl/current/INSTALL Mon Jul  4 20:36:46 2011
@@ -1,0 +1,44 @@
+
+This is the Perl distribution NetPacket.
+
+Installing NetPacket is straightforward.
+
+## Installation with cpanm
+
+If you have cpanm, you only need one line:
+
+    % cpanm NetPacket
+
+If you are installing into a system-wide directory, you may need to pass the
+"-S" flag to cpanm, which uses sudo to install the module:
+
+    % cpanm -S NetPacket
+
+## Installing with the CPAN shell
+
+Alternatively, if your CPAN shell is set up, you should just be able to do:
+
+    % cpan NetPacket
+
+## Manual installation
+
+As a last resort, you can manually install it. Download the tarball, untar it,
+then build it:
+
+    % perl Build.PL
+    % ./Build && ./Build test
+
+Then install it:
+
+    % ./Build install
+
+If you are installing into a system-wide directory, you may need to run:
+
+    % sudo ./Build install
+
+## Documentation
+
+NetPacket documentation is available as POD.
+You can run perldoc from a shell to read the documentation:
+
+    % perldoc NetPacket

Modified: branches/upstream/libnetpacket-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnetpacket-perl/current/MANIFEST?rev=77128&op=diff
==============================================================================
--- branches/upstream/libnetpacket-perl/current/MANIFEST (original)
+++ branches/upstream/libnetpacket-perl/current/MANIFEST Mon Jul  4 20:36:46 2011
@@ -1,5 +1,6 @@
 Build.PL
 Changes
+INSTALL
 LICENSE
 MANIFEST
 META.json

Modified: branches/upstream/libnetpacket-perl/current/META.json
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnetpacket-perl/current/META.json?rev=77128&op=diff
==============================================================================
--- branches/upstream/libnetpacket-perl/current/META.json (original)
+++ branches/upstream/libnetpacket-perl/current/META.json Mon Jul  4 20:36:46 2011
@@ -42,35 +42,35 @@
    "provides" : {
       "NetPacket" : {
          "file" : "lib/NetPacket.pm",
-         "version" : "v1.1.1"
+         "version" : "v1.1.2"
       },
       "NetPacket::ARP" : {
          "file" : "lib/NetPacket/ARP.pm",
-         "version" : "v1.1.1"
+         "version" : "v1.1.2"
       },
       "NetPacket::Ethernet" : {
          "file" : "lib/NetPacket/Ethernet.pm",
-         "version" : "v1.1.1"
+         "version" : "v1.1.2"
       },
       "NetPacket::ICMP" : {
          "file" : "lib/NetPacket/ICMP.pm",
-         "version" : "v1.1.1"
+         "version" : "v1.1.2"
       },
       "NetPacket::IGMP" : {
          "file" : "lib/NetPacket/IGMP.pm",
-         "version" : "v1.1.1"
+         "version" : "v1.1.2"
       },
       "NetPacket::IP" : {
          "file" : "lib/NetPacket/IP.pm",
-         "version" : "v1.1.1"
+         "version" : "v1.1.2"
       },
       "NetPacket::TCP" : {
          "file" : "lib/NetPacket/TCP.pm",
-         "version" : "v1.1.1"
+         "version" : "v1.1.2"
       },
       "NetPacket::UDP" : {
          "file" : "lib/NetPacket/UDP.pm",
-         "version" : "v1.1.1"
+         "version" : "v1.1.2"
       }
    },
    "release_status" : "stable",
@@ -86,7 +86,7 @@
          "web" : "http://github.com/yanick/netpacket/tree"
       }
    },
-   "version" : "1.1.1",
+   "version" : "1.1.2",
    "x_authority" : "cpan:yanick"
 }
 

Modified: branches/upstream/libnetpacket-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnetpacket-perl/current/META.yml?rev=77128&op=diff
==============================================================================
--- branches/upstream/libnetpacket-perl/current/META.yml (original)
+++ branches/upstream/libnetpacket-perl/current/META.yml Mon Jul  4 20:36:46 2011
@@ -20,28 +20,28 @@
 provides:
   NetPacket:
     file: lib/NetPacket.pm
-    version: v1.1.1
+    version: v1.1.2
   NetPacket::ARP:
     file: lib/NetPacket/ARP.pm
-    version: v1.1.1
+    version: v1.1.2
   NetPacket::Ethernet:
     file: lib/NetPacket/Ethernet.pm
-    version: v1.1.1
+    version: v1.1.2
   NetPacket::ICMP:
     file: lib/NetPacket/ICMP.pm
-    version: v1.1.1
+    version: v1.1.2
   NetPacket::IGMP:
     file: lib/NetPacket/IGMP.pm
-    version: v1.1.1
+    version: v1.1.2
   NetPacket::IP:
     file: lib/NetPacket/IP.pm
-    version: v1.1.1
+    version: v1.1.2
   NetPacket::TCP:
     file: lib/NetPacket/TCP.pm
-    version: v1.1.1
+    version: v1.1.2
   NetPacket::UDP:
     file: lib/NetPacket/UDP.pm
-    version: v1.1.1
+    version: v1.1.2
 requires:
   constant: 0
   vars: 0
@@ -49,5 +49,5 @@
   bugtracker: http://rt.cpan.org/Public/Dist/Display.html?Name=NetPacket
   homepage: http://search.cpan.org/dist/NetPacket/
   repository: git://github.com/yanick/netpacket.git
-version: 1.1.1
+version: 1.1.2
 x_authority: cpan:yanick

Modified: branches/upstream/libnetpacket-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnetpacket-perl/current/README?rev=77128&op=diff
==============================================================================
--- branches/upstream/libnetpacket-perl/current/README (original)
+++ branches/upstream/libnetpacket-perl/current/README Mon Jul  4 20:36:46 2011
@@ -2,7 +2,7 @@
     NetPacket - assemble/disassemble network packets at the protocol level
 
 VERSION
-    version 1.1.1
+    version 1.1.2
 
 SYNOPSIS
         # NetPacket is a base class only

Modified: branches/upstream/libnetpacket-perl/current/README.mkdn
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnetpacket-perl/current/README.mkdn?rev=77128&op=diff
==============================================================================
--- branches/upstream/libnetpacket-perl/current/README.mkdn (original)
+++ branches/upstream/libnetpacket-perl/current/README.mkdn Mon Jul  4 20:36:46 2011
@@ -4,7 +4,7 @@
 
 # VERSION
 
-version 1.1.1
+version 1.1.2
 
 # SYNOPSIS
 

Modified: branches/upstream/libnetpacket-perl/current/SIGNATURE
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnetpacket-perl/current/SIGNATURE?rev=77128&op=diff
==============================================================================
--- branches/upstream/libnetpacket-perl/current/SIGNATURE (original)
+++ branches/upstream/libnetpacket-perl/current/SIGNATURE Mon Jul  4 20:36:46 2011
@@ -14,22 +14,23 @@
 -----BEGIN PGP SIGNED MESSAGE-----
 Hash: SHA1
 
-SHA1 0a7199fb50ef86de8ae605b143ef8a0c641f0c3c Build.PL
-SHA1 2c7b475d50b047276a8f2607b6ec2d521f76c6c4 Changes
+SHA1 456dce20d8975d2116e8bf1a313a16b4ce5c80bc Build.PL
+SHA1 b82f3eaf9618719e440673a970e22a8f19526e1a Changes
+SHA1 29b0b7b9d088441a05d8786d0dc4bb3bd558d205 INSTALL
 SHA1 fa6e44d3372502992b6f871b615edc033606b2d7 LICENSE
-SHA1 9ab41842507804afb2b78dd5acc97abaec025285 MANIFEST
-SHA1 1af6765ffa7b9b2a95523d0a5076c63ec4c86deb META.json
-SHA1 b42adf2aa231d28c2794ddab961180417718c5e1 META.yml
-SHA1 94695da71065efa32461764e4dc9993bbd701ac7 README
-SHA1 0460a71fcf0be381ec4f4830d74d050c3f75080d README.mkdn
-SHA1 53e55f7958c02a7c6237ab2eb0bd4650f51d375e lib/NetPacket.pm
-SHA1 b5ab96225df5d7c18eed927c476469755c5c1dd4 lib/NetPacket/ARP.pm
-SHA1 ee0e9328196eebe42fa1505ea805048a62399146 lib/NetPacket/Ethernet.pm
-SHA1 28d4be33d7f3683f28312c6e6625c6003df6ddfc lib/NetPacket/ICMP.pm
-SHA1 5f4bb4e826e6b424bfb6fb611d83a65f94053b5a lib/NetPacket/IGMP.pm
-SHA1 8ee7a1707896dad55d70020e79b41acd279ff380 lib/NetPacket/IP.pm
-SHA1 39e2f31ae8fe20045366d10df1c8fe1b11f41f84 lib/NetPacket/TCP.pm
-SHA1 d829bad34a3bde7c5d8f01893b31152d2d472a61 lib/NetPacket/UDP.pm
+SHA1 478b16e5cba6c6811d80345400e08f98893f8034 MANIFEST
+SHA1 3aeb73560e5c89e3165a89f157342764bb865902 META.json
+SHA1 db232591dedd34d2306c8de58b9aaf541b028c86 META.yml
+SHA1 ce405a726593feab50d9f5ee83a0980f50782505 README
+SHA1 accb758479ce4b247c891db64f7183552dc4e25b README.mkdn
+SHA1 e3271dc75815ea8f4eb17e085c899bc273e29e0c lib/NetPacket.pm
+SHA1 0d059fd560e1fd06ef2633f670f23867b9b4750c lib/NetPacket/ARP.pm
+SHA1 b332c6fa88d3b28a306b57b19a48706690bfa1ab lib/NetPacket/Ethernet.pm
+SHA1 61ddc32f30edd9d5e99134f1e1fdf395a029c3df lib/NetPacket/ICMP.pm
+SHA1 5ec946f1760f46c8de8c948e95fc1584ce12a202 lib/NetPacket/IGMP.pm
+SHA1 e1da3e03166d55b23b223a7f20fb921745d91f09 lib/NetPacket/IP.pm
+SHA1 eec990f928ae2ac114ab4c1b5636f8f1b1930e2a lib/NetPacket/TCP.pm
+SHA1 3f98ea58c12f2b6154c5c1997c8146344285f4df lib/NetPacket/UDP.pm
 SHA1 050aa113e828a52db3c86065c0c0ed50198b7ce8 t/000-report-versions.t
 SHA1 2f95a288a42eed0173859c5bb9d37caee7e4b26b t/bug-37931.t
 SHA1 721a206d861139f8f73081b8d337bfcdce4247e5 t/checksum.t
@@ -43,7 +44,7 @@
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.10 (GNU/Linux)
 
-iEYEARECAAYFAk1Qj6sACgkQ34Hwf+GwC4wr6ACaAp75h5iTZMADb/ie2ijXGweZ
-sW4An0v6a1PaDCrDDTq7fU3QZFc9zDpK
-=gnqa
+iEYEARECAAYFAk3/0hcACgkQ34Hwf+GwC4zHeACfY0ozKCFFgHu51J2mTa1/s0zb
+mUkAn3ON1AfG0IAMjoI9FXkG80t9pbPn
+=v//B
 -----END PGP SIGNATURE-----

Modified: branches/upstream/libnetpacket-perl/current/lib/NetPacket.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnetpacket-perl/current/lib/NetPacket.pm?rev=77128&op=diff
==============================================================================
--- branches/upstream/libnetpacket-perl/current/lib/NetPacket.pm (original)
+++ branches/upstream/libnetpacket-perl/current/lib/NetPacket.pm Mon Jul  4 20:36:46 2011
@@ -9,7 +9,7 @@
   $NetPacket::AUTHORITY = 'cpan:yanick';
 }
 BEGIN {
-  $NetPacket::VERSION = '1.1.1';
+  $NetPacket::VERSION = '1.1.2';
 }
 # ABSTRACT: assemble/disassemble network packets at the protocol level
 
@@ -117,7 +117,7 @@
 
 =head1 VERSION
 
-version 1.1.1
+version 1.1.2
 
 =head1 SYNOPSIS
 

Modified: branches/upstream/libnetpacket-perl/current/lib/NetPacket/ARP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnetpacket-perl/current/lib/NetPacket/ARP.pm?rev=77128&op=diff
==============================================================================
--- branches/upstream/libnetpacket-perl/current/lib/NetPacket/ARP.pm (original)
+++ branches/upstream/libnetpacket-perl/current/lib/NetPacket/ARP.pm Mon Jul  4 20:36:46 2011
@@ -3,7 +3,7 @@
   $NetPacket::ARP::AUTHORITY = 'cpan:yanick';
 }
 BEGIN {
-  $NetPacket::ARP::VERSION = '1.1.1';
+  $NetPacket::ARP::VERSION = '1.1.2';
 }
 # ABSTRACT: Assemble and disassemble ARP (Address Resolution Protocol) packets.
 
@@ -114,7 +114,7 @@
 
 =head1 VERSION
 
-version 1.1.1
+version 1.1.2
 
 =head1 SYNOPSIS
 

Modified: branches/upstream/libnetpacket-perl/current/lib/NetPacket/Ethernet.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnetpacket-perl/current/lib/NetPacket/Ethernet.pm?rev=77128&op=diff
==============================================================================
--- branches/upstream/libnetpacket-perl/current/lib/NetPacket/Ethernet.pm (original)
+++ branches/upstream/libnetpacket-perl/current/lib/NetPacket/Ethernet.pm Mon Jul  4 20:36:46 2011
@@ -3,7 +3,7 @@
   $NetPacket::Ethernet::AUTHORITY = 'cpan:yanick';
 }
 BEGIN {
-  $NetPacket::Ethernet::VERSION = '1.1.1';
+  $NetPacket::Ethernet::VERSION = '1.1.2';
 }
 # ABSTRACT: Assemble and disassemble ethernet packets.
 
@@ -129,7 +129,7 @@
 
 =head1 VERSION
 
-version 1.1.1
+version 1.1.2
 
 =head1 SYNOPSIS
 

Modified: branches/upstream/libnetpacket-perl/current/lib/NetPacket/ICMP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnetpacket-perl/current/lib/NetPacket/ICMP.pm?rev=77128&op=diff
==============================================================================
--- branches/upstream/libnetpacket-perl/current/lib/NetPacket/ICMP.pm (original)
+++ branches/upstream/libnetpacket-perl/current/lib/NetPacket/ICMP.pm Mon Jul  4 20:36:46 2011
@@ -3,7 +3,7 @@
   $NetPacket::ICMP::AUTHORITY = 'cpan:yanick';
 }
 BEGIN {
-  $NetPacket::ICMP::VERSION = '1.1.1';
+  $NetPacket::ICMP::VERSION = '1.1.2';
 }
 # ABSTRACT: Assemble and disassemble ICMP (Internet Control Message Protocol) packets. 
 
@@ -158,7 +158,7 @@
 
 =head1 VERSION
 
-version 1.1.1
+version 1.1.2
 
 =head1 SYNOPSIS
 

Modified: branches/upstream/libnetpacket-perl/current/lib/NetPacket/IGMP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnetpacket-perl/current/lib/NetPacket/IGMP.pm?rev=77128&op=diff
==============================================================================
--- branches/upstream/libnetpacket-perl/current/lib/NetPacket/IGMP.pm (original)
+++ branches/upstream/libnetpacket-perl/current/lib/NetPacket/IGMP.pm Mon Jul  4 20:36:46 2011
@@ -7,7 +7,7 @@
   $NetPacket::IGMP::AUTHORITY = 'cpan:yanick';
 }
 BEGIN {
-  $NetPacket::IGMP::VERSION = '1.1.1';
+  $NetPacket::IGMP::VERSION = '1.1.2';
 }
 # ABSTRACT: Assemble and disassemble IGMP (Internet Group Mangement Protocol) packets. 
 
@@ -156,7 +156,7 @@
 
 =head1 VERSION
 
-version 1.1.1
+version 1.1.2
 
 =head1 SYNOPSIS
 

Modified: branches/upstream/libnetpacket-perl/current/lib/NetPacket/IP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnetpacket-perl/current/lib/NetPacket/IP.pm?rev=77128&op=diff
==============================================================================
--- branches/upstream/libnetpacket-perl/current/lib/NetPacket/IP.pm (original)
+++ branches/upstream/libnetpacket-perl/current/lib/NetPacket/IP.pm Mon Jul  4 20:36:46 2011
@@ -8,7 +8,7 @@
   $NetPacket::IP::AUTHORITY = 'cpan:yanick';
 }
 BEGIN {
-  $NetPacket::IP::VERSION = '1.1.1';
+  $NetPacket::IP::VERSION = '1.1.2';
 }
 # ABSTRACT: Assemble and disassemble IP (Internet Protocol) packets.
 
@@ -223,7 +223,7 @@
 
 =head1 VERSION
 
-version 1.1.1
+version 1.1.2
 
 =head1 SYNOPSIS
 

Modified: branches/upstream/libnetpacket-perl/current/lib/NetPacket/TCP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnetpacket-perl/current/lib/NetPacket/TCP.pm?rev=77128&op=diff
==============================================================================
--- branches/upstream/libnetpacket-perl/current/lib/NetPacket/TCP.pm (original)
+++ branches/upstream/libnetpacket-perl/current/lib/NetPacket/TCP.pm Mon Jul  4 20:36:46 2011
@@ -9,7 +9,7 @@
   $NetPacket::TCP::AUTHORITY = 'cpan:yanick';
 }
 BEGIN {
-  $NetPacket::TCP::VERSION = '1.1.1';
+  $NetPacket::TCP::VERSION = '1.1.2';
 }
 # ABSTRACT: Assemble and disassemble TCP (Transmission Control Protocol) packets.
 
@@ -199,7 +199,7 @@
 
 =head1 VERSION
 
-version 1.1.1
+version 1.1.2
 
 =head1 SYNOPSIS
 

Modified: branches/upstream/libnetpacket-perl/current/lib/NetPacket/UDP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnetpacket-perl/current/lib/NetPacket/UDP.pm?rev=77128&op=diff
==============================================================================
--- branches/upstream/libnetpacket-perl/current/lib/NetPacket/UDP.pm (original)
+++ branches/upstream/libnetpacket-perl/current/lib/NetPacket/UDP.pm Mon Jul  4 20:36:46 2011
@@ -7,7 +7,7 @@
   $NetPacket::UDP::AUTHORITY = 'cpan:yanick';
 }
 BEGIN {
-  $NetPacket::UDP::VERSION = '1.1.1';
+  $NetPacket::UDP::VERSION = '1.1.2';
 }
 # ABSTRACT: Assemble and disassemble UDP (User Datagram Protocol) packets.
 
@@ -147,7 +147,7 @@
 
 =head1 VERSION
 
-version 1.1.1
+version 1.1.2
 
 =head1 SYNOPSIS
 




More information about the Pkg-perl-cvs-commits mailing list