Accepting request 135387 from home:poorboywilly:branches:devel:languages:python

Update to 1.2.2 and remove unneeded dependencies.

OBS-URL: https://build.opensuse.org/request/show/135387
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-WebOb?expand=0&rev=8
This commit is contained in:
Ismail Dönmez
2012-09-23 09:24:29 +00:00
committed by Git OBS Bridge
parent 97077b7ee9
commit 505c4f2df3
4 changed files with 26 additions and 34 deletions

3
WebOb-1.2.2.zip Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:356b7277941fb263bfef9d3c4279fb1058ff9ea91b5f8a886a9579d614c79787
size 219653

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4b6599ac6ac18fa1f0f637c1b0f765db4f60858ba5ed049bfd5ce7463771016a
size 199678

View File

@@ -1,23 +1,18 @@
-------------------------------------------------------------------
Tue Jan 31 13:45:16 UTC 2012 - saschpe@suse.de
Sat Sep 22 18:48:34 UTC 2012 - os-dev@jacraig.com
- Spec cleanup:
* Simplified macro usage
* Remove unneeded runtime requirement on python-nose
* Run testsuite
- Update to version 1.2b2:
* Fix request.cookies.get('name', 'default'). Previously default was ignored.
- Changes from version 1.2b1:
* Mutating the request.cookies property now reflects the mutations into the HTTP_COOKIES environ header.
* Response.etag = (tag, False) sets weak etag.
* Range only parses single range now.
* Range.satisfiable(..) is gone.
* Accept.best_matches() is gone; use list(request.accept) or request.accept.best_match(..) instead (applies to all Accept-* headers) or similar with request.accept_language.
* Response.request and Response.environ attrs are undeprecated and no longer raise exceptions when used. These can also be passed to the Response constructor. This is to support codebases that pass them to the constructor or assign them to a response instance. However, some behavior differences from 1.1 exist. In particular, synchronization is no longer done between environ and request attribute properties of Response; you may pass either to the constructor (or both) or assign one or the other or both, but they wont be managed specially and will remain the same over the lifetime of the response just as you passed them. Default values for both request and environ on any given response are None now.
* Undeprecated uscript_name and upath_info.
* For backwards compatibility purposes, switch req.script_name and path_info back again to contain “raw” undecoded native strings rather than text. Use uscript_name and upath_info to get the text version of SCRIPT_NAME and PATH_INFO.
* Dont raise an exception if unicode_errors or decode_param_names is passed to the Request constructor. Instead, emit a warning. For benefit of Pylons 1.X, which passes both.
* Dont raise an exception if HTTPException.exception is used; instead emit a warning. For benefit of Pylons 1.X, which uses it.
- Update to 1.2.2:
* Fix multiple calls to ``cache_expires()`` not fully overriding the
previously set headers.
* Fix parsing of form submissions where fields have different encodings.
- Many changes between versions 1.1.1 and 1.2.1. Please see docs/news.txt
for full details. Major changes include support for only Python 3.2, 2.7,
2.6.
- Removed dependency on python-Tempita and python-wsgiproxy: these are only
used in example code in the documentation and not actual runtime reqs.
- Removed dependency on python-nose: it is only needed to run tests.
- Removed dependency on python-WebTest: it was removed as a testing
requirement in 1.2a1.
-------------------------------------------------------------------
Mon Nov 28 15:23:37 UTC 2011 - prusnak@opensuse.org

View File

@@ -14,8 +14,10 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: python-WebOb
Version: 1.2b2
Version: 1.2.2
Release: 0
Summary: WSGI request and response object
License: MIT
@@ -24,19 +26,17 @@ Url: http://webob.org/
Source: http://pypi.python.org/packages/source/W/WebOb/WebOb-%{version}.zip
BuildRequires: python-devel
BuildRequires: python-distribute
BuildRequires: python-nose
BuildRequires: unzip
Requires: python-Tempita
Requires: python-WebTest
Requires: python-WSGIProxy
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Provides: python-webob = %{version}
Obsoletes: python-webob < %{version}
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%else
%if 0%{?suse_version}
%py_requires
%if 0%{?suse_version} > 1110
BuildArch: noarch
%endif
%endif
Provides: python-webob = %{version}
Obsoletes: python-webob < %{version}
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%description
WebOb provides wrappers around the WSGI request environment, and an
@@ -55,9 +55,6 @@ python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%check
nosetests
%files
%defattr(-,root,root,-)
%doc docs/*