r60939 - in /trunk/libauthen-dechpwd-perl: ./ debian/ debian/source/ lib/Authen/ t/

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Sat Jul 31 06:05:45 UTC 2010


Author: ansgar-guest
Date: Sat Jul 31 06:05:26 2010
New Revision: 60939

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=60939
Log:
* New upstream release.
* Use source format 3.0 (quilt).
* debian/copyright: Formatting changes for current DEP-5 proposal,
  refer to /usr/share/common-licenses/GPL-2, update years of copyright.
* No longer install README.
* Use Build.PL.
* Remove build-dep on perl (>= 5.10) | libmodule-build-perl. Stable
  has perl 5.10.
* Add build-dep on libtest-pod-coverage-perl, libtest-pod-perl.
* Mention module name in description.
* Bump Standards-Version to 3.9.1 (no changes).
* Add myself to Uploaders.

Added:
    trunk/libauthen-dechpwd-perl/debian/source/
    trunk/libauthen-dechpwd-perl/debian/source/format
    trunk/libauthen-dechpwd-perl/t/pod_cvg_pp.t
      - copied unchanged from r60938, branches/upstream/libauthen-dechpwd-perl/current/t/pod_cvg_pp.t
Removed:
    trunk/libauthen-dechpwd-perl/debian/libauthen-dechpwd-perl.docs
Modified:
    trunk/libauthen-dechpwd-perl/.cvsignore
    trunk/libauthen-dechpwd-perl/Build.PL
    trunk/libauthen-dechpwd-perl/Changes
    trunk/libauthen-dechpwd-perl/MANIFEST
    trunk/libauthen-dechpwd-perl/META.yml
    trunk/libauthen-dechpwd-perl/Makefile.PL
    trunk/libauthen-dechpwd-perl/README
    trunk/libauthen-dechpwd-perl/SIGNATURE
    trunk/libauthen-dechpwd-perl/debian/changelog
    trunk/libauthen-dechpwd-perl/debian/control
    trunk/libauthen-dechpwd-perl/debian/copyright
    trunk/libauthen-dechpwd-perl/debian/rules
    trunk/libauthen-dechpwd-perl/lib/Authen/DecHpwd.pm
    trunk/libauthen-dechpwd-perl/lib/Authen/DecHpwd.xs
    trunk/libauthen-dechpwd-perl/t/error.t
    trunk/libauthen-dechpwd-perl/t/pod_cvg.t
    trunk/libauthen-dechpwd-perl/t/pod_syn.t
    trunk/libauthen-dechpwd-perl/t/purdy.t
    trunk/libauthen-dechpwd-perl/t/purdy_s.t
    trunk/libauthen-dechpwd-perl/t/purdy_v.t
    trunk/libauthen-dechpwd-perl/t/vms_pass.t
    trunk/libauthen-dechpwd-perl/t/vms_user.t

Modified: trunk/libauthen-dechpwd-perl/.cvsignore
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/.cvsignore?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/.cvsignore (original)
+++ trunk/libauthen-dechpwd-perl/.cvsignore Sat Jul 31 06:05:26 2010
@@ -1,4 +1,4 @@
 Build Makefile
 _build blib
-META.yml Makefile.PL SIGNATURE
+META.yml MYMETA.yml Makefile.PL SIGNATURE
 Authen-DecHpwd-*

Modified: trunk/libauthen-dechpwd-perl/Build.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/Build.PL?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/Build.PL (original)
+++ trunk/libauthen-dechpwd-perl/Build.PL Sat Jul 31 06:05:26 2010
@@ -1,3 +1,4 @@
+{ use 5.006; }
 use warnings;
 use strict;
 
@@ -45,6 +46,15 @@
 		"Mike McCauley <mikem\@open.com.au>",
 		"Andrew Main (Zefram) <zefram\@fysh.org>",
 	],
+	configure_requires => {
+		"Module::Build" => 0,
+		"perl" => "5.006",
+		"strict" => 0,
+		"warnings" => 0,
+	},
+	configure_recommends => {
+		"ExtUtils::CBuilder" => "0.15",
+	},
 	build_requires => {
 		"Module::Build" => 0,
 		"Scalar::String" => 0,
@@ -53,15 +63,15 @@
 		"strict" => 0,
 		"warnings" => 0,
 	},
