r63654 - in /trunk/libnetpacket-perl: ./ debian/ lib/ lib/NetPacket/ t/

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Tue Oct 12 19:46:02 UTC 2010


Author: periapt-guest
Date: Tue Oct 12 19:45:50 2010
New Revision: 63654

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=63654
Log:
* New upstream release
* Upped standards version to 3.9.1
* Updated copyright

Added:
    trunk/libnetpacket-perl/META.json
      - copied unchanged from r63653, branches/upstream/libnetpacket-perl/current/META.json
    trunk/libnetpacket-perl/SIGNATURE
      - copied unchanged from r63653, branches/upstream/libnetpacket-perl/current/SIGNATURE
    trunk/libnetpacket-perl/t/000-report-versions.t
      - copied unchanged from r63653, branches/upstream/libnetpacket-perl/current/t/000-report-versions.t
Removed:
    trunk/libnetpacket-perl/dist.ini
Modified:
    trunk/libnetpacket-perl/Build.PL
    trunk/libnetpacket-perl/Changes
    trunk/libnetpacket-perl/MANIFEST
    trunk/libnetpacket-perl/META.yml
    trunk/libnetpacket-perl/debian/changelog
    trunk/libnetpacket-perl/debian/control
    trunk/libnetpacket-perl/debian/copyright
    trunk/libnetpacket-perl/lib/NetPacket.pm
    trunk/libnetpacket-perl/lib/NetPacket/ARP.pm
    trunk/libnetpacket-perl/lib/NetPacket/Ethernet.pm
    trunk/libnetpacket-perl/lib/NetPacket/ICMP.pm
    trunk/libnetpacket-perl/lib/NetPacket/ICMPv6.pm
    trunk/libnetpacket-perl/lib/NetPacket/IGMP.pm
    trunk/libnetpacket-perl/lib/NetPacket/IP.pm
    trunk/libnetpacket-perl/lib/NetPacket/IPv6.pm
    trunk/libnetpacket-perl/lib/NetPacket/PFLog.pm
    trunk/libnetpacket-perl/lib/NetPacket/TCP.pm
    trunk/libnetpacket-perl/lib/NetPacket/UDP.pm

Modified: trunk/libnetpacket-perl/Build.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/Build.PL?rev=63654&op=diff
==============================================================================
--- trunk/libnetpacket-perl/Build.PL (original)
+++ trunk/libnetpacket-perl/Build.PL Tue Oct 12 19:45:50 2010
@@ -7,7 +7,11 @@
 
 my %module_build_args = (
   'build_requires' => {
-    'Module::Build' => '0.3601'
+    'Carp' => '0',
+    'Module::Build' => '0.3601',
+    'Scalar::Util' => '0',
+    'Test::More' => '0.94',
+    'perl' => '5.004'
   },
   'configure_requires' => {
     'Module::Build' => '0.3601'
@@ -17,12 +21,16 @@
     'Yanick Champoux <yanick at cpan.org>'
   ],
   'dist_name' => 'NetPacket',
-  'dist_version' => '0.43.1',
+  'dist_version' => '0.43.2',
   'license' => 'artistic_2',
   'module_name' => 'NetPacket',
   'recommends' => {},
   'recursive_test_files' => 1,
-  'requires' => {},
+  'requires' => {
+    'Socket' => '0',
+    'constant' => '0',
+    'vars' => '0'
+  },
   'script_files' => []
 );
 

Modified: trunk/libnetpacket-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/Changes?rev=63654&op=diff
==============================================================================
--- trunk/libnetpacket-perl/Changes (original)
+++ trunk/libnetpacket-perl/Changes Tue Oct 12 19:45:50 2010
@@ -1,4 +1,8 @@
 revision history for NetPacket
+
+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)
 
 0.43.1    2010-06-11 21:45:15 America/Montreal
     * Change a test to use explicit number of tests instead of 'done_testing'.

Modified: trunk/libnetpacket-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/MANIFEST?rev=63654&op=diff
==============================================================================
--- trunk/libnetpacket-perl/MANIFEST (original)
+++ trunk/libnetpacket-perl/MANIFEST Tue Oct 12 19:45:50 2010
@@ -2,9 +2,10 @@
 Changes
 LICENSE
 MANIFEST
+META.json
 META.yml
 README
-dist.ini
+SIGNATURE
 lib/NetPacket.pm
 lib/NetPacket/ARP.pm
 lib/NetPacket/Ethernet.pm
@@ -16,6 +17,7 @@
 lib/NetPacket/PFLog.pm
 lib/NetPacket/TCP.pm
 lib/NetPacket/UDP.pm
