Hello community,
here is the log from the commit of package python-oauth2client for
openSUSE:Factory checked in at 2015-12-23 08:49:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-oauth2client (Old)
and /work/SRC/openSUSE:Factory/.python-oauth2client.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-oauth2client"
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-oauth2client/python-oauth2client.changes
2015-12-09 22:31:26.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.python-oauth2client.new/python-oauth2client.changes
2015-12-23 08:49:42.000000000 +0100
@@ -1,0 +2,17 @@
+Tue Dec 1 17:14:33 UTC 2015 - [email protected]
+
+- Remove -django subpackage requirements for SLE 11
+
+-------------------------------------------------------------------
+Tue Dec 1 16:58:47 UTC 2015 - [email protected]
+
+- Do not build the -django subpackage on SLE 11
+ + The latest version of Django no longer builds on SLE 11, Python
+ is too old
+
+-------------------------------------------------------------------
+Tue Dec 1 14:57:13 UTC 2015 - [email protected]
+
+- Include in SLE 12 (FATE#319904, bsc#954690)
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-oauth2client.spec ++++++
--- /var/tmp/diff_new_pack.kl432S/_old 2015-12-23 08:49:42.000000000 +0100
+++ /var/tmp/diff_new_pack.kl432S/_new 2015-12-23 08:49:42.000000000 +0100
@@ -33,15 +33,17 @@
Requires: python-pycrypto
Requires: python-rsa >= 3.1.4
Requires: python-six >= 1.6.1
+%if 0%{?suse_version} && 0%{?suse_version} > 1110
BuildRequires: python-Django
+%endif
BuildRequires: python-flask
BuildRequires: python-httplib2 >= 0.9.1
BuildRequires: python-keyring
BuildRequires: python-mock
BuildRequires: python-nose
+BuildRequires: python-pyOpenSSL
BuildRequires: python-pyasn1-modules >= 0.0.5
BuildRequires: python-pycrypto
-BuildRequires: python-pyOpenSSL
BuildRequires: python-rsa >= 3.1.4
BuildRequires: python-setuptools
BuildRequires: python-six >= 1.6.1
@@ -57,6 +59,7 @@
%description
This is a Python library for accessing resources protected by OAuth 2.0.
+%if 0%{?suse_version} && 0%{?suse_version} > 1110
%package django
Summary: Django extension
Group: Development/Libraries/Python
@@ -68,6 +71,7 @@
Utilities for using OAuth 2.0 in conjunction with
the Django datastore.
+%endif
%package flask
Summary: Flask extension
@@ -96,17 +100,19 @@
Summary: Tests for python-oauth2client
Group: Development/Libraries/Python
PreReq: python-oauth2client = %version
+%if 0%{?suse_version} && 0%{?suse_version} > 1110
PreReq: python-oauth2client-django = %version
+%endif
PreReq: python-oauth2client-flask = %version
PreReq: python-oauth2client-gce = %version
Requires: python-coverage
Requires: python-httplib2 >= 0.9.1
Requires: python-mock
+Requires: python-nose
Requires: python-pyasn1 >= 0.1.7
Requires: python-pyasn1-modules >= 0.0.5
Requires: python-rsa >= 3.1.4
Requires: python-six >= 1.6.1
-Requires: python-nose
Requires: python-unittest2
%description test
@@ -116,6 +122,9 @@
%setup -q -n oauth2client-%{version}
# remove extensions currently not packaged
rm oauth2client/*appengine*
+%if 0%{?suse_version} && 0%{?suse_version} <= 1110
+rm oauth2client/*django*
+%endif
%patch1
%build
@@ -126,10 +135,11 @@
mkdir -p %{buildroot}%{python_sitelib}/tests/oauth2client
# remove tests for extensions we do not build at the moment
rm tests/*appengine*
+%if 0%{?suse_version} && 0%{?suse_version} <= 1110
+rm tests/*django*
+%endif
cp -r tests/* %{buildroot}%{python_sitelib}/tests/oauth2client
-
-
%check
nosetests
@@ -138,7 +148,9 @@
%doc CHANGELOG.md CONTRIBUTING.md LICENSE README.md
%dir %{python_sitelib}/oauth2client
%dir %{python_sitelib}/oauth2client-%{version}-py%{py_ver}.egg-info
+%if 0%{?suse_version} && 0%{?suse_version} > 1110
%exclude %{python_sitelib}/oauth2client/django*
+%endif
%exclude %{python_sitelib}/oauth2client/flask*
%exclude %{python_sitelib}/oauth2client/gce*
%{python_sitelib}/oauth2client/*
@@ -148,9 +160,11 @@
%defattr(-,root,root,-)
%{python_sitelib}/oauth2client/flask*
+%if 0%{?suse_version} && 0%{?suse_version} > 1110
%files django
%defattr(-,root,root,-)
%{python_sitelib}/oauth2client/django*
+%endif
%files gce
%defattr(-,root,root,-)
@@ -161,3 +175,5 @@
%dir %{python_sitelib}/tests
%dir %{python_sitelib}/tests/oauth2client
%{python_sitelib}/tests/oauth2client/*
+
+%changelog