- Update to version 1.21.10 * api-change:``mediapackage``: [``botocore``] This release adds Hybridcast as an available profile option for Dash Origin Endpoints. * api-change:``rds``: [``botocore``] Documentation updates for Multi-AZ DB clusters. * api-change:``mgn``: [``botocore``] Add support for GP3 and IO2 volume types. Add bootMode to LaunchConfiguration object (and as a parameter to UpdateLaunchConfigurationRequest). * api-change:``kafkaconnect``: [``botocore``] Adds operation for custom plugin deletion (DeleteCustomPlugin) and adds new StateDescription field to DescribeCustomPlugin and DescribeConnector responses to return errors from asynchronous resource creation. - from version 1.21.9 * api-change:``finspace-data``: [``botocore``] Add new APIs for managing Users and Permission Groups. * api-change:``amplify``: [``botocore``] Add repositoryCloneMethod field for hosting an Amplify app. This field shows what authorization method is used to clone the repo: SSH, TOKEN, or SIGV4. * api-change:``fsx``: [``botocore``] This release adds support for the following FSx for OpenZFS features: snapshot lifecycle transition messages, force flag for deleting file systems with child resources, LZ4 data compression, custom record sizes, and unsetting volume quotas and reservations. * api-change:``fis``: [``botocore``] This release adds logging support for AWS Fault Injection Simulator experiments. Experiment templates can now be configured to send experiment activity logs to Amazon CloudWatch Logs or to an S3 bucket. * api-change:``route53-recovery-cluster``: [``botocore``] This release adds a new API option to enable overriding safety rules to allow routing control state updates. * api-change:``amplifyuibuilder``: [``botocore``] We are adding the ability to configure workflows and actions for components. * api-change:``athena``: [``botocore``] This release adds support for updating an existing named query. * api-change:``ec2``: [``botocore``] This release adds support for new AMI property 'lastLaunchedTime' * api-change:``servicecatalog-appregistry``: [``botocore``] AppRegistry is deprecating Application and Attribute-Group Name update feature. In this release, we are marking the name attributes for OBS-URL: https://build.opensuse.org/request/show/962725 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:aws/python-boto3?expand=0&rev=109
89 lines
2.6 KiB
RPMSpec
89 lines
2.6 KiB
RPMSpec
#
|
|
# spec file for package python-boto3
|
|
#
|
|
# 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-%{**}}
|
|
%define skip_python2 1
|
|
Name: python-boto3
|
|
Version: 1.21.10
|
|
Release: 0
|
|
Summary: Amazon Web Services Library
|
|
License: Apache-2.0
|
|
URL: https://github.com/boto/boto3
|
|
Source: https://github.com/boto/boto3/archive/%{version}.tar.gz
|
|
# Related test dependencies
|
|
BuildRequires: %{python_module botocore < 1.25.0}
|
|
BuildRequires: %{python_module botocore >= 1.24.10}
|
|
BuildRequires: %{python_module pytest >= 6.2.5}
|
|
BuildRequires: %{python_module s3transfer < 0.6.0}
|
|
BuildRequires: %{python_module s3transfer >= 0.5.0}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module six}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-botocore < 1.25.0
|
|
Requires: python-botocore >= 1.24.10
|
|
Requires: python-jmespath < 1.0.0
|
|
Requires: python-jmespath >= 0.7.1
|
|
Requires: python-s3transfer < 0.6.0
|
|
Requires: python-s3transfer >= 0.5.0
|
|
Requires: python-six
|
|
BuildArch: noarch
|
|
|
|
%python_subpackages
|
|
|
|
%description
|
|
Boto3 is the Amazon Web Services (AWS) Software Development Kit (SDK) for
|
|
Python, which allows Python developers to write software that makes use of
|
|
services like Amazon S3 and Amazon EC2.
|
|
|
|
For documentation consult the online documentation at
|
|
http://boto3.readthedocs.org/en/latest/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Note to maintainers also familia with python-boto:
|
|
# The documentation generation requires access to AWS, thus it is not
|
|
# possible to generate the documentation in OBS
|
|
|
|
%prep
|
|
%setup -q -n boto3-%{version}
|
|
sed -i 's/from botocore.vendored //' boto3/compat.py
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
%pytest --ignore tests/integration -k "not no_bare_six_imports"
|
|
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%doc CONTRIBUTING.rst README.rst
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|