osc copypac from project:Cloud:EC2 package:aws-cli revision:2

OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/aws-cli?expand=0&rev=1
This commit is contained in:
Robert Schweikert 2014-02-26 19:04:35 +00:00 committed by Git OBS Bridge
commit 28e0268f96
6 changed files with 177 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

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

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

33
aws-cli.changes Normal file
View File

@ -0,0 +1,33 @@
-------------------------------------------------------------------
Wed Feb 26 17:20:36 UTC 2014 - rschweikert@suse.com
- update to version 1.2.13
+ feature:aws route53: Update aws route53 command to support string-match
health checks and the UPSERT action for the aws route53
change-resource-record-sets command
+ bugfix:Command Completion: Don't show tracebacks on SIGINT (issue 628)
+ bugfix:Docs: Don't duplicate enum values in reference docs (issue 632)
+ bugfix:aws s3: Don't require s3:// prefix (issue 626)
+ feature:aws configure: Add support for configure get and configure set
command which allow you to set and get configuration values from the AWS
config file (`issue 602 <https://github.com/aws/aws-cli/issues/602`__)
+ bugfix:aws s3: Fix issue with Amazon S3 downloads on certain OSes
(`issue 619 <https://github.com/aws/aws-cli/issues/619`__)
+ Add support for the --recursive option in the aws s3 ls command
(issue 465 <https://github.com/aws/aws-cli/issues/465)
+ Add support for the AWS_CA_BUNDLE environment variable so that users
can specify an alternate path to a cert bundle (issue 586)
+ Add metadata_service_timeout and metadata_service_num_attempts config
parameters to control behavior when retrieving credentials using an
IAM role (issue 597)
+ Retry intermittent aws s3 download failures including socket timeouts
and content length mismatches (issue 594)
+ Fix response parsing of aws s3api get-bucket-location (issue 345)
+ Fix response parsing of the aws elastictranscoder command (issue 207)
+ Update aws elasticache command to not require certain parameters
-------------------------------------------------------------------
Sat Jan 18 13:57:04 UTC 2014 - rschweikert@suse.com
- Initial build

76
aws-cli.spec Normal file
View File

@ -0,0 +1,76 @@
#
# spec file for package aws-cli
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# 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/
#
Name: aws-cli
Version: 1.2.13
Release: 0
License: Apache-2.0
Summary: Amazon Web Services Command Line Interface
URL: https://github.com/aws/aws-cli
Group: System/Management
Source0: %{name}-%{version}.tar.gz
Patch0: hide_py_pckgmgmt.patch
Requires: python
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
requires: python-argparse >= 1.1
%endif
Requires: python-bcdoc >= 0.12.0
Requires: python-botocore >= 0.30.0
Requires: python-colorama >= 0.2.5
Requires: python-docutils >= 0.10
Requires: python-rsa >= 3.1.2
Requires: python-six >= 1.1.0
BuildRequires: python
BuildRequires: python-devel
BuildRequires: python-setuptools
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%else
BuildArch: noarch
%endif
%description
The AWS Command Line Interface (CLI) is a unified tool to manage your AWS services. With just one tool to download and configure, you can control multiple AWS services from the command line and automate them through scripts.
%prep
%setup -q
%patch0 -p1
%build
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot} --install-scripts=%{_bindir}
# No DOS crap
rm %{buildroot}/%{_bindir}/aws.cmd
%files
%defattr(-,root,root,-)
%doc CHANGELOG.rst LICENSE.txt README.rst
%dir %{python_sitelib}/awscli
%dir %{python_sitelib}/awscli-%{version}-py%{py_ver}.egg-info
%{_bindir}/*
%{python_sitelib}/awscli/*
%{python_sitelib}/*egg-info/*
%changelog

41
hide_py_pckgmgmt.patch Normal file
View File

@ -0,0 +1,41 @@
Index: aws-cli-1.2.13/setup.py
===================================================================
--- aws-cli-1.2.13.orig/setup.py
+++ aws-cli-1.2.13/setup.py
@@ -6,17 +6,17 @@ from setuptools import setup, find_packa
import awscli
-requires = ['botocore>=0.33.0,<0.34.0',
- 'bcdoc>=0.12.0,<0.13.0',
- 'six>=1.1.0',
- 'colorama==0.2.5',
- 'docutils>=0.10',
- 'rsa==3.1.2']
+#requires = ['botocore>=0.33.0,<0.34.0',
+# 'bcdoc>=0.12.0,<0.13.0',
+# 'six>=1.1.0',
+# 'colorama==0.2.5',
+# 'docutils>=0.10',
+# 'rsa==3.1.2']
-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')
+#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(
@@ -33,7 +33,7 @@ setup_options = dict(
package_dir={'awscli': 'awscli'},
package_data={'awscli': ['data/*.json', 'examples/*/*.rst',
'examples/*/*/*.rst']},
- install_requires=requires,
+# install_requires=requires,
license="Apache License 2.0",
classifiers=(
'Development Status :: 5 - Production/Stable',