当前位置: 首页>>代码示例>>Python>>正文


Python Configure.download_tool方法代码示例

本文整理汇总了Python中waflib.Configure.download_tool方法的典型用法代码示例。如果您正苦于以下问题:Python Configure.download_tool方法的具体用法?Python Configure.download_tool怎么用?Python Configure.download_tool使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在waflib.Configure的用法示例。


在下文中一共展示了Configure.download_tool方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: update

# 需要导入模块: from waflib import Configure [as 别名]
# 或者: from waflib.Configure import download_tool [as 别名]
def update(ctx):
	lst=os.listdir(Context.waf_dir+'/waflib/extras')
	for x in lst:
		if not x.endswith('.py'):
			continue
		tool=x.replace('.py','')
		Configure.download_tool(tool,force=True)
开发者ID:RunarFreyr,项目名称:waz,代码行数:9,代码来源:Scripting.py

示例2: update

# 需要导入模块: from waflib import Configure [as 别名]
# 或者: from waflib.Configure import download_tool [as 别名]
def update(ctx):
	"""download a specific tool into the local waf directory"""
	lst = os.listdir(Context.waf_dir + '/waflib/extras')
	for x in lst:
		if not x.endswith('.py'):
			continue
		tool = x.replace('.py', '')
		Configure.download_tool(tool, force=True)
开发者ID:RunarFreyr,项目名称:waz,代码行数:10,代码来源:Scripting.py

示例3: update

# 需要导入模块: from waflib import Configure [as 别名]
# 或者: from waflib.Configure import download_tool [as 别名]
def update(ctx):
	lst=Options.options.files.split(',')
	if not lst:
		lst=[x for x in Utils.listdir(Context.waf_dir+'/waflib/extras')if x.endswith('.py')]
	for x in lst:
		tool=x.replace('.py','')
		try:
			Configure.download_tool(tool,force=True,ctx=ctx)
		except Errors.WafError:
			Logs.error('Could not find the tool %s in the remote repository'%x)
开发者ID:PseudoSky,项目名称:voodoo,代码行数:12,代码来源:Scripting.py

示例4: update

# 需要导入模块: from waflib import Configure [as 别名]
# 或者: from waflib.Configure import download_tool [as 别名]
def update(ctx):
    """updates the plugins from the *waflib/extras* directory"""
    lst = Options.options.files.split(",")
    if not lst:
        lst = [x for x in Utils.listdir(Context.waf_dir + "/waflib/extras") if x.endswith(".py")]
    for x in lst:
        tool = x.replace(".py", "")
        try:
            Configure.download_tool(tool, force=True, ctx=ctx)
        except Errors.WafError:
            Logs.error("Could not find the tool %s in the remote repository" % x)
开发者ID:jsternberg,项目名称:waf,代码行数:13,代码来源:Scripting.py


注:本文中的waflib.Configure.download_tool方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。