diff options
author | Wang Mingyu <wangmy@fujitsu.com> | 2023-03-24 08:25:32 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-03-23 21:46:12 -0700 |
commit | 5694cc515d2892bbc53104c9956a39c3be7af989 (patch) | |
tree | a9fcaacd3200f292c5f6b1930e5c0efae805ce87 /meta-perl/recipes-perl/libclass/libclass-method-modifiers-perl_2.15.bb | |
parent | 344092438f44853c392413e623e09725dce4b25b (diff) | |
download | meta-openembedded-5694cc515d2892bbc53104c9956a39c3be7af989.tar.gz |
libclass-method-modifiers-perl: upgrade 2.13 -> 2.15
Changelog:
==========
- localize $SIG{__DIE__} before calling eval
- remove Test::Fatal and Test::Needs from test prereqs
License-Update: Removed spaces at the end of the line
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-perl/recipes-perl/libclass/libclass-method-modifiers-perl_2.15.bb')
-rw-r--r-- | meta-perl/recipes-perl/libclass/libclass-method-modifiers-perl_2.15.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libclass/libclass-method-modifiers-perl_2.15.bb b/meta-perl/recipes-perl/libclass/libclass-method-modifiers-perl_2.15.bb new file mode 100644 index 0000000000..f6ed718239 --- /dev/null +++ b/meta-perl/recipes-perl/libclass/libclass-method-modifiers-perl_2.15.bb | |||
@@ -0,0 +1,27 @@ | |||
1 | SUMMARY = "Class::Method::Modifiers - provides Moose-like method modifiers" | ||
2 | DESCRIPTION = "Method modifiers are a convenient feature from the CLOS \ | ||
3 | (Common Lisp Object System) world." | ||
4 | |||
5 | SECTION = "libs" | ||
6 | |||
7 | HOMEPAGE = "https://github.com/moose/Class-Method-Modifiers/" | ||
8 | |||
9 | LICENSE = "Artistic-1.0 | GPL-1.0-or-later" | ||
10 | LIC_FILES_CHKSUM = "file://LICENSE;md5=d49d07ae038f38923335ac8cc301e1ba" | ||
11 | |||
12 | SRC_URI = "${CPAN_MIRROR}/authors/id/E/ET/ETHER/Class-Method-Modifiers-${PV}.tar.gz" | ||
13 | SRC_URI[sha256sum] = "65cd85bfe475d066e9186f7a8cc636070985b30b0ebb1cde8681cf062c2e15fc" | ||
14 | |||
15 | S = "${WORKDIR}/Class-Method-Modifiers-${PV}" | ||
16 | |||
17 | inherit cpan | ||
18 | |||
19 | RDEPENDS:${PN} = " perl-module-b \ | ||
20 | perl-module-base \ | ||
21 | perl-module-carp \ | ||
22 | perl-module-exporter \ | ||
23 | perl-module-strict \ | ||
24 | perl-module-warnings \ | ||
25 | " | ||
26 | |||
27 | BBCLASSEXTEND = "native" | ||