OBS User unknown
2008-06-26 00:40:22 +00:00
committed by Git OBS Bridge
parent 5a3f6985a9
commit ac3dbb9bfc
7 changed files with 276 additions and 37 deletions

View File

@@ -1,5 +1,5 @@
#
# spec file for package osc (Version 0.99)
# spec file for package osc (Version 0.104)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -13,15 +13,14 @@
Name: osc
BuildRequires: python-devel
Version: 0.99
Release: 40
Version: 0.104
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.99; 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.101; 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
Patch: bug-378421_osc_cookiejar_fix.diff
Summary: openSUSE (build service) commander
Requires: python-urlgrabber
#
@@ -60,7 +59,6 @@ Authors:
%prep
%setup -q -n osc-%{version}
%patch
%build
CFLAGS="%{optflags}" \
@@ -82,8 +80,77 @@ mkdir -p %{buildroot}/var/lib/osc-plugins
%doc README TODO NEWS
%changelog
* Wed Jun 11 2008 poeml@suse.de
- update to r4164 (version 0.104):
- osc update: after update, reset the revision when updating
multiple package. Fixes "404: Not Found" type errors when
updating an entire project. [bnc#399177]
- more/better error messages in some error scenarios
- osc wipebinaries: add missing check for commandline arguments,
which could cause a PACKAGE argument to be ignored
- fixed make_diff in order to avoid errors when committing a new
package (created with mkpac)
* Fri Jun 06 2008 poeml@suse.de
- update to r4120 (version 0.103):
- osc submitreq create: simplify by make osc guess needed
parameters, if there is a working copy and it is a source link.
- osc submitreq create: don't stop on packages that have a devel
project defined, if the submit actually comes from that
project.
- osc checkout: checkout of source links is now done in expanded
form per default. The new option --unexpand-link can be used to
get the raw link file.
- show the API's error message for HTTP 403 (Forbidden) replies.
* Tue Jun 03 2008 poeml@suse.de
- update to r4089 (version 0.102)
- osc branch: Show the actually created branch project name, not
a guessed one. Add --nodevelproject.
- osc submitreq: look up the develproject of the target, and if
there is one, don't create the request, unless forced with
--nodevelproject.
- when -d (global, for debug) was used, save the body because it can't be read twice
* Tue May 27 2008 poeml@suse.de
- update to r4030:
- version 0.101
- add osc branch command, using the branch API call to branch a package to
home:poeml:branches:PRJ/PKG
- osc commit now opens $EDITOR for commit message
- improved error handling, when API returns HTTP status code 400 (bad request)
- osc status: implement -q/--quiet switch
- osc info: slightly more verbose
- osc deletepac: allow deletion of multiple packages at once
- make "osc meta prjconf <project> -e" work again (probably caused by r3702)
* Tue May 20 2008 poeml@suse.de
- update to r4002:
- osc maintainer: new -D/--devel-project switch
- osc rprjresults/rresults: small fixes
- facilitate correct syntax highlighting when editing metadata
* Mon May 19 2008 poeml@suse.de
- update to r3995:
- version 0.100
- improved error handling (babysitter.py wrapper, oscerr.py exception classes)
Tracebacks are mostly suppressed now. To enable them, use
| -t, --traceback print call trace in case of errors
or set traceback=1 in .oscrc.
- other new global options for debugging:
| --debugger jump into the debugger before executing anything
| --post-mortem jump into the debugger in case of errors
| -d, --debug print info useful for debugging
- make way for more seamless osc version updates (the .osc directory in working copies
will have its own versioning in the future)
- osc rprjresults and osc rresults: new commands to show remote build results
- osc build: added --baselibs and --jobs options
- osc copypac: added --keep-maintainers switch
- BUILD_DIST environment variable will be ignored (bnc#359846)
The following environment variables can still be used:
* OSC_SU_WRAPPER overrides the setting of su-wrapper.
* OSC_BUILD_ROOT overrides the setting of build-root.
* OSC_PACKAGECACHEDIR overrides the setting of packagecachedir.
- a few bug fixes.
* Mon Apr 21 2008 poeml@suse.de
- remove the patch added by Adrian (bnc#378421)
* Sat Apr 12 2008 adrian@suse.de
- add patch from abauer to fix cookie handling bnc#378421
- add patch from abauer to fix cookie handling (bnc#378421)
* Wed Apr 02 2008 poeml@suse.de
- update to r3614:
- osc commit: implement committing with keeping links (to commit
@@ -102,11 +169,11 @@ mkdir -p %{buildroot}/var/lib/osc-plugins
Newly introduced options are:
* osc checkout: --expand-link
* osc update: --expand-link and --unexpand-link
- osc build: add --debuginfo switch (Thanks, Juergen!) [#368524]
- osc build: add --debuginfo switch (Thanks, Juergen!) [bnc#368524]
- osc req: add option -a / --add-header to inject arbitrary
request headers
- osc addremove (and others): ignore _all_ dot files (the
buildservice doesn't handle them) [#370476]
buildservice doesn't handle them) [bnc#370476]
- copypac: do a server-side copy (via a single api call) when
used with -s / --server-side.
- prjresults: csv export uses ';' as default (Pavol)