- Update to version 1.91.0

* chore(schema): update by @github-actions in #3626
  * fix: add retry for statemachine integ test by @godwingrs22 in #3630
  * Release 1.91.0 (to main) by @aaythapa in #3639
- from version 1.90.0
  * chore(schema): update by @github-actions in #3589
  * Merge main to develop by @aaythapa in #3591
  * chore(schema): update by @github-actions in #3592
  * Merge main to develop by @godwingrs22 in #3596
  * chore(schema): update by @github-actions in #3598
  * chore: add missing partition to edge config support by @aaythapa in #3605
  * chore: Upgrade ruff to 0.4.5 by @aahung in #3603
  * feat: add StepFunctionsCallbackPolicy policy template by @kshyun28 in #3545
  * fix: Remove ENI manual deletion by @jfuss in #3613
  * fix: AttributeError: module 'pydantic.v1' has no
    attribute 'error_wrapper' by @shikha372 in #3611
  * fix: change endpoint configuration for state machine
    integ test by @aaythapa in #3614
  * fix: prevent redundant tags being added to
    AWS::ApiGatewayV2::Api by @gracelu0 in #3615
  * chore(schema): update by @github-actions in #3616
  * Revert "fix: AttributeError: module 'pydantic.v1' has no
    attribute 'error_wrapper'" by @aaythapa in #3619
  * fix: exclude breaking pydantic version by @aaythapa in #3620
  * chore(schema): update by @github-actions in #3621
  * chore(schema): update by @github-actions in #3623
  * chore(schema): update by @github-actions in #3625
  * feat: Support KmsKeyArn for Events
  * Release 1.90.0 (to main) by @paulhcsun in #3637
- Set PYTHONPATH="${PWD}" for invoking testsuite

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:aws/python-aws-sam-translator?expand=0&rev=60
This commit is contained in:
Robert Schweikert 2024-10-10 13:23:27 +00:00 committed by Git OBS Bridge
commit 97943f6d3e
6 changed files with 1374 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,117 @@
#
# spec file for package python-aws-sam-translator
#
# Copyright (c) 2024 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/
#
# Disable tests on SLE-12 due to issues with Python 3.4
# see: https://github.com/awslabs/serverless-application-model/issues/1255
%if 0%{?suse_version} < 1500
%bcond_with test
%else
%bcond_without test
%endif
%{?sle15_python_module_pythons}
Name: python-aws-sam-translator
Version: 1.91.0
Release: 0
Summary: AWS SAM template to AWS CloudFormation template translator
License: Apache-2.0
URL: https://github.com/awslabs/serverless-application-model
Source: https://github.com/awslabs/serverless-application-model/archive/v%{version}.tar.gz#/serverless-application-model-%{version}.tar.gz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-boto3 >= 1.19.5
Requires: python-jsonschema >= 3.2
Requires: python-pydantic >= 1.8
Requires: python-typing_extensions >= 4.4.0
Requires(post): update-alternatives
Requires(postun): update-alternatives
BuildArch: noarch
%if 0%{?suse_version} < 1500
BuildRequires: python
%endif
%if 0%{?sle_version} >= 150400
Obsoletes: python3-aws-sam-translator < %{version}
%endif
# SECTION test requirements
BuildRequires: %{python_module PyYAML >= 5.4}
BuildRequires: %{python_module boto3 >= 1.19.5}
BuildRequires: %{python_module coverage >= 5.3}
BuildRequires: %{python_module docopt >= 0.6.2}
BuildRequires: %{python_module jsonschema >= 3.2}
BuildRequires: %{python_module parameterized >= 0.7.4}
BuildRequires: %{python_module pydantic >= 1.8}
BuildRequires: %{python_module pytest >= 3.0.7}
BuildRequires: %{python_module pytest-cov >= 2.10.1}
BuildRequires: %{python_module pytest-rerunfailures}
BuildRequires: %{python_module requests >= 2.24.0}
%python_subpackages
%description
AWS SAM Translator is a library that transform SAM
templates into AWS CloudFormation templates
%prep
%autosetup -p1 -n serverless-application-model-%{version}
sed -i -e 's:~=:>=:g' requirements/base.txt
# Remove the __init__.py file from bin to avoid installation of this
# folder in python_sitelib
# https://github.com/aws/serverless-application-model/issues/2588
rm bin/__init__.py
%build
%pyproject_wheel
%install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
mkdir -p %{buildroot}%{_bindir}
install -D -m 755 bin/sam-translate.py %{buildroot}%{_bindir}/sam-translate
%python_clone -a %{buildroot}%{_bindir}/sam-translate
%if %{with test}
%check
export LANG=en_US.UTF8
donttest="test_plugin_accepts_different_sar_client or test_plugin_accepts_flags or"
donttest="$donttest test_plugin_accepts_parameters or test_plugin_default_values or"
donttest="$donttest test_plugin_invalid_configuration_raises_exception or test_plugin_must_setup_correct_name or"
donttest="$donttest test_must_process_applications or test_must_process_applications_validate or"
donttest="$donttest test_process_invalid_applications or test_process_invalid_applications_validate or"
donttest="$donttest test_resolve_intrinsics or test_sar_service_calls or test_sar_success_one_app or"
donttest="$donttest test_sar_throttling_doesnt_stop_processing or test_sleep_between_sar_checks or"
donttest="$donttest test_unexpected_sar_error_stops_processing or test_time_limit_exceeds_between_combined_sar_calls or"
donttest="$donttest test_is_service_supported_positive_4_ec2"
PYTHONPATH="${PWD}" %pytest -k "not ($donttest)"
%endif
%post
%python_install_alternative sam-translate
%postun
%python_uninstall_alternative sam-translate
%files %{python_files}
%doc README.md
%license LICENSE
%python_alternative %{_bindir}/sam-translate
%{python_sitelib}/samtranslator
%{python_sitelib}/aws_sam_translator-%{version}.dist-info
%changelog

View File

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

View File

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