python-boto3/python-boto3.spec
Robert Schweikert 690af4d3a1 Accepting request 1098136 from home:glaubitz:branches:devel:languages:python:aws
- Update to 1.28.2:
  * bugfix:s3: [``botocore``] Fix s3 presigned URLs for operations with query components (`#2962
    <https://github.com/boto/botocore/issues/2962>`__)
  * api-change:``cognito-idp``: [``botocore``] API model updated in Amazon Cognito
- from version 1.28.1
  * api-change:``dms``: [``botocore``] Releasing DMS Serverless. Adding support for PostgreSQL 15.x
    as source and target endpoint. Adding support for DocDB Elastic Clusters with sharded collections,
    PostgreSQL datatype mapping customization and disabling hostname validation of the certificate
    authority in Kafka endpoint settings
  * api-change:``glue``: [``botocore``] This release enables customers to create new Apache Iceberg
    tables and associated metadata in Amazon S3 by using native AWS Glue CreateTable operation.
  * api-change:``logs``: [``botocore``] Add CMK encryption support for CloudWatch Logs Insights query
    result data
  * api-change:``medialive``: [``botocore``] This release enables the use of Thumbnails in AWS
    Elemental MediaLive.
  * api-change:``mediatailor``: [``botocore``] The AWS Elemental MediaTailor SDK for Channel Assembly
    has added support for EXT-X-CUE-OUT and EXT-X-CUE-IN tags to specify ad breaks in HLS outputs,
    including support for EXT-OATCLS, EXT-X-ASSET, and EXT-X-CUE-OUT-CONT accessory tags.
- from version 1.28.0
  * enhancement:configprovider: [``botocore``] Always use shallow copy of session config value store
    for clients
  * feature:configuration: [``botocore``] Configure the endpoint URL in the shared configuration file
    or via an environment variable for a specific AWS service or all AWS services.
  * bugfix:configprovider: [``botocore``] Fix bug when deep copying config value store where
    overrides were not preserved
  * api-change:``ec2``: [``botocore``] Add Nitro Enclaves support on DescribeInstanceTypes
  * api-change:``location``: [``botocore``] This release adds support for authenticating with Amazon
    Location Service's Places & Routes APIs with an API Key. Also, with this release developers can
    publish tracked device position updates to Amazon EventBridge.
  * api-change:``outposts``: [``botocore``] Added paginator support to several APIs. Added the

OBS-URL: https://build.opensuse.org/request/show/1098136
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:aws/python-boto3?expand=0&rev=167
2023-07-14 13:41:26 +00:00

82 lines
2.5 KiB
RPMSpec

#
# spec file for package python-boto3
#
# Copyright (c) 2023 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.28.2
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.32.0}
BuildRequires: %{python_module botocore >= 1.31.2}
BuildRequires: %{python_module pytest-xdist}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module s3transfer < 0.7.0}
BuildRequires: %{python_module s3transfer >= 0.6.0}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-botocore < 1.32.0
Requires: python-botocore >= 1.31.2
Requires: python-jmespath < 2.0.0
Requires: python-jmespath >= 0.7.1
Requires: python-s3transfer < 0.7.0
Requires: python-s3transfer >= 0.6.0
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}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest %{?jobs: -n %jobs} --ignore tests/integration -k "not no_bare_six_imports"
%files %{python_files}
%license LICENSE
%doc CONTRIBUTING.rst README.rst
%{python_sitelib}/*
%changelog