Lines Matching refs:newpv
60 def _rename_recipe_dirs(oldpv, newpv, path): argument
65 newdir = olddir.replace(oldpv, newpv)
72 newfile = oldfile.replace(oldpv, newpv)
77 def _rename_recipe_file(oldrecipe, bpn, oldpv, newpv, path): argument
80 newrecipe = '%s_%s.bb' % (bpn, newpv)
87 def _rename_recipe_files(oldrecipe, bpn, oldpv, newpv, path): argument
88 _rename_recipe_dirs(oldpv, newpv, path)
89 return _rename_recipe_file(oldrecipe, bpn, oldpv, newpv, path)
167 def _extract_new_source(newpv, srctree, no_patch, srcrev, srcbranch, branch, keep_temp, tinfoil, rd… argument
177 crd.setVar('PV', newpv)
210 __run('git checkout devtool-base -b devtool-%s' % newpv)
254 …t -q -m "Commit of upstream changes at version %s" --allow-empty' % (' '.join(useroptions), newpv))
255 __run('git tag -f devtool-base-%s' % newpv)
310 def _create_new_recipe(newpv, md5, sha256, srcrev, srcbranch, srcsubdir_old, srcsubdir_new, workspa… argument
322 if not newpv:
323 newpv = oldpv
325 fullpath = _rename_recipe_files(origpath, bpn, oldpv, newpv, path)
329 if _recipe_contains(rd, 'PV') and newpv != oldpv:
330 newvalues['PV'] = newpv
367 crd.setVar('PV', newpv)
413 newvalues['S'] = '${WORKDIR}/%s' % srcsubdir_new.replace(newpv, '${PV}')