1
0
forked from pool/osc
OBS User unknown 2007-09-03 16:38:44 +00:00 committed by Git OBS Bridge
parent 6a321eee4f
commit d577817688
5 changed files with 131 additions and 7 deletions

View File

@ -1,3 +1,51 @@
osc (0.98-3) unstable; urgency=high
- update to r2075:
- new 'maintainer' command, to list the maintainers of a project or
package
- make osc call build with --changelog option, by default [#298436]
- make osc library simpler to use from external scripts, by
simply calling conf.get_config(), with possibility to override
conf file, http debugging, api server). It is no longer
required to set up the api url in the config dict, and call
conf.init_basicauth().
- allow to specify a different config file via the environmental
variable OSC_CONFIG, or via -c|--config on the commandline
-- Peter Poeml <poeml@suse.de> Mon, 3 Sep 2007 00:00:00 +0200
osc (0.98-2) unstable; urgency=high
- update to r2001:
- contributions from James Oakley and Marcus Huewe
- ls: add -b option to list binaries
- req: show error response for 404 responses
- core: add get_binarylist(); works per project and per package
- core: add get_binarylist_published(); works per project
- core: add get_binary_file()
- build: "osc build" if $BUILD_DIST is set
-- Peter Poeml <poeml@suse.de> Fri, 17 Aug 2007 00:00:00 +0200
osc (0.98-1) unstable; urgency=high
- update to r1974:
- version 0.98
- commit: use the documented commit method by default now
- build: add --changelog option to force update of the package
changelog from a changes file
-- Peter Poeml <poeml@suse.de> Tue, 14 Aug 2007 00:00:00 +0200
osc (0.97-8) unstable; urgency=high
* update to r1961:
- meta: remove notion of non-implemented --create switch. give
example for meta pkg usage
- search: add --repos-baseurl option
-- Peter Poeml <poeml@suse.de> Thu, 9 Aug 2007 00:00:00 +0200
osc (0.97-7) unstable; urgency=high
* update to r1947:

View File

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

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

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

View File

@ -1,3 +1,47 @@
-------------------------------------------------------------------
Mon Sep 3 12:47:31 CEST 2007 - poeml@suse.de
- update to r2075:
- new 'maintainer' command, to list the maintainers of a project
or package
- make osc call build with --changelog option, by default [#298436]
- make osc library simpler to use from external scripts, by
simply calling conf.get_config(), with possibility to override
conf file, http debugging, api server). It is no longer
required to set up the api url in the config dict, and call
conf.init_basicauth().
- allow to specify a different config file via the environmental
variable OSC_CONFIG, or via -c|--config on the commandline
-------------------------------------------------------------------
Fri Aug 17 08:18:34 CEST 2007 - poeml@suse.de
- update to r2001:
- contributions from James Oakley and Marcus Huewe
- ls: add -b option to list binaries
- req: show error response for 404 responses
- core: add get_binarylist(); works per project and per package
- core: add get_binarylist_published(); works per project
- core: add get_binary_file()
- build: "osc build" if $BUILD_DIST is set
-------------------------------------------------------------------
Tue Aug 14 13:55:00 CEST 2007 - poeml@suse.de
- update to r1974:
- version 0.98
- commit: use the documented commit method by default now
- build: add --changelog option to force update of the package
changelog from a changes file
-------------------------------------------------------------------
Thu Aug 9 18:15:53 CEST 2007 - poeml@suse.de
- update to r1961:
- meta: remove notion of non-implemented --create switch. give
example for meta pkg usage
- search: add --repos-baseurl option
-------------------------------------------------------------------
Thu Aug 9 00:54:21 CEST 2007 - poeml@suse.de

View File

@ -1,5 +1,5 @@
#
# spec file for package osc (Version 0.97)
# spec file for package osc (Version 0.98)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@ -12,13 +12,13 @@
Name: osc
BuildRequires: python-devel
Version: 0.97
Release: 13
Version: 0.98
Release: 1
Group: Development/Tools/Other
License: GPL v2 or later
BuildRoot: %{_tmppath}/%{name}-%{version}-build
URL: https://forgesvn1.novell.com/svn/opensuse/trunk/buildservice/src/clientlib/python/osc/
# v=0.97; svn export https://forgesvn1.novell.com/svn/opensuse/trunk/buildservice/src/clientlib/python/osc osc-$v; tar czf osc-$v.tar.gz osc-$v
# v=0.98; svn export https://forgesvn1.novell.com/svn/opensuse/trunk/buildservice/src/clientlib/python/osc osc-$v; tar czf osc-$v.tar.gz osc-$v
Source: osc-%{version}.tar.gz
Summary: openSUSE (build service) commander
Requires: python-urlgrabber
@ -78,6 +78,38 @@ mkdir -p %{buildroot}/var/lib/osc-plugins
%doc README TODO NEWS
%changelog
* Mon Sep 03 2007 - poeml@suse.de
- update to r2075:
- new 'maintainer' command, to list the maintainers of a project
or package
- make osc call build with --changelog option, by default [#298436]
- make osc library simpler to use from external scripts, by
simply calling conf.get_config(), with possibility to override
conf file, http debugging, api server). It is no longer
required to set up the api url in the config dict, and call
conf.init_basicauth().
- allow to specify a different config file via the environmental
variable OSC_CONFIG, or via -c|--config on the commandline
* Fri Aug 17 2007 - poeml@suse.de
- update to r2001:
- contributions from James Oakley and Marcus Huewe
- ls: add -b option to list binaries
- req: show error response for 404 responses
- core: add get_binarylist(); works per project and per package
- core: add get_binarylist_published(); works per project
- core: add get_binary_file()
- build: "osc build" if $BUILD_DIST is set
* Tue Aug 14 2007 - poeml@suse.de
- update to r1974:
- version 0.98
- commit: use the documented commit method by default now
- build: add --changelog option to force update of the package
changelog from a changes file
* Thu Aug 09 2007 - poeml@suse.de
- update to r1961:
- meta: remove notion of non-implemented --create switch. give
example for meta pkg usage
- search: add --repos-baseurl option
* Thu Aug 09 2007 - poeml@suse.de
- update to r1947:
- commit: fixed possible "UnboundLocalError" with -m. Thanks to