mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00

(From OE-Core rev: 7321cc17ae5483f17fe9cdffea7b62acd9d9c3a2) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
37 lines
1.0 KiB
BlitzBasic
37 lines
1.0 KiB
BlitzBasic
SUMMARY = "Try::Tiny - Minimal try/catch with proper preservation of $@"
|
|
DESCRIPTION = "This module provides bare bones try/catch/finally statements \
|
|
that are designed to minimize common mistakes with eval blocks, and NOTHING \
|
|
else."
|
|
HOMEPAGE = "https://github.com/p5sagit/Try-Tiny"
|
|
BUGTRACKER = "https://rt.cpan.org/Public/Dist/Display.html?Name=Try-Tiny"
|
|
SECTION = "libs"
|
|
LICENSE = "MIT"
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENCE;md5=5dc332c2d4aade55f5db244681000091"
|
|
|
|
SRC_URI = "${CPAN_MIRROR}/authors/id/E/ET/ETHER/Try-Tiny-${PV}.tar.gz"
|
|
|
|
SRC_URI[sha256sum] = "ef2d6cab0bad18e3ab1c4e6125cc5f695c7e459899f512451c8fa3ef83fa7fc0"
|
|
|
|
S = "${UNPACKDIR}/Try-Tiny-${PV}"
|
|
|
|
inherit cpan ptest-perl
|
|
|
|
RDEPENDS:${PN} += "\
|
|
perl-module-carp \
|
|
perl-module-constant \
|
|
perl-module-exporter \
|
|
"
|
|
RRECOMMENDS:${PN} += "\
|
|
perl-module-sub-util \
|
|
"
|
|
RDEPENDS:${PN}-ptest += "\
|
|
perl-module-extutils-makemaker \
|
|
perl-module-extutils-mm-unix \
|
|
perl-module-file-spec \
|
|
perl-module-if \
|
|
perl-module-test-more \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|