Robert Schweikert
dac173baa0
- Version update to 1.20.112 * api-change:``dms``: Release of feature needed for ECA-Endpoint settings. This allows customer to delete a field in endpoint settings by using --exact-settings flag in modify- endpoint api. This also displays default values for certain required fields of endpoint settings in describe-endpoint-settings api. * api-change:``glue``: Add support for Event Driven Workflows * api-change:``acm``: Added support for RSA 3072 SSL certificate import * api-change:``healthlake``: General availability for Amazon HealthLake. StartFHIRImportJob and StartFHIRExportJob APIs now require AWS KMS parameter. For more information, see the Amazon HealthLake Documentation https://docs.aws.amazon.com/healthlake/index.html. * api-change:``wellarchitected``: This update provides support for Well-Architected API users to mark answer choices as not applicable. * api-change:``lightsail``: This release adds support for the Amazon Lightsail object storage service, which allows you to create buckets and store objects. - from version 1.20.111 * api-change:``amplifybackend``: Added Sign in with Apple OAuth provider. * api-change:``redshift``: Release new APIs to support new Redshift feature - Authentication Profile * api-change:``ssm``: Changes to OpsCenter APIs to support a new feature, operational insights. * api-change:``lex-models``: Customers can now migrate bots built with Lex V1 APIs to V2 APIs. This release adds APIs to initiate and manage the migration of a bot. * api-change:``directconnect``: This release adds a new filed named awsLogicalDeviceId that it displays the AWS Direct Connect endpoint which terminates a physical connection's BGP Sessions. * api-change:``pricing``: Documentation updates for api.pricing - from version 1.20.110 * api-change:``eks``: Documentation updates for Wesley to support the parallel node upgrade feature. * api-change:``kendra``: Amazon Kendra now supports Principal Store - from version 1.20.109 * api-change:``sagemaker``: Releasing new APIs related to Tuning steps in model building pipelines. * api-change:``frauddetector``: This release adds support for ML Explainability to display model variable importance value in Amazon Fraud Detector. OBS-URL: https://build.opensuse.org/request/show/907529 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:aws/python-botocore?expand=0&rev=102
94 lines
3.2 KiB
RPMSpec
94 lines
3.2 KiB
RPMSpec
#
|
|
# spec file for package python-botocore
|
|
#
|
|
# Copyright (c) 2021 SUSE LLC
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
%if 0%{?suse_version} >= 1500
|
|
%define skip_python2 1
|
|
%endif
|
|
Name: python-botocore
|
|
Version: 1.20.112
|
|
Release: 0
|
|
Summary: Python interface for AWS
|
|
License: Apache-2.0
|
|
URL: https://github.com/boto/botocore
|
|
Source: https://files.pythonhosted.org/packages/source/b/botocore/botocore-%{version}.tar.gz
|
|
BuildRequires: %{python_module jmespath < 1.0.0}
|
|
BuildRequires: %{python_module jmespath >= 0.7.1}
|
|
BuildRequires: %{python_module python-dateutil < 3.0.0}
|
|
BuildRequires: %{python_module python-dateutil >= 2.1}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module urllib3 < 1.27}
|
|
BuildRequires: %{python_module urllib3 >= 1.25.4}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-jmespath < 1.0.0
|
|
Requires: python-jmespath >= 0.7.1
|
|
Requires: python-python-dateutil < 3.0.0
|
|
Requires: python-python-dateutil >= 2.1
|
|
Requires: python-requests
|
|
Requires: python-six
|
|
Requires: python-urllib3 < 1.27
|
|
Requires: python-urllib3 >= 1.25.4
|
|
BuildArch: noarch
|
|
%if 0%{?suse_version} <= 1315
|
|
# We need the ssl module, which is provided by python and not python-base
|
|
BuildRequires: python
|
|
%endif
|
|
# SECTION Testing requirements
|
|
BuildRequires: %{python_module mock >= 1.3.0}
|
|
BuildRequires: %{python_module nose >= 1.3.7}
|
|
BuildRequires: %{python_module pluggy >= 0.7}
|
|
BuildRequires: %{python_module py >= 1.5.0}
|
|
BuildRequires: %{python_module requests}
|
|
BuildRequires: %{python_module six}
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
A low-level interface to a growing number of Amazon Web Services.
|
|
|
|
%prep
|
|
%setup -q -n botocore-%{version}
|
|
|
|
# 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
|
|
sed -i 's/botocore.vendored.requests.model.Response/requests.model.Response/' botocore/endpoint.py
|
|
sed -i 's/botocore\.vendored\.//' botocore/*.py tests/functional/*.py tests/integration/*.py tests/unit/*.py
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
%python_expand nosetests-%{$python_bin_suffix} -v tests/unit
|
|
|
|
%files %{python_files}
|
|
%doc README.rst
|
|
%license LICENSE.txt
|
|
%{python_sitelib}/botocore/
|
|
%{python_sitelib}/botocore-%{version}-py*.egg-info
|
|
|
|
%changelog
|