Robert Schweikert
ade4d8cc77
- Update to version 1.24.91 * api-change:``mediaconvert``: [``botocore``] MediaConvert now supports specifying the minimum percentage of the HRD buffer available at the end of each encoded video segment. - from version 1.24.90 * api-change:``amplifyuibuilder``: [``botocore``] We are releasing the ability for fields to be configured as arrays. * api-change:``appflow``: [``botocore``] With this update, you can choose which Salesforce API is used by Amazon AppFlow to transfer data to or from your Salesforce account. You can choose the Salesforce REST API or Bulk API 2.0. You can also choose for Amazon AppFlow to pick the API automatically. * api-change:``connect``: [``botocore``] This release adds support for a secondary email and a mobile number for Amazon Connect instance users. * api-change:``ds``: [``botocore``] This release adds support for describing and updating AWS Managed Microsoft AD set up. * api-change:``ecs``: [``botocore``] Documentation update to address tickets. * api-change:``guardduty``: [``botocore``] Add UnprocessedDataSources to CreateDetectorResponse which specifies the data sources that couldn't be enabled during the CreateDetector request. In addition, update documentations. * api-change:``iam``: [``botocore``] Documentation updates for the AWS Identity and Access Management API Reference. * api-change:``iotfleetwise``: [``botocore``] Documentation update for AWS IoT FleetWise * api-change:``medialive``: [``botocore``] AWS Elemental MediaLive now supports forwarding SCTE-35 messages through the Event Signaling and Management (ESAM) API, and can read those SCTE-35 messages from an inactive source. * api-change:``mediapackage-vod``: [``botocore``] This release adds SPEKE v2 support for MediaPackage VOD. Speke v2 is an upgrade to the existing SPEKE API to support multiple encryption keys, based on an encryption contract selected by the customer. * api-change:``panorama``: [``botocore``] Pause and resume camera stream processing with SignalApplicationInstanceNodeInstances. Reboot an appliance with CreateJobForDevices. More application state information in DescribeApplicationInstance response. OBS-URL: https://build.opensuse.org/request/show/1012043 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:aws/python-boto3?expand=0&rev=126
89 lines
2.6 KiB
RPMSpec
89 lines
2.6 KiB
RPMSpec
#
|
|
# spec file for package python-boto3
|
|
#
|
|
# Copyright (c) 2022 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.24.91
|
|
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.28.0}
|
|
BuildRequires: %{python_module botocore >= 1.27.91}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module s3transfer < 0.7.0}
|
|
BuildRequires: %{python_module s3transfer >= 0.6.0}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module six}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-botocore < 1.28.0
|
|
Requires: python-botocore >= 1.27.91
|
|
Requires: python-jmespath < 1.0.0
|
|
Requires: python-jmespath >= 0.7.1
|
|
Requires: python-s3transfer < 0.7.0
|
|
Requires: python-s3transfer >= 0.6.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
|