commit python-msrestazure for openSUSE:Factory

2020-10-02 Thread root
Hello community,

here is the log from the commit of package python-msrestazure for 
openSUSE:Factory checked in at 2020-10-02 17:23:17

Comparing /work/SRC/openSUSE:Factory/python-msrestazure (Old)
 and  /work/SRC/openSUSE:Factory/.python-msrestazure.new.4249 (New)


Package is "python-msrestazure"

Fri Oct  2 17:23:17 2020 rev:10 rq:830914 version:0.6.4

Changes:

--- /work/SRC/openSUSE:Factory/python-msrestazure/python-msrestazure.changes
2020-03-31 19:41:39.984588647 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-msrestazure.new.4249/python-msrestazure.changes
  2020-10-02 17:23:29.850243274 +0200
@@ -1,0 +2,9 @@
+Fri Aug 28 13:18:55 UTC 2020 - John Paul Adrian Glaubitz 

+
+- New upstream release
+  + Version 0.6.4
+  + For detailed information about changes see the
+README.rst file provided with this package
+- Update Requires from setup.py
+
+---

Old:

  msrestazure-0.6.3.tar.gz

New:

  msrestazure-0.6.4.tar.gz



Other differences:
--
++ python-msrestazure.spec ++
--- /var/tmp/diff_new_pack.hToA1R/_old  2020-10-02 17:23:30.858243878 +0200
+++ /var/tmp/diff_new_pack.hToA1R/_new  2020-10-02 17:23:30.862243880 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-msrestazure
-Version:0.6.3
+Version:0.6.4
 Release:0
 Summary:AutoRest swagger generator - Azure-specific module
 License:MIT
@@ -33,6 +33,7 @@
 Requires:   python-adal >= 0.6.0
 Requires:   python-msrest < 2.0.0
 Requires:   python-msrest >= 0.6.0
+Requires:   python-six
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 

++ msrestazure-0.6.3.tar.gz -> msrestazure-0.6.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/msrestazure-0.6.3/PKG-INFO 
new/msrestazure-0.6.4/PKG-INFO
--- old/msrestazure-0.6.3/PKG-INFO  2020-03-17 23:45:08.0 +0100
+++ new/msrestazure-0.6.4/PKG-INFO  2020-06-29 22:04:02.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: msrestazure
-Version: 0.6.3
+Version: 0.6.4
 Summary: AutoRest swagger generator Python client runtime. Azure-specific 
module.
 Home-page: https://github.com/Azure/msrestazure-for-python
 Author: Microsoft Corporation
@@ -28,6 +28,14 @@
 Release History
 ---
 
+2020-06-29 Version 0.6.4
+
+
+**Bugfix**
+
+- Unable to raise exception if JSON body contains UTF-8 characters on 
Python 2 #150
+
+
 2020-03-17 Version 0.6.3
 
 
@@ -575,9 +583,9 @@
 Classifier: Programming Language :: Python :: 2
 Classifier: Programming Language :: Python :: 2.7
 Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
 Classifier: Programming Language :: Python :: 3.7
+Classifier: Programming Language :: Python :: 3.8
 Classifier: License :: OSI Approved :: MIT License
 Classifier: Topic :: Software Development
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/msrestazure-0.6.3/README.rst 
new/msrestazure-0.6.4/README.rst
--- old/msrestazure-0.6.3/README.rst2020-03-17 23:44:21.0 +0100
+++ new/msrestazure-0.6.4/README.rst2020-06-29 22:03:12.0 +0200
@@ -20,6 +20,14 @@
 Release History
 ---
 
+2020-06-29 Version 0.6.4
+
+
+**Bugfix**
+
+- Unable to raise exception if JSON body contains UTF-8 characters on Python 2 
#150
+
+
 2020-03-17 Version 0.6.3
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/msrestazure-0.6.3/msrestazure/azure_exceptions.py 
new/msrestazure-0.6.4/msrestazure/azure_exceptions.py
--- old/msrestazure-0.6.3/msrestazure/azure_exceptions.py   2020-03-17 
23:44:21.0 +0100
+++ new/msrestazure-0.6.4/msrestazure/azure_exceptions.py   2020-06-29 
22:03:12.0 +0200
@@ -25,6 +25,7 @@
 # --
 
 import json
