本文整理汇总了Python中bbfreeze.Freezer.endswith方法的典型用法代码示例。如果您正苦于以下问题:Python Freezer.endswith方法的具体用法?Python Freezer.endswith怎么用?Python Freezer.endswith使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类bbfreeze.Freezer
的用法示例。
在下文中一共展示了Freezer.endswith方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Freezer
# 需要导入模块: from bbfreeze import Freezer [as 别名]
# 或者: from bbfreeze.Freezer import endswith [as 别名]
tf.close()
sys.exit()
'''------------------------------------------------------------------'''
#-----------------------------------------------------------------------
from bbfreeze import Freezer
f = Freezer(releasePath)
f.addScript("CrossMgr.pyw")
f() # starts the freezing process
#-----------------------------------------------------------------------
# Remove any hard-coded library dependencies
#
for f in os.listdir( releasePath ):
if not f.endswith( '.so' ):
continue
fname = os.path.join(releasePath, f)
p = subprocess.Popen( ['chrpath', '-r', fname], stdout=subprocess.PIPE )
ret = p.communicate()
print( f, ret )
import Version
tarName = Version.AppVerName.replace(' ', '_') + '_i386.tar.gz'
tf = tarfile.open( os.path.join(distPath, tarName), 'w:gz' )
for f in os.listdir( releasePath ):
tf.add( os.path.join(releasePath, f), os.path.join('CrossMgr',f) )
for dir in ['images', 'htmldoc', 'html']:
targetDir = os.path.join( 'CrossMgr', dir )
for f in os.listdir( dir ):