-	build_recomments => {
+	build_recommends => {
 		"ExtUtils::CBuilder" => "0.15",
 	},
 	requires => {
 		"Data::Integer" => "0.003",
 		"Exporter" => 0,
 		"Scalar::String" => 0,
-		"base" => 0,
 		"constant" => 0,
+		"parent" => 0,
 		"perl" => "5.006",
 		"strict" => 0,
 		"warnings" => 0,
@@ -69,10 +79,11 @@
 	recommends => {
 		"XSLoader" => 0,
 	},
+	needs_compiler => 0,
 	dynamic_config => 1,
 	meta_add => { distribution_type => "module" },
 	create_makefile_pl => "passthrough",
 	sign => 1,
 )->create_build_script;
 
-exit 0;
+1;

Modified: trunk/libauthen-dechpwd-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/Changes?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/Changes (original)
+++ trunk/libauthen-dechpwd-perl/Changes Sat Jul 31 06:05:26 2010
@@ -1,3 +1,29 @@
+version 2.005; 2010-07-30
+
+  * in XS, use the correct "PREINIT:" instead of "INIT:" to introduce
+    variable declarations
+
+  * in XS, use PERL_NO_GET_CONTEXT for efficiency
+
+  * use simpler "parent" pragma in place of "base"
+
+  * check for required Perl version at runtime
+
+  * use full stricture in test suite
+
+  * also test POD coverage of pure Perl implementation
+
+  * correct spelling of "build_recommends" in Build.PL
+
+  * in Build.PL, explicitly set needs_compiler to avoid bogus
+    auto-dependency on ExtUtils::CBuilder
+
+  * in Build.PL, explicitly declare configure-time requirements
+
+  * remove bogus "exit 0" from Build.PL
+
+  * add MYMETA.yml to .cvsignore
+
 version 2.004; 2009-03-15
 
   * add a (hideously slow) pure Perl backup implementation for systems

Modified: trunk/libauthen-dechpwd-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/MANIFEST?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/MANIFEST (original)
+++ trunk/libauthen-dechpwd-perl/MANIFEST Sat Jul 31 06:05:26 2010
@@ -11,6 +11,7 @@
 t/error.t
 t/error_pp.t
 t/pod_cvg.t
+t/pod_cvg_pp.t
 t/pod_syn.t
 t/purdy.t
 t/purdy_pp.t

Modified: trunk/libauthen-dechpwd-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/META.yml?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/META.yml (original)
+++ trunk/libauthen-dechpwd-perl/META.yml Sat Jul 31 06:05:26 2010
@@ -1,28 +1,14 @@
 ---
-name: Authen-DecHpwd
-version: 2.004
+abstract: 'DEC VMS password hashing'
 author:
-  - Shawn Clifford
-  - Davide Casale
-  - Mario Ambrogetti
-  - Terence Lee
-  - Jean-loup Gailly
-  - Solar Designer
+  - 'Shawn Clifford'
+  - 'Davide Casale'
+  - 'Mario Ambrogetti'
+  - 'Terence Lee'
+  - 'Jean-loup Gailly'
+  - 'Solar Designer'
   - 'Mike McCauley <mikem at open.com.au>'
   - 'Andrew Main (Zefram) <zefram at fysh.org>'
-abstract: DEC VMS password hashing
-license: gpl
-resources:
-  license: ~
-requires:
-  Data::Integer: 0.003
-  Exporter: 0
-  Scalar::String: 0
-  base: 0
-  constant: 0
-  perl: 5.006
-  strict: 0
-  warnings: 0
 build_requires:
   Module::Build: 0
   Scalar::String: 0
@@ -30,15 +16,34 @@
   perl: 5.006
   strict: 0
   warnings: 0
-recommends:
-  XSLoader: 0
+configure_requires:
+  Module::Build: 0
+  perl: 5.006
+  strict: 0
+  warnings: 0
+distribution_type: module
 dynamic_config: 1
+generated_by: 'Module::Build version 0.3607'
+license: gpl
+meta-spec:
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4
+name: Authen-DecHpwd
 provides:
   Authen::DecHpwd:
     file: lib/Authen/DecHpwd.pm
-    version: 2.004
-generated_by: Module::Build version 0.31012
-meta-spec:
-  url: http://module-build.sourceforge.net/META-spec-v1.2.html
-  version: 1.2
-distribution_type: module
+    version: 2.005
+recommends:
+  XSLoader: 0
+requires:
+  Data::Integer: 0.003
+  Exporter: 0
+  Scalar::String: 0
+  constant: 0
+  parent: 0
+  perl: 5.006
+  strict: 0
+  warnings: 0
+resources:
+  license: http://www.gnu.org/licenses/old-licenses/gpl-1.0.txt
+version: 2.005

Modified: trunk/libauthen-dechpwd-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/Makefile.PL?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/Makefile.PL (original)
+++ trunk/libauthen-dechpwd-perl/Makefile.PL Sat Jul 31 06:05:26 2010
@@ -1,32 +1,35 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.31012
+# Note: this file was auto-generated by Module::Build::Compat version 0.3607
 require 5.006;
-    
+
     unless (eval "use Module::Build::Compat 0.02; 1" ) {
       print "This module requires Module::Build to install itself.\n";
-      
+
       require ExtUtils::MakeMaker;
       my $yn = ExtUtils::MakeMaker::prompt
 	('  Install Module::Build now from CPAN?', 'y');
-      
+
       unless ($yn =~ /^y/i) {
 	die " *** Cannot install without Module::Build.  Exiting ...\n";
       }
-      
+
       require Cwd;
       require File::Spec;
       require CPAN;
-      
+
       # Save this 'cause CPAN will chdir all over the place.
       my $cwd = Cwd::cwd();
-      
+
       CPAN::Shell->install('Module::Build::Compat');
       CPAN::Shell->expand("Module", "Module::Build::Compat")->uptodate
 	or die "Couldn't install Module::Build, giving up.\n";
-      
+
       chdir $cwd or die "Cannot chdir() back to $cwd: $!";
     }
     eval "use Module::Build::Compat 0.02; 1" or die $@;
     use lib '_build/lib';
     Module::Build::Compat->run_build_pl(args => \@ARGV);
+    my $build_script = 'Build';
+    $build_script .= '.com' if $^O eq 'VMS';
+    exit(0) unless(-e $build_script); # cpantesters convention
     require MyModuleBuilder;
     Module::Build::Compat->write_makefile(build_class => 'MyModuleBuilder');

Modified: trunk/libauthen-dechpwd-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/README?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/README (original)
+++ trunk/libauthen-dechpwd-perl/README Sat Jul 31 06:05:26 2010
@@ -38,7 +38,8 @@
 Based in part on code from John the Ripper, Copyright (C) 1996-2002
 Solar Designer
 
-Copyright (C) 2006, 2007, 2009 Andrew Main (Zefram) <zefram at fysh.org>
+Copyright (C) 2006, 2007, 2009, 2010
+Andrew Main (Zefram) <zefram at fysh.org>
 
 LICENSE
 

Modified: trunk/libauthen-dechpwd-perl/SIGNATURE
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/SIGNATURE?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/SIGNATURE (original)
+++ trunk/libauthen-dechpwd-perl/SIGNATURE Sat Jul 31 06:05:26 2010
@@ -1,5 +1,5 @@
 This file contains message digests of all files listed in MANIFEST,
-signed via the Module::Signature module, version 0.55.
+signed via the Module::Signature module, version 0.64.
 
 To verify the content in this distribution, first make sure you have
 Module::Signature installed, then type:
@@ -14,33 +14,34 @@
 -----BEGIN PGP SIGNED MESSAGE-----
 Hash: SHA1
 
-SHA1 d15ab9d9315bbf017be7c9da799cfee7570827cf .cvsignore
-SHA1 ffa4ccd2ef25ff91d0208efd3fff0abb5c64f8d6 Build.PL
-SHA1 ea7920822e2010195d7b24f77ce1adc9bfaaa902 Changes
-SHA1 f2725a8ee08986a3130007192cc6b73820f0d172 MANIFEST
-SHA1 a80815594a25bceab2d9f7f0e4fa9404ebfcfd85 META.yml
-SHA1 684ab827ae5405876abe203f5a032ffa6b575cf7 Makefile.PL
-SHA1 250da5fa392127626d22d2691a46755762772582 README
+SHA1 873f19a831c02dd739ff2992f8f2b270381d1fcd .cvsignore
+SHA1 1919de7a682ced6d66cd95df46148f077693a7b3 Build.PL
+SHA1 160cc300a625c71c09c87af5d7b92798355f53ef Changes
+SHA1 26e706b2c3adbcff83200d7db55665f68692d81a MANIFEST
+SHA1 b4a724dc860d56ea249a5b21d89fea6c00b15e07 META.yml
+SHA1 0f1b3b6269550b5135e10b3cae1b6b41d274b276 Makefile.PL
+SHA1 88888034f076b43f8c45f4e11b6753d4dd886b4c README
 SHA1 e6329de2cc61d37633dbeae6a76de2a6c0db4d1c lib/Authen/.cvsignore
-SHA1 6f28e517108d11c6914f0b594a941f0845c18cb3 lib/Authen/DecHpwd.pm
-SHA1 69ee0f88fa534bac0363c9647752d404fd76b71a lib/Authen/DecHpwd.xs
-SHA1 82aab53b944473268164dc73f6525d773d4a399b t/error.t
+SHA1 805017e12229312f859974bfc39afe330f9305ee lib/Authen/DecHpwd.pm
+SHA1 4bb2e9ffbc8c3b40ff96f6692b9a86bf87187346 lib/Authen/DecHpwd.xs
+SHA1 0c878ae29b417db5507ba73cb8003a9fe7d872eb t/error.t
 SHA1 fc008cb61eb02798d6ec02df230ef4d59bcdca12 t/error_pp.t
-SHA1 0e141eecf3ca4903ef38d9413b5403a9ddb0392f t/pod_cvg.t
-SHA1 74a957cd8b93f25672ecc6aa578a671d084dd343 t/pod_syn.t
-SHA1 d0891136d26abb348da2613b893330ddf106fab4 t/purdy.t
+SHA1 904d9a4f76525e2303e4b0c168c68230f223c8de t/pod_cvg.t
+SHA1 3f447b1d0b8a6247c3a311087f8d66da1c3ca5db t/pod_cvg_pp.t
+SHA1 65c75abdef6f01a5d1588a307f2ddfe2333dc961 t/pod_syn.t
+SHA1 02c3802728e0dd4191669855cd6fd83bcfebefdf t/purdy.t
 SHA1 a26610bddb1c5182c039b3b3efec9872e3d829fd t/purdy_pp.t
-SHA1 9f3723750346bb8025778efaa3c52c97b57de6ad t/purdy_s.t
+SHA1 184c9273e3473ac7e08830e6b83b607bc4f40fb5 t/purdy_s.t
 SHA1 f3481010321f8d330a916d7df959adca2b7667dd t/purdy_s_pp.t
-SHA1 5002c9118c2eed71b11dec5310c8ce38afedd73c t/purdy_v.t
+SHA1 c44b75ae3c2a2ded3d620e8d7a9cc240f0f870d5 t/purdy_v.t
 SHA1 b609e9e46fec79dd78108d71961d331ca2bfa0fd t/purdy_v_pp.t
 SHA1 13e0c865134cb43ba7608cb6e1f6ca29ac57c3f0 t/setup_pp.pl
-SHA1 47de319e307da40a9dd0aad3366e461df6a4d105 t/vms_pass.t
-SHA1 02843681538f4bc89b0986f6368796138b361156 t/vms_user.t
+SHA1 296fe58b26077980410206b30534093e302f90c5 t/vms_pass.t
+SHA1 5a5c9c0be3c3e92a91d1d655f93e4ab0e805b116 t/vms_user.t
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.9 (GNU/Linux)
 
-iEYEARECAAYFAkm9ij8ACgkQOV9mt2VyAVEh5gCgnfxwEnsFj1WLTdPf5J5ASqBI
-WKkAn1cMRtu/xBMDtpMpyFvpfAhYaTI3
-=E0ao
+iEYEARECAAYFAkxTGsoACgkQOV9mt2VyAVElXACfd3ewfdG/PlCvUTXDsT6vbZUX
++OMAn15JSdNf9iz+SjJdRDYzwNaRl1wR
+=8MPO
 -----END PGP SIGNATURE-----

Modified: trunk/libauthen-dechpwd-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/debian/changelog?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/debian/changelog (original)
+++ trunk/libauthen-dechpwd-perl/debian/changelog Sat Jul 31 06:05:26 2010
@@ -1,3 +1,20 @@
+libauthen-dechpwd-perl (2.005-1) unstable; urgency=low
+
+  * New upstream release.
+  * Use source format 3.0 (quilt).
+  * debian/copyright: Formatting changes for current DEP-5 proposal,
+    refer to /usr/share/common-licenses/GPL-2, update years of copyright.
+  * No longer install README.
+  * Use Build.PL.
+  * Remove build-dep on perl (>= 5.10) | libmodule-build-perl. Stable
+    has perl 5.10.
+  * Add build-dep on libtest-pod-coverage-perl, libtest-pod-perl.
+  * Mention module name in description.
+  * Bump Standards-Version to 3.9.1 (no changes).
+  * Add myself to Uploaders.
+
+ -- Ansgar Burchardt <ansgar at 43-1.org>  Sat, 31 Jul 2010 15:05:08 +0900
+
 libauthen-dechpwd-perl (2.004-3) unstable; urgency=low
 
   * Take over for the Debian Perl Group

Modified: trunk/libauthen-dechpwd-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/debian/control?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/debian/control (original)
+++ trunk/libauthen-dechpwd-perl/debian/control Sat Jul 31 06:05:26 2010
@@ -1,11 +1,12 @@
 Source: libauthen-dechpwd-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7.0.17), libdata-integer-perl (>= 0.003),
