This commit is contained in:
parent
ac3dbb9bfc
commit
8be28ec63b
@ -1,3 +1,37 @@
|
||||
osc (0.105-1) unstable; urgency=high
|
||||
|
||||
- update to r4401: (version 0.105):
|
||||
- osc submitreq list:
|
||||
- can now be called without parameters, applying to the working copy then.
|
||||
- calling it in a project directory is also possible now.
|
||||
- output was improved. Newest requests are listed first.
|
||||
- osc submitreq delete: a new action which has been added
|
||||
- osc submitreq list/create: use api URL from the working copy
|
||||
- osc meta: editing returns the API error description instead of a plain HTTP
|
||||
error if available
|
||||
- osc copypac: use the correct userid when copying to another api host
|
||||
- osc importsrcpkg: disable signature check when getting data from a rpm file
|
||||
- osc linkpac: --revision option added.
|
||||
- osc search: added option -i|--involved, to show in which projects/packages
|
||||
a developer is involved
|
||||
- osc build: double check the buildinfo for local builds. Refuse to build for
|
||||
architectures that are not supported by the host
|
||||
- osc buildhist: change the output into a format which better matches actual
|
||||
RPM filenames.
|
||||
- osc commit: give commit message tempfiles a ".diff" suffix, so syntax
|
||||
highlighting automatically works in capable editors
|
||||
- other bug fixes:
|
||||
- don't expand/unexpand if the working copy has local modifications - this is
|
||||
an ugly workaround for #399247 but this way the working copy isn't screwed up
|
||||
- work around a bug which causes packages to be cached locally under the
|
||||
"None" architecture (and therefore causing issues when building for more
|
||||
than one architecture via osc build).
|
||||
- don't create _linkerror files in working copies
|
||||
- better error handling (mostly printing more details) in a number of cases
|
||||
- show error messages from the API also for type 500 errors
|
||||
|
||||
-- Peter Poeml <poeml@suse.de> Wed, 9 Jul 2008 12:00:00 +0200
|
||||
|
||||
osc (0.104-1) unstable; urgency=high
|
||||
|
||||
- update to r4164 (version 0.104):
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:721e5b204e591b8729b95e0836d2674638d80475b8e35ca85dabe96d63af4159
|
||||
size 89422
|
3
osc-0.105.tar.gz
Normal file
3
osc-0.105.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d717d1c17e4acd8f690a5c522bd0683a7f41ce9d03380199b2ef4af3b1c21a2c
|
||||
size 90545
|
33
osc.changes
33
osc.changes
@ -1,3 +1,36 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 9 17:25:25 CEST 2008 - poeml@suse.de
|
||||
|
||||
- update to r4401: (version 0.105):
|
||||
- osc submitreq list:
|
||||
- can now be called without parameters, applying to the working copy then.
|
||||
- calling it in a project directory is also possible now.
|
||||
- output was improved. Newest requests are listed first.
|
||||
- osc submitreq delete: a new action which has been added
|
||||
- osc submitreq list/create: use api URL from the working copy
|
||||
- osc meta: editing returns the API error description instead of a plain HTTP
|
||||
error if available
|
||||
- osc copypac: use the correct userid when copying to another api host
|
||||
- osc importsrcpkg: disable signature check when getting data from a rpm file
|
||||
- osc linkpac: --revision option added.
|
||||
- osc search: added option -i|--involved, to show in which projects/packages
|
||||
a developer is involved
|
||||
- osc build: double check the buildinfo for local builds. Refuse to build for
|
||||
architectures that are not supported by the host
|
||||
- osc buildhist: change the output into a format which better matches actual
|
||||
RPM filenames.
|
||||
- osc commit: give commit message tempfiles a ".diff" suffix, so syntax
|
||||
highlighting automatically works in capable editors
|
||||
- other bug fixes:
|
||||
- don't expand/unexpand if the working copy has local modifications - this is
|
||||
an ugly workaround for bnc#399247 but this way the working copy isn't screwed up
|
||||
- work around a bug which causes packages to be cached locally under the
|
||||
"None" architecture (and therefore causing issues when building for more
|
||||
than one architecture via osc build).
|
||||
- don't create _linkerror files in working copies
|
||||
- better error handling (mostly printing more details) in a number of cases
|
||||
- show error messages from the API also for type 500 errors
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 11 10:34:53 CEST 2008 - poeml@suse.de
|
||||
|
||||
|
34
osc.spec
34
osc.spec
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package osc (Version 0.104)
|
||||
# spec file for package osc (Version 0.105)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
@ -13,7 +13,7 @@
|
||||
|
||||
Name: osc
|
||||
BuildRequires: python-devel
|
||||
Version: 0.104
|
||||
Version: 0.105
|
||||
Release: 1
|
||||
Group: Development/Tools/Other
|
||||
License: GPL v2 or later
|
||||
@ -80,6 +80,36 @@ mkdir -p %{buildroot}/var/lib/osc-plugins
|
||||
%doc README TODO NEWS
|
||||
|
||||
%changelog
|
||||
* Wed Jul 09 2008 poeml@suse.de
|
||||
- update to r4401: (version 0.105):
|
||||
- osc submitreq list:
|
||||
- can now be called without parameters, applying to the working copy then.
|
||||
- calling it in a project directory is also possible now.
|
||||
- output was improved. Newest requests are listed first.
|
||||
- osc submitreq delete: a new action which has been added
|
||||
- osc submitreq list/create: use api URL from the working copy
|
||||
- osc meta: editing returns the API error description instead of a plain HTTP
|
||||
error if available
|
||||
- osc copypac: use the correct userid when copying to another api host
|
||||
- osc importsrcpkg: disable signature check when getting data from a rpm file
|
||||
- osc linkpac: --revision option added.
|
||||
- osc search: added option -i|--involved, to show in which projects/packages
|
||||
a developer is involved
|
||||
- osc build: double check the buildinfo for local builds. Refuse to build for
|
||||
architectures that are not supported by the host
|
||||
- osc buildhist: change the output into a format which better matches actual
|
||||
RPM filenames.
|
||||
- osc commit: give commit message tempfiles a ".diff" suffix, so syntax
|
||||
highlighting automatically works in capable editors
|
||||
- other bug fixes:
|
||||
- don't expand/unexpand if the working copy has local modifications - this is
|
||||
an ugly workaround for bnc#399247 but this way the working copy isn't screwed up
|
||||
- work around a bug which causes packages to be cached locally under the
|
||||
"None" architecture (and therefore causing issues when building for more
|
||||
than one architecture via osc build).
|
||||
- don't create _linkerror files in working copies
|
||||
- better error handling (mostly printing more details) in a number of cases
|
||||
- show error messages from the API also for type 500 errors
|
||||
* Wed Jun 11 2008 poeml@suse.de
|
||||
- update to r4164 (version 0.104):
|
||||
- osc update: after update, reset the revision when updating
|
||||
|
Loading…
Reference in New Issue
Block a user