diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-09-24 05:08:54 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-09-24 05:08:54 +0200 |
commit | c34c5f4441ea007b80d0a503b7b01a8e2b703f19 (patch) | |
tree | 585a66f709e036c3922966c281684039b9b08b3a /dev-python/pyupgrade | |
parent | dev-python/astroid: Bump to 2.15.7 (diff) | |
download | gentoo-c34c5f4441ea007b80d0a503b7b01a8e2b703f19.tar.gz gentoo-c34c5f4441ea007b80d0a503b7b01a8e2b703f19.tar.bz2 gentoo-c34c5f4441ea007b80d0a503b7b01a8e2b703f19.zip |
dev-python/pyupgrade: Bump to 3.13.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pyupgrade')
-rw-r--r-- | dev-python/pyupgrade/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pyupgrade/pyupgrade-3.13.0.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/dev-python/pyupgrade/Manifest b/dev-python/pyupgrade/Manifest index a8f81c668414..bc38d551258f 100644 --- a/dev-python/pyupgrade/Manifest +++ b/dev-python/pyupgrade/Manifest @@ -1 +1,2 @@ DIST pyupgrade-3.12.0.gh.tar.gz 63321 BLAKE2B 8b8e5f637c4cd59d5c208bd3d5a620c9462ba1998dd88ead150240fb4b2eece78d97b611b91ecc6fe800f22f19705fb97eaf38c3e3a6fa8efcf2c9cf88435849 SHA512 1d585491fb1da8ec0ac269fe3cd068f515dfea5fd54454906d91ef316bb740443e6140669a4bbc1fe762feea9e637a2f553e606695d7bfc352280b52b663e33d +DIST pyupgrade-3.13.0.gh.tar.gz 63800 BLAKE2B b1e5c1288b36f7193aae03476ceb0009bd193d0c2801e425501580bb0c8800d7bb101587999133673f15a874956763d55cb8b920e267f135b5d5743de0666769 SHA512 9cd1392bc9522ebffc30e9f9344cbf753f930b684c7022f19d50de69463dea35ec5ea60bba4e6f5ebc74936c784beff57b44d0e7c1c83d03d21f3b57c537e243 diff --git a/dev-python/pyupgrade/pyupgrade-3.13.0.ebuild b/dev-python/pyupgrade/pyupgrade-3.13.0.ebuild new file mode 100644 index 000000000000..19a841ef7eff --- /dev/null +++ b/dev-python/pyupgrade/pyupgrade-3.13.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) + +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 |