Hello community,

here is the log from the commit of package python-azure-mgmt-redis for 
openSUSE:Factory checked in at 2019-05-14 13:35:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-azure-mgmt-redis (Old)
 and      /work/SRC/openSUSE:Factory/.python-azure-mgmt-redis.new.5148 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-azure-mgmt-redis"

Tue May 14 13:35:51 2019 rev:4 rq:694459 version:6.0.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-azure-mgmt-redis/python-azure-mgmt-redis.changes
  2018-05-13 15:59:42.282066003 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-azure-mgmt-redis.new.5148/python-azure-mgmt-redis.changes
        2019-05-14 13:35:58.452088487 +0200
@@ -1,0 +2,21 @@
+Fri Apr 12 13:17:07 UTC 2019 - John Paul Adrian Glaubitz 
<adrian.glaub...@suse.com>
+
+- New upstream release
+  + Version 6.0.0
+  + For detailed information about changes see the
+    HISTORY.txt file provided with this package
+- Add patch to drop extras_require field from setup.py,
+  required for SLES12 as the setuptools version is too old
+  + amr_drop-extras-require.patch
+- Bump minimum version for namespace packages
+  to 3.0.0 in BuildRequires and Requires
+- Remove python-devel package from BuildRequires
+- Refresh patches for new version
+  + amr_drop-compatible-releases-operator.patch
+- Run fdupes to hardlink duplicate files
+  + Add fdupes to BuildRequires
+  + Add %fdupes invocation to %install
+- Update %description from setup.py
+- Update BuildRequires and Requires from setup.py
+
+-------------------------------------------------------------------

Old:
----
  azure-mgmt-redis-5.0.0.zip

New:
----
  amr_drop-extras-require.patch
  azure-mgmt-redis-6.0.0.zip

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-azure-mgmt-redis.spec ++++++
--- /var/tmp/diff_new_pack.NKoB4q/_old  2019-05-14 13:36:00.548093027 +0200
+++ /var/tmp/diff_new_pack.NKoB4q/_new  2019-05-14 13:36:00.548093027 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-azure-mgmt-redis
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,13 +12,13 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-azure-mgmt-redis
-Version:        5.0.0
+Version:        6.0.0
 Release:        0
 Summary:        Microsoft Azure Redis Cache Management Client Library
 License:        MIT
@@ -27,18 +27,20 @@
 Source:         
https://files.pythonhosted.org/packages/source/a/azure-mgmt-redis/azure-mgmt-redis-%{version}.zip
 Source1:        LICENSE.txt
 Patch1:         amr_drop-compatible-releases-operator.patch
-BuildRequires:  %{python_module azure-mgmt-nspkg}
-BuildRequires:  %{python_module azure-nspkg}
-BuildRequires:  %{python_module devel}
+Patch2:         amr_drop-extras-require.patch
+BuildRequires:  %{python_module azure-mgmt-nspkg >= 3.0.0}
+BuildRequires:  %{python_module azure-nspkg >= 3.0.0}
 BuildRequires:  %{python_module setuptools}
+BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 BuildRequires:  unzip
 Requires:       python-azure-common < 2.0.0
 Requires:       python-azure-common >= 1.1
-Requires:       python-azure-mgmt-nspkg
-Requires:       python-azure-nspkg
+Requires:       python-azure-mgmt-nspkg >= 3.0.0
+Requires:       python-azure-nspkg >= 3.0.0
+Requires:       python-msrest >= 0.5.0
 Requires:       python-msrestazure < 2.0.0
-Requires:       python-msrestazure >= 0.4.20
+Requires:       python-msrestazure >= 0.4.32
 Conflicts:      python-azure-sdk <= 2.0.0
 
 BuildArch:      noarch
@@ -51,11 +53,12 @@
 Azure Resource Manager (ARM) is the next generation of management APIs that
 replace the old Azure Service Management (ASM).
 
-This package has been tested with Python 2.7, 3.4, 3.5 and 3.6.
+This package has been tested with Python 2.7, 3.4, 3.5, 3.6 and 3.7.
 
 %prep
 %setup -q -n azure-mgmt-redis-%{version}
 %patch1 -p1
+%patch2 -p1
 
 %build
 install -m 644 %{SOURCE1} %{_builddir}/azure-mgmt-redis-%{version}
@@ -63,6 +66,7 @@
 
 %install
 %python_install
+%python_expand %fdupes %{buildroot}%{$python_sitelib}
 %{python_expand # delete common files
 rm -rf %{buildroot}%{$python_sitelib}/azure/mgmt/__init__.*
 rm -rf %{buildroot}%{$python_sitelib}/azure/mgmt/__pycache__

++++++ amr_drop-compatible-releases-operator.patch ++++++
--- /var/tmp/diff_new_pack.NKoB4q/_old  2019-05-14 13:36:00.572093079 +0200
+++ /var/tmp/diff_new_pack.NKoB4q/_new  2019-05-14 13:36:00.576093087 +0200
@@ -1,12 +1,12 @@
-diff -Nru azure-mgmt-redis-5.0.0.orig/setup.py azure-mgmt-redis-5.0.0/setup.py
---- azure-mgmt-redis-5.0.0.orig/setup.py       2018-02-09 00:11:14.000000000 
+0100
-+++ azure-mgmt-redis-5.0.0/setup.py    2018-03-08 11:59:30.024601023 +0100
-@@ -78,7 +78,7 @@
-     packages=find_packages(exclude=["tests"]),
+diff -Nru azure-mgmt-redis-6.0.0.orig/setup.py azure-mgmt-redis-6.0.0/setup.py
+--- azure-mgmt-redis-6.0.0.orig/setup.py       2019-01-15 21:28:18.000000000 
+0100
++++ azure-mgmt-redis-6.0.0/setup.py    2019-04-01 09:44:15.169223137 +0200
+@@ -79,7 +79,7 @@
      install_requires=[
-         'msrestazure>=0.4.20,<2.0.0',
+         'msrest>=0.5.0',
+         'msrestazure>=0.4.32,<2.0.0',
 -        'azure-common~=1.1',
 +        'azure-common>=1.1',
      ],
-     cmdclass=cmdclass
- )
+     extras_require={
+         ":python_version<'3.0'": ['azure-mgmt-nspkg'],

++++++ amr_drop-extras-require.patch ++++++
diff -Nru azure-mgmt-redis-6.0.0.orig/setup.py azure-mgmt-redis-6.0.0/setup.py
--- azure-mgmt-redis-6.0.0.orig/setup.py        2019-04-01 09:44:41.709467377 
+0200
+++ azure-mgmt-redis-6.0.0/setup.py     2019-04-01 09:44:54.729590048 +0200
@@ -81,7 +81,4 @@
         'msrestazure>=0.4.32,<2.0.0',
         'azure-common>=1.1',
     ],
-    extras_require={
-        ":python_version<'3.0'": ['azure-mgmt-nspkg'],
-    }
 )

Reply via email to