+t/000-report-versions.t
 t/bug-37931.t
 t/checksum.t
 t/general.t

Modified: trunk/libnetpacket-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/META.yml?rev=63654&op=diff
==============================================================================
--- trunk/libnetpacket-perl/META.yml (original)
+++ trunk/libnetpacket-perl/META.yml Tue Oct 12 19:45:50 2010
@@ -3,17 +3,60 @@
 author:
   - 'Yanick Champoux <yanick at cpan.org>'
 build_requires:
+  Carp: 0
   Module::Build: 0.3601
+  Scalar::Util: 0
+  Test::More: 0.94
+  perl: 5.004
 configure_requires:
   Module::Build: 0.3601
 dynamic_config: 0
-generated_by: 'Dist::Zilla version 4.101570, CPAN::Meta::Converter version 2.101590'
+generated_by: 'Dist::Zilla version 4.102341, CPAN::Meta::Converter version 2.101590'
 license: artistic2
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
   version: 1.4
 name: NetPacket
+provides:
+  NetPacket:
+    file: lib/NetPacket.pm
+    version: v0.43.2
+  NetPacket::ARP:
+    file: lib/NetPacket/ARP.pm
+    version: v0.43.2
+  NetPacket::Ethernet:
+    file: lib/NetPacket/Ethernet.pm
+    version: v0.43.2
+  NetPacket::ICMP:
+    file: lib/NetPacket/ICMP.pm
+    version: v0.43.2
+  NetPacket::ICMPv6:
+    file: lib/NetPacket/ICMPv6.pm
+    version: v0.43.2
+  NetPacket::IGMP:
+    file: lib/NetPacket/IGMP.pm
+    version: v0.43.2
+  NetPacket::IP:
+    file: lib/NetPacket/IP.pm
+    version: v0.43.2
+  NetPacket::IPv6:
+    file: lib/NetPacket/IPv6.pm
+    version: v0.43.2
+  NetPacket::PFLog:
+    file: lib/NetPacket/PFLog.pm
+    version: v0.43.2
+  NetPacket::TCP:
+    file: lib/NetPacket/TCP.pm
+    version: v0.43.2
+  NetPacket::UDP:
+    file: lib/NetPacket/UDP.pm
+    version: v0.43.2
+requires:
+  Socket: 0
+  constant: 0
+  vars: 0
 resources:
   bugtracker: http://rt.cpan.org/Public/Dist/Display.html?Name=NetPacket
   homepage: http://search.cpan.org/dist/NetPacket/
-version: 0.43.1
+  repository: git://github.com/yanick/netpacket.git
+version: 0.43.2

Modified: trunk/libnetpacket-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/debian/changelog?rev=63654&op=diff
==============================================================================
--- trunk/libnetpacket-perl/debian/changelog (original)
+++ trunk/libnetpacket-perl/debian/changelog Tue Oct 12 19:45:50 2010
@@ -1,8 +1,11 @@
-libnetpacket-perl (0.43.1-2) UNRELEASED; urgency=low
+libnetpacket-perl (0.43.2-1) UNRELEASED; urgency=low
 
   * Added myself to Uploaders 
+  * New upstream release
+  * Upped standards version to 3.9.1
+  * Updated copyright
 
- -- Nicholas Bamber <nicholas at periapt.co.uk>  Tue, 12 Oct 2010 20:37:13 +0100
+ -- Nicholas Bamber <nicholas at periapt.co.uk>  Tue, 12 Oct 2010 20:40:33 +0100
 
 libnetpacket-perl (0.43.1-1) unstable; urgency=low
 

Modified: trunk/libnetpacket-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/debian/control?rev=63654&op=diff
==============================================================================
--- trunk/libnetpacket-perl/debian/control (original)
+++ trunk/libnetpacket-perl/debian/control Tue Oct 12 19:45:50 2010
@@ -8,7 +8,7 @@
 Uploaders: Benoit Mortier <benoit.mortier at opensides.be>,
  gregor herrmann <gregoa at debian.org>, Nicholas Bamber <nicholas at periapt.co.uk>,
  Ansgar Burchardt <ansgar at 43-1.org>
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
 Homepage: http://search.cpan.org/dist/NetPacket/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnetpacket-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libnetpacket-perl/

Modified: trunk/libnetpacket-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/debian/copyright?rev=63654&op=diff
==============================================================================
--- trunk/libnetpacket-perl/debian/copyright (original)
+++ trunk/libnetpacket-perl/debian/copyright Tue Oct 12 19:45:50 2010
@@ -7,7 +7,7 @@
 Copyright: 2001, Tim Potter <tpot at samba.org>
  2001, Stephanie Wehner <atrak at itsx.com>
  2010, Yanick Champoux <yanick at cpan.org>
