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 0186C15800F for ; Mon, 23 Jan 2023 17:59:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3027E0876; Mon, 23 Jan 2023 17:59:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 A4762E0876 for ; Mon, 23 Jan 2023 17:59:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 85643340EB0 for ; Mon, 23 Jan 2023 17:59:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E934421 for ; Mon, 23 Jan 2023 17:59:25 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1674496751.e75da559cc60143303170487b0fd758977e788ad.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/google-pasta/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/google-pasta/google-pasta-0.2.0-r2.ebuild X-VCS-Directories: dev-python/google-pasta/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: e75da559cc60143303170487b0fd758977e788ad X-VCS-Branch: master Date: Mon, 23 Jan 2023 17:59:25 +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: 2195c7f0-c22b-4bed-92eb-8a36d2e4ac2d X-Archives-Hash: 05490144cd2a04d5f70f5ac0f3b3a9be commit: e75da559cc60143303170487b0fd758977e788ad Author: Arthur Zamarin gentoo org> AuthorDate: Mon Jan 23 17:51:21 2023 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Mon Jan 23 17:59:11 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e75da559 dev-python/google-pasta: EAPI=8, PEP517 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/google-pasta/google-pasta-0.2.0-r2.ebuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/dev-python/google-pasta/google-pasta-0.2.0-r2.ebuild b/dev-python/google-pasta/google-pasta-0.2.0-r2.ebuild new file mode 100644 index 000000000000..735457682e90 --- /dev/null +++ b/dev-python/google-pasta/google-pasta-0.2.0-r2.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..10} ) +inherit distutils-r1 + +DESCRIPTION="AST-based Python refactoring library" +HOMEPAGE="https://pypi.org/project/google-pasta/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-python/six[${PYTHON_USEDEP}]" + +distutils_enable_tests unittest