diff options
author | Tim Orling <TicoTimo@gmail.com> | 2014-05-21 20:23:22 -0700 |
---|---|---|
committer | Paul Eggleton <paul.eggleton@linux.intel.com> | 2014-06-04 09:52:55 +0100 |
commit | 25b3fb81c9627efd76d5aec468513c53e53148cb (patch) | |
tree | ac1e10d97c910950aa48e900196b5c02de543369 | |
parent | a0557f541a5eebea2d2cea36ff1cdafc57a3c649 (diff) | |
download | meta-openembedded-25b3fb81c9627efd76d5aec468513c53e53148cb.tar.gz |
libtest-harness-perl: add 3.30
Test::Harness - Run Perl standard test scripts with statistics
* Uses ${CPAN_MIRROR} option
* RPROVIDES based on v3.28 recipe:
Paul Eggleton <paul.eggleton@linux.intel.com>
http://github.com/bluelightning/public_bb_recipes
* which is forked from
Emil Petersen <erp@movis.dk> repo
http://github.com/EmilRP/public_bb_recipes/
* run through oe-stylize and clean bad white space
* correct email address to oe-dev
Signed-off-by: Tim Orling <TicoTimo@gmail.com>
-rw-r--r-- | meta-perl/recipes-perl/libtest/libtest-harness-perl_3.30.bb | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libtest/libtest-harness-perl_3.30.bb b/meta-perl/recipes-perl/libtest/libtest-harness-perl_3.30.bb new file mode 100644 index 000000000..c3d9674bf --- /dev/null +++ b/meta-perl/recipes-perl/libtest/libtest-harness-perl_3.30.bb | |||
@@ -0,0 +1,80 @@ | |||
1 | SUMMARY = "Test::Harness - Run Perl standard test scripts with statistics" | ||
2 | DESCRIPTION = "Although, for historical reasons, the Test::Harness \ | ||
3 | distribution takes its name from this module it now exists only to provide \ | ||
4 | TAP::Harness with an interface that is somewhat backwards compatible \ | ||
5 | with Test::Harness 2.xx. If you're writing new code consider using \ | ||
6 | TAP::Harness directly instead. \ | ||
7 | \ | ||
8 | Emulation is provided for runtests and execute_tests but the \ | ||
9 | pluggable 'Straps' interface that previous versions of Test::Harness \ | ||
10 | supported is not reproduced here. Straps is now available as a stand \ | ||
11 | alone module: Test::Harness::Straps. \ | ||
12 | \ | ||
13 | See TAP::Parser, TAP::Harness for the main documentation for this \ | ||
14 | distribution." | ||
15 | |||
16 | SECTION = "libs" | ||
17 | |||
18 | HOMEPAGE = "http://testanything.org" | ||
19 | |||
20 | LICENSE = "Artistic-1.0 | GPL-1.0+" | ||
21 | LIC_FILES_CHKSUM = "file://README;beginline=29;endline=30;md5=b08db4360eec119e875dddd7cb8a5ddd" | ||
22 | |||
23 | SRC_URI = "${CPAN_MIRROR}/authors/id/L/LE/LEONT/Test-Harness-${PV}.tar.gz" | ||
24 | SRC_URI[md5sum] = "c1ff25da5dfdf77adea13dc3465638dd" | ||
25 | SRC_URI[sha256sum] = "ff1900f3b3e61321d3c4b3283298f3106d43d55446605e9cfcf1dcec036acec1" | ||
26 | |||
27 | S = "${WORKDIR}/Test-Harness-${PV}" | ||
28 | |||
29 | inherit cpan | ||
30 | |||
31 | RPROVIDES_${PN} += "libapp-prove-perl \ | ||
32 | libapp-prove-state-perl \ | ||
33 | libapp-prove-state-result-perl \ | ||
34 | libapp-prove-state-result-test-perl \ | ||
35 | libtap-base-perl \ | ||
36 | libtap-formatter-base-perl \ | ||
37 | libtap-formatter-color-perl \ | ||
38 | libtap-formatter-console-perl \ | ||
39 | libtap-formatter-console-parallelsession-perl \ | ||
40 | libtap-formatter-console-session-perl \ | ||
41 | libtap-formatter-file-perl \ | ||
42 | libtap-formatter-file-session-perl \ | ||
43 | libtap-formatter-session-perl \ | ||
44 | libtap-harness-perl \ | ||
45 | libtap-harness-env-perl \ | ||
46 | libtap-object-perl \ | ||
47 | libtap-parser-perl \ | ||
48 | libtap-parser-aggregator-perl \ | ||
49 | libtap-parser-grammar-perl \ | ||
50 | libtap-parser-iterator-perl \ | ||
51 | libtap-parser-iterator-array-perl \ | ||
52 | libtap-parser-iterator-process-perl \ | ||
53 | libtap-parser-iterator-stream-perl \ | ||
54 | libtap-parser-iteratorfactory-perl \ | ||
55 | libtap-parser-multiplexer-perl \ | ||
56 | libtap-parser-result-perl \ | ||
57 | libtap-parsser-result-bailout-perl \ | ||
58 | libtap-parser-result-comment-perl \ | ||
59 | libtap-parser-result-plan-perl \ | ||
60 | libtap-parser-result-pragma-perl \ | ||
61 | libtap-parser-result-test-perl \ | ||
62 | libtap-parser-result-unknown-perl \ | ||
63 | libtap-parser-result-version-perl \ | ||
64 | libtap-parser-result-yaml-perl \ | ||
65 | libtap-parser-resultfactory-perl \ | ||
66 | libtap-parser-scheduler-perl \ | ||
67 | libtap-parser-scheduler-job-perl \ | ||
68 | libtap-parser-scheduler-spinner-perl \ | ||
69 | libtap-parser-source-perl \ | ||
70 | libtap-parser-sourcehandler-perl \ | ||
71 | libtap-parser-sourcehandler-executable-perl \ | ||
72 | libtap-parser-sourcehandler-file-perl \ | ||
73 | libtap-parser-sourcehandler-handle-perl \ | ||
74 | libtap-parser-sourcehandler-perl-perl \ | ||
75 | libtap-parser-sourcehandler-rawtap-perl \ | ||
76 | libtap-parser-yamlish-reader-perl \ | ||
77 | libtap-parser-yamlish-writer-perl \ | ||
78 | " | ||
79 | |||
80 | BBCLASSEXTEND = "native" | ||