Hello community,

here is the log from the commit of package python-msrest for openSUSE:Factory 
checked in at 2018-09-26 16:16:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-msrest (Old)
 and      /work/SRC/openSUSE:Factory/.python-msrest.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-msrest"

Wed Sep 26 16:16:12 2018 rev:6 rq:638007 version:0.5.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-msrest/python-msrest.changes      
2018-05-13 16:03:43.821253496 +0200
+++ /work/SRC/openSUSE:Factory/.python-msrest.new/python-msrest.changes 
2018-09-26 16:16:12.947009292 +0200
@@ -1,0 +2,14 @@
+Thu Sep  6 12:59:32 UTC 2018 - John Paul Adrian Glaubitz 
<adrian.glaub...@suse.com>
+
+- New upstream release
+  + Version 0.5.0
+  + No upstream changelog provided
+- Add LICENSE.md and install into %license directory
+- Add python-enum34 to Requires for Python 2.x and Python 3.4
+- Add python-typing to Requires for Python Python 2x., 3.4 and 3.5
+- Refresh patches for new version
+  + m_drop-compatible-releases-operator.patch
+  + m_drop-extras-require.patch
+- Update Requires from setup.py
+
+-------------------------------------------------------------------

Old:
----
  msrest-0.4.28.tar.gz

New:
----
  LICENSE.md
  msrest-0.5.5.tar.gz

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

Other differences:
------------------
++++++ python-msrest.spec ++++++
--- /var/tmp/diff_new_pack.2ze7ys/_old  2018-09-26 16:16:13.443008471 +0200
+++ /var/tmp/diff_new_pack.2ze7ys/_new  2018-09-26 16:16:13.447008464 +0200
@@ -12,19 +12,20 @@
 # 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-msrest
-Version:        0.4.28
+Version:        0.5.5
 Release:        0
 Summary:        AutoRest swagger generator Python client runtime
 License:        MIT
 Group:          Development/Languages/Python
 Url:            https://pypi.python.org/pypi/msrest
 Source:         
https://files.pythonhosted.org/packages/source/m/msrest/msrest-%{version}.tar.gz
+Source1:        LICENSE.md
 Patch0:         m_drop-compatible-releases-operator.patch
 Patch1:         m_drop-extras-require.patch
 BuildRequires:  %{python_module devel}
@@ -34,8 +35,14 @@
 Requires:       python-certifi >= 2017.4.17
 Requires:       python-isodate >= 0.6.0
 Requires:       python-requests < 3.00
-Requires:       python-requests >= 2.14
+Requires:       python-requests >= 2.16
 Requires:       python-requests-oauthlib >= 0.5.0
+%if "%{python_flavor}" == "python2" || %{python3_version_nodots} < 35
+Requires:       python-typing
+%endif
+%if "%{python_flavor}" == "python2" || %{python3_version_nodots} < 34
+Requires:       python-enum34 >= 1.0.4
+%endif
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildArch:      noarch
 
@@ -49,6 +56,7 @@
 %setup -q -n msrest-%{version}
 %patch0 -p1
 %patch1 -p1
+cp %{SOURCE1} LICENSE.md
 
 %build
 %python_build
@@ -61,6 +69,7 @@
 %files %{python_files}
 %defattr(-,root,root,-)
 %doc README.rst
+%license LICENSE.md
 %{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.2ze7ys/_old  2018-09-26 16:16:13.511008358 +0200
+++ /var/tmp/diff_new_pack.2ze7ys/_new  2018-09-26 16:16:13.511008358 +0200
@@ -1,12 +1,12 @@
-diff -Nru msrest-0.4.28.orig/setup.py msrest-0.4.28/setup.py
---- msrest-0.4.28.orig/setup.py        2018-04-18 23:08:15.000000000 +0200
-+++ msrest-0.4.28/setup.py     2018-04-24 12:46:33.099513431 +0200
+diff -Nru msrest-0.5.5.orig/setup.py msrest-0.5.5/setup.py
+--- msrest-0.5.5.orig/setup.py 2018-09-04 21:14:13.000000000 +0200
++++ msrest-0.5.5/setup.py      2018-09-06 14:25:16.473344949 +0200
 @@ -47,7 +47,7 @@
          'License :: OSI Approved :: MIT License',
          'Topic :: Software Development'],
      install_requires=[
--        "requests~=2.14",
-+        "requests>=2.14",
+-        "requests~=2.16",
++        "requests>=2.16",
          "requests_oauthlib>=0.5.0",
          "isodate>=0.6.0",
          "certifi>=2017.4.17",

++++++ m_drop-extras-require.patch ++++++
--- /var/tmp/diff_new_pack.2ze7ys/_old  2018-09-26 16:16:13.527008332 +0200
+++ /var/tmp/diff_new_pack.2ze7ys/_new  2018-09-26 16:16:13.527008332 +0200
@@ -1,11 +1,12 @@
-diff -Nru msrest-0.4.28.orig/setup.py msrest-0.4.28/setup.py
---- msrest-0.4.28.orig/setup.py        2018-04-24 12:46:33.099513431 +0200
-+++ msrest-0.4.28/setup.py     2018-04-24 12:47:31.784002289 +0200
-@@ -52,7 +52,4 @@
+diff -Nru msrest-0.5.5.orig/setup.py msrest-0.5.5/setup.py
+--- msrest-0.5.5.orig/setup.py 2018-09-06 14:25:16.473344949 +0200
++++ msrest-0.5.5/setup.py      2018-09-06 14:25:41.501568822 +0200
+@@ -52,8 +52,4 @@
          "isodate>=0.6.0",
          "certifi>=2017.4.17",
      ],
 -    extras_require={
 -        ":python_version<'3.4'": ['enum34>=1.0.4'],
+-        ":python_version<'3.5'": ['typing'],
 -    }
  )

++++++ msrest-0.4.28.tar.gz -> msrest-0.5.5.tar.gz ++++++
++++ 2665 lines of diff (skipped)


Reply via email to