- libscalar-string-perl, perl, perl (>= 5.10) | libmodule-build-perl
+Build-Depends: debhelper (>= 7.3.7~), libdata-integer-perl (>= 0.003),
+ libscalar-string-perl, libtest-pod-coverage-perl, libtest-pod-perl, perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Ivan Kohler <ivan-debian at 420.am>
-Standards-Version: 3.8.4
+Uploaders: Ivan Kohler <ivan-debian at 420.am>,
+ Ansgar Burchardt <ansgar at 43-1.org>
+Standards-Version: 3.9.1
 Homepage: http://search.cpan.org/dist/Authen-DecHpwd/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libauthen-dechpwd-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libauthen-dechpwd-perl/
@@ -15,5 +16,5 @@
 Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends},
  libdata-integer-perl (>= 0.003), libscalar-string-perl
 Description: Perl module for DEC VMS password hashing
- This module implements the LGI$HPWD password hashing function from VMS,
+ Authen::DecHpwd implements the LGI$HPWD password hashing function from VMS,
  and some associated VMS username and password handling functions.

Modified: trunk/libauthen-dechpwd-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/debian/copyright?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/debian/copyright (original)
+++ trunk/libauthen-dechpwd-perl/debian/copyright Sat Jul 31 06:05:26 2010
@@ -1,29 +1,30 @@
-Format-Specification:
-    http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
-Upstream-Maintainer: Andrew Main (Zefram) <zefram at fysh.org>
-Upstream-Source: http://search.cpan.org/dist/Authen-DecHpwd/
-Upstream-Name: Authen-DecHpwd
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: Andrew Main (Zefram) <zefram at fysh.org>
+Source: http://search.cpan.org/dist/Authen-DecHpwd/
+Name: Authen-DecHpwd
 
