From c963af52434ee968b699c65d9b0ceb01fe727ef1 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Mon, 13 Aug 2007 16:26:36 +0000 Subject: [PATCH] 0.36. patch for rt.cpan.org # 28814 --- ChangeLog | 7 +++++++ Makefile.PL | 2 +- lib/GnuPG/Interface.pm | 6 +++--- t/MyTest.pm | 2 +- t/MyTestSpecific.pm | 2 +- t/clearsign.t | 2 +- t/decrypt.t | 2 +- t/detach_sign.t | 2 +- t/encrypt.t | 2 +- t/encrypt_symmetrically.t | 2 +- t/export_keys.t | 2 +- t/get_public_keys.t | 2 +- t/get_secret_keys.t | 2 +- t/import_keys.t | 2 +- t/list_public_keys.t | 2 +- t/list_secret_keys.t | 2 +- t/list_sigs.t | 2 +- t/passphrase_handling.t | 2 +- t/sign.t | 2 +- t/sign_and_encrypt.t | 2 +- t/verify.t | 2 +- 21 files changed, 29 insertions(+), 22 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3dd0ec9..768e957 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +0.36 Mon Aug 13 12:16:38 EDT 2007 + + * [rt.cpan.org #28814] - Performance improvement from mehradek (Radoslaw Zielinski) + -use English; + +use English qw( -no_match_vars ); + + 0.35 Fri Apr 20 12:33:53 EDT 2007 - Jesse Vincent * New Maintainer: Jesse Vincent took over diff --git a/Makefile.PL b/Makefile.PL index a0f21f5..438c043 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,7 +1,7 @@ use 5.005; use strict; -use English; +use English qw( -no_match_vars ); use ExtUtils::MakeMaker; use File::Find; diff --git a/lib/GnuPG/Interface.pm b/lib/GnuPG/Interface.pm index 897808e..c4afcaa 100644 --- a/lib/GnuPG/Interface.pm +++ b/lib/GnuPG/Interface.pm @@ -1,4 +1,4 @@ -# Interface.pm +# Jnterface.pm # - providing an object-oriented approach to interacting with GnuPG # # Copyright (C) 2000 Frank J. Tobin @@ -14,7 +14,7 @@ package GnuPG::Interface; use strict; -use English; +use English qw( -no_match_vars ); use Carp; use Fcntl; use vars qw( $VERSION ); @@ -26,7 +26,7 @@ use IO::Handle; use GnuPG::Options; use GnuPG::Handles; -$VERSION = '0.35'; +$VERSION = '0.36'; use Class::MethodMaker get_set => [ qw( call passphrase ) ], diff --git a/t/MyTest.pm b/t/MyTest.pm index b042891..4c6efa6 100644 --- a/t/MyTest.pm +++ b/t/MyTest.pm @@ -16,7 +16,7 @@ package MyTest; use strict; -use English; +use English qw( -no_match_vars ); use Exporter; use IO::File; use vars qw( @ISA @EXPORT ); diff --git a/t/MyTestSpecific.pm b/t/MyTestSpecific.pm index 00b77d3..09a2371 100644 --- a/t/MyTestSpecific.pm +++ b/t/MyTestSpecific.pm @@ -14,7 +14,7 @@ # use strict; -use English; +use English qw( -no_match_vars ); use Fatal qw/ open close /; use IO::File; use IO::Handle; diff --git a/t/clearsign.t b/t/clearsign.t index c352342..cc47b4f 100644 --- a/t/clearsign.t +++ b/t/clearsign.t @@ -4,7 +4,7 @@ # use strict; -use English; +use English qw( -no_match_vars ); use lib './t'; use MyTest; diff --git a/t/decrypt.t b/t/decrypt.t index daa1488..9a10e8a 100644 --- a/t/decrypt.t +++ b/t/decrypt.t @@ -4,7 +4,7 @@ # use strict; -use English; +use English qw( -no_match_vars ); use File::Compare; use lib './t'; diff --git a/t/detach_sign.t b/t/detach_sign.t index 32b14c3..5011394 100644 --- a/t/detach_sign.t +++ b/t/detach_sign.t @@ -4,7 +4,7 @@ # use strict; -use English; +use English qw( -no_match_vars ); use lib './t'; use MyTest; diff --git a/t/encrypt.t b/t/encrypt.t index 920d5ef..0c26e7c 100644 --- a/t/encrypt.t +++ b/t/encrypt.t @@ -4,7 +4,7 @@ # use strict; -use English; +use English qw( -no_match_vars ); use lib './t'; use MyTest; diff --git a/t/encrypt_symmetrically.t b/t/encrypt_symmetrically.t index 743d1c1..eeaea57 100644 --- a/t/encrypt_symmetrically.t +++ b/t/encrypt_symmetrically.t @@ -4,7 +4,7 @@ # use strict; -use English; +use English qw( -no_match_vars ); use lib './t'; use MyTest; diff --git a/t/export_keys.t b/t/export_keys.t index 75be5fe..faab50b 100644 --- a/t/export_keys.t +++ b/t/export_keys.t @@ -4,7 +4,7 @@ # use strict; -use English; +use English qw( -no_match_vars ); use lib './t'; use MyTest; diff --git a/t/get_public_keys.t b/t/get_public_keys.t index a39007b..230c731 100644 --- a/t/get_public_keys.t +++ b/t/get_public_keys.t @@ -4,7 +4,7 @@ # use strict; -use English; +use English qw( -no_match_vars ); use lib './t'; use MyTest; diff --git a/t/get_secret_keys.t b/t/get_secret_keys.t index da3748f..a80c759 100644 --- a/t/get_secret_keys.t +++ b/t/get_secret_keys.t @@ -4,7 +4,7 @@ # use strict; -use English; +use English qw( -no_match_vars ); use lib './t'; use MyTest; diff --git a/t/import_keys.t b/t/import_keys.t index 5282872..17ae665 100644 --- a/t/import_keys.t +++ b/t/import_keys.t @@ -4,7 +4,7 @@ # use strict; -use English; +use English qw( -no_match_vars ); use lib './t'; use MyTest; diff --git a/t/list_public_keys.t b/t/list_public_keys.t index bf76093..8232df9 100644 --- a/t/list_public_keys.t +++ b/t/list_public_keys.t @@ -4,7 +4,7 @@ # use strict; -use English; +use English qw( -no_match_vars ); use IO::File; use lib './t'; diff --git a/t/list_secret_keys.t b/t/list_secret_keys.t index 2656e02..bcb722d 100644 --- a/t/list_secret_keys.t +++ b/t/list_secret_keys.t @@ -4,7 +4,7 @@ # use strict; -use English; +use English qw( -no_match_vars ); use lib './t'; use MyTest; diff --git a/t/list_sigs.t b/t/list_sigs.t index c3d8ff5..9f4bb4e 100644 --- a/t/list_sigs.t +++ b/t/list_sigs.t @@ -3,7 +3,7 @@ # $Id: list_sigs.t,v 1.7 2001/05/03 06:00:06 ftobin Exp $ use strict; -use English; +use English qw( -no_match_vars ); use lib './t'; use MyTest; diff --git a/t/passphrase_handling.t b/t/passphrase_handling.t index b87361b..d96a709 100644 --- a/t/passphrase_handling.t +++ b/t/passphrase_handling.t @@ -4,7 +4,7 @@ # use strict; -use English; +use English qw( -no_match_vars ); use Symbol; use IO::File; diff --git a/t/sign.t b/t/sign.t index 57303fc..4404dbe 100644 --- a/t/sign.t +++ b/t/sign.t @@ -4,7 +4,7 @@ # use strict; -use English; +use English qw( -no_match_vars ); use lib './t'; use MyTest; diff --git a/t/sign_and_encrypt.t b/t/sign_and_encrypt.t index a227b61..f31a481 100644 --- a/t/sign_and_encrypt.t +++ b/t/sign_and_encrypt.t @@ -4,7 +4,7 @@ # use strict; -use English; +use English qw( -no_match_vars ); use lib './t'; use MyTest; diff --git a/t/verify.t b/t/verify.t index 715edeb..1929be9 100644 --- a/t/verify.t +++ b/t/verify.t @@ -4,7 +4,7 @@ # use strict; -use English; +use English qw( -no_match_vars ); use lib './t'; use MyTest;