From: Wes Malone <[email protected]>
Currently, Makefile.PL-built Perl recipes (cpan.bbclass) exclude
.packlist files with NO_PACKLIST=1, but Build.PL recipes
(cpan_build.bbclass) do not. This now results in a QA error due to the
TMPDIR paths included in the .packlist file.
ERROR: x do_package_qa: QA Issue: File [...]/.packlist in package x
contains reference to TMPDIR [buildpaths]
A similar error is produced by generated html doc.
Here we add the corresponding Build.PL arg to disable packlists and html
doc.
Signed-off-by: Wes Malone <[email protected]>
Signed-off-by: Fabien Thomas <[email protected]>
---
meta/classes-recipe/cpan_build.bbclass | 7 +++++++
meta/recipes-devtools/perl/libmodule-build-perl_0.4234.bb | 2 --
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/meta/classes-recipe/cpan_build.bbclass
b/meta/classes-recipe/cpan_build.bbclass
index 026859b6c7..03289dc21c 100644
--- a/meta/classes-recipe/cpan_build.bbclass
+++ b/meta/classes-recipe/cpan_build.bbclass
@@ -25,6 +25,13 @@ cpan_build_do_configure () {
fi
perl Build.PL --installdirs vendor --destdir ${D} \
+ --create_packlist=0 \
+ --config installhtml1dir= \
+ --config installhtml3dir= \
+ --config installsitehtml1dir= \
+ --config installsitehtml3dir= \
+ --config installvendorhtml1dir= \
+ --config installvendorhtml3dir= \
${EXTRA_CPAN_BUILD_FLAGS}
# Build.PLs can exit with success without generating a
diff --git a/meta/recipes-devtools/perl/libmodule-build-perl_0.4234.bb
b/meta/recipes-devtools/perl/libmodule-build-perl_0.4234.bb
index b27a8c15e6..0f992dea6d 100644
--- a/meta/recipes-devtools/perl/libmodule-build-perl_0.4234.bb
+++ b/meta/recipes-devtools/perl/libmodule-build-perl_0.4234.bb
@@ -32,8 +32,6 @@ do_patch_module_build () {
do_patch[postfuncs] += "do_patch_module_build"
-EXTRA_CPAN_BUILD_FLAGS = "--create_packlist=0"
-
do_install:prepend () {
# We do not have a recipe for libpod-parser-perl which is for
# documentation (and is deprecated in favor of Pod::Simple)
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#243366):
https://lists.openembedded.org/g/openembedded-core/message/243366
Mute This Topic: https://lists.openembedded.org/mt/120735233/21656
Group Owner: [email protected]
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-