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']): 304 class SconsRecipeHandler(RecipeHandler): 319 class QmakeRecipeHandler(RecipeHandler): 324 if RecipeHandler.checkfiles(srctree, ['*.pro']): 331 class AutotoolsRecipeHandler(RecipeHandler): 476 RecipeHandler.load_binmap(tinfoil.config_data) 734 class MakefileRecipeHandler(RecipeHandler): 802 class VersionFileRecipeHandler(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_kernel.py | 10 from recipetool.create import RecipeHandler, read_pkgconfig_provides, validate_pv 21 class KernelRecipeHandler(RecipeHandler):
|
H A D | create.py | 46 class RecipeHandler(object): class 60 if RecipeHandler.recipelibmap: 98 RecipeHandler.recipelibmap['GL'] = 'virtual/libgl' 99 RecipeHandler.recipelibmap['EGL'] = 'virtual/egl' 100 RecipeHandler.recipelibmap['GLESv2'] = 'virtual/libgles2' 105 if RecipeHandler.recipeheadermap: 136 if RecipeHandler.recipebinmap: 148 RecipeHandler.recipebinmap[prog] = pn 171 RecipeHandler.load_libmap(d) 207 recipe = RecipeHandler.recipelibmap.get(lib, None) [all …]
|
H A D | create_npm.py | 18 from recipetool.create import RecipeHandler 31 class NpmRecipeHandler(RecipeHandler): 173 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): 666 files = RecipeHandler.checkfiles(srctree, ['go.mod'])
|