mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
archiver: move exclusion logic in a dedicated function
Extending archiver is not possible without duplicating the anonymous function's logic. Move this logic in a separate function "include_package" which returns a bool. (From OE-Core rev: 292c626526b2ba6d3a66463c0c7ab59eb8903ab4) Signed-off-by: Antonin Godard <antoningodard@pm.me> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
08d26fb375
commit
08c4b7f46d
@@ -76,6 +76,28 @@ do_ar_original[dirs] = "${ARCHIVER_OUTDIR} ${ARCHIVER_WORKDIR}"
|
||||
|
||||
# This is a convenience for the shell script to use it
|
||||
|
||||
def include_package(d, pn):
|
||||
|
||||
included, reason = copyleft_should_include(d)
|
||||
if not included:
|
||||
bb.debug(1, 'archiver: %s is excluded: %s' % (pn, reason))
|
||||
return False
|
||||
|
||||
else:
|
||||
bb.debug(1, 'archiver: %s is included: %s' % (pn, reason))
|
||||
|
||||
# glibc-locale: do_fetch, do_unpack and do_patch tasks have been deleted,
|
||||
# so avoid archiving source here.
|
||||
if pn.startswith('glibc-locale'):
|
||||
return False
|
||||
|
||||
# We just archive gcc-source for all the gcc related recipes
|
||||
if d.getVar('BPN') in ['gcc', 'libgcc'] \
|
||||
and not pn.startswith('gcc-source'):
|
||||
bb.debug(1, 'archiver: %s is excluded, covered by gcc-source' % pn)
|
||||
return False
|
||||
|
||||
return True
|
||||
|
||||
python () {
|
||||
pn = d.getVar('PN')
|
||||
@@ -86,23 +108,7 @@ python () {
|
||||
pn = p
|
||||
break
|
||||
|
||||
included, reason = copyleft_should_include(d)
|
||||
if not included:
|
||||
bb.debug(1, 'archiver: %s is excluded: %s' % (pn, reason))
|
||||
return
|
||||
else:
|
||||
bb.debug(1, 'archiver: %s is included: %s' % (pn, reason))
|
||||
|
||||
|
||||
# glibc-locale: do_fetch, do_unpack and do_patch tasks have been deleted,
|
||||
# so avoid archiving source here.
|
||||
if pn.startswith('glibc-locale'):
|
||||
return
|
||||
|
||||
# We just archive gcc-source for all the gcc related recipes
|
||||
if d.getVar('BPN') in ['gcc', 'libgcc'] \
|
||||
and not pn.startswith('gcc-source'):
|
||||
bb.debug(1, 'archiver: %s is excluded, covered by gcc-source' % pn)
|
||||
if not include_package(d, pn):
|
||||
return
|
||||
|
||||
# TARGET_SYS in ARCHIVER_ARCH will break the stamp for gcc-source in multiconfig
|
||||
|
||||
Reference in New Issue
Block a user