OBS User unknown 2007-07-18 20:57:27 +00:00 committed by Git OBS Bridge
parent b6f9b3ad74
commit 152462ae76
5 changed files with 146 additions and 5 deletions

View File

@ -1,3 +1,58 @@
osc (0.97-3) unstable; urgency=high
* update to r1861:
- commit (using the currently documented way):
- do DELETEs _before_ generating an "upload" revision with
PUTs. The DELETEs would be invalidated by the commit.
- switch to new commit mode also if the -F switch is used
- flush stdout, so that the progress dots are seen directly
when being written
-- Peter Poeml <poeml@suse.de> Wed, 18 Jul 2007 00:00:00 +0200
osc (0.97-3) unstable; urgency=high
* update to r1846:
- added initial search support (some ideas are taken from the webclient):
* when searching a package/project it
is also possible to search for the search term
in the <title /> and <description /> elements of
a package/project.
* show only exact matches
- new meta command, replacing editmeta, editprj, createprj,
editpac, createpac, edituser. Can either show existing meta, or
edit it (--edit), or upload content (--file). Fix metadata
change detection, which no longer relies on the timestamp of
the temporary file.
- log:
- renamed previous "log" command to "buildlog" (short: bl)
- implementing a log command to review the commit log
- commit:
- commit: implemented -m and -F option for the commit message.
NOTE: if -m is used, osc uses a different mode of uploading
files and commit them, namely the way which is currently
documented in the api. So far, osc was uploading each file
separately through the old backward compatible way. This way
of committing can also be forced with do_commits = 1 in
.oscrc.
- other changes:
- api now sends HTTP/1.1 400 Bad Request for invalid xml. Thus,
show the reply body because it contains helpful info.
- if PUT on metadata fails with a 500, and http_debug is True,
print out the body of the server reply
- improved exception handling in some places
- updatepacmetafromspec: read spec files in utf-8, or whatever
the preferred encoding is in the locale
-- Peter Poeml <poeml@suse.de> Mon, 16 Jul 2007 00:00:00 +0200
osc (0.97-2) unstable; urgency=high
* remove dependency on build package
-- Peter Poeml <poeml@suse.de> Fri, 13 Jul 2007 00:00:00 +0200
osc (0.97-1) unstable; urgency=high
* update to r1825:

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:07c2b255cc39b8ebb2f1e29842f9b97bfb5c562e9903a881b304f5fc6348e68c
size 2055
oid sha256:014d164354f49393e10f1ab8844d0a73302172e0ae945d73649e13df2e359474
size 2058

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:190398c8a04f7a1ca4bb6ac8ca5a17eb155e7482d81b5af718f3e36c340ef862
size 56628
oid sha256:2ece37bc46902ebd62d6b4706e91ce6e33a030692a83f5fe01890ea7542d0077
size 59871

View File

@ -1,3 +1,49 @@
-------------------------------------------------------------------
Wed Jul 18 15:21:48 CEST 2007 - poeml@suse.de
- update to r1861:
- commit (using the currently documented way):
- do DELETEs _before_ generating an "upload" revision with
PUTs. The DELETEs would be invalidated by the commit.
- switch to new commit mode also if the -F switch is used
- flush stdout, so that the progress dots are seen directly
when being written
-------------------------------------------------------------------
Mon Jul 16 18:30:18 CEST 2007 - poeml@suse.de
- update to r1846:
- added initial search support (some ideas are taken from the webclient):
* when searching a package/project it
is also possible to search for the search term
in the <title /> and <description /> elements of
a package/project.
* show only exact matches
- new meta command, replacing editmeta, editprj, createprj,
editpac, createpac, edituser. Can either show existing meta, or
edit it (--edit), or upload content (--file). Fix metadata
change detection, which no longer relies on the timestamp of
the temporary file.
- log:
- renamed previous "log" command to "buildlog" (short: bl)
- implementing a log command to review the commit log
- commit:
- commit: implemented -m and -F option for the commit message.
NOTE: if -m is used, osc uses a different mode of uploading
files and commit them, namely the way which is currently
documented in the api. So far, osc was uploading each file
separately through the old backward compatible way. This way
of committing can also be forced with do_commits = 1 in
.oscrc.
- other changes:
- api now sends HTTP/1.1 400 Bad Request for invalid xml. Thus,
show the reply body because it contains helpful info.
- if PUT on metadata fails with a 500, and http_debug is True,
print out the body of the server reply
- improved exception handling in some places
- updatepacmetafromspec: read spec files in utf-8, or whatever
the preferred encoding is in the locale
-------------------------------------------------------------------
Wed Jul 11 11:20:24 CEST 2007 - poeml@suse.de

View File

@ -13,7 +13,7 @@
Name: osc
BuildRequires: python-devel
Version: 0.97
Release: 1
Release: 4
Group: Development/Tools/Other
License: GPL v2 or later
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -75,6 +75,46 @@ mkdir -p %{buildroot}/var/lib/osc-plugins
%doc README TODO NEWS
%changelog
* Wed Jul 18 2007 - poeml@suse.de
- update to r1861:
- commit (using the currently documented way):
- do DELETEs _before_ generating an "upload" revision with
PUTs. The DELETEs would be invalidated by the commit.
- switch to new commit mode also if the -F switch is used
- flush stdout, so that the progress dots are seen directly
when being written
* Mon Jul 16 2007 - poeml@suse.de
- update to r1846:
- added initial search support (some ideas are taken from the webclient):
* when searching a package/project it
is also possible to search for the search term
in the <title /> and <description /> elements of
a package/project.
* show only exact matches
- new meta command, replacing editmeta, editprj, createprj,
editpac, createpac, edituser. Can either show existing meta, or
edit it (--edit), or upload content (--file). Fix metadata
change detection, which no longer relies on the timestamp of
the temporary file.
- log:
- renamed previous "log" command to "buildlog" (short: bl)
- implementing a log command to review the commit log
- commit:
- commit: implemented -m and -F option for the commit message.
NOTE: if -m is used, osc uses a different mode of uploading
files and commit them, namely the way which is currently
documented in the api. So far, osc was uploading each file
separately through the old backward compatible way. This way
of committing can also be forced with do_commits = 1 in
.oscrc.
- other changes:
- api now sends HTTP/1.1 400 Bad Request for invalid xml. Thus,
show the reply body because it contains helpful info.
- if PUT on metadata fails with a 500, and http_debug is True,
print out the body of the server reply
- improved exception handling in some places
- updatepacmetafromspec: read spec files in utf-8, or whatever
the preferred encoding is in the locale
* Wed Jul 11 2007 - poeml@suse.de
- update to r1825:
- version 0.97