From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D81D1138334 for ; Tue, 25 Jun 2019 01:35:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D5E0FE087F; Tue, 25 Jun 2019 01:35:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AC570E087F for ; Tue, 25 Jun 2019 01:35:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7BAEC3469B3 for ; Tue, 25 Jun 2019 01:35:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 84BA562A for ; Tue, 25 Jun 2019 01:35:44 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1561426421.96a88c91fb4a92931628fe5f1201717e851aef84.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/aws-sam-translator/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/aws-sam-translator/Manifest dev-python/aws-sam-translator/aws-sam-translator-1.11.0.ebuild dev-python/aws-sam-translator/metadata.xml X-VCS-Directories: dev-python/aws-sam-translator/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 96a88c91fb4a92931628fe5f1201717e851aef84 X-VCS-Branch: master Date: Tue, 25 Jun 2019 01:35:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6ce0b8fe-a918-4ada-b3d8-827bc8a391cc X-Archives-Hash: 5162ead5d10e7b925f3cd0ed806b6e8b commit: 96a88c91fb4a92931628fe5f1201717e851aef84 Author: Zac Medico sony com> AuthorDate: Sat Jun 22 01:19:08 2019 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Jun 25 01:33:41 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96a88c91 dev-python/aws-sam-translator: New package Bug: https://bugs.gentoo.org/688034 Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.67, Repoman-2.3.15 Signed-off-by: Zac Medico gentoo.org> dev-python/aws-sam-translator/Manifest | 1 + .../aws-sam-translator-1.11.0.ebuild | 28 ++++++++++++++++++++++ dev-python/aws-sam-translator/metadata.xml | 13 ++++++++++ 3 files changed, 42 insertions(+) diff --git a/dev-python/aws-sam-translator/Manifest b/dev-python/aws-sam-translator/Manifest new file mode 100644 index 00000000000..eb46b6cecbd --- /dev/null +++ b/dev-python/aws-sam-translator/Manifest @@ -0,0 +1 @@ +DIST aws-sam-translator-1.11.0.tar.gz 96492 BLAKE2B 4025492501d17699b64041a94704d0ec491ffb02a4b7e48c2647101be4d504b6a8c08a9a043c2d964a51d1ef7b40e4fd1d993f9d3b38b5b75460a7d0117b9f49 SHA512 e008248ef3401ffe58590c6d68667f67e5963e416656daea545c8d938ab8cb5d8b1c9c7f5aea2d53cedfd74b1fb8677e99a93a8a78235198b18c14df957d0c74 diff --git a/dev-python/aws-sam-translator/aws-sam-translator-1.11.0.ebuild b/dev-python/aws-sam-translator/aws-sam-translator-1.11.0.ebuild new file mode 100644 index 00000000000..43c8b5ac961 --- /dev/null +++ b/dev-python/aws-sam-translator/aws-sam-translator-1.11.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) + +inherit distutils-r1 + +DESCRIPTION="A library that transform SAM templates into AWS CloudFormation templates" +HOMEPAGE="https://github.com/awslabs/serverless-application-model https://pypi.org/project/aws-sam-translator/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" +RDEPEND="virtual/python-enum34[${PYTHON_USEDEP}] + >=dev-python/boto3-1.5[${PYTHON_USEDEP}] + >=dev-python/jsonschema-2.6[${PYTHON_USEDEP}] + >=dev-python/six-1.11[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" +RESTRICT="test" + +python_test() { + PYTHONPATH=${BUILD_DIR}/lib \ + esetup.py test || die "tests failed with ${EPYTHON}" +} diff --git a/dev-python/aws-sam-translator/metadata.xml b/dev-python/aws-sam-translator/metadata.xml new file mode 100644 index 00000000000..de0ced977a9 --- /dev/null +++ b/dev-python/aws-sam-translator/metadata.xml @@ -0,0 +1,13 @@ + + + + + zmedico@gentoo.org + Zac Medico + + + awslabs/serverless-application-model + aws-sam-translator + https://github.com/awslabs/serverless-application-model/issues + +