- 1995,1996,1997,1998,1999 ANU and CSIRO on behalf of the participants in the
+ 1995-1999 ANU and CSIRO on behalf of the participants in the
    CRC for Advanced Computational Systems ('ACSys')
 License: Artistic-2.0
 
@@ -20,13 +20,14 @@
 Copyright: 2009, Benoit Mortier <benoit.mortier at opensides.be>
  2009, Cajus Pollmeier <cajus at debian.org>
  2010, gregor herrmann <gregoa at debian.org>
+ 2010, Nicholas Bamber <nicholas at periapt.co.uk>
 License: Artistic or GPL-1+
 
 License: Artistic
  This program is free software; you can redistribute it and/or modify
  it under the terms of the Artistic License, which comes with Perl.
  .
- On Debian GNU/Linux systems, the complete text of the Artistic License
+ On Debian systems, the complete text of the Artistic License
  can be found in `/usr/share/common-licenses/Artistic'
 
 License: Artistic-2.0
@@ -226,8 +227,8 @@
  the Free Software Foundation; either version 1, or (at your option)
  any later version.
  .
- On Debian GNU/Linux systems, the complete text of the GNU General
- Public License can be found in `/usr/share/common-licenses/GPL'
+ On Debian systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL-1'
 
 License: ISC
  Permission to use, copy, modify, and distribute this software for any

Modified: trunk/libnetpacket-perl/lib/NetPacket.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/lib/NetPacket.pm?rev=63654&op=diff
==============================================================================
--- trunk/libnetpacket-perl/lib/NetPacket.pm (original)
+++ trunk/libnetpacket-perl/lib/NetPacket.pm Tue Oct 12 19:45:50 2010
@@ -6,7 +6,7 @@
 
 package NetPacket;
 BEGIN {
-  $NetPacket::VERSION = '0.43.1';
+  $NetPacket::VERSION = '0.43.2';
 }
 # ABSTRACT: assemble/disassemble network packets at the protocol level
 
@@ -104,19 +104,17 @@
 
 1;
 
-# autoloaded methods go after the END token (&& pod) below
-
-__END__
+
 
 =pod
 
 =head1 NAME
 
-NetPacket - modules to assemble/disassemble network packets at the protocol level.
+NetPacket - assemble/disassemble network packets at the protocol level
 
 =head1 VERSION
 
-version 0.43.1
+version 0.43.2
 
 =head1 SYNOPSIS
 
@@ -197,10 +195,7 @@
 
 =head2 Tags
 
-=head1 COPYRIGHT
-
-This is free software; you can redistribute it and/or modify it 
-under the same terms as the Perl 5 programming language system itself.
+=head1 COPYRIGHT AND LICENSE
 
 Copyright (c) 2001 Tim Potter and Stephanie Wehner.
 
@@ -208,6 +203,13 @@
 the participants in the CRC for Advanced Computational Systems
 ('ACSys').
 
+This module is free software.  You can redistribute it and/or
+modify it under the terms of the Artistic License 2.0.
+
+This program is distributed in the hope that it will be useful,
+but without any warranty; without even the implied warranty of
+merchantability or fitness for a particular purpose.
+
 =head1 AUTHORS
 
 Tim Potter <tpot at samba.org>
@@ -216,4 +218,9 @@
 
 Yanick Champoux <yanick at cpan.org>
 
-=cut
+=cut
+
+
+__END__
+
+

Modified: trunk/libnetpacket-perl/lib/NetPacket/ARP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/lib/NetPacket/ARP.pm?rev=63654&op=diff
==============================================================================
--- trunk/libnetpacket-perl/lib/NetPacket/ARP.pm (original)
+++ trunk/libnetpacket-perl/lib/NetPacket/ARP.pm Tue Oct 12 19:45:50 2010
@@ -1,14 +1,11 @@
-#
-# NetPacket::ARP - Decode and endode ARP (Address Resolution Protocol)
-# packets. 
-
 package NetPacket::ARP;
 BEGIN {
-  $NetPacket::ARP::VERSION = '0.43.1';
-}
+  $NetPacket::ARP::VERSION = '0.43.2';
+}
+# ABSTRACT: Assemble and disassemble ARP (Address Resolution Protocol) packets.
 
 use strict;
