[SCM] Debian packaging of libnet-dhcp-perl branch, master, updated. upstream/0.68+dfsg-30-g3ab77e1

gregor herrmann gregoa at debian.org
Fri Jan 20 19:48:54 UTC 2012


The following commit has been merged in the master branch:
commit cf526b9eb8880f938ee303bb4cb1ad83c807b3d4
Author: gregor herrmann <gregoa at debian.org>
Date:   Fri Jan 20 20:32:20 2012 +0100

    Imported Upstream version 0.681+dfsg

diff --git a/Changes b/Changes
index 5bb56f6..873653a 100755
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Perl extension Net::DHCP.
 
+*** 0.681  Jan 16 2012
+
+Forgot to update MANIFEST file... woops. Also some po updates.
+
 *** 0.68   Jan 14 2012
 
 Added Net/DHCP.pm stub.
diff --git a/MANIFEST b/MANIFEST
old mode 100755
new mode 100644
index 03ff0da..323c085
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,27 +1,27 @@
 Changes
-Makefile.PL
-MANIFEST
-README
 examples/dhcp_sniffer.pl
+examples/dhcpd.pl
+examples/dhcpd_test.pl
 examples/dumpianatoxml.pl
-lib/Net/DHCP/Packet.pm
-lib/Net/DHCP/Constants.pm
-examples/dhcp_sniffer.pl
-examples/send_packet.pl
 examples/lease_query.pl
 examples/list_dho.pl
-examples/dhcpd.pl
-examples/dhcpd_test.pl
-META.yml                                 Module meta-data (added by MakeMaker)
+examples/send_packet.pl
+lib/Net/DHCP.pm
+lib/Net/DHCP/Constants.pm
+lib/Net/DHCP/Packet.pm
+Makefile.PL
+MANIFEST
+META.yml			Module meta-data (added by MakeMaker)
+README
+t/.perlcriticrc
 t/00.load.t
-t/52-net-dhcp-packet-new-empty.t
-t/99-perlcritic.t
-t/51-net-dhcp-packet-new-basic.t
 t/01.pod.t
-t/22-net-dhcp-packet-options.t
-t/53-net-dhcp-packet-new-broken.t
-t/21-net-dhcp-packet-packinet.t
 t/02.pod-coverage.t
-t/30-net-dhcp-constants-coverage.t
-t/.perlcriticrc
 t/03.manifest.t
+t/21-net-dhcp-packet-packinet.t
+t/22-net-dhcp-packet-options.t
+t/30-net-dhcp-constants-coverage.t
+t/51-net-dhcp-packet-new-basic.t
+t/52-net-dhcp-packet-new-empty.t
+t/53-net-dhcp-packet-new-broken.t
+t/99-perlcritic.t
diff --git a/META.yml b/META.yml
index ed14e3c..07b749c 100644
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Net-DHCP
-version:            0.68
+version:            0.681
 abstract:           Object methods to create a DHCP packet.
 author:
     - Dean Hamstead <djzort at cpan.org>
diff --git a/Makefile.PL b/Makefile.PL
index e4ceb2e..9f5cb0f 100755
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -6,7 +6,7 @@ use ExtUtils::MakeMaker;
 # the contents of the Makefile that is written.
 WriteMakefile(
     NAME         => 'Net::DHCP',
-    VERSION_FROM => 'lib/Net/DHCP/Packet.pm',    # finds $VERSION
+    VERSION_FROM => 'lib/Net/DHCP.pm',    # finds $VERSION
     LICENSE => 'perl',
     PREREQ_PM    => {
         'Exporter'     => 0,
diff --git a/README b/README
index c889e9f..cc7f331 100755
--- a/README
+++ b/README
@@ -14,6 +14,9 @@ Currently these files are:
 
 All other files are licensed as described at the bottom of this file.
 
+You can fork and submit enhancements etc via https://github.com/djzort/Net-DHCP
+Sorry, I know github sucks but its popular.
+
 1. DESCRIPTION
 --------------
 
@@ -41,7 +44,11 @@ Net::DHCP has been tested with the following:
     Windows XP with ActivePerl
     
     RedHat Enterprise Linux 5.5 x86_64
+    CentOS Linux 5.5 x86_64
     Debian Squeeze x86_64 (Perl 5.10.1)
+    Debian Wheezy x86_64 (Perl 5.14.2)
+
+    Plus CPAN testers
 
 3. INSTALLATION
 ---------------
diff --git a/lib/Net/DHCP.pm b/lib/Net/DHCP.pm
new file mode 100644
index 0000000..5d92ddc
--- /dev/null
+++ b/lib/Net/DHCP.pm
@@ -0,0 +1,54 @@
+#!/bin/false
+package Net::DHCP;
+use strict;
+use warnings;
+
+our $VERSION = 0.681;
+
+1;
+
+__END__
+
+=pod
+
+=head1 NAME
+
+Net::DHCP - Object methods to create a DHCP packet.
+
+=head1 SYNOPSIS
+
+   use Net::DHCP::Packet;
+
+   my $p = new Net::DHCP::Packet->new(
+        'Chaddr' => '000BCDEF',
+        'Xid' => 0x9F0FD,
+        'Ciaddr' => '0.0.0.0',
+        'Siaddr' => '0.0.0.0',
+        'Hops' => 0);
+
+=head1 DESCRIPTION
+
+Represents a DHCP packet as specified in RFC 1533, RFC 2132.
+
+=head1 AUTHOR
+
+Dean Hamstead E<lt>djzort at cpan.orgE<gt>
+
+=head1 SOURCE REPO
+
+See L<https://github.com/djzort/Net-DHCP>
+
+=head1 BUGS
+
+See L<https://rt.cpan.org/Dist/Display.html?Queue=Net-DHCP>
+
+=head1 COPYRIGHT
+
+This is free software. It can be distributed and/or modified under the same terms as
+Perl itself.
+
+=head1 SEE ALSO
+
+L<Net::DHCP::Options>, L<Net::DHCP::Constants>.
+
+=cut

-- 
Debian packaging of libnet-dhcp-perl



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