diff options
author | Tim Orling <timothy.t.orling@linux.intel.com> | 2019-06-27 21:52:21 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-07-10 09:24:32 -0700 |
commit | ac46a6d0c307ba545db1399f3eb9cd1bb54c5c81 (patch) | |
tree | dd9b4e1f2d45a9d6f7371c3c03cb0a4eeeec36c3 | |
parent | 76609a4b4ef14ab9b49fd5d7d99c33b30309a4ef (diff) | |
download | meta-openembedded-ac46a6d0c307ba545db1399f3eb9cd1bb54c5c81.tar.gz |
libsub-uplevel-perl: add recipe for 0.36
Dependency for Test::Warn
NAME
Sub::Uplevel - apparently run a function in a higher stack frame
DESCRIPTION
Like Tcl's uplevel() function, but not quite so dangerous. The idea is
just to fool caller(). All the really naughty bits of Tcl's uplevel()
are avoided.
Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-perl/recipes-perl/libsub/libsub-uplevel-perl_0.2800.bb | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libsub/libsub-uplevel-perl_0.2800.bb b/meta-perl/recipes-perl/libsub/libsub-uplevel-perl_0.2800.bb new file mode 100644 index 0000000000..f051037870 --- /dev/null +++ b/meta-perl/recipes-perl/libsub/libsub-uplevel-perl_0.2800.bb | |||
@@ -0,0 +1,43 @@ | |||
1 | SUMMARY = "Sub::Uplevel - apparently run a function in a higher stack frame" | ||
2 | DESCRIPTION = " Like Tcl's uplevel() function, but not quite so dangerous. \ | ||
3 | The idea is just to fool caller(). All the really naughty bits of Tcl's \ | ||
4 | uplevel() are avoided. \ | ||
5 | \ | ||
6 | THIS IS NOT THE SORT OF THING YOU WANT TO DO EVERYDAY \ | ||
7 | " | ||
8 | |||
9 | SECTION = "libs" | ||
10 | HOMEPAGE= "https://metacpan.org/release/Sub-Uplevel" | ||
11 | |||
12 | LICENSE = "Artistic-1.0 | GPL-1.0+" | ||
13 | LIC_FILES_CHKSUM = "file://LICENSE;md5=7f1207cd3108e4ade18448d81e6bcb6c" | ||
14 | |||
15 | CPAN_PACKAGE = "Sub-Uplevel" | ||
16 | CPAN_AUTHOR = "DAGOLDEN" | ||
17 | |||
18 | SRC_URI = "${CPAN_MIRROR}/authors/id/D/DA/${CPAN_AUTHOR}/${CPAN_PACKAGE}-${PV}.tar.gz" | ||
19 | |||
20 | SRC_URI[md5sum] = "6c6a174861fd160e8d5871a86df00baf" | ||
21 | SRC_URI[sha256sum] = "b4f3f63b80f680a421332d8851ddbe5a8e72fcaa74d5d1d98f3c8cc4a3ece293" | ||
22 | |||
23 | S = "${WORKDIR}/${CPAN_PACKAGE}-${PV}" | ||
24 | |||
25 | inherit cpan ptest-perl | ||
26 | |||
27 | RDEPENDS_${PN} += " \ | ||
28 | perl-module-carp \ | ||
29 | perl-module-constant \ | ||
30 | perl-module-strict \ | ||
31 | perl-module-warnings \ | ||
32 | " | ||
33 | |||
34 | RDEPENDS_${PN}-ptest += " \ | ||
35 | perl-module-cpan \ | ||
36 | perl-module-exporter \ | ||
37 | perl-module-extutils-makemaker \ | ||
38 | perl-module-file-spec \ | ||
39 | perl-module-lib \ | ||
40 | perl-module-test-more \ | ||
41 | " | ||
42 | |||
43 | BBCLASSEXTEND = "native nativesdk" | ||