Accepting request 617767 from Cloud:Tools

OBS-URL: https://build.opensuse.org/request/show/617767
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/aws-cli?expand=0&rev=15
This commit is contained in:
Yuchen Lin 2018-06-22 11:33:56 +00:00 committed by Git OBS Bridge
commit 205e038bce
5 changed files with 43 additions and 32 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:af4b0105e00098e1f4ba4467c539e9b8f2e9e1d7bc6fb53834790033b40ca7ab
size 1009042

3
aws-cli-1.15.40.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:be54580551ef27cf68792ab4252772d819c7e05153d4498bd8848c7d9dc042aa
size 1082697

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Tue Jun 19 12:04:32 UTC 2018 - adrian.glaubitz@suse.com
- Update to version 1.15.40 (boo#1088310)
+ For detailed changes see
https://github.com/aws/aws-cli/blob/1.15.40/CHANGELOG.rst
+ Forward port hide_py_pckgmgmt.patch
+ Update Requires in spec file from setup.py
-------------------------------------------------------------------
Fri Nov 10 01:01:18 UTC 2017 - jengelh@inai.de

View File

@ -1,7 +1,7 @@
#
# spec file for package aws-cli
#
# 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
@ -17,7 +17,7 @@
Name: aws-cli
Version: 1.11.185
Version: 1.15.40
Release: 0
Summary: Amazon Web Services Command Line Interface
License: Apache-2.0
@ -29,28 +29,28 @@ Patch0: hide_py_pckgmgmt.patch
Requires: python3
Requires: python3-PyYAML <= 3.12
Requires: python3-PyYAML >= 3.10
Requires: python3-botocore >= 1.7.9
Requires: python3-botocore >= 1.10.40
Requires: python3-colorama <= 0.3.9
Requires: python3-colorama >= 0.2.5
Requires: python3-docutils >= 0.10
Requires: python3-rsa <= 3.5.0
Requires: python3-rsa >= 3.1.2
Requires: python3-s3transfer <= 0.2.0
Requires: python3-s3transfer >= 0.1.9
Requires: python3-s3transfer >= 0.1.12
BuildRequires: python3-devel
BuildRequires: python3-setuptools
%else
Requires: python
Requires: python-PyYAML <= 3.12
Requires: python-PyYAML >= 3.10
Requires: python-botocore >= 1.7.9
Requires: python-botocore >= 1.10.40
Requires: python-colorama <= 0.3.9
Requires: python-colorama >= 0.2.5
Requires: python-docutils >= 0.10
Requires: python-rsa <= 3.5.0
Requires: python-rsa >= 3.1.2
Requires: python-s3transfer <= 0.2.0
Requires: python-s3transfer >= 0.1.9
Requires: python-s3transfer >= 0.1.12
BuildRequires: python-devel
BuildRequires: python-setuptools
%endif

View File

@ -1,33 +1,35 @@
--- setup.py.orig
+++ setup.py
@@ -23,18 +23,18 @@ def find_version(*file_paths):
--- setup.py.orig 2018-06-15 23:45:51.000000000 +0200
+++ setup.py 2018-06-19 14:00:58.013536379 +0200
@@ -23,18 +23,18 @@
raise RuntimeError("Unable to find version string.")
-requires = ['botocore==1.7.43',
- 'colorama>=0.2.5,<=0.3.7',
-requires = ['botocore==1.10.40',
- 'colorama>=0.2.5,<=0.3.9',
- 'docutils>=0.10',
- 'rsa>=3.1.2,<=3.5.0',
- 's3transfer>=0.1.9,<0.2.0',
- 's3transfer>=0.1.12,<0.2.0',
- 'PyYAML>=3.10,<=3.12']
+#requires = ['botocore==1.7.43',
+# 'colorama>=0.2.5,<=0.3.7',
+# requires = ['botocore==1.10.40',
+# 'colorama>=0.2.5,<=0.3.9',
+# 'docutils>=0.10',
+# 'rsa>=3.1.2,<=3.5.0',
+# 's3transfer>=0.1.9,<0.2.0',
+# 's3transfer>=0.1.12,<0.2.0',
+# 'PyYAML>=3.10,<=3.12']
-if sys.version_info[:2] == (2, 6):
+#if sys.version_info[:2] == (2, 6):
# For python2.6 we have to require argparse since it
# was not in stdlib until 2.7.
- # For python2.6 we have to require argparse since it
- # was not in stdlib until 2.7.
- requires.append('argparse>=1.1')
+# 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')
setup_options = dict(
@@ -51,12 +51,12 @@ setup_options = dict(
@@ -51,12 +51,12 @@
package_data={'awscli': ['data/*.json', 'examples/*/*.rst',
'examples/*/*/*.rst', 'topics/*.rst',
'topics/*.json']},