diff -Nurd -x'*~' Module-Signature-0.70.orig/Makefile.PL Module-Signature-0.70/Makefile.PL --- Module-Signature-0.70.orig/Makefile.PL 2012-11-02 11:10:16.000000000 -0400 +++ Module-Signature-0.70/Makefile.PL 2013-05-20 03:49:06.000000000 -0400 @@ -62,12 +62,7 @@ }; # Is openpgp currently installed -if ( can_use('Crypt::OpenPGP') ) { - # If OpenPGP is already installed, so relist all the - # dependencies so they will upgrade as needed. - requires( @OPEN_PGP ); - -} elsif ( my $gpg = locate_gpg() ) { +if ( my $gpg = locate_gpg() ) { # We SHOULD have gpg, double-check formally requires_external_bin $gpg; } elsif ( can_cc() and $ENV{AUTOMATED_TESTING} ) { @@ -117,11 +112,6 @@ return 1 if grep { /^--installdeps/} @ARGV; - if ( prompt("Import PAUSE and author keys to GnuPG?", 'y' ) =~ /^y/i) { - print 'Importing... '; - system $gpg, '--quiet', '--import', glob('*.pub'); - print "done.\n"; - } return $gpg; }