You've already forked gnatcoll-bindings
mirror of
https://github.com/AdaCore/gnatcoll-bindings.git
synced 2026-02-12 12:59:11 -08:00
73 lines
2.4 KiB
Python
Executable File
73 lines
2.4 KiB
Python
Executable File
#!/usr/bin/env python
|
|
import logging
|
|
import os
|
|
import sys
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
from setup_support import SetupApp
|
|
|
|
|
|
class GNATCollReadline(SetupApp):
|
|
name = 'gnatcoll_readline'
|
|
project = 'gnatcoll_readline.gpr'
|
|
description = 'GNATColl Readline bindings'
|
|
|
|
def create(self):
|
|
super(GNATCollReadline, self).create()
|
|
self.build_cmd.add_argument(
|
|
'--debug',
|
|
help='build project in debug mode',
|
|
action="store_true",
|
|
default=False)
|
|
self.build_cmd.add_argument(
|
|
'--accept-gpl',
|
|
help='accept the GPL license',
|
|
action="store_true",
|
|
default=False)
|
|
|
|
def update_config(self, config, args):
|
|
assert args.accept_gpl, "--accept-gpl is required"
|
|
|
|
logging.info('%-26s %s',
|
|
'Libraries kind', ", ".join(config.data['library_types']))
|
|
|
|
# Set library version
|
|
with open(os.path.join(config.source_dir, '..',
|
|
'version_information'), 'r') as fd:
|
|
version = fd.read().strip()
|
|
config.set_data('GNATCOLL_VERSION', version, sub='gprbuild')
|
|
|
|
# Set build mode
|
|
config.set_data('BUILD', 'DEBUG' if args.debug else 'PROD',
|
|
sub='gprbuild')
|
|
logging.info('%-26s %s', 'Build mode',
|
|
config.data['gprbuild']['BUILD'])
|
|
|
|
# Set GNATCOLL_OS
|
|
if 'darwin' in config.data['canonical_target']:
|
|
gnatcoll_os = 'osx'
|
|
elif 'windows' in config.data['canonical_target']:
|
|
gnatcoll_os = 'windows'
|
|
else:
|
|
# Assume this is an Unix system
|
|
gnatcoll_os = 'unix'
|
|
config.set_data('GNATCOLL_OS', gnatcoll_os, sub='gprbuild')
|
|
|
|
def variants(self, config, cmd):
|
|
result = []
|
|
for library_type in config.data['library_types']:
|
|
gpr_vars = {'LIBRARY_TYPE': library_type,
|
|
'XMLADA_BUILD': library_type,
|
|
'GPR_BUILD': library_type}
|
|
if cmd == 'install':
|
|
result.append((['--build-name=%s' % library_type,
|
|
'--build-var=LIBRARY_TYPE'],
|
|
gpr_vars))
|
|
else:
|
|
result.append(([], gpr_vars))
|
|
return result
|
|
|
|
|
|
if __name__ == '__main__':
|
|
app = GNATCollReadline()
|
|
sys.exit(app.run())
|