+import six
 
 from requests import RequestException
 
@@ -55,6 +56,15 @@
 def __init__(self, error):
 self.error = error
 
+
+def _unicode_or_str(obj):
+try:
+return unicode(obj)
+except NameError:
+return str(obj)
+
+
+@six.python_2_unicode_compatible
 class CloudErrorData(object):
 """Cloud Error Data object, deserialized from error 

commit python-msrestazure for openSUSE:Factory

2020-03-31 Thread root
Hello community,

here is the log from the commit of package python-msrestazure for 
openSUSE:Factory checked in at 2020-03-31 19:41:39

Comparing /work/SRC/openSUSE:Factory/python-msrestazure (Old)
 and  /work/SRC/openSUSE:Factory/.python-msrestazure.new.3160 (New)


Package is "python-msrestazure"

Tue Mar 31 19:41:39 2020 rev:9 rq:790244 version:0.6.3

Changes:

--- /work/SRC/openSUSE:Factory/python-msrestazure/python-msrestazure.changes
2019-10-10 14:32:11.608367572 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-msrestazure.new.3160/python-msrestazure.changes
  2020-03-31 19:41:39.984588647 +0200
@@ -1,0 +2,8 @@
+Tue Mar 31 15:28:19 UTC 2020 - John Paul Adrian Glaubitz 

+
+- New upstream release
+  + Version 0.6.3
+  + For detailed information about changes see the
+README.rst file provided with this package
+
+---

Old:

  msrestazure-0.6.2.tar.gz

New:

  msrestazure-0.6.3.tar.gz



Other differences:
--
++ python-msrestazure.spec ++
--- /var/tmp/diff_new_pack.3UVBOs/_old  2020-03-31 19:41:41.236589310 +0200
+++ /var/tmp/diff_new_pack.3UVBOs/_new  2020-03-31 19:41:41.236589310 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-msrestazure
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,12 +18,12 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-msrestazure
-Version:0.6.2
+Version:0.6.3
 Release:0
 Summary:AutoRest swagger generator - Azure-specific module
 License:MIT
 Group:  Development/Languages/Python
-Url:https://pypi.python.org/pypi/msrestazure
+URL:https://pypi.python.org/pypi/msrestazure
 Source: 
https://files.pythonhosted.org/packages/source/m/msrestazure/msrestazure-%{version}.tar.gz
 Source1:LICENSE.md
 BuildRequires:  %{python_module setuptools}

++ msrestazure-0.6.2.tar.gz -> msrestazure-0.6.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/msrestazure-0.6.2/PKG-INFO 
new/msrestazure-0.6.3/PKG-INFO
--- old/msrestazure-0.6.2/PKG-INFO  2019-09-16 21:34:10.0 +0200
+++ new/msrestazure-0.6.3/PKG-INFO  2020-03-17 23:45:08.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: msrestazure
-Version: 0.6.2
+Version: 0.6.3
 Summary: AutoRest swagger generator Python client runtime. Azure-specific 
module.
 Home-page: https://github.com/Azure/msrestazure-for-python
 Author: Microsoft Corporation
@@ -28,6 +28,20 @@
 Release History
 ---
 
+2020-03-17 Version 0.6.3
+
+
+**Bugfix**
+
+- Unable to raise exception if JSON body contains UTF-8 characters  
#144
+- Prepare old poller implementation to Python 3.9  #138
+
+**Features**
+
+- Add Microsoft Graph to Cloud environment  #142
+
+Thanks to @psignoret and @tirkarthi for his contribution
+
 2019-09-16 Version 0.6.2
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/msrestazure-0.6.2/README.rst 
new/msrestazure-0.6.3/README.rst
--- old/msrestazure-0.6.2/README.rst2019-09-16 21:33:20.0 +0200
+++ new/msrestazure-0.6.3/README.rst2020-03-17 23:44:21.0 +0100
@@ -20,6 +20,20 @@
 Release History
 ---
 
+2020-03-17 Version 0.6.3
+
+
+**Bugfix**
+
+- Unable to raise exception if JSON body contains UTF-8 characters  #144
+- Prepare old poller implementation to Python 3.9  #138
+
+**Features**
+
+- Add Microsoft Graph to Cloud environment  #142
+
+Thanks to @psignoret and @tirkarthi for his contribution
+
 2019-09-16 Version 0.6.2
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/msrestazure-0.6.2/msrestazure/azure_cloud.py 
new/msrestazure-0.6.3/msrestazure/azure_cloud.py
--- old/msrestazure-0.6.2/msrestazure/azure_cloud.py2019-09-16 
21:33:20.0 +0200
+++ new/msrestazure-0.6.3/msrestazure/azure_cloud.py2020-03-17 
23:44:21.0 +0100
@@ -56,7 +56,8 @@
  gallery=None,
  active_directory=None,
  active_directory_resource_id=None,
- active_directory_graph_resource_id=None):
+ active_directory_graph_resource_id=None,
+  

commit python-msrestazure for openSUSE:Factory

2019-10-10 Thread root
Hello community,

here is the log from the commit of package python-msrestazure for 
openSUSE:Factory checked in at 2019-10-10 14:32:10

Comparing /work/SRC/openSUSE:Factory/python-msrestazure (Old)
 and  /work/SRC/openSUSE:Factory/.python-msrestazure.new.2352 (New)


Package is "python-msrestazure"

Thu Oct 10 14:32:10 2019 rev:8 rq:735765 version:0.6.2

Changes:

--- /work/SRC/openSUSE:Factory/python-msrestazure/python-msrestazure.changes
2019-05-14 13:39:25.492134996 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-msrestazure.new.2352/python-msrestazure.changes
  2019-10-10 14:32:11.608367572 +0200
@@ -1,0 +2,8 @@
+Fri Oct  4 12:22:11 UTC 2019 - John Paul Adrian Glaubitz 

+
+- New upstream release
+  + Version 0.6.2
+  + For detailed information about changes see the
+README.rst file provided with this package
+
+---

Old:

  msrestazure-0.6.0.tar.gz

New:

  msrestazure-0.6.2.tar.gz



Other differences:
--
++ python-msrestazure.spec ++
--- /var/tmp/diff_new_pack.IR75Gb/_old  2019-10-10 14:32:12.032366584 +0200
+++ /var/tmp/diff_new_pack.IR75Gb/_new  2019-10-10 14:32:12.036366575 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-msrestazure
-Version:0.6.0
+Version:0.6.2
 Release:0
 Summary:AutoRest swagger generator - Azure-specific module
 License:MIT

++ msrestazure-0.6.0.tar.gz -> msrestazure-0.6.2.tar.gz ++
 3552 lines of diff (skipped)




commit python-msrestazure for openSUSE:Factory

2019-05-14 Thread root
Hello community,

here is the log from the commit of package python-msrestazure for 
openSUSE:Factory checked in at 2019-05-14 13:39:18

Comparing /work/SRC/openSUSE:Factory/python-msrestazure (Old)
 and  /work/SRC/openSUSE:Factory/.python-msrestazure.new.5148 (New)


Package is "python-msrestazure"

Tue May 14 13:39:18 2019 rev:7 rq:694564 version:0.6.0

Changes:

--- /work/SRC/openSUSE:Factory/python-msrestazure/python-msrestazure.changes
2018-09-26 16:16:15.915004379 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-msrestazure.new.5148/python-msrestazure.changes
  2019-05-14 13:39:25.492134996 +0200
@@ -1,0 +2,10 @@
+Mon Apr 15 10:01:19 UTC 2019 - John Paul Adrian Glaubitz 

+
+- New upstream release
+  + Version 0.6.0
+  + No upstream changelog provided
+- Add %python_expand to %fdupes invocation
+- Remove python-devel package from BuildRequires
+- Update Requires from setup.py
+
+---

Old:

  msrestazure-0.5.0.tar.gz

New:

  msrestazure-0.6.0.tar.gz



Other differences:
--
++ python-msrestazure.spec ++
--- /var/tmp/diff_new_pack.Tvv6ZJ/_old  2019-05-14 13:39:26.276136959 +0200
+++ /var/tmp/diff_new_pack.Tvv6ZJ/_new  2019-05-14 13:39:26.276136959 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-msrestazure
 #
-# 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-msrestazure
-Version:0.5.0
+Version:0.6.0
 Release:0
 Summary:AutoRest swagger generator - Azure-specific module
 License:MIT
@@ -26,14 +26,13 @@
 Url:https://pypi.python.org/pypi/msrestazure
 Source: 
https://files.pythonhosted.org/packages/source/m/msrestazure/msrestazure-%{version}.tar.gz
 Source1:LICENSE.md
-BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires:   python-adal < 2.0.0
 Requires:   python-adal >= 0.6.0
 Requires:   python-msrest < 2.0.0
-Requires:   python-msrest >= 0.4.28
+Requires:   python-msrest >= 0.6.0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -51,8 +50,7 @@
 
 %install
 %python_install
-
-%fdupes %{buildroot}/%{python_sitelib}/*
+%python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %files  %{python_files}
 %defattr(-,root,root,-)

++ msrestazure-0.5.0.tar.gz -> msrestazure-0.6.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/msrestazure-0.5.0/PKG-INFO 
new/msrestazure-0.6.0/PKG-INFO
--- old/msrestazure-0.5.0/PKG-INFO  2018-08-02 21:17:34.0 +0200
+++ new/msrestazure-0.6.0/PKG-INFO  2018-12-17 23:35:19.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: msrestazure
-Version: 0.5.0
+Version: 0.6.0
 Summary: AutoRest swagger generator Python client runtime. Azure-specific 
module.
 Home-page: https://github.com/Azure/msrestazure-for-python
 Author: Microsoft Corporation
@@ -28,6 +28,31 @@
 Release History
 ---
 
+2018-12-17 Version 0.6.0
+
+
+**Features**
+
+- Implementation of LRO async, based on msrest 0.6.x series 
(*experimental*)
+
+**Disclaimer**
+
+- This version contains no direct breaking changes, but is bumped to 
0.6.x since it requires a breaking change version of msrest.
+
+Thanks to @gison93 for his documentation contribution
+
+2018-11-01 Version 0.5.1
+
+
+**Bugfixes**
+
+- Fix CloudError if response and error message are provided at the 
same time #114
+- Fix LRO polling if last call is an empty Location (Autorest.Python 
3.x only) #120
+
+**Features**
+
+- Altered resource id parsing logic to allow for resource group IDs 
#117
+
 2018-08-02 Version 0.5.0
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit python-msrestazure for openSUSE:Factory

2018-09-26 Thread root
Hello community,

here is the log from the commit of package python-msrestazure for 
openSUSE:Factory checked in at 2018-09-26 16:16:14

Comparing /work/SRC/openSUSE:Factory/python-msrestazure (Old)
 and  /work/SRC/openSUSE:Factory/.python-msrestazure.new (New)


Package is "python-msrestazure"

Wed Sep 26 16:16:14 2018 rev:6 rq:638008 version:0.5.0

Changes:

--- /work/SRC/openSUSE:Factory/python-msrestazure/python-msrestazure.changes
2018-05-13 16:03:42.677295231 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-msrestazure.new/python-msrestazure.changes   
2018-09-26 16:16:15.915004379 +0200
@@ -1,0 +2,11 @@
+Thu Sep  6 13:00:23 UTC 2018 - John Paul Adrian Glaubitz 

+
+- New upstream release
+  + Version 0.5.0
+  + No upstream changelog provided
+- Drop obsolete patches
+  + m_drop-compatible-releases-operator.patch
+- Update Requires from setup.py
+- Update Summary from setup.py
+
+---

Old:

  m_drop-compatible-releases-operator.patch
  msrestazure-0.4.28.tar.gz

New:

  msrestazure-0.5.0.tar.gz



Other differences:
--
++ python-msrestazure.spec ++
--- /var/tmp/diff_new_pack.G4B7Lk/_old  2018-09-26 16:16:16.323003704 +0200
+++ /var/tmp/diff_new_pack.G4B7Lk/_new  2018-09-26 16:16:16.327003697 +0200
@@ -18,21 +18,20 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-msrestazure
-Version:0.4.28
+Version:0.5.0
 Release:0
-Summary:AutoRest swagger generator
+Summary:AutoRest swagger generator - Azure-specific module
 License:MIT
 Group:  Development/Languages/Python
 Url:https://pypi.python.org/pypi/msrestazure
 Source: 
https://files.pythonhosted.org/packages/source/m/msrestazure/msrestazure-%{version}.tar.gz
 Source1:LICENSE.md
-Patch0: m_drop-compatible-releases-operator.patch
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-Requires:   python-adal < 1.0.0
-Requires:   python-adal >= 0.5.0
+Requires:   python-adal < 2.0.0
+Requires:   python-adal >= 0.6.0
 Requires:   python-msrest < 2.0.0
 Requires:   python-msrest >= 0.4.28
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -45,7 +44,6 @@
 
 %prep
 %setup -q -n msrestazure-%{version}
-%patch0 -p1
 cp %{SOURCE1} LICENSE.md
 
 %build

++ msrestazure-0.4.28.tar.gz -> msrestazure-0.5.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/msrestazure-0.4.28/PKG-INFO 
new/msrestazure-0.5.0/PKG-INFO
--- old/msrestazure-0.4.28/PKG-INFO 2018-04-24 01:45:43.0 +0200
+++ new/msrestazure-0.5.0/PKG-INFO  2018-08-02 21:17:34.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: msrestazure
-Version: 0.4.28
+Version: 0.5.0
 Summary: AutoRest swagger generator Python client runtime. Azure-specific 
module.
 Home-page: https://github.com/Azure/msrestazure-for-python
 Author: Microsoft Corporation
@@ -28,6 +28,87 @@
 Release History
 ---
 
+2018-08-02 Version 0.5.0
+
+
+**Features**
+
+- Implementation is now using ADAL and not request-oauthlib. This 
allows more AD scenarios (like federated)  #94
+- Add additionalInfo parsing for CloudError #102
+
+**Breaking changes**
+
+These breaking changes applies to ServicePrincipalCredentials, 
UserPassCredentials, AADTokenCredentials
+
+- Remove "auth_uri" attribute and parameter. This was unused.
+- Remove "state" attribute. This was unused.
+- Remove "client" attribute. This was exposed by mistake and should 
have been internal. No replacement is possible.
+- Remove "token_uri" attribute and parameter. Use "cloud_environment" 
and "tenant" to impact the login url now.
+- Remove token caching based on "keyring". Token caching should be 
implemented using ADAL now. This implies:
+
+  - Remove the "keyring" parameter
+  - Remove the "clear_cached_token" method
+  - Remove the "retrieve_session" method
+
+2018-07-03 Version 0.4.35
++
+
+**Bugfixes**
+
+- MSIAuthentication regression for KeyVault since IMDS support #109
+
+2018-07-02 Version 0.4.34
++
+
+**Bugfixes**
+
+- MSIAuthentication should initialize the token attribute on creation 
#106
+
+2018-06-21 Version 

commit python-msrestazure for openSUSE:Factory

2018-05-13 Thread root
Hello community,

here is the log from the commit of package python-msrestazure for 
openSUSE:Factory checked in at 2018-05-13 16:03:40

Comparing /work/SRC/openSUSE:Factory/python-msrestazure (Old)
 and  /work/SRC/openSUSE:Factory/.python-msrestazure.new (New)


Package is "python-msrestazure"

Sun May 13 16:03:40 2018 rev:5 rq:601546 version:0.4.28

Changes:

--- /work/SRC/openSUSE:Factory/python-msrestazure/python-msrestazure.changes
2018-02-14 09:27:33.936299577 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-msrestazure.new/python-msrestazure.changes   
2018-05-13 16:03:42.677295231 +0200
@@ -1,0 +2,12 @@
+Tue Apr 24 11:06:26 UTC 2018 - adrian.glaub...@suse.com
+
+- New upstream release
+  + Version 0.4.28
+  + For detailed information about changes see the
+README.rst file provided with this package
+- Move LICENSE.txt from %doc to %license section
+- Refresh patches for new version
+  + m_drop-compatible-releases-operator.patch
+- Update Requires from setup.py
+
+---

Old:

  msrestazure-0.4.20.tar.gz

New:

  msrestazure-0.4.28.tar.gz



Other differences:
--
++ python-msrestazure.spec ++
--- /var/tmp/diff_new_pack.WMNJqk/_old  2018-05-13 16:03:43.441267359 +0200
+++ /var/tmp/diff_new_pack.WMNJqk/_new  2018-05-13 16:03:43.445267213 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-msrestazure
-Version:0.4.20
+Version:0.4.28
 Release:0
 Summary:AutoRest swagger generator
 License:MIT
@@ -32,10 +32,9 @@
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires:   python-adal < 1.0.0
-Requires:   python-adal >= 0.4.7
-Requires:   python-keyring >= 5.6
+Requires:   python-adal >= 0.5.0
 Requires:   python-msrest < 2.0.0
-Requires:   python-msrest >= 0.4.25
+Requires:   python-msrest >= 0.4.28
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -59,7 +58,8 @@
 
 %files  %{python_files}
 %defattr(-,root,root,-)
-%doc LICENSE.md README.rst
+%doc README.rst
+%license LICENSE.md
 %{python_sitelib}/*
 
 %changelog

++ m_drop-compatible-releases-operator.patch ++
--- /var/tmp/diff_new_pack.WMNJqk/_old  2018-05-13 16:03:43.509264878 +0200
+++ /var/tmp/diff_new_pack.WMNJqk/_new  2018-05-13 16:03:43.513264732 +0200
@@ -1,11 +1,11 @@
-diff -Nru msrestazure-0.4.20.orig/setup.py msrestazure-0.4.20/setup.py
 msrestazure-0.4.20.orig/setup.py   2018-01-08 23:26:51.0 +0100
-+++ msrestazure-0.4.20/setup.py2018-01-26 13:33:02.600469484 +0100
-@@ -51,6 +51,6 @@
+diff -Nru msrestazure-0.4.28.orig/setup.py msrestazure-0.4.28/setup.py
+--- msrestazure-0.4.28.orig/setup.py   2018-04-24 01:45:02.0 +0200
 msrestazure-0.4.28/setup.py2018-04-24 13:00:24.806436987 +0200
+@@ -50,6 +50,6 @@
+ 'Topic :: Software Development'],
  install_requires=[
- "msrest>=0.4.25,<2.0.0",
- "keyring>=5.6",
--"adal~=0.4.7"
-+"adal>=0.4.7"
+ "msrest>=0.4.28,<2.0.0",
+-"adal~=0.5.0"
++"adal>=0.5.0"
  ],
  )

++ msrestazure-0.4.20.tar.gz -> msrestazure-0.4.28.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/msrestazure-0.4.20/PKG-INFO 
new/msrestazure-0.4.28/PKG-INFO
--- old/msrestazure-0.4.20/PKG-INFO 2018-01-08 23:27:27.0 +0100
+++ new/msrestazure-0.4.28/PKG-INFO 2018-04-24 01:45:43.0 +0200
@@ -1,12 +1,11 @@
 Metadata-Version: 1.1
 Name: msrestazure
-Version: 0.4.20
+Version: 0.4.28
 Summary: AutoRest swagger generator Python client runtime. Azure-specific 
module.
 Home-page: https://github.com/Azure/msrestazure-for-python
 Author: Microsoft Corporation
 Author-email: azpysdkh...@microsoft.com
 License: MIT License
-Description-Content-Type: UNKNOWN
 Description: AutoRest: Python Client Runtime - Azure Module
 ===
 
@@ -29,6 +28,76 @@
 Release History
 ---
 
+2018-04-23 Version 0.4.28
++
+
+**Disclaimer**
+
+Do to some stability issues with "keyring" dependency that highly 
change from one system to another,
+this package is no longer a dependency of "msrestazure".
+If you were using the secured token cache of 
`ServicePrincipalCredentials` and `UserPassCredentials`, 
+the feature is still available, but you need to install manually 
"keyring". The functionnality will activate automatically.
+
+2018-04-18 Version 0.4.27
+

commit python-msrestazure for openSUSE:Factory

2018-02-14 Thread root
Hello community,

here is the log from the commit of package python-msrestazure for 
openSUSE:Factory checked in at 2018-02-14 09:27:33

Comparing /work/SRC/openSUSE:Factory/python-msrestazure (Old)
 and  /work/SRC/openSUSE:Factory/.python-msrestazure.new (New)


Package is "python-msrestazure"

Wed Feb 14 09:27:33 2018 rev:4 rq:571394 version:0.4.20

Changes:

--- /work/SRC/openSUSE:Factory/python-msrestazure/python-msrestazure.changes
2017-09-20 17:13:10.189510645 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-msrestazure.new/python-msrestazure.changes   
2018-02-14 09:27:33.936299577 +0100
@@ -1,0 +2,13 @@
+Wed Jan 31 13:23:20 UTC 2018 - adrian.glaub...@suse.com
+
+- Install LICENSE.md into doc directory
+
+---
+Fri Jan 26 12:44:30 UTC 2018 - adrian.glaub...@suse.com
+
+- New upstream release
+  + Version 0.4.20
+- Install README.rst into doc directory
+- Update Requires from setup.py
+
+---

Old:

  msrestazure-0.4.11.tar.gz

New:

  LICENSE.md
  msrestazure-0.4.20.tar.gz



Other differences:
--
++ python-msrestazure.spec ++
--- /var/tmp/diff_new_pack.aKW9sl/_old  2018-02-14 09:27:34.584276095 +0100
+++ /var/tmp/diff_new_pack.aKW9sl/_new  2018-02-14 09:27:34.584276095 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-msrestazure
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -18,21 +18,24 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-msrestazure
-Version:0.4.11
+Version:0.4.20
 Release:0
 Summary:AutoRest swagger generator
 License:MIT
 Group:  Development/Languages/Python
 Url:https://pypi.python.org/pypi/msrestazure
 Source: 
https://files.pythonhosted.org/packages/source/m/msrestazure/msrestazure-%{version}.tar.gz
+Source1:LICENSE.md
 Patch0: m_drop-compatible-releases-operator.patch
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-Requires:   python-adal >= 0.4.0
+Requires:   python-adal < 1.0.0
+Requires:   python-adal >= 0.4.7
 Requires:   python-keyring >= 5.6
-Requires:   python-msrest >= 0.4.4
+Requires:   python-msrest < 2.0.0
+Requires:   python-msrest >= 0.4.25
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -44,6 +47,7 @@
 %prep
 %setup -q -n msrestazure-%{version}
 %patch0 -p1
+cp %{SOURCE1} LICENSE.md
 
 %build
 %python_build
@@ -55,6 +59,7 @@
 
 %files  %{python_files}
 %defattr(-,root,root,-)
+%doc LICENSE.md README.rst
 %{python_sitelib}/*
 
 %changelog

++ LICENSE.md ++
MIT License

Copyright (c) 2016 Microsoft Azure

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
++ m_drop-compatible-releases-operator.patch ++
--- /var/tmp/diff_new_pack.aKW9sl/_old  2018-02-14 09:27:34.620274790 +0100
+++ /var/tmp/diff_new_pack.aKW9sl/_new  2018-02-14 09:27:34.620274790 +0100
@@ -1,14 +1,11 @@
-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.0 +0200
-+++ msrestazure-0.4.11/setup.py2017-09-19 21:58:49.165620615 +0200
-@@ -49,8 +49,8 @@
- 'License :: OSI Approved :: MIT License',
- 'Topic :: Software Development'],
+diff -Nru msrestazure-0.4.20.orig/setup.py msrestazure-0.4.20/setup.py
+--- 

commit python-msrestazure for openSUSE:Factory

2017-09-20 Thread root
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 - adrian.glaub...@suse.com
+
+- 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.py2017-06-30 01:17:47.0 +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"
 ],
 )



commit python-msrestazure for openSUSE:Factory

2017-07-19 Thread root
Hello community,

here is the log from the commit of package python-msrestazure for 
openSUSE:Factory checked in at 2017-07-19 11:20:34

Comparing /work/SRC/openSUSE:Factory/python-msrestazure (Old)
 and  /work/SRC/openSUSE:Factory/.python-msrestazure.new (New)


Package is "python-msrestazure"

Wed Jul 19 11:20:34 2017 rev:2 rq:509200 version:0.4.11

Changes:

--- /work/SRC/openSUSE:Factory/python-msrestazure/python-msrestazure.changes
2017-02-03 18:57:52.325539336 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-msrestazure.new/python-msrestazure.changes   
2017-07-19 12:21:41.650558564 +0200
@@ -1,0 +2,8 @@
+Mon Jul 10 13:21:36 UTC 2017 - adrian.glaub...@suse.com
+
+- New upstream release
+  + Version 0.4.11
+- Provide full source URL in Source field
+- Convert package to single spec
+
+---

Old:

  msrestazure-0.4.5.tar.gz

New:

  msrestazure-0.4.11.tar.gz



Other differences:
--
++ python-msrestazure.spec ++
--- /var/tmp/diff_new_pack.QbsgQC/_old  2017-07-19 12:21:42.930377968 +0200
+++ /var/tmp/diff_new_pack.QbsgQC/_new  2017-07-19 12:21:42.934377403 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-msrestazure
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -14,23 +14,29 @@
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
+
+
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-msrestazure
-Version:0.4.5
+Version:0.4.11
 Release:0
 Summary:AutoRest swagger generator
 License:MIT
 Group:  Development/Languages/Python
 Url:https://pypi.python.org/pypi/msrestazure
-Source: msrestazure-%{version}.tar.gz
+Source: 
https://files.pythonhosted.org/packages/source/m/msrestazure/msrestazure-%{version}.tar.gz
+BuildRequires:  %{python_module devel}
+BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
-BuildRequires:  python-devel
-BuildRequires:  python-setuptools
-Requires:   python-msrest >= 0.4.4
-Requires:   python-keyring >= 5.6
+BuildRequires:  python-rpm-macros
 Requires:   python-adal >= 0.4.0
+Requires:   python-keyring >= 5.6
+Requires:   python-msrest >= 0.4.4
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
+%python_subpackages
+
 %description
 AutoRest swagger generator Python client runtime. Azure-specific module.
 
@@ -38,14 +44,14 @@
 %setup -q -n msrestazure-%{version}
 
 %build
-python setup.py build
+%python_build
 
 %install
-python setup.py install --prefix=%{_prefix} --root=%{buildroot}
+%python_install
 
 %fdupes %{buildroot}/%{python_sitelib}/*
 
-%files
+%files  %{python_files}
 %defattr(-,root,root,-)
 %{python_sitelib}/*
 

++ msrestazure-0.4.5.tar.gz -> msrestazure-0.4.11.tar.gz ++
 4834 lines of diff (skipped)