-use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
+use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 
 
 BEGIN {
@@ -104,17 +101,17 @@
 
 1;
 
-# autoloaded methods go after the END token (&& pod) below
-
-__END__
+
+
+=pod
 
 =head1 NAME
 
-C<NetPacket::ARP> - Assemble and disassemble ARP (Address Resolution Protocol) packets.
+NetPacket::ARP - Assemble and disassemble ARP (Address Resolution Protocol) packets.
 
 =head1 VERSION
 
-version 0.43.1
+version 0.43.2
 
 =head1 SYNOPSIS
 
@@ -279,19 +276,27 @@
 
 =head1 COPYRIGHT
 
-This is free software; you can redistribute it and/or modify it 
-under the same terms as the Perl 5 programming language system itself.
-
 Copyright (c) 2001 Tim Potter.
 
 Copyright (c) 1995,1996,1997,1998,1999 ANU and CSIRO on behalf of 
 the participants in the CRC for Advanced Computational Systems
 ('ACSys').
 
+This module is free software.  You can redistribute it and/or
+modify it under the terms of the Artistic License 2.0.
+
+This program is distributed in the hope that it will be useful,
+but without any warranty; without even the implied warranty of
+merchantability or fitness for a particular purpose.
+
 =head1 AUTHOR
 
 Tim Potter E<lt>tpot at samba.orgE<gt>
 
 =cut
 
-# any real autoloaded methods go after this line
+
+__END__
+
+
+# any real autoloaded methods go after this line

Modified: trunk/libnetpacket-perl/lib/NetPacket/Ethernet.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/lib/NetPacket/Ethernet.pm?rev=63654&op=diff
==============================================================================
--- trunk/libnetpacket-perl/lib/NetPacket/Ethernet.pm (original)
+++ trunk/libnetpacket-perl/lib/NetPacket/Ethernet.pm Tue Oct 12 19:45:50 2010
@@ -1,13 +1,11 @@
-#
-# NetPacket::Ethernet - Decode and encode ethernet packets.
-
 package NetPacket::Ethernet;
 BEGIN {
-  $NetPacket::Ethernet::VERSION = '0.43.1';
-}
+  $NetPacket::Ethernet::VERSION = '0.43.2';
+}
+# ABSTRACT: Assemble and disassemble ethernet packets.
 
 use strict;
-use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
+use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 
 BEGIN {
     @ISA = qw(Exporter NetPacket);
@@ -115,15 +113,17 @@
 
 # autoloaded methods go after the END token (&& pod) below
 
-__END__
+
+
+=pod
 
 =head1 NAME
 
-C<NetPacket::Ethernet> - Assemble and disassemble ethernet packets.
+NetPacket::Ethernet - Assemble and disassemble ethernet packets.
 
 =head1 VERSION
 
-version 0.43.1
+version 0.43.2
 
 =head1 SYNOPSIS
 
@@ -264,15 +264,18 @@
 
 =head1 COPYRIGHT
 
-This is free software; you can redistribute it and/or modify it 
-under the same terms as the Perl 5 programming language system itself.
-
 Copyright (c) 2001 Tim Potter and Stephanie Wehner.
 
 Copyright (c) 1995,1996,1997,1998,1999 ANU and CSIRO on behalf of 
 the participants in the CRC for Advanced Computational Systems
 ('ACSys').
 
+This module is free software.  You can redistribute it and/or
+modify it under the terms of the Artistic License 2.0.
+
+This program is distributed in the hope that it will be useful,
+but without any warranty; without even the implied warranty of
+merchantability or fitness for a particular purpose.
 
 =head1 AUTHOR
 
@@ -280,4 +283,8 @@
 
 =cut
 
-# any real autoloaded methods go after this line
+
+__END__
+
+
+# any real autoloaded methods go after this line

Modified: trunk/libnetpacket-perl/lib/NetPacket/ICMP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/lib/NetPacket/ICMP.pm?rev=63654&op=diff
==============================================================================
--- trunk/libnetpacket-perl/lib/NetPacket/ICMP.pm (original)
+++ trunk/libnetpacket-perl/lib/NetPacket/ICMP.pm Tue Oct 12 19:45:50 2010
@@ -1,15 +1,11 @@
-#
-# NetPacket::ICMP -Decode and encode ICMP (Internet Control Message
-# Protocol) packets.
-
 package NetPacket::ICMP;
 BEGIN {
-  $NetPacket::ICMP::VERSION = '0.43.1';
-}
-
+  $NetPacket::ICMP::VERSION = '0.43.2';
+}
+# ABSTRACT: Assemble and disassemble ICMP (Internet Control Message Protocol) packets. 
 
 use strict;
