mirror of
https://github.com/openSUSE/osc.git
synced 2025-01-13 17:16:23 +01:00
add "osc build --root" option to allow to specify build root directory.
(not only for mls ;)
This commit is contained in:
parent
f1e67f1479
commit
2393044585
1
NEWS
1
NEWS
@ -18,6 +18,7 @@
|
||||
- support submit requests on project level, osc is checking which packages
|
||||
have changed and submits only the changed after asking back.
|
||||
- show worker/id on jobhistory and make it faster by adding a default limit of 20
|
||||
- add "osc build --root" option to allow to specify build root directory
|
||||
#
|
||||
# Features which require OBS 1.7
|
||||
#
|
||||
|
14
osc/build.py
14
osc/build.py
@ -277,6 +277,7 @@ def main(opts, argv):
|
||||
arch = argv[1]
|
||||
build_descr = argv[2]
|
||||
xp = []
|
||||
build_root = None
|
||||
|
||||
build_type = os.path.splitext(build_descr)[1][1:]
|
||||
if build_type not in ['spec', 'dsc', 'kiwi']:
|
||||
@ -295,6 +296,8 @@ def main(opts, argv):
|
||||
buildargs.append('--no-checks')
|
||||
if not opts.no_changelog:
|
||||
buildargs.append('--changelog')
|
||||
if opts.root:
|
||||
build_root = opts.root
|
||||
if opts.jobs:
|
||||
buildargs.append('--jobs %s' % opts.jobs)
|
||||
else:
|
||||
@ -349,7 +352,8 @@ def main(opts, argv):
|
||||
pacname = pac
|
||||
if pacname == '_repository':
|
||||
pacname = os.path.splitext(build_descr)[0]
|
||||
config['build-root'] = config['build-root'] % { 'repo': repo, 'arch': arch,
|
||||
if not build_root:
|
||||
build_root = config['build-root'] % { 'repo': repo, 'arch': arch,
|
||||
'project' : prj, 'package' : pacname
|
||||
}
|
||||
|
||||
@ -576,7 +580,7 @@ def main(opts, argv):
|
||||
|
||||
cmd = '%s --root=%s --rpmlist=%s --dist=%s %s --arch=%s --release=%s %s %s %s' \
|
||||
% (config['build-cmd'],
|
||||
config['build-root'],
|
||||
build_root,
|
||||
rpmlist_filename,
|
||||
bc_filename,
|
||||
specialcmdopts,
|
||||
@ -598,13 +602,13 @@ def main(opts, argv):
|
||||
rc = subprocess.call(cmd, shell=True)
|
||||
if rc:
|
||||
print
|
||||
print 'The buildroot was:', config['build-root']
|
||||
print 'The buildroot was:', build_root
|
||||
sys.exit(rc)
|
||||
|
||||
pacdir = os.path.join(config['build-root'], '.build.packages')
|
||||
pacdir = os.path.join(build_root, '.build.packages')
|
||||
if os.path.islink(pacdir):
|
||||
pacdir = os.readlink(pacdir)
|
||||
pacdir = os.path.join(config['build-root'], pacdir)
|
||||
pacdir = os.path.join(build_root, pacdir)
|
||||
|
||||
if os.path.exists(pacdir):
|
||||
(s_built, b_built) = get_built_files(pacdir, bi.pacsuffix)
|
||||
|
@ -2887,6 +2887,8 @@ Please submit there instead, or use --nodevelproject to force direct submission.
|
||||
help='Save built packages into this directory')
|
||||
@cmdln.option('-x', '--extra-pkgs', metavar='PAC', action='append',
|
||||
help='Add this package when installing the build-root')
|
||||
@cmdln.option('--root', metavar='ROOT',
|
||||
help='Build in specified directory')
|
||||
@cmdln.option('-j', '--jobs', metavar='N',
|
||||
help='Compile with N jobs')
|
||||
@cmdln.option('--icecream', metavar='N',
|
||||
|
Loading…
Reference in New Issue
Block a user