This commit is contained in:
parent
0c24e3e658
commit
bbd7571c6f
69
debian.changelog
Normal file
69
debian.changelog
Normal file
@ -0,0 +1,69 @@
|
||||
osc (0.9-4) unstable; urgency=high
|
||||
* update to r1594:
|
||||
- save and reuse HTTP server cookies, speeding HTTP requests up
|
||||
about 5 times (in our iChain setup anyway...)
|
||||
- rewrite the HTTP handling
|
||||
- adding http_GET/POST/PUT/DELETE() functions, which dispatch to
|
||||
http_request(), and use them everywhere
|
||||
- removing othermethods.py
|
||||
- keeping urlopen(), in case it is used from externally, but have it print out
|
||||
a "depracated" message
|
||||
- finally, implementing a global HTTP debug mode
|
||||
- if data to be sent is large, mmap it instead of reading at once
|
||||
- build: remove debug print of tempfile name
|
||||
- README: add info about dependencies of osc python module
|
||||
- further the osc buildroot configuration example
|
||||
|
||||
-- Peter Poeml <poeml@suse.de> Mon, 20 Mar 2007 00:00:00 +0200
|
||||
|
||||
osc (0.9-3) unstable; urgency=high
|
||||
|
||||
* update to r1427:
|
||||
* apply fix from Christoph Thiel to use cElementTree from Python 2.5
|
||||
* let the diff subcommand return 1 if differences were found
|
||||
|
||||
-- Peter Poeml <poeml@suse.de> Mon, 12 Mar 2007 21:07:16 +0200
|
||||
|
||||
osc (0.9-2) unstable; urgency=high
|
||||
|
||||
* build package the new way
|
||||
|
||||
-- Peter Poeml <poeml@suse.de> Fri, 9 Mar 2007 10:16:16 +0200
|
||||
|
||||
osc (0.9-1) unstable; urgency=high
|
||||
|
||||
* update to 0.9
|
||||
|
||||
-- Peter Poeml <poeml@suse.de> Thu, 12 Oct 2006 15:34:00 +0200
|
||||
|
||||
osc (0.8-1) unstable; urgency=low
|
||||
|
||||
* update to 0.8
|
||||
|
||||
-- Peter Poeml <poeml@suse.de> Fri, 15 Sep 2006 16:42:22 +0200
|
||||
|
||||
osc (0.7-1) unstable; urgency=low
|
||||
|
||||
* update to 0.7
|
||||
|
||||
-- Peter Poeml <poeml@suse.de> Mon, 17 Jul 2006 13:26:48 +0200
|
||||
|
||||
osc (0.6-2) unstable; urgency=low
|
||||
|
||||
* new maintainer
|
||||
* fix version number
|
||||
* depend on python-celementtree and ${python:Depends}, update to new
|
||||
Debian python policy
|
||||
* add build-dependency on python-dev
|
||||
* remove unneeded debian/README.Debian
|
||||
* fix debian/copyright
|
||||
* fix long description
|
||||
|
||||
-- Rene Engelhard <rengelhard@suse.de> Wed, 5 Jul 2006 17:08:43 +0200
|
||||
|
||||
osc (0.5-1) unstable; urgency=low
|
||||
|
||||
* Initial release Closes: #nnnn (nnnn is the bug number of your ITP)
|
||||
|
||||
-- J.H.M. Dassen (Ray) <jdassen@debian.org> Fri, 12 May 2006 14:12:04 +0200
|
||||
|
3
debian.tar.gz
Normal file
3
debian.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:07c2b255cc39b8ebb2f1e29842f9b97bfb5c562e9903a881b304f5fc6348e68c
|
||||
size 2055
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:806aa2f645bb0564a0d65dfc57abde5fb9e9d46400bf178b67d54cf962fb6e2e
|
||||
size 33581
|
||||
oid sha256:435b7418601fde9a746d1d9bbaaece576bbd1c0b972a1842f5bfaa37cab514e5
|
||||
size 34803
|
||||
|
18
osc.changes
18
osc.changes
@ -1,3 +1,21 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 20 02:09:11 CEST 2007 - poeml@suse.de
|
||||
|
||||
- update to r1594:
|
||||
- save and reuse HTTP server cookies, speeding HTTP requests up
|
||||
about 5 times (in our iChain setup anyway...)
|
||||
- rewrite the HTTP handling
|
||||
- adding http_GET/POST/PUT/DELETE() functions, which dispatch to
|
||||
http_request(), and use them everywhere
|
||||
- removing othermethods.py
|
||||
- keeping urlopen(), in case it is used from externally, but have it print out
|
||||
a "depracated" message
|
||||
- finally, implementing a global HTTP debug mode
|
||||
- if data to be sent is large, mmap it instead of reading at once
|
||||
- build: remove debug print of tempfile name
|
||||
- README: add info about dependencies of osc python module
|
||||
- further the osc buildroot configuration example
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 30 00:25:24 CEST 2007 - poeml@suse.de
|
||||
|
||||
|
8
osc.dsc
Normal file
8
osc.dsc
Normal file
@ -0,0 +1,8 @@
|
||||
Format: 1.0
|
||||
Source: osc
|
||||
Version: 0.9-1
|
||||
Binary: osc
|
||||
Maintainer: Rene Engelhard <rengelhard@suse.de>
|
||||
Architecture: any
|
||||
Standards-Version: 3.7.1
|
||||
Build-Depends: debhelper (>= 4.0.0), python-dev
|
17
osc.spec
17
osc.spec
@ -13,7 +13,7 @@
|
||||
Name: osc
|
||||
BuildRequires: python-devel
|
||||
Version: 0.9
|
||||
Release: 1
|
||||
Release: 2
|
||||
Group: Development/Tools/Other
|
||||
License: GNU General Public License (GPL)
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@ -63,6 +63,21 @@ ln -s osc-wrapper.py %{buildroot}/%{_bindir}/osc
|
||||
%doc README TODO NEWS
|
||||
|
||||
%changelog
|
||||
* Fri Apr 20 2007 - poeml@suse.de
|
||||
- update to r1594:
|
||||
- save and reuse HTTP server cookies, speeding HTTP requests up
|
||||
about 5 times (in our iChain setup anyway...)
|
||||
- rewrite the HTTP handling
|
||||
- adding http_GET/POST/PUT/DELETE() functions, which dispatch to
|
||||
http_request(), and use them everywhere
|
||||
- removing othermethods.py
|
||||
- keeping urlopen(), in case it is used from externally, but have it print out
|
||||
a "depracated" message
|
||||
- finally, implementing a global HTTP debug mode
|
||||
- if data to be sent is large, mmap it instead of reading at once
|
||||
- build: remove debug print of tempfile name
|
||||
- README: add info about dependencies of osc python module
|
||||
- further the osc buildroot configuration example
|
||||
* Fri Mar 30 2007 - poeml@suse.de
|
||||
- update to r1551:
|
||||
- update: when updating multiple packages, print each package name
|
||||
|
Loading…
Reference in New Issue
Block a user