2018-06-20 18:54:47 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2018-06-22 14:22:00 +00:00
|
|
|
"""
|
|
|
|
Build all of the packages in a given directory.
|
|
|
|
"""
|
|
|
|
|
2018-06-20 18:54:47 +00:00
|
|
|
import argparse
|
|
|
|
import json
|
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
|
|
|
|
|
|
|
|
import common
|
|
|
|
import buildpkg
|
|
|
|
|
|
|
|
|
2018-06-22 14:22:00 +00:00
|
|
|
def build_package(pkgname, dependencies, packagesdir, args):
|
|
|
|
reqs = dependencies[pkgname]
|
|
|
|
# Make sure all of the package's requirements are built first
|
2018-06-20 18:54:47 +00:00
|
|
|
for req in reqs:
|
2018-06-22 14:22:00 +00:00
|
|
|
build_package(req, dependencies, packagesdir, args)
|
2018-06-20 19:05:13 +00:00
|
|
|
if not os.path.isfile(
|
|
|
|
os.path.join(packagesdir, pkgname, 'build', '.packaged')):
|
2018-06-20 18:54:47 +00:00
|
|
|
print("BUILDING PACKAGE: " + pkgname)
|
|
|
|
buildpkg.build_package(
|
|
|
|
os.path.join(packagesdir, pkgname, 'meta.yaml'), args)
|
|
|
|
shutil.copyfile(
|
|
|
|
os.path.join(packagesdir, pkgname, 'build', pkgname + '.data'),
|
|
|
|
os.path.join(args.output[0], pkgname + '.data'))
|
|
|
|
shutil.copyfile(
|
|
|
|
os.path.join(packagesdir, pkgname, 'build', pkgname + '.js'),
|
|
|
|
os.path.join(args.output[0], pkgname + '.js'))
|
|
|
|
|
|
|
|
|
|
|
|
def build_packages(packagesdir, args):
|
2018-06-22 14:22:00 +00:00
|
|
|
# We have to build the packages in the correct order (dependencies first),
|
|
|
|
# so first load in all of the package metadata and build a dependency map.
|
2018-06-20 18:54:47 +00:00
|
|
|
dependencies = {}
|
|
|
|
for pkgdir in os.listdir(packagesdir):
|
|
|
|
pkgdir = os.path.join(packagesdir, pkgdir)
|
|
|
|
pkgpath = os.path.join(pkgdir, 'meta.yaml')
|
|
|
|
if os.path.isdir(pkgdir) and os.path.isfile(pkgpath):
|
|
|
|
pkg = common.parse_package(pkgpath)
|
|
|
|
name = pkg['package']['name']
|
|
|
|
reqs = pkg.get('requirements', {}).get('run', [])
|
|
|
|
dependencies[name] = reqs
|
|
|
|
|
2018-06-22 14:22:00 +00:00
|
|
|
for pkgname in dependencies.keys():
|
|
|
|
build_package(pkgname, dependencies, packagesdir, args)
|
2018-06-20 18:54:47 +00:00
|
|
|
|
|
|
|
# This is done last so the main Makefile can use it as a completion token
|
|
|
|
with open(os.path.join(args.output[0], 'packages.json'), 'w') as fd:
|
|
|
|
json.dump({'dependencies': dependencies}, fd)
|
|
|
|
|
|
|
|
|
|
|
|
def parse_args():
|
2018-06-22 14:22:00 +00:00
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
"Build all of the packages in a given directory")
|
|
|
|
parser.add_argument(
|
|
|
|
'dir', type=str, nargs=1,
|
|
|
|
help='Input directory containing a tree of package definitions')
|
|
|
|
parser.add_argument(
|
|
|
|
'output', type=str, nargs=1,
|
|
|
|
help='Output directory in which to put all built packages')
|
2018-06-20 19:05:13 +00:00
|
|
|
parser.add_argument(
|
2018-06-22 18:49:52 +00:00
|
|
|
'--cflags', type=str, nargs='?', default=common.DEFAULTCFLAGS,
|
2018-06-22 14:22:00 +00:00
|
|
|
help='Extra compiling flags')
|
2018-06-20 19:05:13 +00:00
|
|
|
parser.add_argument(
|
2018-06-22 18:49:52 +00:00
|
|
|
'--ldflags', type=str, nargs='?', default=common.DEFAULTLDFLAGS,
|
2018-06-22 14:22:00 +00:00
|
|
|
help='Extra linking flags')
|
2018-06-20 19:05:13 +00:00
|
|
|
parser.add_argument(
|
2018-06-22 18:49:52 +00:00
|
|
|
'--host', type=str, nargs='?', default=common.HOSTPYTHON,
|
2018-06-22 14:22:00 +00:00
|
|
|
help='The path to the host Python installation')
|
2018-06-20 19:05:13 +00:00
|
|
|
parser.add_argument(
|
2018-06-22 18:49:52 +00:00
|
|
|
'--target', type=str, nargs='?', default=common.TARGETPYTHON,
|
2018-06-22 14:22:00 +00:00
|
|
|
help='The path to the target Python installation')
|
2018-06-20 18:54:47 +00:00
|
|
|
return parser.parse_args()
|
|
|
|
|
|
|
|
|
|
|
|
def main(args):
|
|
|
|
packagesdir = os.path.abspath(args.dir[0])
|
|
|
|
build_packages(packagesdir, args)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
args = parse_args()
|
|
|
|
main(args)
|