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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0D2DF158086 for ; Sun, 14 Nov 2021 08:01:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E2692BC01D; Sun, 14 Nov 2021 08:01:56 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2272D2BC01D for ; Sun, 14 Nov 2021 08:01:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2554A343455 for ; Sun, 14 Nov 2021 08:01:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8438B164 for ; Sun, 14 Nov 2021 08:01:53 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1636876910.708face03cd094da5c8d61eafd7337ff624e7133.mgorny@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.5.3.ebuild X-VCS-Directories: dev-python/gast/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 708face03cd094da5c8d61eafd7337ff624e7133 X-VCS-Branch: master Date: Sun, 14 Nov 2021 08:01:53 +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: 2f1c3ebc-8c70-4bc3-bf0b-feec8b8285e3 X-Archives-Hash: 73ab6a31e0a4003c75693881aab2060f commit: 708face03cd094da5c8d61eafd7337ff624e7133 Author: Michał Górny gentoo org> AuthorDate: Sun Nov 14 07:57:05 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Nov 14 08:01:50 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=708face0 dev-python/gast: Bump to 0.5.3 Signed-off-by: Michał Górny gentoo.org> dev-python/gast/Manifest | 1 + dev-python/gast/gast-0.5.3.ebuild | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/dev-python/gast/Manifest b/dev-python/gast/Manifest index f0bf39d1d403..563893eb894f 100644 --- a/dev-python/gast/Manifest +++ b/dev-python/gast/Manifest @@ -1 +1,2 @@ DIST gast-0.5.2.tar.gz 14222 BLAKE2B b251f9aa54d8bdba318f0c8aa7fe97221615a22b7dec8da99b15078ce0f482ac8ec931b9c0acba3a405f2ab3c820a1c578ab93583f9f84740571dd85a3fcb45d SHA512 2a06245ba93f2c0715f662e32e0865732828deb672bc70c3d70a4969c8a2e4c518354a4a63760eddeba53932d4f8bf0ae0ffab64f1a1ad3b20d5b2d18285cd6a +DIST gast-0.5.3.tar.gz 23455 BLAKE2B b7263e959178421a7ba1cdb41cb09edbe1c30680573e1ab3b4de114e0bd151d2278be799fcc1a01524bb5ee6f6d6764d9902dd0018e7cbe54ac7a3d1300bbeb1 SHA512 a836be76303591ca7c40596d98a29dbd53f281e277c8c23e3821b2003d4e8aaf4d806e7f532f27c0eadd4bdca5a28dc0a3902245505ab97497b9afbfee0c2e52 diff --git a/dev-python/gast/gast-0.5.3.ebuild b/dev-python/gast/gast-0.5.3.ebuild new file mode 100644 index 000000000000..fe24502a2a7f --- /dev/null +++ b/dev-python/gast/gast-0.5.3.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +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 PSF-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~sparc ~x86" + +distutils_enable_tests unittest