Searched refs:RecipeHandler (Results 1 – 7 of 7) sorted by relevance
/openbmc/openbmc/poky/scripts/lib/recipetool/ |
H A D | create_buildsys.py | 11 from recipetool.create import RecipeHandler, validate_pv 28 class CmakeRecipeHandler(RecipeHandler): 33 if RecipeHandler.checkfiles(srctree, ['CMakeLists.txt']): 61 srcfiles = RecipeHandler.checkfiles(srctree, ['CMakeLists.txt']) 151 RecipeHandler.load_devel_filemap(tinfoil.config_data) 152 for fn, pn in RecipeHandler.recipecmakefilemap.items(): 269 RecipeHandler.handle_depends(libdeps, pcdeps, deps, outlines, values, tinfoil.config_data) 304 class SconsRecipeHandler(RecipeHandler): 309 if RecipeHandler.checkfiles(srctree, ['SConstruct', 'Sconstruct', 'sconstruct']): 319 class QmakeRecipeHandler(RecipeHandler): [all …]
|
H A D | create_kmod.py | 10 from recipetool.create import RecipeHandler, read_pkgconfig_provides, validate_pv 21 class KernelModuleRecipeHandler(RecipeHandler): 33 …files = RecipeHandler.checkfiles(srctree, ['*.c', '*.h'], recursive=True, excludedirs=['contrib', …
|
H A D | create.py | 46 class RecipeHandler(object): class 60 if RecipeHandler.recipelibmap: 89 RecipeHandler.recipelibmap[libname] = line.split(':', 1)[-1].strip() 98 RecipeHandler.recipelibmap['GL'] = 'virtual/libgl' 99 RecipeHandler.recipelibmap['EGL'] = 'virtual/egl' 100 RecipeHandler.recipelibmap['GLESv2'] = 'virtual/libgles2' 105 if RecipeHandler.recipeheadermap: 128 RecipeHandler.recipeheadermap[header] = pn 131 RecipeHandler.recipecmakefilemap[fn] = pn 136 if RecipeHandler.recipebinmap: [all …]
|
H A D | create_kernel.py | 10 from recipetool.create import RecipeHandler, read_pkgconfig_provides, validate_pv 21 class KernelRecipeHandler(RecipeHandler):
|
H A D | create_npm.py | 18 from recipetool.create import RecipeHandler 30 class NpmRecipeHandler(RecipeHandler): 186 files = RecipeHandler.checkfiles(srctree, ["package.json"])
|
H A D | create_buildsys_python.py | 23 from recipetool.create import RecipeHandler 37 class PythonRecipeHandler(RecipeHandler): 579 setupfiles = RecipeHandler.checkfiles(srctree, ['setup.py']) 637 elif RecipeHandler.checkfiles(srctree, ['PKG-INFO']): 812 setupfiles = RecipeHandler.checkfiles(srctree, ["pyproject.toml"])
|
H A D | create_go.py | 16 from recipetool.create import RecipeHandler, handle_license_vars 55 class GoRecipeHandler(RecipeHandler): 664 files = RecipeHandler.checkfiles(srctree, ['go.mod'])
|