diff options
author | Tim Orling <timothy.t.orling@linux.intel.com> | 2020-02-25 15:46:03 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-29 13:04:49 +0000 |
commit | 838d91d459bc6b0465cbc75be55fb4e20890e700 (patch) | |
tree | fc30e5079005843f12351d0ad44d11d2e4ce142c /meta | |
parent | fc77128b7362a98a73ca2c66098616df66b73458 (diff) | |
download | poky-838d91d459bc6b0465cbc75be55fb4e20890e700.tar.gz |
libmodule-build-perl: upgrade 0.4229 -> 0.4231
Upstream release notes:
"
0.4231 - Wed Jan 29 08:47:56 CET 2020
- Released 0.42_30 without code changes
0.42_30 - Wed Jul 31 13:15:39 CEST 2019
- Add dependency on ExtUtils::PL2Bat
"
Add ptest RDEPENDS:
- ExtUtils::Command::MM for t/compat.t
- gcc, make didn't seem like enough for ptest, replace with
packagegroup-core-buildessential which definitely works
- perl-dev for EXTERN.h in t/xs.t
Add INSANE_SKIP dev-deps for the -ptest package because of perl-dev
Five tests from t/help.t are skipped because they are TODO
t/par.t is skipped because PAR::Dist (0.17+) is not present
t/ppm.t is skipped because "HTML support not installed"
All other tests pass.
(From OE-Core rev: 7c22dc2e34af2530a73f3af2876f0f5f5b65c7c8)
Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/perl/libmodule-build-perl_0.4231.bb (renamed from meta/recipes-devtools/perl/libmodule-build-perl_0.4229.bb) | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/meta/recipes-devtools/perl/libmodule-build-perl_0.4229.bb b/meta/recipes-devtools/perl/libmodule-build-perl_0.4231.bb index e3ba40d96c..b1967c7b03 100644 --- a/meta/recipes-devtools/perl/libmodule-build-perl_0.4229.bb +++ b/meta/recipes-devtools/perl/libmodule-build-perl_0.4231.bb | |||
@@ -15,9 +15,9 @@ LIC_FILES_CHKSUM = "file://README;beginline=949;endline=954;md5=624c06db56a2af4d | |||
15 | 15 | ||
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[md5sum] = "1447d9e02e63f7a1643986789a8f1ba9" | 19 | SRC_URI[md5sum] = "066b193e461d7dfe1eca17a139353001" |
20 | SRC_URI[sha256sum] = "1fe491a6cda914b01bc8e592faa2b5404e9f35915ca15322f8f2a8d8f9008c18" | 20 | SRC_URI[sha256sum] = "7e0f4c692c1740c1ac84ea14d7ea3d8bc798b2fb26c09877229e04f430b2b717" |
21 | 21 | ||
22 | S = "${WORKDIR}/Module-Build-${PV}" | 22 | S = "${WORKDIR}/Module-Build-${PV}" |
23 | 23 | ||
@@ -75,9 +75,10 @@ RDEPENDS_${PN} += " \ | |||
75 | " | 75 | " |
76 | 76 | ||
77 | RDEPENDS_${PN}-ptest += " \ | 77 | RDEPENDS_${PN}-ptest += " \ |
78 | gcc \ | 78 | packagegroup-core-buildessential \ |
79 | make \ | 79 | perl-dev \ |
80 | perl-module-blib \ | 80 | perl-module-blib \ |
81 | perl-module-extutils-command-mm \ | ||
81 | perl-module-file-temp \ | 82 | perl-module-file-temp \ |
82 | perl-module-lib \ | 83 | perl-module-lib \ |
83 | perl-module-perlio \ | 84 | perl-module-perlio \ |
@@ -103,4 +104,7 @@ RPROVIDES_${PN} += "\ | |||
103 | libmodule-build-podparser-perl \ | 104 | libmodule-build-podparser-perl \ |
104 | " | 105 | " |
105 | 106 | ||
107 | # t/xs.t RDEPENDS on "EXTERN.h" provided by perl-dev | ||
108 | INSANE_SKIP_${PN}-ptest = "dev-deps" | ||
109 | |||
106 | BBCLASSEXTEND = "native" | 110 | BBCLASSEXTEND = "native" |