Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/aws-sam-translator/
Date: Tue, 29 Nov 2022 06:59:50
Message-Id: 1669705175.c2c6232389612abb0c526859b8b16c84bd854f67.mgorny@gentoo
1 commit: c2c6232389612abb0c526859b8b16c84bd854f67
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 29 05:57:10 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 29 06:59:35 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2c62323
7
8 dev-python/aws-sam-translator: Bump to 1.55.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/aws-sam-translator/Manifest | 1 +
13 .../aws-sam-translator-1.55.0.ebuild | 64 ++++++++++++++++++++++
14 2 files changed, 65 insertions(+)
15
16 diff --git a/dev-python/aws-sam-translator/Manifest b/dev-python/aws-sam-translator/Manifest
17 index 17bc20154ff6..dc458f6bece8 100644
18 --- a/dev-python/aws-sam-translator/Manifest
19 +++ b/dev-python/aws-sam-translator/Manifest
20 @@ -1,2 +1,3 @@
21 DIST aws-sam-translator-1.53.0.gh.tar.gz 1158682 BLAKE2B 4bc8430936a1b180dc04637e540ecad7eb82cd7a5da5254f2b823075878a03ad3e63422c183b365b0dad927bcdf063b8ab40984ab23abe1d91d8bc3c411aa2f1 SHA512 292259bf8d4002b72be51db0358673eee61fe368be5db15e7faff195baae8fa194bef882fd0f5a9b5c46379fe5f9593d101a212121da8d0636aca709dd087f05
22 DIST aws-sam-translator-1.54.0.gh.tar.gz 1004760 BLAKE2B acb875f6f25c43d605dc1a2ee38bde66eacc8de85aaa8c3231ded77a9252e1d722a82724e2d8bb8016e1d8cb7bd188c7dcb76e50ac79af20109713160b90a891 SHA512 a8dbf74e983eab124cfab7627f64fb013a59340b77820a96c5654503956370aeca51a676508b688d2f1c96c1fb9586c7711f03af5ca68f680edbb19516007f4f
23 +DIST aws-sam-translator-1.55.0.gh.tar.gz 1006734 BLAKE2B 5fbfd8719ad605e0df7acd8ecb25ca681f5863e67e97b57624c470fa6e77bb431d7ff19f5e00a181120ea809019d93bd75416e46ba1424e8839f80c10002b30f SHA512 4d2f1e3458cb9d2014f73575946e863e1d74e7432e2aaf17128638d69d9f092b4d531224e45c2110b50103a1e7c4343fc0282ad38fe959cf45af4a0a2b4663aa
24
25 diff --git a/dev-python/aws-sam-translator/aws-sam-translator-1.55.0.ebuild b/dev-python/aws-sam-translator/aws-sam-translator-1.55.0.ebuild
26 new file mode 100644
27 index 000000000000..307deef634c3
28 --- /dev/null
29 +++ b/dev-python/aws-sam-translator/aws-sam-translator-1.55.0.ebuild
30 @@ -0,0 +1,64 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=setuptools
37 +PYTHON_COMPAT=( python3_{8..11} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="A library that transform SAM templates into AWS CloudFormation templates"
42 +HOMEPAGE="
43 + https://github.com/aws/serverless-application-model/
44 + https://pypi.org/project/aws-sam-translator/
45 +"
46 +SRC_URI="
47 + https://github.com/aws/serverless-application-model/archive/v${PV}.tar.gz
48 + -> ${P}.gh.tar.gz
49 +"
50 +S="${WORKDIR}/serverless-application-model-${PV}"
51 +
52 +LICENSE="Apache-2.0"
53 +SLOT="0"
54 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
55 +
56 +RDEPEND="
57 + <dev-python/boto3-2[${PYTHON_USEDEP}]
58 + >=dev-python/boto3-1.19.5[${PYTHON_USEDEP}]
59 + >=dev-python/jsonschema-3.2[${PYTHON_USEDEP}]
60 + dev-python/pyyaml[${PYTHON_USEDEP}]
61 +"
62 +BDEPEND="
63 + test? (
64 + dev-python/mock[${PYTHON_USEDEP}]
65 + dev-python/parameterized[${PYTHON_USEDEP}]
66 + )
67 +"
68 +
69 +distutils_enable_tests pytest
70 +
71 +EPYTEST_DESELECT=(
72 + tests/validator/test_validator_api.py::TestValidatorApi::test_errors_13_error_definitionuri
73 + tests/unit/test_region_configuration.py::TestRegionConfiguration::test_is_service_supported_positive_4_ec2
74 + tests/plugins/application/test_serverless_app_plugin.py::TestServerlessAppPlugin_on_before_transform_template_translate::test_sar_success_one_app
75 + tests/plugins/application/test_serverless_app_plugin.py::TestServerlessAppPlugin_on_before_transform_template_translate::test_sar_throttling_doesnt_stop_processing
76 + tests/plugins/application/test_serverless_app_plugin.py::TestServerlessAppPlugin_on_before_transform_template_translate::test_sleep_between_sar_checks
77 + tests/plugins/application/test_serverless_app_plugin.py::TestServerlessAppPlugin_on_before_transform_template_translate::test_unexpected_sar_error_stops_processing
78 + tests/plugins/application/test_serverless_app_plugin.py::TestServerlessAppPlugin_on_before_and_on_after_transform_template::test_time_limit_exceeds_between_combined_sar_calls
79 +)
80 +
81 +python_prepare_all() {
82 + # remove pytest-cov dependency
83 + sed -i -e '/addopts/d' pytest.ini || die
84 +
85 + # deps are installed by ebuild, don't try to reinstall them via pip
86 + truncate --size=0 requirements/*.txt || die
87 +
88 + distutils-r1_python_prepare_all
89 +}
90 +
91 +python_test() {
92 + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
93 + epytest
94 +}