-use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
+use vars qw( @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 
 
 BEGIN {
@@ -149,15 +145,17 @@
 
 # autoloaded methods go after the END token (&& pod) below
 
-__END__
+
+
+=pod
 
 =head1 NAME
 
-C<NetPacket::ICMP> - Assemble and disassemble ICMP (Internet Control Message Protocol) packets. 
+NetPacket::ICMP - Assemble and disassemble ICMP (Internet Control Message Protocol) packets. 
 
 =head1 VERSION
 
-version 0.43.1
+version 0.43.2
 
 =head1 SYNOPSIS
 
@@ -242,7 +240,6 @@
     ICMP_TSTAMP ICMP_TSTAMPREPLY ICMP_IREQ ICMP_IREQREPLY
     ICMP_MASKREQ ICMP_MASKREPLY
 
-
 =item tags
 
 The following tags group together related exportable items.
@@ -305,15 +302,18 @@
 
 =head1 COPYRIGHT
 
-This is free software; you can redistribute it and/or modify it 
-under the same terms as the Perl 5 programming language system itself.
-
 Copyright (c) 2001 Tim Potter and Stephanie Wehner.
 
 Copyright (c) 1995,1996,1997,1998,1999 ANU and CSIRO on behalf of 
 the participants in the CRC for Advanced Computational Systems
 ('ACSys').
 
+This module is free software.  You can redistribute it and/or
+modify it under the terms of the Artistic License 2.0.
+
+This program is distributed in the hope that it will be useful,
+but without any warranty; without even the implied warranty of
+merchantability or fitness for a particular purpose.
 
 =head1 AUTHOR
 
@@ -323,4 +323,8 @@
 
 =cut
 
-# any real autoloaded methods go after this line
+
+__END__
+
+
+# any real autoloaded methods go after this line

Modified: trunk/libnetpacket-perl/lib/NetPacket/ICMPv6.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/lib/NetPacket/ICMPv6.pm?rev=63654&op=diff
==============================================================================
--- trunk/libnetpacket-perl/lib/NetPacket/ICMPv6.pm (original)
+++ trunk/libnetpacket-perl/lib/NetPacket/ICMPv6.pm Tue Oct 12 19:45:50 2010
@@ -6,31 +6,15 @@
 #
 # References:
 # RFC2463 - ICMPv6 Specification
-#
-# Copyright (c) 2003-2009 Joel Knight <knight.joel at gmail.com>
-#
-# Permission to use, copy, modify, and distribute this software for any
-# purpose with or without fee is hereby granted, provided that the above
-# copyright notice and this permission notice appear in all copies.
-#
-# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-#
-#
-# $jwk: ICMPv6.pm,v 1.16 2009/03/01 20:12:46 jwk Exp $
 
 package NetPacket::ICMPv6;
 BEGIN {
-  $NetPacket::ICMPv6::VERSION = '0.43.1';
-}
+  $NetPacket::ICMPv6::VERSION = '0.43.2';
+}
+#ABSTRACT: Assemble and disassemble ICMPv6 (Internet Control Message Protocol Version 6) packets. 
 
 use strict;
-use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
+use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 use NetPacket;
 
 BEGIN {
@@ -184,16 +168,17 @@
 
 1;
 
-__END__
-
+
+
+=pod
 
 =head1 NAME
 
-C<NetPacket::ICMPv6> - Assemble and disassemble ICMPv6 (Internet Control Message Protocol Version 6) packets. 
+NetPacket::ICMPv6 - Assemble and disassemble ICMPv6 (Internet Control Message Protocol Version 6) packets. 
 
 =head1 VERSION
 
-version 0.43.1
+version 0.43.2
 
 =head1 SYNOPSIS
 
@@ -378,20 +363,20 @@
 
 Copyright (c) 2003-2009 Joel Knight <knight.joel at gmail.com>
 
-Permission to use, copy, modify, and distribute this software for any
-purpose with or without fee is hereby granted, provided that the above
-copyright notice and this permission notice appear in all copies.
-
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+This module is free software.  You can redistribute it and/or
+modify it under the terms of the Artistic License 2.0.
+
+This program is distributed in the hope that it will be useful,
+but without any warranty; without even the implied warranty of
+merchantability or fitness for a particular purpose.
 
 =head1 AUTHOR
 
 Joel Knight E<lt>knight.joel at gmail.comE<gt>
 
-=cut
+=cut
+
+
+__END__
+
+

Modified: trunk/libnetpacket-perl/lib/NetPacket/IGMP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/lib/NetPacket/IGMP.pm?rev=63654&op=diff
==============================================================================
--- trunk/libnetpacket-perl/lib/NetPacket/IGMP.pm (original)
+++ trunk/libnetpacket-perl/lib/NetPacket/IGMP.pm Tue Oct 12 19:45:50 2010
@@ -4,12 +4,13 @@
 
 package NetPacket::IGMP;
 BEGIN {
-  $NetPacket::IGMP::VERSION = '0.43.1';
-}
+  $NetPacket::IGMP::VERSION = '0.43.2';
+}
+# ABSTRACT: Assemble and disassemble IGMP (Internet Group Mangement Protocol) packets. 
 
 
 use strict;
-use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
+use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 
 BEGIN {
     @ISA = qw(Exporter NetPacket);
@@ -142,15 +143,17 @@
 
 # autoloaded methods go after the END token (&& pod) below
 
-__END__
+
+
+=pod
 
 =head1 NAME
 
-C<NetPacket::IGMP> - Assemble and disassemble IGMP (Internet Group Mangement Protocol) packets. 
+NetPacket::IGMP - Assemble and disassemble IGMP (Internet Group Mangement Protocol) packets. 
 
 =head1 VERSION
 
-version 0.43.1
+version 0.43.2
 
 =head1 SYNOPSIS
 
@@ -312,15 +315,18 @@
 
 =head1 COPYRIGHT
 
-This is free software; you can redistribute it and/or modify it 
-under the same terms as the Perl 5 programming language system itself.
-
 Copyright (c) 2001 Tim Potter.
 
 Copyright (c) 1995,1996,1997,1998,1999 ANU and CSIRO on behalf of 
 the participants in the CRC for Advanced Computational Systems
 ('ACSys').
 
+This module is free software.  You can redistribute it and/or
+modify it under the terms of the Artistic License 2.0.
+
+This program is distributed in the hope that it will be useful,
+but without any warranty; without even the implied warranty of
+merchantability or fitness for a particular purpose.
 
 =head1 AUTHOR
 
@@ -328,4 +334,8 @@
 
 =cut
 
-# any real autoloaded methods go after this line
+
+__END__
+
+
+# any real autoloaded methods go after this line

Modified: trunk/libnetpacket-perl/lib/NetPacket/IP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/lib/NetPacket/IP.pm?rev=63654&op=diff
==============================================================================
--- trunk/libnetpacket-perl/lib/NetPacket/IP.pm (original)
+++ trunk/libnetpacket-perl/lib/NetPacket/IP.pm Tue Oct 12 19:45:50 2010
@@ -5,11 +5,12 @@
 
 package NetPacket::IP;
 BEGIN {
-  $NetPacket::IP::VERSION = '0.43.1';
+  $NetPacket::IP::VERSION = '0.43.2';
 }
+# ABSTRACT: Assemble and disassemble IP (Internet Protocol) packets.
 
 use strict;
-use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
+use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 use NetPacket;
 
 BEGIN {
@@ -209,15 +210,17 @@
 
 # autoloaded methods go after the END token (&& pod) below
 
-__END__
+
+
+=pod
 
 =head1 NAME
 
-C<NetPacket::IP> - Assemble and disassemble IP (Internet Protocol) packets.
+NetPacket::IP - Assemble and disassemble IP (Internet Protocol) packets.
 
 =head1 VERSION
 
-version 0.43.1
+version 0.43.2
 
 =head1 SYNOPSIS
 
@@ -405,15 +408,19 @@
 
 =head1 COPYRIGHT
 
-This is free software; you can redistribute it and/or modify it 
-under the same terms as the Perl 5 programming language system itself.
-
 Copyright (c) 2001 Tim Potter and Stephanie Wehner.
 
 Copyright (c) 1995,1996,1997,1998,1999 ANU and CSIRO on behalf of 
 the participants in the CRC for Advanced Computational Systems
 ('ACSys').
 
+This module is free software.  You can redistribute it and/or
+modify it under the terms of the Artistic License 2.0.
+
+This program is distributed in the hope that it will be useful,
+but without any warranty; without even the implied warranty of
+merchantability or fitness for a particular purpose.
+
 =head1 AUTHOR
 
 Tim Potter E<lt>tpot at samba.orgE<gt>
@@ -422,4 +429,8 @@
 
 =cut
 
-# any real autoloaded methods go after this line
+
+__END__
+
+
+# any real autoloaded methods go after this line

Modified: trunk/libnetpacket-perl/lib/NetPacket/IPv6.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/lib/NetPacket/IPv6.pm?rev=63654&op=diff
==============================================================================
--- trunk/libnetpacket-perl/lib/NetPacket/IPv6.pm (original)
+++ trunk/libnetpacket-perl/lib/NetPacket/IPv6.pm Tue Oct 12 19:45:50 2010
@@ -9,28 +9,15 @@
 #
 # Copyright (c) 2003-2009 Joel Knight <knight.joel at gmail.com>
 #
-# Permission to use, copy, modify, and distribute this software for any
-# purpose with or without fee is hereby granted, provided that the above
-# copyright notice and this permission notice appear in all copies.
-#
-# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-#
-#
-# $jwk: IPv6.pm,v 1.15 2009/03/01 19:12:03 jwk Exp $
 
 package NetPacket::IPv6;
 BEGIN {
-  $NetPacket::IPv6::VERSION = '0.43.1';
-}
+  $NetPacket::IPv6::VERSION = '0.43.2';
+}
+# ABSTRACT: Assembling and disassembling IPv6 (Internet Protocol Version 6) packets.
 
 use strict;
-use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
+use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 use NetPacket;
 
 BEGIN {
@@ -165,16 +152,17 @@
 
 1;
 
-__END__
-
+
+
+=pod
 
 =head1 NAME
 
-C<NetPacket::IPv6> - Assembling and disassembling IPv6 (Internet Protocol Version 6) packets.
+NetPacket::IPv6 - Assembling and disassembling IPv6 (Internet Protocol Version 6) packets.
 
 =head1 VERSION
 
-version 0.43.1
+version 0.43.2
 
 =head1 SYNOPSIS
 
@@ -357,20 +345,25 @@
 
 Copyright (c) 2003, 2004 Joel Knight <knight.joel at gmail.com>
 
+This module is free software.  You can redistribute it and/or
+modify it under the terms of the Artistic License 2.0.
+
+This program is distributed in the hope that it will be useful,
+but without any warranty; without even the implied warranty of
+merchantability or fitness for a particular purpose.
+
 Permission to use, copy, modify, and distribute this software for any
 purpose with or without fee is hereby granted, provided that the above
 copyright notice and this permission notice appear in all copies.
 
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-
 =head1 AUTHOR
 
 Joel Knight E<lt>knight.joel at gmail.comE<gt>
 
-=cut
+=cut
+
+
+__END__
+
+
+

Modified: trunk/libnetpacket-perl/lib/NetPacket/PFLog.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/lib/NetPacket/PFLog.pm?rev=63654&op=diff
==============================================================================
--- trunk/libnetpacket-perl/lib/NetPacket/PFLog.pm (original)
+++ trunk/libnetpacket-perl/lib/NetPacket/PFLog.pm Tue Oct 12 19:45:50 2010
@@ -3,31 +3,15 @@
 # NetPacket::PFLog
 #
 # Decodes OpenBSD's pflog(4) packets
-#
-# Copyright (c) 2003-2009 Joel Knight <knight.joel at gmail.com>
-#
-# Permission to use, copy, modify, and distribute this software for any
-# purpose with or without fee is hereby granted, provided that the above
-# copyright notice and this permission notice appear in all copies.
-#
-# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-#
-#
-# $jwk: PFLog.pm,v 1.33 2009/03/02 00:24:54 jwk Exp $
 
 package NetPacket::PFLog;
 BEGIN {
-  $NetPacket::PFLog::VERSION = '0.43.1';
+  $NetPacket::PFLog::VERSION = '0.43.2';
 }
+# ABSTRACT: Assembling and disassembling OpenBSD's Packet Filter log header.
 
 use strict;
-use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
+use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 use NetPacket;
 use Socket;
 
@@ -171,16 +155,17 @@
 
 1;
 
-__END__
-
+
+
+=pod
 
 =head1 NAME
 
-C<NetPacket::PFLog> - Assembling and disassembling OpenBSD's Packet Filter log header.
+NetPacket::PFLog - Assembling and disassembling OpenBSD's Packet Filter log header.
 
 =head1 VERSION
 
-version 0.43.1
+version 0.43.2
 
 =head1 SYNOPSIS
 
@@ -365,28 +350,25 @@
 
   Net::PcapUtils::loop(\&process_pkt, FILTER => 'ip or ip6');
 
-=head1 TODO
-
-Nothing at this time.
-
 =head1 COPYRIGHT
 
 Copyright (c) 2003-2009 Joel Knight <knight.joel at gmail.com>
 
-Permission to use, copy, modify, and distribute this software for any
-purpose with or without fee is hereby granted, provided that the above
-copyright notice and this permission notice appear in all copies.
-
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+This module is free software.  You can redistribute it and/or
+modify it under the terms of the Artistic License 2.0.
+
+This program is distributed in the hope that it will be useful,
+but without any warranty; without even the implied warranty of
+merchantability or fitness for a particular purpose.
 
 =head1 AUTHOR
 
 Joel Knight E<lt>knight.joel at gmail.comE<gt>
 
-=cut
+=cut
+
+
+__END__
+
+
+

Modified: trunk/libnetpacket-perl/lib/NetPacket/TCP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/lib/NetPacket/TCP.pm?rev=63654&op=diff
==============================================================================
--- trunk/libnetpacket-perl/lib/NetPacket/TCP.pm (original)
+++ trunk/libnetpacket-perl/lib/NetPacket/TCP.pm Tue Oct 12 19:45:50 2010
@@ -6,11 +6,12 @@
 
 package NetPacket::TCP;
 BEGIN {
-  $NetPacket::TCP::VERSION = '0.43.1';
+  $NetPacket::TCP::VERSION = '0.43.2';
 }
+# ABSTRACT: Assemble and disassemble TCP (Transmission Control Protocol) packets.
 
 use strict;
-use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
+use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 use NetPacket;
 
 my $myclass;
@@ -185,15 +186,17 @@
 
 # autoloaded methods go after the END token (&& pod) below
 
-__END__
+
+
+=pod
 
 =head1 NAME
 
-C<NetPacket::TCP> - Assemble and disassemble TCP (Transmission Control Protocol) packets.
+NetPacket::TCP - Assemble and disassemble TCP (Transmission Control Protocol) packets.
 
 =head1 VERSION
 
-version 0.43.1
+version 0.43.2
 
 =head1 SYNOPSIS
 
@@ -393,7 +396,6 @@
       $divobj->putPacket($packet,$fwtag);
    }
 
-
 =head1 TODO
 
 =over
@@ -407,9 +409,6 @@
 =back
 
 =head1 COPYRIGHT
-
-This is free software; you can redistribute it and/or modify it 
-under the same terms as the Perl 5 programming language system itself.
 
 Copyright (c) 2001 Tim Potter and Stephanie Wehner.
 
@@ -417,6 +416,13 @@
 the participants in the CRC for Advanced Computational Systems
 ('ACSys').
 
+This module is free software.  You can redistribute it and/or
+modify it under the terms of the Artistic License 2.0.
+
+This program is distributed in the hope that it will be useful,
+but without any warranty; without even the implied warranty of
+merchantability or fitness for a particular purpose.
+
 =head1 AUTHOR
 
 Tim Potter E<lt>tpot at samba.orgE<gt>
@@ -425,4 +431,7 @@
 
 =cut
 
-# any real autoloaded methods go after this line
+
+__END__
+
+

Modified: trunk/libnetpacket-perl/lib/NetPacket/UDP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnetpacket-perl/lib/NetPacket/UDP.pm?rev=63654&op=diff
==============================================================================
--- trunk/libnetpacket-perl/lib/NetPacket/UDP.pm (original)
+++ trunk/libnetpacket-perl/lib/NetPacket/UDP.pm Tue Oct 12 19:45:50 2010
@@ -4,11 +4,12 @@
 
 package NetPacket::UDP;
 BEGIN {
-  $NetPacket::UDP::VERSION = '0.43.1';
-}
+  $NetPacket::UDP::VERSION = '0.43.2';
+}
+# ABSTRACT: Assemble and disassemble UDP (User Datagram Protocol) packets.
 
 use strict;
-use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
+use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 use NetPacket;
 use NetPacket::IP;
 
@@ -139,15 +140,17 @@
 
 # autoloaded methods go after the END token (&& pod) below
 
-__END__
+
+
+=pod
 
 =head1 NAME
 
-C<NetPacket::UDP> - Assemble and disassemble UDP (User Datagram Protocol) packets.
+NetPacket::UDP - Assemble and disassemble UDP (User Datagram Protocol) packets.
 
 =head1 VERSION
 
-version 0.43.1
+version 0.43.2
 
 =head1 SYNOPSIS
 
@@ -322,15 +325,19 @@
 
 =head1 COPYRIGHT
 
-This is free software; you can redistribute it and/or modify it 
-under the same terms as the Perl 5 programming language system itself.
-
 Copyright (c) 2001 Tim Potter.
 
 Copyright (c) 1995,1996,1997,1998,1999 ANU and CSIRO on behalf of 
 the participants in the CRC for Advanced Computational Systems
 ('ACSys').
 
+This module is free software.  You can redistribute it and/or
+modify it under the terms of the Artistic License 2.0.
+
+This program is distributed in the hope that it will be useful,
+but without any warranty; without even the implied warranty of
+merchantability or fitness for a particular purpose.
+
 =head1 AUTHOR
 
 Tim Potter E<lt>tpot at samba.orgE<gt>
@@ -339,4 +346,8 @@
 
 Yanick Champoux <yanick at cpan.org>
 
-=cut
+=cut
+
+
+__END__
+




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