Hello community,
here is the log from the commit of package python-azure-mgmt-eventgrid for
openSUSE:Factory checked in at 2017-11-04 19:30:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-azure-mgmt-eventgrid (Old)
and /work/SRC/openSUSE:Factory/.python-azure-mgmt-eventgrid.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-azure-mgmt-eventgrid"
Sat Nov 4 19:30:20 2017 rev:2 rq:538833 version:0.2.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-azure-mgmt-eventgrid/python-azure-mgmt-eventgrid.changes
2017-10-11 22:59:08.226729318 +0200
+++
/work/SRC/openSUSE:Factory/.python-azure-mgmt-eventgrid.new/python-azure-mgmt-eventgrid.changes
2017-11-04 19:30:37.386196705 +0100
@@ -1,0 +2,7 @@
+Fri Nov 3 18:49:16 UTC 2017 - [email protected]
+
+- Add patch to drop compatible releases operator from setup.py,
+ required for SLES12 as the setuptools version is too old
+ + ame_drop-compatible-releases-operator.patch
+
+-------------------------------------------------------------------
New:
----
ame_drop-compatible-releases-operator.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-azure-mgmt-eventgrid.spec ++++++
--- /var/tmp/diff_new_pack.PY6nQw/_old 2017-11-04 19:30:37.934176682 +0100
+++ /var/tmp/diff_new_pack.PY6nQw/_new 2017-11-04 19:30:37.938176536 +0100
@@ -15,6 +15,7 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
+
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-azure-mgmt-eventgrid
Version: 0.2.0
@@ -25,18 +26,19 @@
Url: https://github.com/Azure/azure-sdk-for-python
Source:
https://files.pythonhosted.org/packages/source/a/azure-mgmt-eventgrid/azure-mgmt-eventgrid-%{version}.zip
Source1: LICENSE.txt
+Patch1: ame_drop-compatible-releases-operator.patch
+BuildRequires: %{python_module azure-mgmt-nspkg}
+BuildRequires: %{python_module azure-nspkg}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: python-rpm-macros
BuildRequires: unzip
-BuildRequires: %{python_module azure-mgmt-nspkg}
-BuildRequires: %{python_module azure-nspkg}
+Requires: python-azure-common < 2.0.0
+Requires: python-azure-common >= 1.1
Requires: python-azure-mgmt-nspkg
Requires: python-azure-nspkg
-Requires: python-msrestazure >= 0.4.11
Requires: python-msrestazure < 1.0.0
-Requires: python-azure-common >= 1.1
-Requires: python-azure-common < 2.0.0
+Requires: python-msrestazure >= 0.4.11
Conflicts: python-azure-sdk <= 2.0.0
BuildArch: noarch
@@ -53,6 +55,7 @@
%prep
%setup -q -n azure-mgmt-eventgrid-%{version}
+%patch1 -p1
%build
install -m 644 %{SOURCE1} %{_builddir}/azure-mgmt-eventgrid-%{version}
@@ -72,4 +75,5 @@
%doc LICENSE.txt README.rst
%{python_sitelib}/azure/mgmt/eventgrid
%{python_sitelib}/azure_mgmt_eventgrid-*.egg-info
+
%changelog
++++++ ame_drop-compatible-releases-operator.patch ++++++
diff -Nru azure-mgmt-eventgrid-0.2.0.orig/setup.py
azure-mgmt-eventgrid-0.2.0/setup.py
--- azure-mgmt-eventgrid-0.2.0.orig/setup.py 2017-09-13 23:26:18.000000000
+0200
+++ azure-mgmt-eventgrid-0.2.0/setup.py 2017-11-03 19:48:13.663715640 +0100
@@ -78,8 +78,8 @@
zip_safe=False,
packages=find_packages(exclude=["tests"]),
install_requires=[
- 'msrestazure~=0.4.11',
- 'azure-common~=1.1',
+ 'msrestazure>=0.4.11',
+ 'azure-common>=1.1',
],
cmdclass=cmdclass
)