r75106 - in /trunk/libnet-ntp-perl: Changes MANIFEST META.yml Makefile.PL NTP.pm debian/changelog debian/control eg/ lib/ t/1.t

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Sat Jun 4 09:36:54 UTC 2011


Author: periapt-guest
Date: Sat Jun  4 09:36:45 2011
New Revision: 75106

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=75106
Log:
* New upstream release
* Added myself to Uploaders

Added:
    trunk/libnet-ntp-perl/lib/
      - copied from r75105, branches/upstream/libnet-ntp-perl/current/lib/
Removed:
    trunk/libnet-ntp-perl/NTP.pm
    trunk/libnet-ntp-perl/eg/
Modified:
    trunk/libnet-ntp-perl/Changes
    trunk/libnet-ntp-perl/MANIFEST
    trunk/libnet-ntp-perl/META.yml
    trunk/libnet-ntp-perl/Makefile.PL
    trunk/libnet-ntp-perl/debian/changelog
    trunk/libnet-ntp-perl/debian/control
    trunk/libnet-ntp-perl/t/1.t

Modified: trunk/libnet-ntp-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-ntp-perl/Changes?rev=75106&op=diff
==============================================================================
--- trunk/libnet-ntp-perl/Changes (original)
+++ trunk/libnet-ntp-perl/Changes Sat Jun  4 09:36:45 2011
@@ -1,11 +1,14 @@
 Revision history for Perl extension Net::NTP.
 
-0.01  Sat Feb 14 13:00:52 2004
-	- original version; created by h2xs 1.22 with options
-		-XAn Net::NTP
+1.3  June 4, 2011
+   - Use IO::Socket::INET6 if available (Martin v. Löwis, RT#38234)
+   - Don't reuse the "client timestamp" on all packets (Gordon M Lack, RT#38207)
+   - Remove unused variables
+   - Don't use `Carp`
+   - Don't require Perl 5.8 (Cosimo Streppone, RT#13206)
+   - Run perltidy and move files around a bit in the distribution
 
-##IMPORTED TO CVS
-$Log: Changes,v $
-Revision 1.1.1.1  2004/02/23 17:13:10  jim
-Imported Net::NTP into CVS
 
+1.2  February 25, 2004
+   - Last release by James G Willmore
+

Modified: trunk/libnet-ntp-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-ntp-perl/MANIFEST?rev=75106&op=diff
==============================================================================
--- trunk/libnet-ntp-perl/MANIFEST (original)
+++ trunk/libnet-ntp-perl/MANIFEST Sat Jun  4 09:36:45 2011
@@ -1,7 +1,7 @@
 Changes
 Makefile.PL
 MANIFEST
-NTP.pm
+lib/Net/NTP.pm
 README
 t/1.t
 META.yml                                 Module meta-data (added by MakeMaker)

Modified: trunk/libnet-ntp-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-ntp-perl/META.yml?rev=75106&op=diff
==============================================================================
--- trunk/libnet-ntp-perl/META.yml (original)
+++ trunk/libnet-ntp-perl/META.yml Sat Jun  4 09:36:45 2011
@@ -1,10 +1,21 @@
-# http://module-build.sourceforge.net/META-spec.html
-#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
-name:         Net-NTP
-version:      1.2
-version_from: NTP.pm
-installdirs:  site
-requires:
-
-distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.21
+--- #YAML:1.0
+name:               Net-NTP
+version:            1.3
+abstract:           Perl extension for decoding NTP server responses
+author:
+    - Ask Bjørn Hansen <ask at develooper.com>
+license:            unknown
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
+requires:  {}
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.56
+meta-spec:
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4

Modified: trunk/libnet-ntp-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-ntp-perl/Makefile.PL?rev=75106&op=diff
==============================================================================
--- trunk/libnet-ntp-perl/Makefile.PL (original)
+++ trunk/libnet-ntp-perl/Makefile.PL Sat Jun  4 09:36:45 2011
@@ -1,12 +1,26 @@
 use 5.008;
 use ExtUtils::MakeMaker;
-# See lib/ExtUtils/MakeMaker.pm for details of how to influence
-# the contents of the Makefile that is written.
+
 WriteMakefile(
-    'NAME'		=> 'Net::NTP',
-    'VERSION_FROM'	=> 'NTP.pm', # finds $VERSION
-    'PREREQ_PM'		=> {}, # e.g., Module::Name => 1.1
-    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
-      (ABSTRACT_FROM => 'NTP.pm', # retrieve abstract from module
-       AUTHOR     => 'James G Willmore <jwillmore at adelphia.net>') : ()),
+    'NAME'         => 'Net::NTP',
+    'VERSION_FROM' => 'lib/Net/NTP.pm',     # finds $VERSION
+    'PREREQ_PM'    => {},           # e.g., Module::Name => 1.1
+    (   $] >= 5.005
+        ?
+          ( ABSTRACT_FROM => 'lib/Net/NTP.pm', # retrieve abstract from module
+            AUTHOR        => 'Ask Bjørn Hansen <ask at develooper.com>'
+          )
+        : ()
+    ),
 );
