Skip Menu |

This queue is for tickets about the Term-ProgressBar CPAN distribution.

Report information
The Basics
Id: 63323
Status: resolved
Priority: 0/
Queue: Term-ProgressBar

People
Owner: Nobody in particular
Requestors: DOHERTY [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 2.09
Fixed in: (no value)



Subject: MISMATCHED content between MANIFEST and distribution files!
Hello, There appears to be an error in packaging this: make test PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t t/0-signature.t .. WARNING: This key is not certified with a trusted signature! Primary key fingerprint: 643D F5B3 7DEE DF04 542B 2676 57A7 9945 C578 58AD Not in MANIFEST: MYMETA.yml ==> MISMATCHED content between MANIFEST and distribution files! <== t/0-signature.t .. Failed 1/1 subtests ... Please check that the signature is ok. -Mike
The t/0-signature.t is failing because of updates to ExtUtils::MakeMaker (which is creating MYMETA files). now there are two "MYMETA" files in the error: WARNING: This key is not certified with a trusted signature! Primary key fingerprint: 643D F5B3 7DEE DF04 542B 2676 57A7 9945 C578 58AD Not in MANIFEST: MYMETA.json Not in MANIFEST: MYMETA.yml ==> MISMATCHED content between MANIFEST and distribution files! <== t/0-signature.t .. Failed 1/1 subtests t/compat.t ....... ok t/eta-linear.t ... ok t/name.t ......... ok t/v1-message.t ... ok t/v2-message.t ... ok t/v2-mobile.t .... ok t/v2-simple.t .... ok t/zero.t ......... ok Test Summary Report ------------------- t/0-signature.t (Wstat: 0 Tests: 1 Failed: 1) Failed test: 1 Files=9, Tests=100, 11 wallclock secs ( 0.06 usr 0.03 sys + 0.58 cusr 0.12 csys = 0.79 CPU) Result: FAIL Failed 1/9 test programs. 1/100 subtests failed. (./Build test exited with 65280)
Adding "^MYMETA.*" to your MANIFEST.SKIP would solve the problem
Subject: term-pb-maniskip.patch
--- Term-ProgressBar-2.09/MANIFEST.SKIP 2003-08-30 09:57:37.000000000 -0700 +++ Term-ProgressBar-2.09-Ks4wTS/MANIFEST.SKIP 2011-08-15 08:02:14.972260646 -0700 @@ -11,3 +11,4 @@ ^make[-.]pm$ ^INFO.yaml$ ^_build/ +^MYMETA.*
done