diff options
Diffstat (limited to 'meta/recipes-devtools/perl/libtest-warnings-perl_0.038.bb')
| -rw-r--r-- | meta/recipes-devtools/perl/libtest-warnings-perl_0.038.bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl/libtest-warnings-perl_0.038.bb b/meta/recipes-devtools/perl/libtest-warnings-perl_0.038.bb new file mode 100644 index 0000000000..656b38f2d8 --- /dev/null +++ b/meta/recipes-devtools/perl/libtest-warnings-perl_0.038.bb | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | SUMMARY = "Test::Warnings - Test for warnings and the lack of them" | ||
| 2 | DESCRIPTION = "If you've ever tried to use Test::NoWarnings to confirm there are no \ | ||
| 3 | warnings generated by your tests, combined with the convenience of \ | ||
| 4 | \\"done_testing\\" to not have to declare a test count, you'll have discovered \ | ||
| 5 | that these two features do not play well together, as the test count will \ | ||
| 6 | be calculated *before* the warnings test is run, resulting in a TAP error. \ | ||
| 7 | (See "examples/test_nowarnings.pl" in this distribution for a \ | ||
| 8 | demonstration.)" | ||
| 9 | HOMEPAGE = "https://github.com/karenetheridge/Test-Warnings" | ||
| 10 | BUGTRACKER = "https://rt.cpan.org/Public/Dist/Display.html?Name=Test-Warnings" | ||
| 11 | SECTION = "libs" | ||
| 12 | LICENSE = "Artistic-1.0-Perl | GPL-1.0-or-later" | ||
| 13 | |||
| 14 | LIC_FILES_CHKSUM = "file://LICENCE;md5=f98106ac3cc05d9cbebcdb8fbf7b7815" | ||
| 15 | |||
| 16 | SRC_URI = "${CPAN_MIRROR}/authors/id/E/ET/ETHER/Test-Warnings-${PV}.tar.gz" | ||
| 17 | |||
| 18 | SRC_URI[sha256sum] = "3da27e003a3c3cafed3c09b42be05cf9bdbff0bee5c8590a731b02853880a273" | ||
| 19 | |||
| 20 | S = "${WORKDIR}/Test-Warnings-${PV}" | ||
| 21 | |||
| 22 | inherit cpan ptest-perl | ||
| 23 | |||
| 24 | RDEPENDS:${PN} += "\ | ||
| 25 | perl-module-test-builder \ | ||
| 26 | " | ||
| 27 | |||
| 28 | # Many hidden dependencies and mysterious failures occur without full perl-modules | ||
| 29 | RDEPENDS:${PN}-ptest += "perl-modules" | ||
| 30 | |||
| 31 | do_install_ptest_perl:append () { | ||
| 32 | cp -r ${B}/t/lib ${D}${PTEST_PATH}/t/ | ||
| 33 | chown -R root:root ${D}${PTEST_PATH}/t/lib | ||
| 34 | } | ||
| 35 | |||
| 36 | BBCLASSEXTEND = "native nativesdk" | ||
