Branch: refs/heads/master
Home: https://github.com/openSUSE/obs-build
Commit: d26ae038bd0ba829ad419391ea0ebd37674f65ae
https://github.com/openSUSE/obs-build/commit/d26ae038bd0ba829ad419391ea0ebd…
Author: Stephan Kulow <coolo(a)suse.de>
Date: 2012-09-26 (Wed, 26 Sep 2012)
Changed paths:
M init_buildsystem
Log Message:
-----------
do not cumulate packages with 12.2's rpm
rpm leaks file descriptors and will fail for many packages in one transaction,
fixed for factory
Branch: refs/heads/master
Home: https://github.com/openSUSE/open-build-service
Commit: f571e5cea1174025b666f51e1bc123d17f698e4e
https://github.com/openSUSE/open-build-service/commit/f571e5cea1174025b666f…
Author: Christian Schneemann <schneemann(a)b1-systems.de>
Date: 2012-09-26 (Wed, 26 Sep 2012)
Changed paths:
M src/backend/bs_publish
Log Message:
-----------
bs_publish: add regex support in publishedhook
Adds support for regular expressions in $BSConfig::publishedhook.
Usage is configurable with $BSConfig::publishedhook_use_regex.
Branch: refs/heads/master
Home: https://github.com/openSUSE/osc2
Commit: 57149c9087819477c080d1ad9791f6f2516d14b6
https://github.com/openSUSE/osc2/commit/57149c9087819477c080d1ad9791f6f2516…
Author: Marcus Huewe <suse-tux(a)gmx.de>
Date: 2012-09-25 (Tue, 25 Sep 2012)
Changed paths:
M osc/cli/description.py
Log Message:
-----------
- osc.cli.description: added initial support for aliases
Currently an alias can be specified like this:
class ListAlias(List):
"""verbose list alias"""
cmd = 'velist'
opt_expand = copy.deepcopy(List.opt_expand)
opt_expand.kwargs['default'] = True
opt_verbose = copy.deepcopy(List.opt_verbose)
opt_verbose.kwargs['default'] = True
This defines a new command/alias "velist" which is identical to
"osc2 list --verbose --expand"