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 230A2138351 for ; Sun, 29 Mar 2020 02:26:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3D6AE0973; Sun, 29 Mar 2020 02:26:36 +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 BC09CE0973 for ; Sun, 29 Mar 2020 02:26:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 6047734FA3A for ; Sun, 29 Mar 2020 02:26:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F035D186 for ; Sun, 29 Mar 2020 02:26:33 +0000 (UTC) From: "Jason Zaman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason Zaman" Message-ID: <1585448380.0bbb9e49a4810533084c5227cc19e28ecf8e02b4.perfinion@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/gast/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/gast/Manifest dev-python/gast/gast-0.3.3.ebuild X-VCS-Directories: dev-python/gast/ X-VCS-Committer: perfinion X-VCS-Committer-Name: Jason Zaman X-VCS-Revision: 0bbb9e49a4810533084c5227cc19e28ecf8e02b4 X-VCS-Branch: master Date: Sun, 29 Mar 2020 02:26:33 +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: 92429b1a-5a45-4f67-87ff-cfe4e846db0a X-Archives-Hash: bb666fc02a5bcfa627882708bddb89f4 commit: 0bbb9e49a4810533084c5227cc19e28ecf8e02b4 Author: Jason Zaman gentoo org> AuthorDate: Sun Mar 29 01:55:22 2020 +0000 Commit: Jason Zaman gentoo org> CommitDate: Sun Mar 29 02:19:40 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bbb9e49 dev-python/gast: bump 0.3.3 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Jason Zaman gentoo.org> dev-python/gast/Manifest | 1 + dev-python/gast/gast-0.3.3.ebuild | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/dev-python/gast/Manifest b/dev-python/gast/Manifest index b0a32d62a50..cabed713017 100644 --- a/dev-python/gast/Manifest +++ b/dev-python/gast/Manifest @@ -1 +1,2 @@ DIST gast-0.2.2.tar.gz 10294 BLAKE2B ad81309b1dd938a07f0cd39c21d4f89af6d902c136b8fe12afc5b26827c778f12561e06c66648a5b672b1c9d9eb79b3dfde7cad0acf8c7099451841b67c0daf4 SHA512 0be9b2b66b7815153e6f294b4db6b028c321d8a94d97c89d89b026df73e0c95dc2ee8af5c10f2eee51cbfb94af4b5a0da8a682896861870b98dec4c6c59a5dd3 +DIST gast-0.3.3.tar.gz 13760 BLAKE2B 0298ea81d3d133f8305fc6a7cf020213a75c2dbcb09c9648e533b8c2c58cf3e3f363448f905c8295bd34db0023be6dea00de0d901bffb1d55650773f7acc0135 SHA512 36869a5e0976223a5a82be8bf25a01654896f4de70affe0fec5252104ea6d1fea3eb8c5153530fcac8addc47b51535b02e3920a0e82aad11ba1ca8350cd11341 diff --git a/dev-python/gast/gast-0.3.3.ebuild b/dev-python/gast/gast-0.3.3.ebuild new file mode 100644 index 00000000000..208e4d94120 --- /dev/null +++ b/dev-python/gast/gast-0.3.3.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=( python{3_6,3_7} ) +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}]"