-Files: *
-Copyright: 2002, Jean-loup Gailly <http://gailly.net>,
-Copyright: 1996-2002, Solar Designer
-Copyright: 2006-2009, Andrew Main (Zefram) <zefram at fysh.org>
+Copyright:
+ 2002,      Jean-loup Gailly <http://gailly.net>,
+ 1996-2002, Solar Designer
+ 2006-2010, Andrew Main (Zefram) <zefram at fysh.org>
 License: GPL-2+
 
 Files: debian/*
 Copyright: 2009, Ivan Kohler <ivan-debian at 420.am>
-License: Artistic | GPL-2+
+License: Artistic or GPL-2+
 
 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
-    can be found in `/usr/share/common-licenses/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
+ can be found in `/usr/share/common-licenses/Artistic'.
 
 License: GPL-2+
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 2, 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'
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2, or (at your option)
+ any later version.
+ .
+ On Debian GNU/Linux systems, the complete text of version 2 of the GNU
+ General Public License can be found in `/usr/share/common-licenses/GPL-2'.

Modified: trunk/libauthen-dechpwd-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/debian/rules?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/debian/rules (original)
+++ trunk/libauthen-dechpwd-perl/debian/rules Sat Jul 31 06:05:26 2010
@@ -1,4 +1,4 @@
 #!/usr/bin/make -f
 
 %:
-	dh $@
+	dh $@ --buildsystem=perl_build

Added: trunk/libauthen-dechpwd-perl/debian/source/format
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/debian/source/format?rev=60939&op=file
==============================================================================
--- trunk/libauthen-dechpwd-perl/debian/source/format (added)
+++ trunk/libauthen-dechpwd-perl/debian/source/format Sat Jul 31 06:05:26 2010
@@ -1,0 +1,1 @@
+3.0 (quilt)

Modified: trunk/libauthen-dechpwd-perl/lib/Authen/DecHpwd.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/lib/Authen/DecHpwd.pm?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/lib/Authen/DecHpwd.pm (original)
+++ trunk/libauthen-dechpwd-perl/lib/Authen/DecHpwd.pm Sat Jul 31 06:05:26 2010
@@ -28,12 +28,13 @@
 
 package Authen::DecHpwd;
 
+{ use 5.006; }
 use warnings;
 use strict;
 
-our $VERSION = "2.004";
-
-use base "Exporter";
+our $VERSION = "2.005";
+
+use parent "Exporter";
 our @EXPORT_OK = qw(
 	UAI_C_AD_II UAI_C_PURDY UAI_C_PURDY_V UAI_C_PURDY_S
 	lgi_hpwd
@@ -412,7 +413,8 @@
 Based in part on code from John the Ripper, Copyright (C) 1996-2002
 Solar Designer
 
-Copyright (C) 2006, 2007, 2009 Andrew Main (Zefram) <zefram at fysh.org>
+Copyright (C) 2006, 2007, 2009, 2010
+Andrew Main (Zefram) <zefram at fysh.org>
 
 =head1 LICENSE
 

Modified: trunk/libauthen-dechpwd-perl/lib/Authen/DecHpwd.xs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/lib/Authen/DecHpwd.xs?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/lib/Authen/DecHpwd.xs (original)
+++ trunk/libauthen-dechpwd-perl/lib/Authen/DecHpwd.xs Sat Jul 31 06:05:26 2010
@@ -1,3 +1,4 @@
+#define PERL_NO_GET_CONTEXT 1
 #include "EXTERN.h"
 #include "perl.h"
 #include "XSUB.h"
@@ -646,7 +647,7 @@
 SV *
 lgi_hpwd(SV *username_sv, SV *password_sv, unsigned alg, unsigned salt)
 PROTOTYPE: $$$$
-INIT:
+PREINIT:
 	STRLEN username_len, password_len;
 	U8 *username_str, *password_str, *username_octs, *password_octs;
 	bool is_utf8;

Modified: trunk/libauthen-dechpwd-perl/t/error.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/t/error.t?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/t/error.t (original)
+++ trunk/libauthen-dechpwd-perl/t/error.t Sat Jul 31 06:05:26 2010
@@ -1,3 +1,6 @@
+use warnings;
+use strict;
+
 use Test::More tests => 3;
 
 BEGIN { use_ok "Authen::DecHpwd", qw(lgi_hpwd UAI_C_PURDY); }

Modified: trunk/libauthen-dechpwd-perl/t/pod_cvg.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/t/pod_cvg.t?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/t/pod_cvg.t (original)
+++ trunk/libauthen-dechpwd-perl/t/pod_cvg.t Sat Jul 31 06:05:26 2010
@@ -1,4 +1,9 @@
+use warnings;
+use strict;
+
 use Test::More;
 plan skip_all => "Test::Pod::Coverage not available"
 	unless eval "use Test::Pod::Coverage; 1";
 Test::Pod::Coverage::all_pod_coverage_ok();
+
+1;

Modified: trunk/libauthen-dechpwd-perl/t/pod_syn.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/t/pod_syn.t?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/t/pod_syn.t (original)
+++ trunk/libauthen-dechpwd-perl/t/pod_syn.t Sat Jul 31 06:05:26 2010
@@ -1,3 +1,8 @@
+use warnings;
+use strict;
+
 use Test::More;
 plan skip_all => "Test::Pod not available" unless eval "use Test::Pod 1.00; 1";
 Test::Pod::all_pod_files_ok();
+
+1;

Modified: trunk/libauthen-dechpwd-perl/t/purdy.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/t/purdy.t?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/t/purdy.t (original)
+++ trunk/libauthen-dechpwd-perl/t/purdy.t Sat Jul 31 06:05:26 2010
@@ -1,3 +1,6 @@
+use warnings;
+use strict;
+
 use Scalar::String qw(sclstr_downgraded sclstr_upgraded);
 use Test::More tests => 401;
 

Modified: trunk/libauthen-dechpwd-perl/t/purdy_s.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/t/purdy_s.t?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/t/purdy_s.t (original)
+++ trunk/libauthen-dechpwd-perl/t/purdy_s.t Sat Jul 31 06:05:26 2010
@@ -1,3 +1,6 @@
+use warnings;
+use strict;
+
 use Scalar::String qw(sclstr_downgraded sclstr_upgraded);
 use Test::More tests => 401;
 

Modified: trunk/libauthen-dechpwd-perl/t/purdy_v.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/t/purdy_v.t?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/t/purdy_v.t (original)
+++ trunk/libauthen-dechpwd-perl/t/purdy_v.t Sat Jul 31 06:05:26 2010
@@ -1,3 +1,6 @@
+use warnings;
+use strict;
+
 use Scalar::String qw(sclstr_downgraded sclstr_upgraded);
 use Test::More tests => 401;
 

Modified: trunk/libauthen-dechpwd-perl/t/vms_pass.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/t/vms_pass.t?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/t/vms_pass.t (original)
+++ trunk/libauthen-dechpwd-perl/t/vms_pass.t Sat Jul 31 06:05:26 2010
@@ -1,3 +1,6 @@
+use warnings;
+use strict;
+
 use Test::More tests => 17;
 
 BEGIN { use_ok "Authen::DecHpwd", qw(vms_password); }
@@ -20,3 +23,5 @@
 is vms_password('abcdefghijklmnopqrstuvwxyz012345'),
 	'ABCDEFGHIJKLMNOPQRSTUVWXYZ012345';
 is vms_password('abcdefghijklmnopqrstuvwxyz0123456'), undef;
+
+1;

Modified: trunk/libauthen-dechpwd-perl/t/vms_user.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-dechpwd-perl/t/vms_user.t?rev=60939&op=diff
==============================================================================
--- trunk/libauthen-dechpwd-perl/t/vms_user.t (original)
+++ trunk/libauthen-dechpwd-perl/t/vms_user.t Sat Jul 31 06:05:26 2010
@@ -1,3 +1,6 @@
+use warnings;
+use strict;
+
 use Test::More tests => 16;
 
 BEGIN { use_ok "Authen::DecHpwd", qw(vms_username); }
@@ -18,3 +21,5 @@
 is vms_username('abcdefghijklmnopqrstuvwxyz01234'),
 	'ABCDEFGHIJKLMNOPQRSTUVWXYZ01234';
 is vms_username('abcdefghijklmnopqrstuvwxyz012345'), undef;
+
+1;




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