summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-perl/Class-MethodMaker/files/0-signature.t')
-rw-r--r--dev-perl/Class-MethodMaker/files/0-signature.t19
1 files changed, 0 insertions, 19 deletions
diff --git a/dev-perl/Class-MethodMaker/files/0-signature.t b/dev-perl/Class-MethodMaker/files/0-signature.t
deleted file mode 100644
index 85ba8559faa4..000000000000
--- a/dev-perl/Class-MethodMaker/files/0-signature.t
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/perl
-use strict;
-print "1..1\n";
-
-print("ok 1 #skip",
- "Skipping since we had to tamper with the Build.PL\n");
-exit();
-if ( ! eval { require Module::Signature; 1 } ) {
- print("ok 1 # skip ",
- "Next time around, consider install Module::Signature, ",
- "# so you can verify the integrity of this distribution.\n");
-} elsif ( ! eval { require Socket; Socket::inet_aton('subkeys.pgp.net') } ) {
- print "ok 1 # skip ", "Cannot connect to the keyserver\n";
-} else {
- (Module::Signature::verify() == Module::Signature::SIGNATURE_OK())
- or print "not ";
- print "ok 1 # Valid signature\n";
-}
-