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 6E1EC138359 for ; Fri, 25 Sep 2020 11:30:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 71AACE07FE; Fri, 25 Sep 2020 11:30:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 836C1E080E for ; Fri, 25 Sep 2020 11:30:22 +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 3B5D7335DA9 for ; Fri, 25 Sep 2020 11:30:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6BDA8357 for ; Fri, 25 Sep 2020 11:30:14 +0000 (UTC) From: "Benda XU" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" Message-ID: <1601033049.fad680fce4f0cb9d084400dd432f71583189a1c0.heroxbd@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/gast/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/gast/gast-0.3.3-r1.ebuild X-VCS-Directories: dev-python/gast/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: fad680fce4f0cb9d084400dd432f71583189a1c0 X-VCS-Branch: master Date: Fri, 25 Sep 2020 11:30:14 +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: fba1ef37-c8a3-45b5-a396-81acd3f0abca X-Archives-Hash: 21360c94bc8bc958db43e13488ed1324 commit: fad680fce4f0cb9d084400dd432f71583189a1c0 Author: Benda Xu gentoo org> AuthorDate: Fri Sep 25 11:24:09 2020 +0000 Commit: Benda XU gentoo org> CommitDate: Fri Sep 25 11:24:09 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fad680fc dev-python/gast: tested on Python 3.8. Package-Manager: Portage-3.0.5, Repoman-3.0.1 Signed-off-by: Benda Xu gentoo.org> dev-python/gast/gast-0.3.3-r1.ebuild | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/dev-python/gast/gast-0.3.3-r1.ebuild b/dev-python/gast/gast-0.3.3-r1.ebuild new file mode 100644 index 00000000000..a2d5b861bc8 --- /dev/null +++ b/dev-python/gast/gast-0.3.3-r1.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) +inherit distutils-r1 + +DESCRIPTION="A generic AST to represent Python2 and Python3's Abstract Syntax Tree (AST)" +HOMEPAGE="https://pypi.org/project/gast/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"