Lines Matching refs:RecipeHandler

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):
324 if RecipeHandler.checkfiles(srctree, ['*.pro']):
331 class AutotoolsRecipeHandler(RecipeHandler):
337 if RecipeHandler.checkfiles(srctree, ['configure.ac', 'configure.in']):
344 conffile = RecipeHandler.checkfiles(srctree, ['configure'])
355 conffile = RecipeHandler.checkfiles(srctree, ['configure'])
469 … srcfiles = RecipeHandler.checkfiles(srctree, ['acinclude.m4', 'configure.ac', 'configure.in'])
476 RecipeHandler.load_binmap(tinfoil.config_data)
515 progdep = RecipeHandler.recipebinmap.get(prog, None)
694 RecipeHandler.handle_depends(libdeps, pcdeps, deps, outlines, values, tinfoil.config_data)
734 class MakefileRecipeHandler(RecipeHandler):
739 makefile = RecipeHandler.checkfiles(srctree, ['Makefile', 'makefile', 'GNUmakefile'])
802 class VersionFileRecipeHandler(RecipeHandler):
807 filelist = RecipeHandler.checkfiles(srctree, ['VERSION', 'version'])
827 class SpecFileRecipeHandler(RecipeHandler):
831 filelist = RecipeHandler.checkfiles(srctree, ['*.spec'], recursive=True)