- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
37 lines
1.1 KiB
BlitzBasic
37 lines
1.1 KiB
BlitzBasic
SUMMARY = "Incredibly simple helpers for testing code with exceptions"
|
|
DESCRIPTION = "Test::Fatal is an alternative to the popular Test::Exception.\
|
|
It does much less, but should allow greater flexibility in testing \
|
|
exception-throwing code with about the same amount of typing."
|
|
HOMEPAGE = "https://github.com/rjbs/Test-Fatal"
|
|
BUGTRACKER = "https://github.com/rjbs/Test-Fatal/issues"
|
|
SECTION = "libs"
|
|
LICENSE = "Artistic-1.0 | GPL-1.0-or-later"
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=b5c851290cab1dda12fcfb0e9ec43639"
|
|
|
|
SRC_URI = "${CPAN_MIRROR}/authors/id/R/RJ/RJBS/Test-Fatal-${PV}.tar.gz"
|
|
|
|
SRC_URI[sha256sum] = "37dfffdafb84b762efe96b02fb2aa41f37026c73e6b83590db76229697f3c4a6"
|
|
|
|
S = "${WORKDIR}/Test-Fatal-${PV}"
|
|
|
|
inherit cpan ptest-perl
|
|
|
|
RDEPENDS:${PN} += "\
|
|
libtry-tiny-perl \
|
|
perl-module-carp \
|
|
perl-module-exporter \
|
|
perl-module-test-builder \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += "\
|
|
perl-module-extutils-makemaker \
|
|
perl-module-extutils-mm-unix \
|
|
perl-module-file-spec \
|
|
perl-module-overload \
|
|
perl-module-test-builder-tester \
|
|
perl-module-test-more \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|