1eb8dc403SDave Cobbley# ex:ts=4:sw=4:sts=4:et 2eb8dc403SDave Cobbley# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- 3eb8dc403SDave Cobbley# 4eb8dc403SDave Cobbley# This bbclass is used for creating archive for: 5eb8dc403SDave Cobbley# 1) original (or unpacked) source: ARCHIVER_MODE[src] = "original" 6eb8dc403SDave Cobbley# 2) patched source: ARCHIVER_MODE[src] = "patched" (default) 7eb8dc403SDave Cobbley# 3) configured source: ARCHIVER_MODE[src] = "configured" 882c905dcSAndrew Geissler# 4) source mirror: ARCHIVE_MODE[src] = "mirror" 982c905dcSAndrew Geissler# 5) The patches between do_unpack and do_patch: 10eb8dc403SDave Cobbley# ARCHIVER_MODE[diff] = "1" 11eb8dc403SDave Cobbley# And you can set the one that you'd like to exclude from the diff: 12eb8dc403SDave Cobbley# ARCHIVER_MODE[diff-exclude] ?= ".pc autom4te.cache patches" 1382c905dcSAndrew Geissler# 6) The environment data, similar to 'bitbake -e recipe': 14eb8dc403SDave Cobbley# ARCHIVER_MODE[dumpdata] = "1" 1582c905dcSAndrew Geissler# 7) The recipe (.bb and .inc): ARCHIVER_MODE[recipe] = "1" 1682c905dcSAndrew Geissler# 8) Whether output the .src.rpm package: 17eb8dc403SDave Cobbley# ARCHIVER_MODE[srpm] = "1" 1882c905dcSAndrew Geissler# 9) Filter the license, the recipe whose license in 19eb8dc403SDave Cobbley# COPYLEFT_LICENSE_INCLUDE will be included, and in 20eb8dc403SDave Cobbley# COPYLEFT_LICENSE_EXCLUDE will be excluded. 21eb8dc403SDave Cobbley# COPYLEFT_LICENSE_INCLUDE = 'GPL* LGPL*' 22eb8dc403SDave Cobbley# COPYLEFT_LICENSE_EXCLUDE = 'CLOSED Proprietary' 2382c905dcSAndrew Geissler# 10) The recipe type that will be archived: 24eb8dc403SDave Cobbley# COPYLEFT_RECIPE_TYPES = 'target' 2582c905dcSAndrew Geissler# 11) The source mirror mode: 2682c905dcSAndrew Geissler# ARCHIVER_MODE[mirror] = "split" (default): Sources are split into 2782c905dcSAndrew Geissler# per-recipe directories in a similar way to other archiver modes. 2882c905dcSAndrew Geissler# Post-processing may be required to produce a single mirror directory. 2982c905dcSAndrew Geissler# This does however allow inspection of duplicate sources and more 3082c905dcSAndrew Geissler# intelligent handling. 3182c905dcSAndrew Geissler# ARCHIVER_MODE[mirror] = "combined": All sources are placed into a single 3282c905dcSAndrew Geissler# directory suitable for direct use as a mirror. Duplicate sources are 3382c905dcSAndrew Geissler# ignored. 3482c905dcSAndrew Geissler# 12) Source mirror exclusions: 3582c905dcSAndrew Geissler# ARCHIVER_MIRROR_EXCLUDE is a list of prefixes to exclude from the mirror. 3682c905dcSAndrew Geissler# This may be used for sources which you are already publishing yourself 3782c905dcSAndrew Geissler# (e.g. if the URI starts with 'https://mysite.com/' and your mirror is 3882c905dcSAndrew Geissler# going to be published to the same site). It may also be used to exclude 3982c905dcSAndrew Geissler# local files (with the prefix 'file://') if these will be provided as part 4082c905dcSAndrew Geissler# of an archive of the layers themselves. 41eb8dc403SDave Cobbley# 42eb8dc403SDave Cobbley 43eb8dc403SDave Cobbley# Create archive for all the recipe types 44eb8dc403SDave CobbleyCOPYLEFT_RECIPE_TYPES ?= 'target native nativesdk cross crosssdk cross-canadian' 45eb8dc403SDave Cobbleyinherit copyleft_filter 46eb8dc403SDave Cobbley 47eb8dc403SDave CobbleyARCHIVER_MODE[srpm] ?= "0" 48eb8dc403SDave CobbleyARCHIVER_MODE[src] ?= "patched" 49eb8dc403SDave CobbleyARCHIVER_MODE[diff] ?= "0" 50eb8dc403SDave CobbleyARCHIVER_MODE[diff-exclude] ?= ".pc autom4te.cache patches" 51eb8dc403SDave CobbleyARCHIVER_MODE[dumpdata] ?= "0" 52eb8dc403SDave CobbleyARCHIVER_MODE[recipe] ?= "0" 5382c905dcSAndrew GeisslerARCHIVER_MODE[mirror] ?= "split" 54*eff27476SAndrew GeisslerARCHIVER_MODE[compression] ?= "gz" 55eb8dc403SDave Cobbley 56eb8dc403SDave CobbleyDEPLOY_DIR_SRC ?= "${DEPLOY_DIR}/sources" 57f0343792SAndrew GeisslerARCHIVER_TOPDIR ?= "${WORKDIR}/archiver-sources" 58eb8dc403SDave CobbleyARCHIVER_OUTDIR = "${ARCHIVER_TOPDIR}/${TARGET_SYS}/${PF}/" 5919323693SBrad BishopARCHIVER_RPMTOPDIR ?= "${WORKDIR}/deploy-sources-rpm" 6019323693SBrad BishopARCHIVER_RPMOUTDIR = "${ARCHIVER_RPMTOPDIR}/${TARGET_SYS}/${PF}/" 61eb8dc403SDave CobbleyARCHIVER_WORKDIR = "${WORKDIR}/archiver-work/" 62eb8dc403SDave Cobbley 6382c905dcSAndrew Geissler# When producing a combined mirror directory, allow duplicates for the case 6482c905dcSAndrew Geissler# where multiple recipes use the same SRC_URI. 6582c905dcSAndrew GeisslerARCHIVER_COMBINED_MIRRORDIR = "${ARCHIVER_TOPDIR}/mirror" 6682c905dcSAndrew GeisslerSSTATE_DUPWHITELIST += "${DEPLOY_DIR_SRC}/mirror" 6719323693SBrad Bishop 68eb8dc403SDave Cobbleydo_dumpdata[dirs] = "${ARCHIVER_OUTDIR}" 69eb8dc403SDave Cobbleydo_ar_recipe[dirs] = "${ARCHIVER_OUTDIR}" 70eb8dc403SDave Cobbleydo_ar_original[dirs] = "${ARCHIVER_OUTDIR} ${ARCHIVER_WORKDIR}" 71eb8dc403SDave Cobbleydo_deploy_archives[dirs] = "${WORKDIR}" 72eb8dc403SDave Cobbley 73eb8dc403SDave Cobbley# This is a convenience for the shell script to use it 74eb8dc403SDave Cobbley 75eb8dc403SDave Cobbley 76eb8dc403SDave Cobbleypython () { 77eb8dc403SDave Cobbley pn = d.getVar('PN') 78eb8dc403SDave Cobbley assume_provided = (d.getVar("ASSUME_PROVIDED") or "").split() 79eb8dc403SDave Cobbley if pn in assume_provided: 80eb8dc403SDave Cobbley for p in d.getVar("PROVIDES").split(): 81eb8dc403SDave Cobbley if p != pn: 82eb8dc403SDave Cobbley pn = p 83eb8dc403SDave Cobbley break 84eb8dc403SDave Cobbley 85eb8dc403SDave Cobbley included, reason = copyleft_should_include(d) 86eb8dc403SDave Cobbley if not included: 87eb8dc403SDave Cobbley bb.debug(1, 'archiver: %s is excluded: %s' % (pn, reason)) 88eb8dc403SDave Cobbley return 89eb8dc403SDave Cobbley else: 90eb8dc403SDave Cobbley bb.debug(1, 'archiver: %s is included: %s' % (pn, reason)) 91eb8dc403SDave Cobbley 92eb8dc403SDave Cobbley 93eb8dc403SDave Cobbley # glibc-locale: do_fetch, do_unpack and do_patch tasks have been deleted, 94eb8dc403SDave Cobbley # so avoid archiving source here. 95eb8dc403SDave Cobbley if pn.startswith('glibc-locale'): 96eb8dc403SDave Cobbley return 97eb8dc403SDave Cobbley 98eb8dc403SDave Cobbley # We just archive gcc-source for all the gcc related recipes 99eb8dc403SDave Cobbley if d.getVar('BPN') in ['gcc', 'libgcc'] \ 100eb8dc403SDave Cobbley and not pn.startswith('gcc-source'): 101eb8dc403SDave Cobbley bb.debug(1, 'archiver: %s is excluded, covered by gcc-source' % pn) 102eb8dc403SDave Cobbley return 103eb8dc403SDave Cobbley 10479641f25SBrad Bishop def hasTask(task): 10579641f25SBrad Bishop return bool(d.getVarFlag(task, "task", False)) and not bool(d.getVarFlag(task, "noexec", False)) 10679641f25SBrad Bishop 107eb8dc403SDave Cobbley ar_src = d.getVarFlag('ARCHIVER_MODE', 'src') 108eb8dc403SDave Cobbley ar_dumpdata = d.getVarFlag('ARCHIVER_MODE', 'dumpdata') 109eb8dc403SDave Cobbley ar_recipe = d.getVarFlag('ARCHIVER_MODE', 'recipe') 110eb8dc403SDave Cobbley 111eb8dc403SDave Cobbley if ar_src == "original": 112eb8dc403SDave Cobbley d.appendVarFlag('do_deploy_archives', 'depends', ' %s:do_ar_original' % pn) 113eb8dc403SDave Cobbley # 'patched' and 'configured' invoke do_unpack_and_patch because 114eb8dc403SDave Cobbley # do_ar_patched resp. do_ar_configured depend on it, but for 'original' 115eb8dc403SDave Cobbley # we have to add it explicitly. 116eb8dc403SDave Cobbley if d.getVarFlag('ARCHIVER_MODE', 'diff') == '1': 117eb8dc403SDave Cobbley d.appendVarFlag('do_deploy_archives', 'depends', ' %s:do_unpack_and_patch' % pn) 118eb8dc403SDave Cobbley elif ar_src == "patched": 119eb8dc403SDave Cobbley d.appendVarFlag('do_deploy_archives', 'depends', ' %s:do_ar_patched' % pn) 120eb8dc403SDave Cobbley elif ar_src == "configured": 121eb8dc403SDave Cobbley # We can't use "addtask do_ar_configured after do_configure" since it 122c926e17cSAndrew Geissler # will cause the deptask of do_populate_sysroot to run no matter what 123eb8dc403SDave Cobbley # archives we need, so we add the depends here. 124eb8dc403SDave Cobbley 125eb8dc403SDave Cobbley # There is a corner case with "gcc-source-${PV}" recipes, they don't have 126eb8dc403SDave Cobbley # the "do_configure" task, so we need to use "do_preconfigure" 1271a4b7ee2SBrad Bishop if hasTask("do_preconfigure"): 128eb8dc403SDave Cobbley d.appendVarFlag('do_ar_configured', 'depends', ' %s:do_preconfigure' % pn) 1291a4b7ee2SBrad Bishop elif hasTask("do_configure"): 130eb8dc403SDave Cobbley d.appendVarFlag('do_ar_configured', 'depends', ' %s:do_configure' % pn) 131eb8dc403SDave Cobbley d.appendVarFlag('do_deploy_archives', 'depends', ' %s:do_ar_configured' % pn) 13282c905dcSAndrew Geissler elif ar_src == "mirror": 13382c905dcSAndrew Geissler d.appendVarFlag('do_deploy_archives', 'depends', '%s:do_ar_mirror' % pn) 134eb8dc403SDave Cobbley 135eb8dc403SDave Cobbley elif ar_src: 136eb8dc403SDave Cobbley bb.fatal("Invalid ARCHIVER_MODE[src]: %s" % ar_src) 137eb8dc403SDave Cobbley 138eb8dc403SDave Cobbley if ar_dumpdata == "1": 139eb8dc403SDave Cobbley d.appendVarFlag('do_deploy_archives', 'depends', ' %s:do_dumpdata' % pn) 140eb8dc403SDave Cobbley 141eb8dc403SDave Cobbley if ar_recipe == "1": 142eb8dc403SDave Cobbley d.appendVarFlag('do_deploy_archives', 'depends', ' %s:do_ar_recipe' % pn) 143eb8dc403SDave Cobbley 144eb8dc403SDave Cobbley # Output the SRPM package 145eb8dc403SDave Cobbley if d.getVarFlag('ARCHIVER_MODE', 'srpm') == "1" and d.getVar('PACKAGES'): 14679641f25SBrad Bishop if "package_rpm" not in d.getVar('PACKAGE_CLASSES'): 14779641f25SBrad Bishop bb.fatal("ARCHIVER_MODE[srpm] needs package_rpm in PACKAGE_CLASSES") 14879641f25SBrad Bishop 14979641f25SBrad Bishop # Some recipes do not have any packaging tasks 15079641f25SBrad Bishop if hasTask("do_package_write_rpm"): 151eb8dc403SDave Cobbley d.appendVarFlag('do_deploy_archives', 'depends', ' %s:do_package_write_rpm' % pn) 15219323693SBrad Bishop d.appendVarFlag('do_package_write_rpm', 'dirs', ' ${ARCHIVER_RPMTOPDIR}') 15319323693SBrad Bishop d.appendVarFlag('do_package_write_rpm', 'sstate-inputdirs', ' ${ARCHIVER_RPMTOPDIR}') 15419323693SBrad Bishop d.appendVarFlag('do_package_write_rpm', 'sstate-outputdirs', ' ${DEPLOY_DIR_SRC}') 155eb8dc403SDave Cobbley if ar_dumpdata == "1": 156eb8dc403SDave Cobbley d.appendVarFlag('do_package_write_rpm', 'depends', ' %s:do_dumpdata' % pn) 157eb8dc403SDave Cobbley if ar_recipe == "1": 158eb8dc403SDave Cobbley d.appendVarFlag('do_package_write_rpm', 'depends', ' %s:do_ar_recipe' % pn) 159eb8dc403SDave Cobbley if ar_src == "original": 160eb8dc403SDave Cobbley d.appendVarFlag('do_package_write_rpm', 'depends', ' %s:do_ar_original' % pn) 161eb8dc403SDave Cobbley elif ar_src == "patched": 162eb8dc403SDave Cobbley d.appendVarFlag('do_package_write_rpm', 'depends', ' %s:do_ar_patched' % pn) 163eb8dc403SDave Cobbley elif ar_src == "configured": 164eb8dc403SDave Cobbley d.appendVarFlag('do_package_write_rpm', 'depends', ' %s:do_ar_configured' % pn) 165eb8dc403SDave Cobbley} 166eb8dc403SDave Cobbley 167c926e17cSAndrew Geissler# Take all the sources for a recipe and put them in WORKDIR/archiver-work/. 168eb8dc403SDave Cobbley# Files in SRC_URI are copied directly, anything that's a directory 169eb8dc403SDave Cobbley# (e.g. git repositories) is "unpacked" and then put into a tarball. 170eb8dc403SDave Cobbleypython do_ar_original() { 171eb8dc403SDave Cobbley 172eb8dc403SDave Cobbley import shutil, tempfile 173eb8dc403SDave Cobbley 174eb8dc403SDave Cobbley if d.getVarFlag('ARCHIVER_MODE', 'src') != "original": 175eb8dc403SDave Cobbley return 176eb8dc403SDave Cobbley 177eb8dc403SDave Cobbley ar_outdir = d.getVar('ARCHIVER_OUTDIR') 178eb8dc403SDave Cobbley bb.note('Archiving the original source...') 179eb8dc403SDave Cobbley urls = d.getVar("SRC_URI").split() 180eb8dc403SDave Cobbley # destsuffix (git fetcher) and subdir (everything else) are allowed to be 181eb8dc403SDave Cobbley # absolute paths (for example, destsuffix=${S}/foobar). 182eb8dc403SDave Cobbley # That messes with unpacking inside our tmpdir below, because the fetchers 183eb8dc403SDave Cobbley # will then unpack in that directory and completely ignore the tmpdir. 184eb8dc403SDave Cobbley # That breaks parallel tasks relying on ${S}, like do_compile. 185eb8dc403SDave Cobbley # 186eb8dc403SDave Cobbley # To solve this, we remove these parameters from all URLs. 187eb8dc403SDave Cobbley # We do this even for relative paths because it makes the content of the 188eb8dc403SDave Cobbley # archives more useful (no extra paths that are only used during 189eb8dc403SDave Cobbley # compilation). 190eb8dc403SDave Cobbley for i, url in enumerate(urls): 191eb8dc403SDave Cobbley decoded = bb.fetch2.decodeurl(url) 192eb8dc403SDave Cobbley for param in ('destsuffix', 'subdir'): 193eb8dc403SDave Cobbley if param in decoded[5]: 194eb8dc403SDave Cobbley del decoded[5][param] 195eb8dc403SDave Cobbley encoded = bb.fetch2.encodeurl(decoded) 196eb8dc403SDave Cobbley urls[i] = encoded 1971e34c2d0SAndrew Geissler 1981e34c2d0SAndrew Geissler # Cleanup SRC_URI before call bb.fetch2.Fetch() since now SRC_URI is in the 1991e34c2d0SAndrew Geissler # variable "urls", otherwise there might be errors like: 2001e34c2d0SAndrew Geissler # The SRCREV_FORMAT variable must be set when multiple SCMs are used 2011e34c2d0SAndrew Geissler ld = bb.data.createCopy(d) 2021e34c2d0SAndrew Geissler ld.setVar('SRC_URI', '') 2031e34c2d0SAndrew Geissler fetch = bb.fetch2.Fetch(urls, ld) 204eb8dc403SDave Cobbley tarball_suffix = {} 205eb8dc403SDave Cobbley for url in fetch.urls: 206eb8dc403SDave Cobbley local = fetch.localpath(url).rstrip("/"); 207eb8dc403SDave Cobbley if os.path.isfile(local): 208eb8dc403SDave Cobbley shutil.copy(local, ar_outdir) 209eb8dc403SDave Cobbley elif os.path.isdir(local): 210eb8dc403SDave Cobbley tmpdir = tempfile.mkdtemp(dir=d.getVar('ARCHIVER_WORKDIR')) 211eb8dc403SDave Cobbley fetch.unpack(tmpdir, (url,)) 212eb8dc403SDave Cobbley # To handle recipes with more than one source, we add the "name" 213eb8dc403SDave Cobbley # URL parameter as suffix. We treat it as an error when 214eb8dc403SDave Cobbley # there's more than one URL without a name, or a name gets reused. 215eb8dc403SDave Cobbley # This is an additional safety net, in practice the name has 216eb8dc403SDave Cobbley # to be set when using the git fetcher, otherwise SRCREV cannot 217eb8dc403SDave Cobbley # be set separately for each URL. 218eb8dc403SDave Cobbley params = bb.fetch2.decodeurl(url)[5] 219eb8dc403SDave Cobbley type = bb.fetch2.decodeurl(url)[0] 220eb8dc403SDave Cobbley location = bb.fetch2.decodeurl(url)[2] 221eb8dc403SDave Cobbley name = params.get('name', '') 222eb8dc403SDave Cobbley if type.lower() == 'file': 223eb8dc403SDave Cobbley name_tmp = location.rstrip("*").rstrip("/") 224eb8dc403SDave Cobbley name = os.path.basename(name_tmp) 225eb8dc403SDave Cobbley else: 226eb8dc403SDave Cobbley if name in tarball_suffix: 227eb8dc403SDave Cobbley if not name: 228eb8dc403SDave Cobbley bb.fatal("Cannot determine archive names for original source because 'name' URL parameter is unset in more than one URL. Add it to at least one of these: %s %s" % (tarball_suffix[name], url)) 229eb8dc403SDave Cobbley else: 230eb8dc403SDave Cobbley bb.fatal("Cannot determine archive names for original source because 'name=' URL parameter '%s' is used twice. Make it unique in: %s %s" % (tarball_suffix[name], url)) 231eb8dc403SDave Cobbley tarball_suffix[name] = url 232eb8dc403SDave Cobbley create_tarball(d, tmpdir + '/.', name, ar_outdir) 233eb8dc403SDave Cobbley 234eb8dc403SDave Cobbley # Emit patch series files for 'original' 235eb8dc403SDave Cobbley bb.note('Writing patch series files...') 236eb8dc403SDave Cobbley for patch in src_patches(d): 237eb8dc403SDave Cobbley _, _, local, _, _, parm = bb.fetch.decodeurl(patch) 238eb8dc403SDave Cobbley patchdir = parm.get('patchdir') 239eb8dc403SDave Cobbley if patchdir: 240eb8dc403SDave Cobbley series = os.path.join(ar_outdir, 'series.subdir.%s' % patchdir.replace('/', '_')) 241eb8dc403SDave Cobbley else: 242eb8dc403SDave Cobbley series = os.path.join(ar_outdir, 'series') 243eb8dc403SDave Cobbley 244eb8dc403SDave Cobbley with open(series, 'a') as s: 245eb8dc403SDave Cobbley s.write('%s -p%s\n' % (os.path.basename(local), parm['striplevel'])) 246eb8dc403SDave Cobbley} 247eb8dc403SDave Cobbley 248eb8dc403SDave Cobbleypython do_ar_patched() { 249eb8dc403SDave Cobbley 250eb8dc403SDave Cobbley if d.getVarFlag('ARCHIVER_MODE', 'src') != 'patched': 251eb8dc403SDave Cobbley return 252eb8dc403SDave Cobbley 253eb8dc403SDave Cobbley # Get the ARCHIVER_OUTDIR before we reset the WORKDIR 254eb8dc403SDave Cobbley ar_outdir = d.getVar('ARCHIVER_OUTDIR') 255a34c030eSBrad Bishop if not is_work_shared(d): 256eb8dc403SDave Cobbley ar_workdir = d.getVar('ARCHIVER_WORKDIR') 257eb8dc403SDave Cobbley d.setVar('WORKDIR', ar_workdir) 258a34c030eSBrad Bishop bb.note('Archiving the patched source...') 259eb8dc403SDave Cobbley create_tarball(d, d.getVar('S'), 'patched', ar_outdir) 260eb8dc403SDave Cobbley} 261eb8dc403SDave Cobbley 262eb8dc403SDave Cobbleypython do_ar_configured() { 263eb8dc403SDave Cobbley import shutil 264eb8dc403SDave Cobbley 265eb8dc403SDave Cobbley # Forcibly expand the sysroot paths as we're about to change WORKDIR 266eb8dc403SDave Cobbley d.setVar('STAGING_DIR_HOST', d.getVar('STAGING_DIR_HOST')) 267eb8dc403SDave Cobbley d.setVar('STAGING_DIR_TARGET', d.getVar('STAGING_DIR_TARGET')) 268eb8dc403SDave Cobbley d.setVar('RECIPE_SYSROOT', d.getVar('RECIPE_SYSROOT')) 269eb8dc403SDave Cobbley d.setVar('RECIPE_SYSROOT_NATIVE', d.getVar('RECIPE_SYSROOT_NATIVE')) 270eb8dc403SDave Cobbley 271eb8dc403SDave Cobbley ar_outdir = d.getVar('ARCHIVER_OUTDIR') 272eb8dc403SDave Cobbley if d.getVarFlag('ARCHIVER_MODE', 'src') == 'configured': 273eb8dc403SDave Cobbley bb.note('Archiving the configured source...') 274eb8dc403SDave Cobbley pn = d.getVar('PN') 275eb8dc403SDave Cobbley # "gcc-source-${PV}" recipes don't have "do_configure" 276eb8dc403SDave Cobbley # task, so we need to run "do_preconfigure" instead 277eb8dc403SDave Cobbley if pn.startswith("gcc-source-"): 278eb8dc403SDave Cobbley d.setVar('WORKDIR', d.getVar('ARCHIVER_WORKDIR')) 279eb8dc403SDave Cobbley bb.build.exec_func('do_preconfigure', d) 280eb8dc403SDave Cobbley 281eb8dc403SDave Cobbley # The libtool-native's do_configure will remove the 282eb8dc403SDave Cobbley # ${STAGING_DATADIR}/aclocal/libtool.m4, so we can't re-run the 283eb8dc403SDave Cobbley # do_configure, we archive the already configured ${S} to 284eb8dc403SDave Cobbley # instead of. 285213cb269SPatrick Williams # The kernel class functions require it to be on work-shared, we 286213cb269SPatrick Williams # don't unpack, patch, configure again, just archive the already 287213cb269SPatrick Williams # configured ${S} 288213cb269SPatrick Williams elif not (pn == 'libtool-native' or is_work_shared(d)): 2891a4b7ee2SBrad Bishop def runTask(task): 2901a4b7ee2SBrad Bishop prefuncs = d.getVarFlag(task, 'prefuncs') or '' 2911a4b7ee2SBrad Bishop for func in prefuncs.split(): 292eb8dc403SDave Cobbley if func != "sysroot_cleansstate": 293eb8dc403SDave Cobbley bb.build.exec_func(func, d) 2941a4b7ee2SBrad Bishop bb.build.exec_func(task, d) 2951a4b7ee2SBrad Bishop postfuncs = d.getVarFlag(task, 'postfuncs') or '' 2961a4b7ee2SBrad Bishop for func in postfuncs.split(): 2971a4b7ee2SBrad Bishop if func != 'do_qa_configure': 298eb8dc403SDave Cobbley bb.build.exec_func(func, d) 2991a4b7ee2SBrad Bishop 3001a4b7ee2SBrad Bishop # Change the WORKDIR to make do_configure run in another dir. 3011a4b7ee2SBrad Bishop d.setVar('WORKDIR', d.getVar('ARCHIVER_WORKDIR')) 3021a4b7ee2SBrad Bishop 3031a4b7ee2SBrad Bishop preceeds = bb.build.preceedtask('do_configure', False, d) 3041a4b7ee2SBrad Bishop for task in preceeds: 3051a4b7ee2SBrad Bishop if task != 'do_patch' and task != 'do_prepare_recipe_sysroot': 3061a4b7ee2SBrad Bishop runTask(task) 3071a4b7ee2SBrad Bishop runTask('do_configure') 3081a4b7ee2SBrad Bishop 309eb8dc403SDave Cobbley srcdir = d.getVar('S') 310eb8dc403SDave Cobbley builddir = d.getVar('B') 311eb8dc403SDave Cobbley if srcdir != builddir: 312eb8dc403SDave Cobbley if os.path.exists(builddir): 313eb8dc403SDave Cobbley oe.path.copytree(builddir, os.path.join(srcdir, \ 314eb8dc403SDave Cobbley 'build.%s.ar_configured' % d.getVar('PF'))) 315eb8dc403SDave Cobbley create_tarball(d, srcdir, 'configured', ar_outdir) 316eb8dc403SDave Cobbley} 317eb8dc403SDave Cobbley 31882c905dcSAndrew Geisslerpython do_ar_mirror() { 31982c905dcSAndrew Geissler import subprocess 32082c905dcSAndrew Geissler 32182c905dcSAndrew Geissler src_uri = (d.getVar('SRC_URI') or '').split() 32282c905dcSAndrew Geissler if len(src_uri) == 0: 32382c905dcSAndrew Geissler return 32482c905dcSAndrew Geissler 32582c905dcSAndrew Geissler dl_dir = d.getVar('DL_DIR') 32682c905dcSAndrew Geissler mirror_exclusions = (d.getVar('ARCHIVER_MIRROR_EXCLUDE') or '').split() 32782c905dcSAndrew Geissler mirror_mode = d.getVarFlag('ARCHIVER_MODE', 'mirror') 32882c905dcSAndrew Geissler have_mirror_tarballs = d.getVar('BB_GENERATE_MIRROR_TARBALLS') 32982c905dcSAndrew Geissler 33082c905dcSAndrew Geissler if mirror_mode == 'combined': 33182c905dcSAndrew Geissler destdir = d.getVar('ARCHIVER_COMBINED_MIRRORDIR') 33282c905dcSAndrew Geissler elif mirror_mode == 'split': 33382c905dcSAndrew Geissler destdir = d.getVar('ARCHIVER_OUTDIR') 33482c905dcSAndrew Geissler else: 33582c905dcSAndrew Geissler bb.fatal('Invalid ARCHIVER_MODE[mirror]: %s' % (mirror_mode)) 33682c905dcSAndrew Geissler 33782c905dcSAndrew Geissler if not have_mirror_tarballs: 33882c905dcSAndrew Geissler bb.fatal('Using `ARCHIVER_MODE[src] = "mirror"` depends on setting `BB_GENERATE_MIRROR_TARBALLS = "1"`') 33982c905dcSAndrew Geissler 34082c905dcSAndrew Geissler def is_excluded(url): 34182c905dcSAndrew Geissler for prefix in mirror_exclusions: 34282c905dcSAndrew Geissler if url.startswith(prefix): 34382c905dcSAndrew Geissler return True 34482c905dcSAndrew Geissler return False 34582c905dcSAndrew Geissler 34682c905dcSAndrew Geissler bb.note('Archiving the source as a mirror...') 34782c905dcSAndrew Geissler 34882c905dcSAndrew Geissler bb.utils.mkdirhier(destdir) 34982c905dcSAndrew Geissler 35082c905dcSAndrew Geissler fetcher = bb.fetch2.Fetch(src_uri, d) 35182c905dcSAndrew Geissler 3525a43b434SAndrew Geissler for ud in fetcher.expanded_urldata(): 3535a43b434SAndrew Geissler if is_excluded(ud.url): 3545a43b434SAndrew Geissler bb.note('Skipping excluded url: %s' % (ud.url)) 35582c905dcSAndrew Geissler continue 35682c905dcSAndrew Geissler 3575a43b434SAndrew Geissler bb.note('Archiving url: %s' % (ud.url)) 35882c905dcSAndrew Geissler ud.setup_localpath(d) 35982c905dcSAndrew Geissler localpath = None 36082c905dcSAndrew Geissler 36182c905dcSAndrew Geissler # Check for mirror tarballs first. We will archive the first mirror 36282c905dcSAndrew Geissler # tarball that we find as it's assumed that we just need one. 36382c905dcSAndrew Geissler for mirror_fname in ud.mirrortarballs: 36482c905dcSAndrew Geissler mirror_path = os.path.join(dl_dir, mirror_fname) 36582c905dcSAndrew Geissler if os.path.exists(mirror_path): 36682c905dcSAndrew Geissler bb.note('Found mirror tarball: %s' % (mirror_path)) 36782c905dcSAndrew Geissler localpath = mirror_path 36882c905dcSAndrew Geissler break 36982c905dcSAndrew Geissler 37082c905dcSAndrew Geissler if len(ud.mirrortarballs) and not localpath: 37182c905dcSAndrew Geissler bb.warn('Mirror tarballs are listed for a source but none are present. ' \ 37282c905dcSAndrew Geissler 'Falling back to original download.\n' \ 3735a43b434SAndrew Geissler 'SRC_URI = %s' % (ud.url)) 37482c905dcSAndrew Geissler 37582c905dcSAndrew Geissler # Check original download 37682c905dcSAndrew Geissler if not localpath: 37782c905dcSAndrew Geissler bb.note('Using original download: %s' % (ud.localpath)) 37882c905dcSAndrew Geissler localpath = ud.localpath 37982c905dcSAndrew Geissler 38082c905dcSAndrew Geissler if not localpath or not os.path.exists(localpath): 38182c905dcSAndrew Geissler bb.fatal('Original download is missing for a source.\n' \ 3825a43b434SAndrew Geissler 'SRC_URI = %s' % (ud.url)) 38382c905dcSAndrew Geissler 38482c905dcSAndrew Geissler # We now have an appropriate localpath 38582c905dcSAndrew Geissler bb.note('Copying source mirror') 38682c905dcSAndrew Geissler cmd = 'cp -fpPRH %s %s' % (localpath, destdir) 38782c905dcSAndrew Geissler subprocess.check_call(cmd, shell=True) 38882c905dcSAndrew Geissler} 38982c905dcSAndrew Geissler 390c4ea075dSBrad Bishopdef exclude_useless_paths(tarinfo): 391c4ea075dSBrad Bishop if tarinfo.isdir(): 392c4ea075dSBrad Bishop if tarinfo.name.endswith('/temp') or tarinfo.name.endswith('/patches') or tarinfo.name.endswith('/.pc'): 393c4ea075dSBrad Bishop return None 394c4ea075dSBrad Bishop elif tarinfo.name == 'temp' or tarinfo.name == 'patches' or tarinfo.name == '.pc': 395c4ea075dSBrad Bishop return None 396c4ea075dSBrad Bishop return tarinfo 397c4ea075dSBrad Bishop 398eb8dc403SDave Cobbleydef create_tarball(d, srcdir, suffix, ar_outdir): 399eb8dc403SDave Cobbley """ 400eb8dc403SDave Cobbley create the tarball from srcdir 401eb8dc403SDave Cobbley """ 402eb8dc403SDave Cobbley import tarfile 403eb8dc403SDave Cobbley 404eb8dc403SDave Cobbley # Make sure we are only creating a single tarball for gcc sources 405eb8dc403SDave Cobbley if (d.getVar('SRC_URI') == ""): 406eb8dc403SDave Cobbley return 407eb8dc403SDave Cobbley 408eb8dc403SDave Cobbley # For the kernel archive, srcdir may just be a link to the 409eb8dc403SDave Cobbley # work-shared location. Use os.path.realpath to make sure 410eb8dc403SDave Cobbley # that we archive the actual directory and not just the link. 411eb8dc403SDave Cobbley srcdir = os.path.realpath(srcdir) 412eb8dc403SDave Cobbley 413*eff27476SAndrew Geissler compression_method = d.getVarFlag('ARCHIVER_MODE', 'compression') 414eb8dc403SDave Cobbley bb.utils.mkdirhier(ar_outdir) 415eb8dc403SDave Cobbley if suffix: 416*eff27476SAndrew Geissler filename = '%s-%s.tar.%s' % (d.getVar('PF'), suffix, compression_method) 417eb8dc403SDave Cobbley else: 418*eff27476SAndrew Geissler filename = '%s.tar.%s' % (d.getVar('PF'), compression_method) 419eb8dc403SDave Cobbley tarname = os.path.join(ar_outdir, filename) 420eb8dc403SDave Cobbley 421eb8dc403SDave Cobbley bb.note('Creating %s' % tarname) 422*eff27476SAndrew Geissler tar = tarfile.open(tarname, 'w:%s' % compression_method) 423c4ea075dSBrad Bishop tar.add(srcdir, arcname=os.path.basename(srcdir), filter=exclude_useless_paths) 424eb8dc403SDave Cobbley tar.close() 425eb8dc403SDave Cobbley 426eb8dc403SDave Cobbley# creating .diff.gz between source.orig and source 427eb8dc403SDave Cobbleydef create_diff_gz(d, src_orig, src, ar_outdir): 428eb8dc403SDave Cobbley 429eb8dc403SDave Cobbley import subprocess 430eb8dc403SDave Cobbley 431eb8dc403SDave Cobbley if not os.path.isdir(src) or not os.path.isdir(src_orig): 432eb8dc403SDave Cobbley return 433eb8dc403SDave Cobbley 434eb8dc403SDave Cobbley # The diff --exclude can't exclude the file with path, so we copy 435eb8dc403SDave Cobbley # the patched source, and remove the files that we'd like to 436eb8dc403SDave Cobbley # exclude. 437eb8dc403SDave Cobbley src_patched = src + '.patched' 438eb8dc403SDave Cobbley oe.path.copyhardlinktree(src, src_patched) 439eb8dc403SDave Cobbley for i in d.getVarFlag('ARCHIVER_MODE', 'diff-exclude').split(): 440eb8dc403SDave Cobbley bb.utils.remove(os.path.join(src_orig, i), recurse=True) 441eb8dc403SDave Cobbley bb.utils.remove(os.path.join(src_patched, i), recurse=True) 442eb8dc403SDave Cobbley 443eb8dc403SDave Cobbley dirname = os.path.dirname(src) 444eb8dc403SDave Cobbley basename = os.path.basename(src) 445eb8dc403SDave Cobbley bb.utils.mkdirhier(ar_outdir) 446eb8dc403SDave Cobbley cwd = os.getcwd() 447eb8dc403SDave Cobbley try: 448eb8dc403SDave Cobbley os.chdir(dirname) 449eb8dc403SDave Cobbley out_file = os.path.join(ar_outdir, '%s-diff.gz' % d.getVar('PF')) 450eb8dc403SDave Cobbley diff_cmd = 'diff -Naur %s.orig %s.patched | gzip -c > %s' % (basename, basename, out_file) 451eb8dc403SDave Cobbley subprocess.check_call(diff_cmd, shell=True) 452eb8dc403SDave Cobbley bb.utils.remove(src_patched, recurse=True) 453eb8dc403SDave Cobbley finally: 454eb8dc403SDave Cobbley os.chdir(cwd) 455eb8dc403SDave Cobbley 456eb8dc403SDave Cobbleydef is_work_shared(d): 457eb8dc403SDave Cobbley pn = d.getVar('PN') 458eb8dc403SDave Cobbley return bb.data.inherits_class('kernel', d) or pn.startswith('gcc-source') 459eb8dc403SDave Cobbley 460eb8dc403SDave Cobbley# Run do_unpack and do_patch 461eb8dc403SDave Cobbleypython do_unpack_and_patch() { 462eb8dc403SDave Cobbley if d.getVarFlag('ARCHIVER_MODE', 'src') not in \ 463eb8dc403SDave Cobbley [ 'patched', 'configured'] and \ 464eb8dc403SDave Cobbley d.getVarFlag('ARCHIVER_MODE', 'diff') != '1': 465eb8dc403SDave Cobbley return 466eb8dc403SDave Cobbley ar_outdir = d.getVar('ARCHIVER_OUTDIR') 467eb8dc403SDave Cobbley ar_workdir = d.getVar('ARCHIVER_WORKDIR') 468eb8dc403SDave Cobbley ar_sysroot_native = d.getVar('STAGING_DIR_NATIVE') 469eb8dc403SDave Cobbley pn = d.getVar('PN') 470eb8dc403SDave Cobbley 471c926e17cSAndrew Geissler # The kernel class functions require it to be on work-shared, so we don't change WORKDIR 472eb8dc403SDave Cobbley if not is_work_shared(d): 473eb8dc403SDave Cobbley # Change the WORKDIR to make do_unpack do_patch run in another dir. 474eb8dc403SDave Cobbley d.setVar('WORKDIR', ar_workdir) 475eb8dc403SDave Cobbley # Restore the original path to recipe's native sysroot (it's relative to WORKDIR). 476eb8dc403SDave Cobbley d.setVar('STAGING_DIR_NATIVE', ar_sysroot_native) 477eb8dc403SDave Cobbley 478eb8dc403SDave Cobbley # The changed 'WORKDIR' also caused 'B' changed, create dir 'B' for the 479eb8dc403SDave Cobbley # possibly requiring of the following tasks (such as some recipes's 480eb8dc403SDave Cobbley # do_patch required 'B' existed). 481eb8dc403SDave Cobbley bb.utils.mkdirhier(d.getVar('B')) 482eb8dc403SDave Cobbley 483eb8dc403SDave Cobbley bb.build.exec_func('do_unpack', d) 484eb8dc403SDave Cobbley 485eb8dc403SDave Cobbley # Save the original source for creating the patches 486eb8dc403SDave Cobbley if d.getVarFlag('ARCHIVER_MODE', 'diff') == '1': 487eb8dc403SDave Cobbley src = d.getVar('S').rstrip('/') 488eb8dc403SDave Cobbley src_orig = '%s.orig' % src 489eb8dc403SDave Cobbley oe.path.copytree(src, src_orig) 490eb8dc403SDave Cobbley 491213cb269SPatrick Williams if bb.data.inherits_class('dos2unix', d): 492213cb269SPatrick Williams bb.build.exec_func('do_convert_crlf_to_lf', d) 493213cb269SPatrick Williams 494eb8dc403SDave Cobbley # Make sure gcc and kernel sources are patched only once 495eb8dc403SDave Cobbley if not (d.getVar('SRC_URI') == "" or is_work_shared(d)): 496eb8dc403SDave Cobbley bb.build.exec_func('do_patch', d) 497eb8dc403SDave Cobbley 498eb8dc403SDave Cobbley # Create the patches 499eb8dc403SDave Cobbley if d.getVarFlag('ARCHIVER_MODE', 'diff') == '1': 500eb8dc403SDave Cobbley bb.note('Creating diff gz...') 501eb8dc403SDave Cobbley create_diff_gz(d, src_orig, src, ar_outdir) 502eb8dc403SDave Cobbley bb.utils.remove(src_orig, recurse=True) 503eb8dc403SDave Cobbley} 504eb8dc403SDave Cobbley 505eb8dc403SDave Cobbley# BBINCLUDED is special (excluded from basehash signature 506eb8dc403SDave Cobbley# calculation). Using it in a task signature can cause "basehash 507eb8dc403SDave Cobbley# changed" errors. 508eb8dc403SDave Cobbley# 509eb8dc403SDave Cobbley# Depending on BBINCLUDED also causes do_ar_recipe to run again 510eb8dc403SDave Cobbley# for unrelated changes, like adding or removing buildhistory.bbclass. 511eb8dc403SDave Cobbley# 512eb8dc403SDave Cobbley# For these reasons we ignore the dependency completely. The versioning 513eb8dc403SDave Cobbley# of the output file ensures that we create it each time the recipe 514eb8dc403SDave Cobbley# gets rebuilt, at least as long as a PR server is used. We also rely 515eb8dc403SDave Cobbley# on that mechanism to catch changes in the file content, because the 516c926e17cSAndrew Geissler# file content is not part of the task signature either. 517eb8dc403SDave Cobbleydo_ar_recipe[vardepsexclude] += "BBINCLUDED" 518eb8dc403SDave Cobbleypython do_ar_recipe () { 519eb8dc403SDave Cobbley """ 520eb8dc403SDave Cobbley archive the recipe, including .bb and .inc. 521eb8dc403SDave Cobbley """ 522eb8dc403SDave Cobbley import re 523eb8dc403SDave Cobbley import shutil 524eb8dc403SDave Cobbley 525eb8dc403SDave Cobbley require_re = re.compile( r"require\s+(.+)" ) 526eb8dc403SDave Cobbley include_re = re.compile( r"include\s+(.+)" ) 527eb8dc403SDave Cobbley bbfile = d.getVar('FILE') 528eb8dc403SDave Cobbley outdir = os.path.join(d.getVar('WORKDIR'), \ 529eb8dc403SDave Cobbley '%s-recipe' % d.getVar('PF')) 530eb8dc403SDave Cobbley bb.utils.mkdirhier(outdir) 531eb8dc403SDave Cobbley shutil.copy(bbfile, outdir) 532eb8dc403SDave Cobbley 533eb8dc403SDave Cobbley pn = d.getVar('PN') 534eb8dc403SDave Cobbley bbappend_files = d.getVar('BBINCLUDED').split() 535eb8dc403SDave Cobbley # If recipe name is aa, we need to match files like aa.bbappend and aa_1.1.bbappend 536eb8dc403SDave Cobbley # Files like aa1.bbappend or aa1_1.1.bbappend must be excluded. 537eb8dc403SDave Cobbley bbappend_re = re.compile( r".*/%s_[^/]*\.bbappend$" % re.escape(pn)) 538eb8dc403SDave Cobbley bbappend_re1 = re.compile( r".*/%s\.bbappend$" % re.escape(pn)) 539eb8dc403SDave Cobbley for file in bbappend_files: 540eb8dc403SDave Cobbley if bbappend_re.match(file) or bbappend_re1.match(file): 541eb8dc403SDave Cobbley shutil.copy(file, outdir) 542eb8dc403SDave Cobbley 543eb8dc403SDave Cobbley dirname = os.path.dirname(bbfile) 544eb8dc403SDave Cobbley bbpath = '%s:%s' % (dirname, d.getVar('BBPATH')) 545eb8dc403SDave Cobbley f = open(bbfile, 'r') 546eb8dc403SDave Cobbley for line in f.readlines(): 547eb8dc403SDave Cobbley incfile = None 548eb8dc403SDave Cobbley if require_re.match(line): 549eb8dc403SDave Cobbley incfile = require_re.match(line).group(1) 550eb8dc403SDave Cobbley elif include_re.match(line): 551eb8dc403SDave Cobbley incfile = include_re.match(line).group(1) 552eb8dc403SDave Cobbley if incfile: 553eb8dc403SDave Cobbley incfile = d.expand(incfile) 5541d80a2eaSBrad Bishop if incfile: 555eb8dc403SDave Cobbley incfile = bb.utils.which(bbpath, incfile) 556eb8dc403SDave Cobbley if incfile: 557eb8dc403SDave Cobbley shutil.copy(incfile, outdir) 558eb8dc403SDave Cobbley 559eb8dc403SDave Cobbley create_tarball(d, outdir, 'recipe', d.getVar('ARCHIVER_OUTDIR')) 560eb8dc403SDave Cobbley bb.utils.remove(outdir, recurse=True) 561eb8dc403SDave Cobbley} 562eb8dc403SDave Cobbley 563eb8dc403SDave Cobbleypython do_dumpdata () { 564eb8dc403SDave Cobbley """ 565eb8dc403SDave Cobbley dump environment data to ${PF}-showdata.dump 566eb8dc403SDave Cobbley """ 567eb8dc403SDave Cobbley 568eb8dc403SDave Cobbley dumpfile = os.path.join(d.getVar('ARCHIVER_OUTDIR'), \ 569eb8dc403SDave Cobbley '%s-showdata.dump' % d.getVar('PF')) 570eb8dc403SDave Cobbley bb.note('Dumping metadata into %s' % dumpfile) 571eb8dc403SDave Cobbley with open(dumpfile, "w") as f: 572eb8dc403SDave Cobbley # emit variables and shell functions 573eb8dc403SDave Cobbley bb.data.emit_env(f, d, True) 574eb8dc403SDave Cobbley # emit the metadata which isn't valid shell 575eb8dc403SDave Cobbley for e in d.keys(): 576eb8dc403SDave Cobbley if d.getVarFlag(e, "python", False): 577eb8dc403SDave Cobbley f.write("\npython %s () {\n%s}\n" % (e, d.getVar(e, False))) 578eb8dc403SDave Cobbley} 579eb8dc403SDave Cobbley 580eb8dc403SDave CobbleySSTATETASKS += "do_deploy_archives" 581eb8dc403SDave Cobbleydo_deploy_archives () { 582eb8dc403SDave Cobbley echo "Deploying source archive files from ${ARCHIVER_TOPDIR} to ${DEPLOY_DIR_SRC}." 583eb8dc403SDave Cobbley} 584eb8dc403SDave Cobbleypython do_deploy_archives_setscene () { 585eb8dc403SDave Cobbley sstate_setscene(d) 586eb8dc403SDave Cobbley} 587eb8dc403SDave Cobbleydo_deploy_archives[dirs] = "${ARCHIVER_TOPDIR}" 588eb8dc403SDave Cobbleydo_deploy_archives[sstate-inputdirs] = "${ARCHIVER_TOPDIR}" 589eb8dc403SDave Cobbleydo_deploy_archives[sstate-outputdirs] = "${DEPLOY_DIR_SRC}" 590eb8dc403SDave Cobbleyaddtask do_deploy_archives_setscene 591eb8dc403SDave Cobbley 592eb8dc403SDave Cobbleyaddtask do_ar_original after do_unpack 593475cb72dSAndrew Geissleraddtask do_unpack_and_patch after do_patch do_preconfigure 594475cb72dSAndrew Geissleraddtask do_ar_patched after do_unpack_and_patch 595eb8dc403SDave Cobbleyaddtask do_ar_configured after do_unpack_and_patch 59682c905dcSAndrew Geissleraddtask do_ar_mirror after do_fetch 597eb8dc403SDave Cobbleyaddtask do_dumpdata 598eb8dc403SDave Cobbleyaddtask do_ar_recipe 5991e34c2d0SAndrew Geissleraddtask do_deploy_archives 6001e34c2d0SAndrew Geisslerdo_build[recrdeptask] += "do_deploy_archives" 601d1e89497SAndrew Geisslerdo_rootfs[recrdeptask] += "do_deploy_archives" 6021e34c2d0SAndrew Geisslerdo_populate_sdk[recrdeptask] += "do_deploy_archives" 603eb8dc403SDave Cobbley 604eb8dc403SDave Cobbleypython () { 605eb8dc403SDave Cobbley # Add tasks in the correct order, specifically for linux-yocto to avoid race condition. 606eb8dc403SDave Cobbley # sstatesig.py:sstate_rundepfilter has special support that excludes this dependency 607eb8dc403SDave Cobbley # so that do_kernel_configme does not need to run again when do_unpack_and_patch 608eb8dc403SDave Cobbley # gets added or removed (by adding or removing archiver.bbclass). 609eb8dc403SDave Cobbley if bb.data.inherits_class('kernel-yocto', d): 610eb8dc403SDave Cobbley bb.build.addtask('do_kernel_configme', 'do_configure', 'do_unpack_and_patch', d) 611eb8dc403SDave Cobbley} 612