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 59381159C9B for ; Mon, 29 Jul 2024 03:27:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7615E2BC01A; Mon, 29 Jul 2024 03:27:00 +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 581512BC01A for ; Mon, 29 Jul 2024 03:27:00 +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 5E218335D6B for ; Mon, 29 Jul 2024 03:26:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 88D531E7F for ; Mon, 29 Jul 2024 03:26:56 +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: <1722221982.9c121d357f7a17f0285100b4c05ef98b17dff7ba.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyupgrade/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyupgrade/Manifest dev-python/pyupgrade/pyupgrade-3.17.0.ebuild X-VCS-Directories: dev-python/pyupgrade/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9c121d357f7a17f0285100b4c05ef98b17dff7ba X-VCS-Branch: master Date: Mon, 29 Jul 2024 03:26:56 +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: fe1f74c1-3d39-44c6-8f86-503c976ae2ca X-Archives-Hash: a48aac110b47fa319f884bb1f40da34c commit: 9c121d357f7a17f0285100b4c05ef98b17dff7ba Author: Michał Górny gentoo org> AuthorDate: Mon Jul 29 02:59:42 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jul 29 02:59:42 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c121d35 dev-python/pyupgrade: Bump to 3.17.0 Signed-off-by: Michał Górny gentoo.org> dev-python/pyupgrade/Manifest | 1 + dev-python/pyupgrade/pyupgrade-3.17.0.ebuild | 30 ++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/dev-python/pyupgrade/Manifest b/dev-python/pyupgrade/Manifest index 73f6338f175d..68fe35db7192 100644 --- a/dev-python/pyupgrade/Manifest +++ b/dev-python/pyupgrade/Manifest @@ -1 +1,2 @@ DIST pyupgrade-3.16.0.gh.tar.gz 65582 BLAKE2B 99c04e528d6bc8d802595ee320843561b317cdf57c87fe2f095b29dfa99b23d00c87951b48f437a72a2602a5bc7bd237abc98cdf9b802ca8c5faff83fe666396 SHA512 a348fd925418e5ec57777360f77aa814eb1b95e45842b8310ed4edb357e5a3648dfbecf09ab7c5d70a8ba98728f2355ef5e5f51908a8c53faf5762869b74e1da +DIST pyupgrade-3.17.0.gh.tar.gz 66098 BLAKE2B e55b823e6e393ec7d1268661e527bdad6f17b330edc086387d8234a6da3a4a7da79a5d862c594827643853328a807e7ce39450f0685f3d31fd2e81c9407505ca SHA512 28dc66179edd44ec498ada856b6522b73296783d9ce6519676bc658c0c8038c7916f5f330240571458728d344a5a26de7c7a63d61b0a6496fc658dd57ccd7992 diff --git a/dev-python/pyupgrade/pyupgrade-3.17.0.ebuild b/dev-python/pyupgrade/pyupgrade-3.17.0.ebuild new file mode 100644 index 000000000000..12bbba4127a7 --- /dev/null +++ b/dev-python/pyupgrade/pyupgrade-3.17.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 2022-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..13} ) + +inherit distutils-r1 + +DESCRIPTION="Tool + pre-commit hook to automatically upgrade syntax for newer Pythons" +HOMEPAGE=" + https://github.com/asottile/pyupgrade/ + https://pypi.org/project/pyupgrade/ +" +# no tests in sdist, as of 3.3.2 +SRC_URI=" + https://github.com/asottile/pyupgrade/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64" + +RDEPEND=" + >=dev-python/tokenize-rt-5.2.0[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest