Lines Matching refs:localdata
278 localdata = d.createCopy()
279 localdata.setVar('OVERRIDES', d.getVar("OVERRIDES", False) + ":" + pkg)
281 pkge = localdata.getVar("PKGE") or '0'
282 pkgv = localdata.getVar("PKGV")
283 pkgr = localdata.getVar("PKGR")
300 pkginfo.pe = localdata.getVar("PE") or '0'
301 pkginfo.pv = localdata.getVar("PV")
302 pkginfo.pr = localdata.getVar("PR")
303 pkginfo.pkg = localdata.getVar("PKG")
307 pkginfo.rprovides = sortpkglist(oe.utils.squashspaces(localdata.getVar("RPROVIDES") or ""))
308 pkginfo.rdepends = sortpkglist(oe.utils.squashspaces(localdata.getVar("RDEPENDS") or ""))
309 … pkginfo.rrecommends = sortpkglist(oe.utils.squashspaces(localdata.getVar("RRECOMMENDS") or ""))
310 pkginfo.rsuggests = sortpkglist(oe.utils.squashspaces(localdata.getVar("RSUGGESTS") or ""))
311 pkginfo.replaces = sortpkglist(oe.utils.squashspaces(localdata.getVar("RREPLACES") or ""))
312 … pkginfo.rconflicts = sortpkglist(oe.utils.squashspaces(localdata.getVar("RCONFLICTS") or ""))
313 pkginfo.files = oe.utils.squashspaces(localdata.getVar("FILES") or "")
315 pkginfo.filevars[filevar] = localdata.getVar(filevar) or ""
318 val = localdata.getVar('FILES_INFO') or ''
324 pkginfo.size = int(localdata.getVar('PKGSIZE') or '0')
730 localdata = bb.data.createCopy(d)
732 for func in oe.data.typed_value('BUILDCFG_FUNCS', localdata):
737 flines = g[func](localdata)
914 localdata = bb.data.createCopy(e.data)
915 localdata.setVar('BUILDHISTORY_BUILD_FAILURES', str(e._failures))
917 localdata.setVar('BUILDHISTORY_BUILD_INTERRUPTED', str(interrupted))
918 bb.build.exec_func("buildhistory_commit", localdata)