Accepting request 711134 from home:glaubitz:branches:devel:languages:python:aws

- Version update to 1.12.172
  * api-change:``eks``: Update eks client to latest version
- from version 1.12.171
  * api-change:``ec2``: Update ec2 client to latest version
  * api-change:``resourcegroupstaggingapi``: Update resourcegroupstaggingapi client to latest version
- from version 1.12.170
  * api-change:``neptune``: Update neptune client to latest version
  * api-change:``servicecatalog``: Update servicecatalog client to latest version
  * api-change:``robomaker``: Update robomaker client to latest version
  * bugfix:Paginator: Fixes a bug where pagination tokens with three consecutive underscores would
    result in a parsing failure. Resolves boto/boto3`#1984 <https://github.com/boto/boto3/issues/1984>`__.
- from version 1.12.169
  * api-change:``cloudfront``: Update cloudfront client to latest version
  * api-change:``personalize``: Update personalize client to latest version
  * api-change:``ec2``: Update ec2 client to latest version
  * api-change:``appstream``: Update appstream client to latest version
- from version 1.12.168
  * api-change:``appmesh``: Update appmesh client to latest version
  * api-change:``elasticache``: Update elasticache client to latest version
  * api-change:``ec2``: Update ec2 client to latest version
  * api-change:``guardduty``: Update guardduty client to latest version
- from version 1.12.167
  * api-change:``servicecatalog``: Update servicecatalog client to latest version
- Fix typo in spec file comment
- Remove bundled cacert.pem

OBS-URL: https://build.opensuse.org/request/show/711134
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:aws/python-botocore?expand=0&rev=44
This commit is contained in:
Robert Schweikert 2019-06-23 14:47:19 +00:00 committed by Git OBS Bridge
parent da1b06047f
commit 149d98eb48
4 changed files with 36 additions and 5 deletions

View File

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

3
botocore-1.12.172.tar.gz Normal file
View File

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

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Thu Jun 20 12:22:05 UTC 2019 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Version update to 1.12.172
* api-change:``eks``: Update eks client to latest version
- from version 1.12.171
* api-change:``ec2``: Update ec2 client to latest version
* api-change:``resourcegroupstaggingapi``: Update resourcegroupstaggingapi client to latest version
- from version 1.12.170
* api-change:``neptune``: Update neptune client to latest version
* api-change:``servicecatalog``: Update servicecatalog client to latest version
* api-change:``robomaker``: Update robomaker client to latest version
* bugfix:Paginator: Fixes a bug where pagination tokens with three consecutive underscores would
result in a parsing failure. Resolves boto/boto3`#1984 <https://github.com/boto/boto3/issues/1984>`__.
- from version 1.12.169
* api-change:``cloudfront``: Update cloudfront client to latest version
* api-change:``personalize``: Update personalize client to latest version
* api-change:``ec2``: Update ec2 client to latest version
* api-change:``appstream``: Update appstream client to latest version
- from version 1.12.168
* api-change:``appmesh``: Update appmesh client to latest version
* api-change:``elasticache``: Update elasticache client to latest version
* api-change:``ec2``: Update ec2 client to latest version
* api-change:``guardduty``: Update guardduty client to latest version
- from version 1.12.167
* api-change:``servicecatalog``: Update servicecatalog client to latest version
- Fix typo in spec file comment
- Remove bundled cacert.pem
-------------------------------------------------------------------
Wed Jun 12 11:18:46 UTC 2019 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>

View File

@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-botocore
Version: 1.12.166
Version: 1.12.172
Release: 0
Summary: Python interface for AWS
License: Apache-2.0
@ -64,7 +64,9 @@ A low-level interface to a growing number of Amazon Web Services.
%prep
%setup -q -n botocore-%{version}
%patch0 -p1
# remove bundeled 3rd party Python modules
# remove bundled cacert.pem
rm botocore/cacert.pem
# remove bundled 3rd party Python modules
rm -r botocore/vendored/
# fix all imports:
sed -i 's/from botocore\.vendored //' botocore/*.py tests/functional/*.py tests/integration/*.py tests/unit/*.py