Hello community,
here is the log from the commit of package python-wsgi_intercept for
openSUSE:Factory checked in at 2014-02-02 07:39:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-wsgi_intercept (Old)
and /work/SRC/openSUSE:Factory/.python-wsgi_intercept.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-wsgi_intercept"
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-wsgi_intercept/python-wsgi_intercept.changes
2014-01-23 15:54:58.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.python-wsgi_intercept.new/python-wsgi_intercept.changes
2014-02-02 07:39:09.000000000 +0100
@@ -1,0 +2,20 @@
+Thu Jan 30 16:44:30 UTC 2014 - [email protected]
+
+- Added wsgi_intercept-disable-testbogusdomain.patch: Disable some tests
+ on 12.3 where patching fails
+
+-------------------------------------------------------------------
+Thu Jan 30 15:22:14 UTC 2014 - [email protected]
+
+- Update to version 0.6.1:
+ + Better testing dependency structure
+- Dropped patches:
+ + 0001-Depend-on-requests-2.0.1.patch (merged upstream)
+
+-------------------------------------------------------------------
+Thu Jan 30 14:01:10 UTC 2014 - [email protected]
+
+- Added 0001-Depend-on-requests-2.0.1.patch: Require requests>=2.0.1.
+ Really a requirement
+
+-------------------------------------------------------------------
Old:
----
wsgi_intercept-0.6.0.tar.gz
New:
----
wsgi_intercept-0.6.1.tar.gz
wsgi_intercept-disable-testbogusdomain.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-wsgi_intercept.spec ++++++
--- /var/tmp/diff_new_pack.TpjsA8/_old 2014-02-02 07:39:09.000000000 +0100
+++ /var/tmp/diff_new_pack.TpjsA8/_new 2014-02-02 07:39:09.000000000 +0100
@@ -17,21 +17,23 @@
Name: python-wsgi_intercept
-Version: 0.6.0
+Version: 0.6.1
Release: 0
Summary: Installs a WSGI application in place of a real URI for testing
License: MIT
Group: Development/Languages/Python
Url: http://code.google.com/p/wsgi-intercept/
Source:
http://pypi.python.org/packages/source/w/wsgi_intercept/wsgi_intercept-%{version}.tar.gz
+# PATCH-FIX-OPENSUSE [email protected] -- Patching fails
+Patch0: wsgi_intercept-disable-testbogusdomain.patch
BuildRequires: python-devel
BuildRequires: python-setuptools
# Test requirements:
BuildRequires: python-httplib2
BuildRequires: python-nose
BuildRequires: python-pytest >= 2.4
-BuildRequires: python-requests
-Recommends: python-requests
+BuildRequires: python-requests >= 2.0.1
+Recommends: python-requests >= 2.0.1
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%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()")}
@@ -48,6 +50,9 @@
%prep
%setup -q -n wsgi_intercept-%{version}
+%if 0%{?suse_version} == 1230
+%patch0 -p1
+%endif
%build
python setup.py build
++++++ wsgi_intercept-0.6.0.tar.gz -> wsgi_intercept-0.6.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/wsgi_intercept-0.6.0/PKG-INFO
new/wsgi_intercept-0.6.1/PKG-INFO
--- old/wsgi_intercept-0.6.0/PKG-INFO 2013-11-05 22:15:44.000000000 +0100
+++ new/wsgi_intercept-0.6.1/PKG-INFO 2014-01-30 15:46:01.000000000 +0100
@@ -1,6 +1,6 @@
-Metadata-Version: 1.1
+Metadata-Version: 1.0
Name: wsgi_intercept
-Version: 0.6.0
+Version: 0.6.1
Summary: wsgi_intercept installs a WSGI application in place of a real URI for
testing.
Home-page: http://pypi.python.org/pypi/wsgi_intercept
Author: Titus Brown, Kumar McMillan, Chris Dent
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/wsgi_intercept-0.6.0/setup.cfg
new/wsgi_intercept-0.6.1/setup.cfg
--- old/wsgi_intercept-0.6.0/setup.cfg 2013-11-05 22:15:44.000000000 +0100
+++ new/wsgi_intercept-0.6.1/setup.cfg 2014-01-30 15:46:01.000000000 +0100
@@ -5,7 +5,7 @@
ignore = E128,E127,E126
[egg_info]
+tag_build =
tag_date = 0
tag_svn_revision = 0
-tag_build =
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/wsgi_intercept-0.6.0/setup.py
new/wsgi_intercept-0.6.1/setup.py
--- old/wsgi_intercept-0.6.0/setup.py 2013-11-02 01:24:42.000000000 +0100
+++ new/wsgi_intercept-0.6.1/setup.py 2014-01-30 15:37:07.000000000 +0100
@@ -32,7 +32,7 @@
'testing': [
'pytest>=2.4',
'httplib2',
- 'requests'
+ 'requests>=2.0.1'
],
},
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/wsgi_intercept-0.6.0/test/__init__.py
new/wsgi_intercept-0.6.1/test/__init__.py
--- old/wsgi_intercept-0.6.0/test/__init__.py 2012-10-02 16:46:49.000000000
+0200
+++ new/wsgi_intercept-0.6.1/test/__init__.py 2014-01-30 15:41:31.000000000
+0100
@@ -1,2 +1,5 @@
-import warnings
-warnings.simplefilter('error')
+import os
+
+if os.environ.get('USER') == 'cdent':
+ import warnings
+ warnings.simplefilter('error')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/wsgi_intercept-0.6.0/wsgi_intercept/__init__.py
new/wsgi_intercept-0.6.1/wsgi_intercept/__init__.py
--- old/wsgi_intercept-0.6.0/wsgi_intercept/__init__.py 2013-11-05
22:07:17.000000000 +0100
+++ new/wsgi_intercept-0.6.1/wsgi_intercept/__init__.py 2014-01-30
15:44:14.000000000 +0100
@@ -88,7 +88,7 @@
"""
from __future__ import print_function
-__version__ = '0.6.0'
+__version__ = '0.6.1'
import sys
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/wsgi_intercept-0.6.0/wsgi_intercept.egg-info/PKG-INFO
new/wsgi_intercept-0.6.1/wsgi_intercept.egg-info/PKG-INFO
--- old/wsgi_intercept-0.6.0/wsgi_intercept.egg-info/PKG-INFO 2013-11-05
22:15:44.000000000 +0100
+++ new/wsgi_intercept-0.6.1/wsgi_intercept.egg-info/PKG-INFO 2014-01-30
15:46:00.000000000 +0100
@@ -1,6 +1,6 @@
-Metadata-Version: 1.1
+Metadata-Version: 1.0
Name: wsgi-intercept
-Version: 0.6.0
+Version: 0.6.1
Summary: wsgi_intercept installs a WSGI application in place of a real URI for
testing.
Home-page: http://pypi.python.org/pypi/wsgi_intercept
Author: Titus Brown, Kumar McMillan, Chris Dent
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/wsgi_intercept-0.6.0/wsgi_intercept.egg-info/requires.txt
new/wsgi_intercept-0.6.1/wsgi_intercept.egg-info/requires.txt
--- old/wsgi_intercept-0.6.0/wsgi_intercept.egg-info/requires.txt
2013-11-05 22:15:44.000000000 +0100
+++ new/wsgi_intercept-0.6.1/wsgi_intercept.egg-info/requires.txt
2014-01-30 15:46:00.000000000 +0100
@@ -3,4 +3,4 @@
[testing]
pytest>=2.4
httplib2
-requests
\ No newline at end of file
+requests>=2.0.1
\ No newline at end of file
++++++ wsgi_intercept-disable-testbogusdomain.patch ++++++
diff -ruN a/test/test_httplib2.py b/test/test_httplib2.py
--- a/test/test_httplib2.py 2013-11-05 21:55:09.000000000 +0100
+++ b/test/test_httplib2.py 2014-01-30 17:27:27.499618248 +0100
@@ -28,12 +28,6 @@
uninstall()
-def test_bogus_domain():
- install()
- py.test.raises(gaierror,
-
'httplib2_intercept.HTTP_WSGIInterceptorWithTimeout("_nonexistant_domain_").connect()')
- uninstall()
-
def test_https_success():
install(443)
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]