This commit is contained in:
parent
3195722fa8
commit
c59a1aa1af
@ -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
|
osc (0.96-5) unstable; urgency=high
|
||||||
* update to r1657:
|
* update to r1657:
|
||||||
- rebuildpac: fix mistyped repository parameter
|
- rebuildpac: fix mistyped repository parameter
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:bf7dd5036925a65b9c9c9286fcb391f059a4edc41fbdd6a0ea21ed41a99035d7
|
oid sha256:76c9fcca35895c5c330bb8a6643234c2902f977ea747cc77efbce19fd2106ed5
|
||||||
size 54555
|
size 54839
|
||||||
|
26
osc.changes
26
osc.changes
@ -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
|
Thu Jun 14 16:31:30 CEST 2007 - poeml@suse.de
|
||||||
|
|
||||||
|
33
osc.spec
33
osc.spec
@ -13,7 +13,7 @@
|
|||||||
Name: osc
|
Name: osc
|
||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
Version: 0.96
|
Version: 0.96
|
||||||
Release: 24
|
Release: 26
|
||||||
Group: Development/Tools/Other
|
Group: Development/Tools/Other
|
||||||
License: GNU General Public License (GPL)
|
License: GNU General Public License (GPL)
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
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
|
# 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
|
Source: osc-%{version}.tar.gz
|
||||||
Summary: openSUSE (build service) commander
|
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
|
Requires: python-elementtree
|
||||||
%else
|
%else
|
||||||
Requires: python-xml
|
Requires: python-xml
|
||||||
%endif
|
%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()")}
|
%{!?python_sitelib: %define python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -63,6 +73,23 @@ ln -s osc-wrapper.py %{buildroot}/%{_bindir}/osc
|
|||||||
%doc README TODO NEWS
|
%doc README TODO NEWS
|
||||||
|
|
||||||
%changelog
|
%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
|
* Thu Jun 14 2007 - poeml@suse.de
|
||||||
- update to r1733:
|
- update to r1733:
|
||||||
New features kindly implemented by Marcus Huewe:
|
New features kindly implemented by Marcus Huewe:
|
||||||
|
Loading…
Reference in New Issue
Block a user