mirror of
https://github.com/openSUSE/osc.git
synced 2025-03-30 11:53:06 +02:00
[what]dependson: add --multibuild-package
This commit is contained in:
parent
eda8258c7f
commit
7b73fde75f
@ -6543,6 +6543,8 @@ Please submit there instead, or use --nodevelproject to force direct submission.
|
|||||||
# FIXME: the new osc syntax should allow to specify multiple packages
|
# FIXME: the new osc syntax should allow to specify multiple packages
|
||||||
# FIXME: the command should optionally use buildinfo data to show all dependencies
|
# FIXME: the command should optionally use buildinfo data to show all dependencies
|
||||||
|
|
||||||
|
@cmdln.option('-M', '--multibuild-package', metavar='FLAVOR',
|
||||||
|
help=HELP_MULTIBUILD_ONE)
|
||||||
def do_dependson(self, subcmd, opts, *args):
|
def do_dependson(self, subcmd, opts, *args):
|
||||||
"""
|
"""
|
||||||
Dependson shows the build dependencies inside of a project, valid for a given repository and architecture
|
Dependson shows the build dependencies inside of a project, valid for a given repository and architecture
|
||||||
@ -6563,10 +6565,12 @@ Please submit there instead, or use --nodevelproject to force direct submission.
|
|||||||
osc dependson REPOSITORY ARCH
|
osc dependson REPOSITORY ARCH
|
||||||
|
|
||||||
usage:
|
usage:
|
||||||
osc dependson PROJECT [PACKAGE] REPOSITORY ARCH
|
osc dependson PROJECT [PACKAGE[:FLAVOR]] REPOSITORY ARCH
|
||||||
"""
|
"""
|
||||||
self._dependson(False, *args)
|
self._dependson(False, opts, *args)
|
||||||
|
|
||||||
|
@cmdln.option('-M', '--multibuild-package', metavar='FLAVOR',
|
||||||
|
help=HELP_MULTIBUILD_ONE)
|
||||||
def do_whatdependson(self, subcmd, opts, *args):
|
def do_whatdependson(self, subcmd, opts, *args):
|
||||||
"""
|
"""
|
||||||
Show the packages that require the specified package during the build
|
Show the packages that require the specified package during the build
|
||||||
@ -6585,11 +6589,11 @@ Please submit there instead, or use --nodevelproject to force direct submission.
|
|||||||
osc whatdependson REPOSITORY ARCH
|
osc whatdependson REPOSITORY ARCH
|
||||||
|
|
||||||
usage:
|
usage:
|
||||||
osc whatdependson PROJECT [PACKAGE] REPOSITORY ARCH
|
osc whatdependson PROJECT [PACKAGE[:FLAVOR]] REPOSITORY ARCH
|
||||||
"""
|
"""
|
||||||
self._dependson(True, *args)
|
self._dependson(True, opts, *args)
|
||||||
|
|
||||||
def _dependson(self, reverse, *args):
|
def _dependson(self, reverse, opts, *args):
|
||||||
wd = Path.cwd()
|
wd = Path.cwd()
|
||||||
args = slash_split(args)
|
args = slash_split(args)
|
||||||
project = packages = repository = arch = None
|
project = packages = repository = arch = None
|
||||||
@ -6622,6 +6626,9 @@ Please submit there instead, or use --nodevelproject to force direct submission.
|
|||||||
repository = args[2]
|
repository = args[2]
|
||||||
arch = args[3]
|
arch = args[3]
|
||||||
|
|
||||||
|
if packages is not None and opts.multibuild_package:
|
||||||
|
packages = [packages[0] + ":" + opts.multibuild_package]
|
||||||
|
|
||||||
project_packages = meta_get_packagelist(apiurl, project, deleted=False, expand=False)
|
project_packages = meta_get_packagelist(apiurl, project, deleted=False, expand=False)
|
||||||
xml = get_dependson(apiurl, project, repository, arch, packages, reverse)
|
xml = get_dependson(apiurl, project, repository, arch, packages, reverse)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user