1
0
forked from pool/osc
OBS User unknown 2007-06-28 17:36:32 +00:00 committed by Git OBS Bridge
parent b65f2de100
commit 55e1c3bfe8
4 changed files with 122 additions and 5 deletions

View File

@ -1,3 +1,67 @@
osc (0.96-8) unstable; urgency=high
* update to r1783:
- build: don't stumble over an empty list of packages when trying to verify packages
- ls: add verbose option to print extra information for packages
- for ls, co, meta, editmeta, linkpac, copypac, rebuildpac, and wipebinaries
(basically all the server-side commands), allow arguments "foo/bar" instead
of "foo bar"
-- Peter Poeml <poeml@suse.de> Tue, 26 May 2007 00:00:00 +0200
osc (0.96-7) unstable; urgency=high
* update to r1769:
- fix return values in metafile.sync() which I broke whey I applied Marcus
Huewe's patch...
-- Peter Poeml <poeml@suse.de> Fri, 22 May 2007 00:00:00 +0200
osc (0.96-6) unstable; urgency=high
* update to r1763:
- set correct Content-Type header on PUT requests
(application/octet-stream). Rails 1.2 seems to be more strict
in this regard. Patch from Marcus Rueckert.
- init: make usage (and usage info) info more precise
- update to r1733:
New features kindly implemented by Marcus Huewe:
- added wipebinaries command
- added abortbuild command
- improved handling of metadata editing if the server doesn't accept it
- update to r1731:
- adjust for change in build.rpm, where /usr/lib/build/debsort
was removed. Look for debtransform program instead in order to
determine if build.rpm is new enough.
- update cmdln.py to planned 1.0 version. The main changes are
related to points that were raised during employment in osc:
# v0.8.3
- Fix a bug where errors with passing an incorrect number of args to
functions in do_foo() implementations would be masked.
# v1.0.0
- [backward incompat] `Cmdln.main()` no longer takes an `optparser`
argument. Top-level option parsing has been changed so that top-level
options for a `Cmdln` subclass can more naturally be defined and
handled on the class definition. Changes:
- `Cmdln.main()` calls `self.get_optparser` to get an option handler.
Subclasses should overload this method for custom top-level options.
- After option parsing, but before sub-command handling, the
`self.postoptparse()` hook is called.
- Add a `version` attribute on `Cmdln` subclasses. If set, the default
top-level option parser will have a `--version` attribute.
- [backward incompat] Simplify the StopProcessing/opts.stop handling for
option handling in subcommands. The "opts" argument to "do_*"
sub-command functions will no longer have a "stop" value.
StopProcessing is now called StopOptionProcessing. This shouldn't
affect simple usage of cmdln.py.
- adjust osc.commandline for these changes.
- make startdir a module global
- add info about usage with the 'nosetests' test discovery tool
- add tests for commandline options
- results: remove obsolete code handling commandline arguments
-- Peter Poeml <poeml@suse.de> Thu, 21 May 2007 00:00:00 +0200
osc (0.96-5) unstable; urgency=high
* update to r1657:
- rebuildpac: fix mistyped repository parameter

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bf7dd5036925a65b9c9c9286fcb391f059a4edc41fbdd6a0ea21ed41a99035d7
size 54555
oid sha256:76c9fcca35895c5c330bb8a6643234c2902f977ea747cc77efbce19fd2106ed5
size 54839

View File

@ -1,3 +1,29 @@
-------------------------------------------------------------------
Tue Jun 26 15:22:08 CEST 2007 - poeml@suse.de
- update to r1783:
- build: don't stumble over an empty list of packages when trying to verify packages
- ls: add verbose option to print extra information for packages
- for ls, co, meta, editmeta, linkpac, copypac, rebuildpac, and wipebinaries
(basically all the server-side commands), allow arguments "foo/bar" instead
of "foo bar"
-------------------------------------------------------------------
Fri Jun 22 15:23:24 CEST 2007 - poeml@suse.de
- update to r1769:
fix return values in metafile.sync() which I broke whey I applied
Marcus Huewe's patch...
-------------------------------------------------------------------
Thu Jun 21 17:15:54 CEST 2007 - poeml@suse.de
- update to r1763:
- set correct Content-Type header on PUT requests
(application/octet-stream). Rails 1.2 seems to be more strict
in this regard. Patch from Marcus Rueckert.
- init: make usage (and usage info) info more precise
-------------------------------------------------------------------
Thu Jun 14 16:31:30 CEST 2007 - poeml@suse.de

View File

@ -13,7 +13,7 @@
Name: osc
BuildRequires: python-devel
Version: 0.96
Release: 24
Release: 26
Group: Development/Tools/Other
License: GNU General Public License (GPL)
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -21,12 +21,22 @@ URL: https://forgesvn1.novell.com/svn/opensuse/trunk/buildservice/src
# v=0.96; 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
%if %{?suse_version:%suse_version}%{?!suse_version:1} < 1020
Requires: python-urlgrabber
#
%if 0%{?suse_version}
%if %suse_version < 1020
Requires: python-elementtree
%else
Requires: python-xml
%endif
Requires: python-urlgrabber
%endif
#
%if 0%{?fedora_version}
%if %fedora_version < 7
Requires: python-elementtree
%endif
%endif
#
%{!?python_sitelib: %define python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%description
@ -63,6 +73,23 @@ ln -s osc-wrapper.py %{buildroot}/%{_bindir}/osc
%doc README TODO NEWS
%changelog
* Tue Jun 26 2007 - poeml@suse.de
- update to r1783:
- build: don't stumble over an empty list of packages when trying to verify packages
- ls: add verbose option to print extra information for packages
- for ls, co, meta, editmeta, linkpac, copypac, rebuildpac, and wipebinaries
(basically all the server-side commands), allow arguments "foo/bar" instead
of "foo bar"
* Fri Jun 22 2007 - poeml@suse.de
- update to r1769:
fix return values in metafile.sync() which I broke whey I applied
Marcus Huewe's patch...
* Thu Jun 21 2007 - poeml@suse.de
- update to r1763:
- set correct Content-Type header on PUT requests
(application/octet-stream). Rails 1.2 seems to be more strict
in this regard. Patch from Marcus Rueckert.
- init: make usage (and usage info) info more precise
* Thu Jun 14 2007 - poeml@suse.de
- update to r1733:
New features kindly implemented by Marcus Huewe: