Hello community,
here is the log from the commit of package python-msrestazure for
openSUSE:Factory checked in at 2017-09-20 17:13:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-msrestazure (Old)
and /work/SRC/openSUSE:Factory/.python-msrestazure.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-msrestazure"
Wed Sep 20 17:13:07 2017 rev:3 rq:527379 version:0.4.11
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-msrestazure/python-msrestazure.changes
2017-07-19 12:21:41.650558564 +0200
+++
/work/SRC/openSUSE:Factory/.python-msrestazure.new/python-msrestazure.changes
2017-09-20 17:13:10.189510645 +0200
@@ -1,0 +2,7 @@
+Tue Sep 19 19:59:23 UTC 2017 - [email protected]
+
+- Add patch to drop compatible releases operator from setup.py,
+ required for SLES12 as the setuptools version is too old
+ + m_drop-compatible-releases-operator.patch
+
+-------------------------------------------------------------------
New:
----
m_drop-compatible-releases-operator.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-msrestazure.spec ++++++
--- /var/tmp/diff_new_pack.e3C0i0/_old 2017-09-20 17:13:10.797425069 +0200
+++ /var/tmp/diff_new_pack.e3C0i0/_new 2017-09-20 17:13:10.801424506 +0200
@@ -25,6 +25,7 @@
Group: Development/Languages/Python
Url: https://pypi.python.org/pypi/msrestazure
Source:
https://files.pythonhosted.org/packages/source/m/msrestazure/msrestazure-%{version}.tar.gz
+Patch0: m_drop-compatible-releases-operator.patch
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
@@ -42,6 +43,7 @@
%prep
%setup -q -n msrestazure-%{version}
+%patch0 -p1
%build
%python_build
++++++ m_drop-compatible-releases-operator.patch ++++++
diff -Nru msrestazure-0.4.11.orig/setup.py msrestazure-0.4.11/setup.py
--- msrestazure-0.4.11.orig/setup.py 2017-06-30 01:17:47.000000000 +0200
+++ msrestazure-0.4.11/setup.py 2017-09-19 21:58:49.165620615 +0200
@@ -49,8 +49,8 @@
'License :: OSI Approved :: MIT License',
'Topic :: Software Development'],
install_requires=[
- "msrest~=0.4.10",
+ "msrest>=0.4.10",
"keyring>=5.6",
- "adal~=0.4.0"
+ "adal>=0.4.0"
],
)