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 12E7F158094 for ; Wed, 5 Oct 2022 05:53:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E20FFE08CE; Wed, 5 Oct 2022 05:53:19 +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 C51ABE08CE for ; Wed, 5 Oct 2022 05:53:19 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9BD0D340E82 for ; Wed, 5 Oct 2022 05:53:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0AC46602 for ; Wed, 5 Oct 2022 05:53:17 +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: <1664949182.4014cc59217349bc5a0fb0b95fb8d4f0831af6ae.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tokenize-rt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tokenize-rt/Manifest dev-python/tokenize-rt/tokenize-rt-5.0.0.ebuild X-VCS-Directories: dev-python/tokenize-rt/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 4014cc59217349bc5a0fb0b95fb8d4f0831af6ae X-VCS-Branch: master Date: Wed, 5 Oct 2022 05:53:17 +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: c86a3398-e5bd-4d10-a5a2-68b422f4bf8e X-Archives-Hash: 005e5b929b23479f80c1238d2883585a commit: 4014cc59217349bc5a0fb0b95fb8d4f0831af6ae Author: Arthur Zamarin gentoo org> AuthorDate: Wed Oct 5 05:29:49 2022 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Wed Oct 5 05:53:02 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4014cc59 dev-python/tokenize-rt: add 5.0.0 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/tokenize-rt/Manifest | 1 + dev-python/tokenize-rt/tokenize-rt-5.0.0.ebuild | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/dev-python/tokenize-rt/Manifest b/dev-python/tokenize-rt/Manifest index 9d1301e3addf..dbe7bcb85535 100644 --- a/dev-python/tokenize-rt/Manifest +++ b/dev-python/tokenize-rt/Manifest @@ -1 +1,2 @@ DIST tokenize-rt-4.2.1.gh.tar.gz 7712 BLAKE2B b8cee02bbb9bb559a92645d8230abc29a58f100b9d03a496106bf9301ff2fa6b47e472970dc71203c61a7d1d3b95f6bb88ef8da15641c509efd10a7711e85d2b SHA512 e45d0da12962d67ebf6afe165750dbc6ddf41305154b1c01e99c1172aca27ccdd4da7c9338b84c74bb7e30192b6fc496cbda75a652304c7da6e2bfa63a513631 +DIST tokenize-rt-5.0.0.gh.tar.gz 7235 BLAKE2B d5e5dd3637615c451463d85e63b6d48670ed18de58e111625b106cfc0af2616726d2ff510412decd32db2c67dea5807d5f9b64ecfa902f56fd32b739085698c3 SHA512 03e609b1a951e62fed797a10aad1813d324c96019bdf1ad0e413b278d04395d8c4e0d2f10189309338524d928b33441a1c0141cce922f25b9f8c2764415475f3 diff --git a/dev-python/tokenize-rt/tokenize-rt-5.0.0.ebuild b/dev-python/tokenize-rt/tokenize-rt-5.0.0.ebuild new file mode 100644 index 000000000000..89d0b71b347f --- /dev/null +++ b/dev-python/tokenize-rt/tokenize-rt-5.0.0.ebuild @@ -0,0 +1,21 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..11} ) +inherit distutils-r1 + +DESCRIPTION="A wrapper around the stdlib 'tokenize' which roundtrips" +HOMEPAGE="https://github.com/asottile/tokenize-rt" +SRC_URI=" + https://github.com/asottile/tokenize-rt/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +distutils_enable_tests pytest