Ai
10 Star 0 Fork 12

src-openEuler/python-aws-sam-translator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
python-aws-sam-translator.spec 5.58 KB
一键复制 编辑 原始数据 按行查看 历史
sxtywg 提交于 2025-11-26 10:07 +08:00 . Update version to 1.103.0
%global _empty_manifest_terminate_build 0
Name: python-aws-sam-translator
Version: 1.103.0
Release: 1
Summary: AWS SAM Translator is a library that transform SAM templates into AWS CloudFormation templates
License: Apache-2.0
URL: https://github.com/awslabs/serverless-application-model
Source0: https://files.pythonhosted.org/packages/d0/e3/82cc7240504b1c0d2d7ed7028b05ccceedb02932b8638c61a8372a5d875f/aws_sam_translator-1.103.0.tar.gz
BuildArch: noarch
%description
[![Build Status]( [![PyPI version]( AWS Serverless Application Model (AWS SAM)
You can use SAM to define serverless applications in simple and clean
syntax.This GitHub project is the starting point for AWS SAM. It contains the
SAM specification, the code that translates SAM templates into AWS
CloudFormation stacks, general information about the model, and examples of
common applications.
%package -n python3-aws-sam-translator
Summary: AWS SAM Translator is a library that transform SAM templates into AWS CloudFormation templates
Provides: python-aws-sam-translator
# Base build requires
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pbr
BuildRequires: python3-pip
BuildRequires: python3-wheel
%description -n python3-aws-sam-translator
[![Build Status]( [![PyPI version]( AWS Serverless Application Model (AWS SAM)
You can use SAM to define serverless applications in simple and clean
syntax.This GitHub project is the starting point for AWS SAM. It contains the
SAM specification, the code that translates SAM templates into AWS
CloudFormation stacks, general information about the model, and examples of
common applications.
%package help
Summary: AWS SAM Translator is a library that transform SAM templates into AWS CloudFormation templates
Provides: python3-aws-sam-translator-doc
%description help
[![Build Status]( [![PyPI version]( AWS Serverless Application Model (AWS SAM)
You can use SAM to define serverless applications in simple and clean
syntax.This GitHub project is the starting point for AWS SAM. It contains the
SAM specification, the code that translates SAM templates into AWS
CloudFormation stacks, general information about the model, and examples of
common applications.
%prep
%autosetup -n aws_sam_translator-%{version}
sed -i 's/~/>/g' requirements/base.txt
sed -i 's/enum34>=1.1//g' requirements/base.txt
%build
%py3_build
%install
%py3_install
install -d -m755 %{buildroot}/%{_pkgdocdir}
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
pushd %{buildroot}
if [ -d usr/lib ]; then
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/lib64 ]; then
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/bin ]; then
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/sbin ]; then
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
fi
touch doclist.lst
if [ -d usr/share/man ]; then
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
fi
popd
mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst .
%check
%files -n python3-aws-sam-translator -f filelist.lst
%dir %{python3_sitelib}/
%files help -f doclist.lst
%{_docdir}/
%changelog
* wed Nov 26 2025 wanggang <wanggang1@kylinos.cn> - 1.103.0-1
- Update version to 1.103.0
- add support for IpAddressType.
* Thu Nov 20 2025 wanggang <wanggang1@kylinos.cn> - 1.102.0-1
- Update version to 1.102.0
- chore: update deprecated managed policy
- fix: add Enabled to MSK model. Use this property for MSK events in integ tests
- chore(deps): bump actions/setup-python from 5 to 6
- Fix(Intrinsic Resolver): should ignore CFN placeholder in parameter
- Merge main to develop
- docs: update contributing guide to include ai usage
- test: update integ tests to nodejs22.x
- test: ignore Boto3 deprecation warning in Python3.9
* Mon Oct 13 2025 liutao1 liutao1@kylinos.cn - 1.101.0-1
- Update package with version 1.101.0
- test: delete created change sets in companion stack if empty
- fix(integration): resolve stack cleanup issues in connector tests
* Mon Sep 01 2025 guochao <guochao@kylinos.cn> - 1.100.0-1
- Update version to 1.100.0
* Thu Jul 03 2025 liudy <liudingyao@kyinos.cn> - 1.99.0-1
- Update to 1.99.0
* Wed Jun 18 2025 guochao <guochao@kylinos.cn> - 1.98.0-1
- Update version to 1.98.0
- Correctly support custom domain in private apis
- Enforce lambda alias alphanumeric logical id
- Add new partition
* Fri Dec 06 2024 liutao1 <liutao1@kylinos.cn> - 1.94.0-1
- Update package to version 1.94.0
support for Provisioned Poller
update valid appsync function runtime in tests
add introspection, query & resolver limits properties in appsync graphql api
* Fri Nov 15 2024 liutao1 <liutao1@kylinos.cn> - 1.92.0-1
- Update package to version 1.92.0
Add the property UseAliasAsEventTarget to AWS::Serverless::StateMachine
Make associated events use the state machine alias as a target
Update cfn-lint versions and match tests
* Wed Aug 21 2024 guochao <guochao@kylinos.cn> - 1.91.0-1
- Update package version to 1.91.0
- Support RecursiveLoop property in SAM function
- Support KmsKeyArn for Events
- Add retry for statemachine integ test
* Mon Jul 29 2024 warlcok <hunan@kylinos.cn> - 1.89.0-1
- Update package version to 1.89.0
Follow upstream updates
* Tue Aug 02 2022 OpenStack_SIG <openstack@openeuler.org> - 1.6.0-1
- Init package python3-aws-sam-translator of version 1.6.0
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/src-openeuler/python-aws-sam-translator.git
git@gitee.com:src-openeuler/python-aws-sam-translator.git
src-openeuler
python-aws-sam-translator
python-aws-sam-translator
master

搜索帮助