1
0
forked from pool/osc
OBS User unknown 2008-09-16 12:50:36 +00:00 committed by Git OBS Bridge
parent 7e0fa9952c
commit 7cf3e696e6
5 changed files with 102 additions and 7 deletions

View File

@ -1,3 +1,34 @@
osc (0.108-1) unstable; urgency=high
- update to r5032 (version 0.108):
- osc submitreq: has two aliases now: "osc sr" and "osc submitrequest"
- osc sr create: prompt to revoke existing requests
- osc sr revoke: new command for to get rid of requests to projects one can't write to
- osc sr list: allow showing requests in a state other than "new"
- osc sr show: show the current state's comment
- osc sr log: new command to show the history of a given id
- osc sr: enable requests for submitting new packages
- osc build: implement --no-checks
- osc build: be less strict on the arguments, and guess what's needed. For instance:
* osc build PLATFORM ARCH BUILD_DESCR
* osc build PLATFORM (ARCH = hostarch, BUILD_DESCR guessed)
* osc build ARCH (PLATFORM = build_platform (config option), BUILD_DESCR guessed)
* osc build BUILD_DESCR (PLATFORM = build_platform (config option), ARCH = hostarch)
* osc build (PLATFORM = build_platform (config option), ARCH = hostarch, BUILD_DESCR guessed)
- osc build: download after the target architecture check
- osc addremove: bugfixes, --recursive option
- osc init: added support to initialize a project dir
- osc metafromspec: new alias for 'updatepacmetafromspec' which is hard to remember
- osc updatepacmetafromspec: also update URL
- osc buildlog: do not download entire log to memory
- new http_headers option to add arbitrary headers to HTTP requests
- bugfix to make osc work on Gentoo
- enhance/update the package and project template
- .netrc heritage from previous commandline client has been removed
- osc asks for password now, when used with -A
-- Peter Poeml <poeml@suse.de> Tue, 16 Sep 2008 12:00:00 +0200
osc (0.107-1) unstable; urgency=high
- update to r4461 (version 0.107):

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:67a8f0c97fb4858b1a57639976024589e014313903643adc171486ef569d6179
size 91291

3
osc-0.108.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e8fd64085df76fad1e96095f2d3e223f688fad9b38836e2e4642eedc8159c2f7
size 97030

View File

@ -1,3 +1,33 @@
-------------------------------------------------------------------
Tue Sep 16 14:17:26 CEST 2008 - poeml@suse.de
- update to r5032 (version 0.108):
- osc submitreq: has two aliases now: "osc sr" and "osc submitrequest"
- osc sr create: prompt to revoke existing requests
- osc sr revoke: new command for to get rid of requests to projects one can't write to
- osc sr list: allow showing requests in a state other than "new"
- osc sr show: show the current state's comment
- osc sr log: new command to show the history of a given id
- osc sr: enable requests for submitting new packages
- osc build: implement --no-checks
- osc build: be less strict on the arguments, and guess what's needed. For instance:
* osc build PLATFORM ARCH BUILD_DESCR
* osc build PLATFORM (ARCH = hostarch, BUILD_DESCR guessed)
* osc build ARCH (PLATFORM = build_platform (config option), BUILD_DESCR guessed)
* osc build BUILD_DESCR (PLATFORM = build_platform (config option), ARCH = hostarch)
* osc build (PLATFORM = build_platform (config option), ARCH = hostarch, BUILD_DESCR guessed)
- osc build: download after the target architecture check
- osc addremove: bugfixes, --recursive option
- osc init: added support to initialize a project dir
- osc metafromspec: new alias for 'updatepacmetafromspec' which is hard to remember
- osc updatepacmetafromspec: also update URL
- osc buildlog: do not download entire log to memory
- new http_headers option to add arbitrary headers to HTTP requests
- bugfix to make osc work on Gentoo
- enhance/update the package and project template
- .netrc heritage from previous commandline client has been removed
- osc asks for password now, when used with -A
-------------------------------------------------------------------
Wed Jul 16 17:16:27 CEST 2008 - poeml@suse.de

View File

@ -1,10 +1,17 @@
#
# spec file for package osc (Version 0.107)
# spec file for package osc (Version 0.108)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
@ -13,7 +20,7 @@
Name: osc
BuildRequires: python-devel
Version: 0.107
Version: 0.108
Release: 1
Group: Development/Tools/Other
License: GPL v2 or later
@ -80,6 +87,33 @@ mkdir -p %{buildroot}/var/lib/osc-plugins
%doc README TODO NEWS
%changelog
* Tue Sep 16 2008 poeml@suse.de
- update to r5032 (version 0.108):
- osc submitreq: has two aliases now: "osc sr" and "osc submitrequest"
- osc sr create: prompt to revoke existing requests
- osc sr revoke: new command for to get rid of requests to projects one can't write to
- osc sr list: allow showing requests in a state other than "new"
- osc sr show: show the current state's comment
- osc sr log: new command to show the history of a given id
- osc sr: enable requests for submitting new packages
- osc build: implement --no-checks
- osc build: be less strict on the arguments, and guess what's needed. For instance:
* osc build PLATFORM ARCH BUILD_DESCR
* osc build PLATFORM (ARCH = hostarch, BUILD_DESCR guessed)
* osc build ARCH (PLATFORM = build_platform (config option), BUILD_DESCR guessed)
* osc build BUILD_DESCR (PLATFORM = build_platform (config option), ARCH = hostarch)
* osc build (PLATFORM = build_platform (config option), ARCH = hostarch, BUILD_DESCR guessed)
- osc build: download after the target architecture check
- osc addremove: bugfixes, --recursive option
- osc init: added support to initialize a project dir
- osc metafromspec: new alias for 'updatepacmetafromspec' which is hard to remember
- osc updatepacmetafromspec: also update URL
- osc buildlog: do not download entire log to memory
- new http_headers option to add arbitrary headers to HTTP requests
- bugfix to make osc work on Gentoo
- enhance/update the package and project template
- .netrc heritage from previous commandline client has been removed
- osc asks for password now, when used with -A
* Wed Jul 16 2008 poeml@suse.de
- update to r4461 (version 0.107):
- osc update / checkout: *important bugfix* don't check out a