Hello community,

here is the log from the commit of package aws-cli for openSUSE:Factory checked 
in at 2019-11-06 13:49:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/aws-cli (Old)
 and      /work/SRC/openSUSE:Factory/.aws-cli.new.2990 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "aws-cli"

Wed Nov  6 13:49:05 2019 rev:29 rq:738466 version:1.16.258

Changes:
--------
--- /work/SRC/openSUSE:Factory/aws-cli/aws-cli.changes  2019-09-30 
15:59:07.685259875 +0200
+++ /work/SRC/openSUSE:Factory/.aws-cli.new.2990/aws-cli.changes        
2019-11-06 13:49:14.687710151 +0100
@@ -1,0 +2,9 @@
+Mon Oct 14 12:43:10 UTC 2019 - John Paul Adrian Glaubitz 
<adrian.glaub...@suse.com>
+
+- Update to version 1.16.258
+  + For detailed changes see
+    https://github.com/aws/aws-cli/blob/1.16.258/CHANGELOG.rst
+  + Forward port hide_py_pckgmgmt.patch
+  + Update Requires in spec file from setup.py
+
+-------------------------------------------------------------------

Old:
----
  aws-cli-1.16.223.tar.gz

New:
----
  aws-cli-1.16.258.tar.gz

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

Other differences:
------------------
++++++ aws-cli.spec ++++++
--- /var/tmp/diff_new_pack.vpD2tQ/_old  2019-11-06 13:49:16.667712298 +0100
+++ /var/tmp/diff_new_pack.vpD2tQ/_new  2019-11-06 13:49:16.667712298 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           aws-cli
-Version:        1.16.223
+Version:        1.16.258
 Release:        0
 Summary:        Amazon Web Services Command Line Interface
 License:        Apache-2.0
@@ -31,8 +31,8 @@
 Requires:       python3
 Requires:       python3-PyYAML     <= 6.0.0
 Requires:       python3-PyYAML     >= 3.10
-Requires:       python3-botocore  >= 1.12.213
-Requires:       python3-colorama  <= 0.4.1
+Requires:       python3-botocore  >= 1.12.248
+Requires:       python3-colorama  <= 0.4.2
 Requires:       python3-colorama  >= 0.2.5
 Requires:       python3-docutils  >= 0.10
 Requires:       python3-rsa       <  5.0.0

++++++ aws-cli-1.16.223.tar.gz -> aws-cli-1.16.258.tar.gz ++++++
++++ 22595 lines of diff (skipped)

++++++ hide_py_pckgmgmt.patch ++++++
--- /var/tmp/diff_new_pack.vpD2tQ/_old  2019-11-06 13:49:17.663713377 +0100
+++ /var/tmp/diff_new_pack.vpD2tQ/_new  2019-11-06 13:49:17.663713377 +0100
@@ -1,57 +1,71 @@
---- setup.py.orig      2019-08-21 20:20:11.000000000 +0200
-+++ setup.py   2019-08-22 15:09:23.121269602 +0200
-@@ -23,23 +23,23 @@
+--- setup.py.orig      2019-10-11 20:12:23.000000000 +0200
++++ setup.py   2019-10-14 14:42:54.622237116 +0200
+@@ -23,30 +23,30 @@
      raise RuntimeError("Unable to find version string.")
  
  
--requires = ['botocore==1.12.213',
--            'colorama>=0.2.5,<=0.3.9',
--            'docutils>=0.10,<0.16',
--            'rsa>=3.1.2,<=3.5.0',
--            's3transfer>=0.2.0,<0.3.0']
+-install_requires = ['botocore==1.12.248',
+-                    'docutils>=0.10,<0.16',
+-                    'rsa>=3.1.2,<=3.5.0',
+-                    's3transfer>=0.2.0,<0.3.0']
 -
 -
 -if sys.version_info[:2] == (2, 6):
 -    # For python2.6 we have to require argparse since it
 -    # was not in stdlib until 2.7.
--    requires.append('argparse>=1.1')
+-    install_requires.append('argparse>=1.1')
 -
 -    # For Python 2.6, we have to require a different verion of PyYAML since 
the latest
 -    # versions dropped support for Python 2.6.
--    requires.append('PyYAML>=3.10,<=3.13')
+-    install_requires.append('PyYAML>=3.10,<=3.13')
+-
+-    # Colorama removed support for EOL pythons.
+-    install_requires.append('colorama>=0.2.5,<=0.3.9')
+-elif sys.version_info[:2] == (3, 3):
+-    install_requires.append('PyYAML>=3.10,<=3.13')
+-    # Colorama removed support for EOL pythons.
+-    install_requires.append('colorama>=0.2.5,<=0.3.9')
 -else:
--    requires.append('PyYAML>=3.10,<=5.2')
-+# requires = ['botocore==1.12.213',
-+#             'colorama>=0.2.5,<=0.3.9',
-+#             'docutils>=0.10,<0.16',
-+#             'rsa>=3.1.2,<=3.5.0',
-+#             's3transfer>=0.2.0,<0.3.0']
+-    install_requires.append('PyYAML>=3.10,<5.2')
+-    install_requires.append('colorama>=0.2.5,<0.4.2')
++# install_requires = ['botocore==1.12.248',
++#                     'docutils>=0.10,<0.16',
++#                     'rsa>=3.1.2,<=3.5.0',
++#                     's3transfer>=0.2.0,<0.3.0']
 +
 +
 +# if sys.version_info[:2] == (2, 6):
 +#     # For python2.6 we have to require argparse since it
 +#     # was not in stdlib until 2.7.
-+#     requires.append('argparse>=1.1')
++#     install_requires.append('argparse>=1.1')
 +
 +#     # For Python 2.6, we have to require a different verion of PyYAML since 
the latest
 +#     # versions dropped support for Python 2.6.
-+#     requires.append('PyYAML>=3.10,<=3.13')
++#     install_requires.append('PyYAML>=3.10,<=3.13')
++
++#     # Colorama removed support for EOL pythons.
++#     install_requires.append('colorama>=0.2.5,<=0.3.9')
++# elif sys.version_info[:2] == (3, 3):
++#     install_requires.append('PyYAML>=3.10,<=3.13')
++#     # Colorama removed support for EOL pythons.
++#     install_requires.append('colorama>=0.2.5,<=0.3.9')
 +# else:
-+#     requires.append('PyYAML>=3.10,<=5.2')
++#     install_requires.append('PyYAML>=3.10,<5.2')
++#     install_requires.append('colorama>=0.2.5,<0.4.2')
  
  
  setup_options = dict(
-@@ -57,12 +57,12 @@
+@@ -64,12 +64,12 @@
                               'examples/*/*.txt', 'examples/*/*/*.txt',
                               'examples/*/*/*.rst', 'topics/*.rst',
                               'topics/*.json']},
--    install_requires=requires,
+-    install_requires=install_requires,
 -    extras_require={
 -        ':python_version=="2.6"': [
 -            'argparse>=1.1',
 -        ]
 -    },
-+    # install_requires=requires,
++    # install_requires=install_requires,
 +    # extras_require={
 +    #     ':python_version=="2.6"': [
 +    #         'argparse>=1.1',


Reply via email to