From: Gabor Szabo Date: Fri, 18 May 2012 03:25:36 +0000 (+0300) Subject: remove SIGNATURE file X-Git-Url: https://git.donarmstrong.com/?p=term-progressbar.git;a=commitdiff_plain;h=1edc69314dce7b176df6cb6b9f4f0f6392a0bcb4 remove SIGNATURE file --- diff --git a/Changes b/Changes index 55edaa9..4c7b33e 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl extension Term-ProgressBar. +2.13 Fri May 18 06:24:42 2012 + - remove unused and invalid SIGNATURE file + 2.12 Wed May 16 12:47:16 2012 - use strict; use warnings; in examples - remove bareword from POD (JBAKER) diff --git a/SIGNATURE b/SIGNATURE deleted file mode 100644 index 7afe032..0000000 --- a/SIGNATURE +++ /dev/null @@ -1,50 +0,0 @@ -This file contains message digests of all files listed in MANIFEST, -signed via the Module::Signature module, version 0.38. - -To verify the content in this distribution, first make sure you have -Module::Signature installed, then type: - - % cpansign -v - -It would check each file's integrity, as well as the signature's -validity. If "==> Signature verified OK! <==" is not displayed, -the distribution may already have been compromised, and you should -not run its Makefile.PL or Build.PL. - ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -SHA1 308e635e1928d03e6c92ef224557847e18f492a6 BUGS -SHA1 466429e1cefc8de46f7310bc7c64e6ac6af108e0 Build.PL -SHA1 2cb916a845f60e44d62efe689de063d7bef20a99 Changes -SHA1 efa8cb615886410be8de15f5a6925697f624d278 INSTALL -SHA1 d0e591b2e5eafcc9a8de8ff9eda691fad5f85ffc MANIFEST -SHA1 5c69f53a9cb6f5f717dd1d02266fc7c9f675a902 MANIFEST.SKIP -SHA1 45fa692c1ad1ec954fe181c2d77b674f478a4201 META.yml -SHA1 c88a83fd974fad3c16428163c87d3e6835296ae7 Makefile.PL -SHA1 0de078a628603bf24ba4d01f2eb004360661be68 README -SHA1 8f869f84e72c6fc7ac89ce26326bf981505be467 configure -SHA1 8a4e566bff0ad33481975d55bcef13a9244bde16 examples/powers -SHA1 cb478a1724ae1816e12511be593fd33517702413 examples/powers2 -SHA1 ff6df90436963b2b7e73f8ce6d6327f2dbcad1c3 examples/powers3 -SHA1 0fca941997cba7e66d39d4cec737ef09ee7df454 examples/powers4 -SHA1 37691f612074aa2fcea31c3b17c6ee46640f43db examples/powers5 -SHA1 cef7ba06dd315bf803d87ab7753ed7b92fb45818 lib/Term/ProgressBar.pm -SHA1 37ba03162a46931b496a18413401d8f25b303cf1 make-pm -SHA1 e7569e5eeef2a8558e6d4828be087a6e1a841295 t/0-signature.t -SHA1 433e3ecad2aa8a7b3bb2f3766b17c195b33cbcc5 t/compat.t -SHA1 f02bc46da7e3c83478c244adfad443f9c1a2b4ca t/eta-linear.t -SHA1 f3b178ae1e9f1f1789443522ac861c8421f93eee t/name.t -SHA1 037b2bf330c9ce722c1d122e4e561c610f4fee83 t/test.pm -SHA1 ab36b1695c7ca9281da620347487bf88d02e66da t/v1-message.t -SHA1 91f9f8f0765d5d7924c4c130934facb91eca6833 t/v2-message.t -SHA1 87ecb3158e5eb9fe020c819e2d2f80ff8be45d92 t/v2-mobile.t -SHA1 119b353912834b0040150a7094bf14425be03936 t/v2-simple.t -SHA1 9048c3d6b67959e3cd598ac0e151daff435f39fe t/zero.t ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.2.2 (Darwin) - -iD8DBQFCNK9oV6eZRcV4WK0RAlXrAKDKPgq5cPXM5PnlAh6a08MK0nUNpACdGd20 -54twrpUeCdFMSQoExw0HNrQ= -=pBXe ------END PGP SIGNATURE----- diff --git a/t/0-signature.t b/t/0-signature.t deleted file mode 100644 index e4713ee..0000000 --- a/t/0-signature.t +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -use strict; -use warnings; - -use Test::More; - -plan skip_all => 'Signature has not been updated'; - - -if ( ! eval { require Module::Signature; 1 } ) { - plan skip_all => 'Needs Module::Signature to verify the integrity of this distribution.'; -} elsif ( ! eval { require Socket; Socket::inet_aton('pgp.mit.edu') } ) { - plan skip_all => 'Cannot connect to the keyserver'; -} else { - plan tests => 1; - is Module::Signature::verify(), Module::Signature::SIGNATURE_OK(), 'Valid signature'; -} -