diff options
author | Tim Orling <ticotimo@gmail.com> | 2023-05-03 08:39:14 -0700 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2023-05-31 04:08:11 -1000 |
commit | f7bac403bf63e009a701062be76d6b464226a991 (patch) | |
tree | 1c2f017ddd4cb57b253d8324d3c884142351b91e | |
parent | 6939fd2304a1025fb122b142aa54108cb7a6a6d0 (diff) | |
download | poky-f7bac403bf63e009a701062be76d6b464226a991.tar.gz |
libmodule-build-perl: upgrade 0.4232 -> 0.4234
* Skip t/pod_parser.t ptest since it is for testing
documentation and requires Pod::Parser for which
we do not have a recipe. Adding one does not make
much sense since Pod::Parser was dropped from
Perl > 5.31.1 in favor of Pod::Simple
https://metacpan.org/pod/Pod::Parser#DESCRIPTION
Changes:
https://metacpan.org/dist/Module-Build/changes
0.4234 - Fri 28 Apr 2023 10:46:26 CEST
- PodParser now respects =encoding directives
- Don't use libraries in t/bundled for Build.PL
- make_tarball: workaround for broken tar on Darwin
- Respect $Config{man1ext}/$Config{man3ext}
- Do not require a compiler if c_source is an empty list
(From OE-Core rev: ae5f966898c1ca1e308b77c4591dfa499613ad57)
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c3b97f6d74b67706fbbc8685e8060566b815630d)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r-- | meta/recipes-devtools/perl/libmodule-build-perl_0.4234.bb (renamed from meta/recipes-devtools/perl/libmodule-build-perl_0.4232.bb) | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/meta/recipes-devtools/perl/libmodule-build-perl_0.4232.bb b/meta/recipes-devtools/perl/libmodule-build-perl_0.4234.bb index 0ead690067..b57618724d 100644 --- a/meta/recipes-devtools/perl/libmodule-build-perl_0.4232.bb +++ b/meta/recipes-devtools/perl/libmodule-build-perl_0.4234.bb | |||
@@ -16,7 +16,7 @@ LIC_FILES_CHKSUM = "file://README;beginline=881;endline=886;md5=3027f56c664545e5 | |||
16 | SRC_URI = "${CPAN_MIRROR}/authors/id/L/LE/LEONT/Module-Build-${PV}.tar.gz \ | 16 | SRC_URI = "${CPAN_MIRROR}/authors/id/L/LE/LEONT/Module-Build-${PV}.tar.gz \ |
17 | file://run-ptest \ | 17 | file://run-ptest \ |
18 | " | 18 | " |
19 | SRC_URI[sha256sum] = "67c82ee245d94ba06decfa25572ab75fdcd26a9009094289d8f45bc54041771b" | 19 | SRC_URI[sha256sum] = "66aeac6127418be5e471ead3744648c766bd01482825c5b66652675f2bc86a8f" |
20 | 20 | ||
21 | S = "${WORKDIR}/Module-Build-${PV}" | 21 | S = "${WORKDIR}/Module-Build-${PV}" |
22 | 22 | ||
@@ -34,6 +34,12 @@ do_patch[postfuncs] += "do_patch_module_build" | |||
34 | 34 | ||
35 | EXTRA_CPAN_BUILD_FLAGS = "--create_packlist=0" | 35 | EXTRA_CPAN_BUILD_FLAGS = "--create_packlist=0" |
36 | 36 | ||
37 | do_install:prepend () { | ||
38 | # We do not have a recipe for libpod-parser-perl which is for | ||
39 | # documentation (and is deprecated in favor of Pod::Simple) | ||
40 | rm -rf ${B}/t/pod_parser.t | ||
41 | } | ||
42 | |||
37 | do_install:append () { | 43 | do_install:append () { |
38 | rm -rf ${D}${docdir}/perl/html | 44 | rm -rf ${D}${docdir}/perl/html |
39 | sed -i "s:^#!.*:#!/usr/bin/env perl:" ${D}${bindir}/config_data | 45 | sed -i "s:^#!.*:#!/usr/bin/env perl:" ${D}${bindir}/config_data |