mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-10 06:46:15 +01:00
implement build --release
This commit is contained in:
parent
8ed237141a
commit
1ff4978b98
14
osc/build.py
14
osc/build.py
@ -82,9 +82,10 @@ class Buildinfo:
|
||||
self.pacsuffix = 'deb'
|
||||
|
||||
self.buildarch = root.find('arch').text
|
||||
self.release = "0"
|
||||
if root.find('release') != None:
|
||||
self.release = root.find('release').text
|
||||
else:
|
||||
self.release = None
|
||||
self.downloadurl = root.get('downloadurl')
|
||||
self.debuginfo = 0
|
||||
if root.find('debuginfo') != None:
|
||||
@ -451,8 +452,16 @@ def main(opts, argv):
|
||||
raise
|
||||
|
||||
bi = Buildinfo(bi_filename, apiurl, build_type, prefer_pkgs.keys())
|
||||
|
||||
if bi.debuginfo and not opts.disable_debuginfo:
|
||||
buildargs.append('--debug')
|
||||
|
||||
if opts.release:
|
||||
bi.release = opts.release
|
||||
|
||||
if bi.release:
|
||||
buildargs.append('--release %s' % bi.release)
|
||||
|
||||
buildargs = ' '.join(set(buildargs))
|
||||
|
||||
# real arch of this machine
|
||||
@ -608,14 +617,13 @@ def main(opts, argv):
|
||||
specialcmdopts += '--overlay=%s' \
|
||||
% (myoverlay)
|
||||
|
||||
cmd = '%s --root=%s --rpmlist=%s --dist=%s %s --arch=%s --release=%s %s %s %s' \
|
||||
cmd = '%s --root=%s --rpmlist=%s --dist=%s %s --arch=%s %s %s %s' \
|
||||
% (config['build-cmd'],
|
||||
build_root,
|
||||
rpmlist_filename,
|
||||
bc_filename,
|
||||
specialcmdopts,
|
||||
bi.buildarch,
|
||||
bi.release,
|
||||
vm_options,
|
||||
build_descr,
|
||||
buildargs)
|
||||
|
@ -2929,6 +2929,8 @@ Please submit there instead, or use --nodevelproject to force direct submission.
|
||||
help='disable build of debuginfo packages')
|
||||
@cmdln.option('-b', '--baselibs', action='store_true',
|
||||
help='Create -32bit/-64bit/-x86 rpms for other architectures')
|
||||
@cmdln.option('--release', metavar='N',
|
||||
help='set release number of the package to N')
|
||||
def do_build(self, subcmd, opts, *args):
|
||||
"""${cmd_name}: Build a package on your local machine
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user