mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
deploy-ng: Pass build_apps commands to build_scripts
This allows build_scripts to access configuration.
This commit is contained in:
parent
305f39ba62
commit
8f6d75e017
@ -22,7 +22,7 @@ if 'basestring' not in globals():
|
|||||||
basestring = str
|
basestring = str
|
||||||
|
|
||||||
|
|
||||||
def egg2bam(srcpath, dstpath):
|
def egg2bam(_build_cmd, srcpath, dstpath):
|
||||||
dstpath = dstpath + '.bam'
|
dstpath = dstpath + '.bam'
|
||||||
subprocess.call([
|
subprocess.call([
|
||||||
'egg2bam',
|
'egg2bam',
|
||||||
@ -54,7 +54,7 @@ class build_apps(distutils.core.Command):
|
|||||||
self.plugins = []
|
self.plugins = []
|
||||||
self.requirements_path = './requirements.txt'
|
self.requirements_path = './requirements.txt'
|
||||||
self.pypi_extra_indexes = []
|
self.pypi_extra_indexes = []
|
||||||
self.build_scripts= {
|
self.build_callbacks= {
|
||||||
'.egg': egg2bam,
|
'.egg': egg2bam,
|
||||||
}
|
}
|
||||||
self.exclude_dependencies = [
|
self.exclude_dependencies = [
|
||||||
@ -385,7 +385,7 @@ class build_apps(distutils.core.Command):
|
|||||||
if ext in self.build_scripts:
|
if ext in self.build_scripts:
|
||||||
buildscript = self.build_scripts[ext]
|
buildscript = self.build_scripts[ext]
|
||||||
self.announce('running {} on src ({})'.format(buildscript.__name__, src))
|
self.announce('running {} on src ({})'.format(buildscript.__name__, src))
|
||||||
dst = self.build_scripts[ext](src, dst)
|
dst = self.build_scripts[ext](self, src, dst)
|
||||||
else:
|
else:
|
||||||
self.announce('copying {0} -> {1}'.format(src, dst))
|
self.announce('copying {0} -> {1}'.format(src, dst))
|
||||||
shutil.copyfile(src, dst)
|
shutil.copyfile(src, dst)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user