+
+sub MY::postamble {
+  qq[
+testcover :
+\t cover -delete && \\
+   HARNESS_PERL_SWITCHES=-MDevel::Cover \$(MAKE) test && \\
+   cover
+]
+
+}
+

Modified: trunk/libnet-ntp-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-ntp-perl/debian/changelog?rev=75106&op=diff
==============================================================================
--- trunk/libnet-ntp-perl/debian/changelog (original)
+++ trunk/libnet-ntp-perl/debian/changelog Sat Jun  4 09:36:45 2011
@@ -1,3 +1,10 @@
+libnet-ntp-perl (1.3-1) UNRELEASED; urgency=low
+
+  * New upstream release
+  * Added myself to Uploaders
+
+ -- Nicholas Bamber <nicholas at periapt.co.uk>  Sat, 04 Jun 2011 10:39:25 +0100
+
 libnet-ntp-perl (1.2-4) unstable; urgency=low
 
   * debian/rules: don't run tests as they need an ntpd (closes: #546233);

Modified: trunk/libnet-ntp-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-ntp-perl/debian/control?rev=75106&op=diff
==============================================================================
--- trunk/libnet-ntp-perl/debian/control (original)
+++ trunk/libnet-ntp-perl/debian/control Sat Jun  4 09:36:45 2011
@@ -3,7 +3,8 @@
 Priority: optional
 Build-Depends: debhelper (>= 7.0.50~), perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Damyan Ivanov <dmn at debian.org>, gregor herrmann <gregoa at debian.org>
+Uploaders: Damyan Ivanov <dmn at debian.org>, gregor herrmann <gregoa at debian.org>,
+ Nicholas Bamber <nicholas at periapt.co.uk>
 Standards-Version: 3.8.3
 Homepage: http://search.cpan.org/dist/Net-NTP/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnet-ntp-perl/

Modified: trunk/libnet-ntp-perl/t/1.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-ntp-perl/t/1.t?rev=75106&op=diff
==============================================================================
--- trunk/libnet-ntp-perl/t/1.t (original)
+++ trunk/libnet-ntp-perl/t/1.t Sat Jun  4 09:36:45 2011
@@ -1,15 +1,5 @@
-# Before `make install' is performed this script should be runnable with
-# `make test'. After `make install' it should work as `perl 1.t'
-
-#########################
-
-# change 'tests => 1' to 'tests => last_test_to_print';
 
 use Test::More tests => 1;
 BEGIN { use_ok('Net::NTP') };
 
 #########################
-
-# Insert your test code below, the Test::More module is use()ed here so read
-# its man page ( perldoc Test::More ) for help writing this test script.
-my $ntp = get_ntp_response();




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