diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2022-09-25 09:32:06 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2022-09-25 09:39:04 +0300 |
commit | 2e02e1a3ced7cbd2aa9d93caedcc99baf79c2d64 (patch) | |
tree | 4e42aa5fdc74d69397f06236ddf2091a564c7394 /dev-python/pyupgrade | |
parent | sci-libs/med: Stabilize 4.1.1 amd64, #872638 (diff) | |
download | gentoo-2e02e1a3ced7cbd2aa9d93caedcc99baf79c2d64.tar.gz gentoo-2e02e1a3ced7cbd2aa9d93caedcc99baf79c2d64.tar.bz2 gentoo-2e02e1a3ced7cbd2aa9d93caedcc99baf79c2d64.zip |
dev-python/pyupgrade: add 2.38.1
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/pyupgrade')
-rw-r--r-- | dev-python/pyupgrade/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pyupgrade/pyupgrade-2.38.1.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/dev-python/pyupgrade/Manifest b/dev-python/pyupgrade/Manifest index a204959f7420..219934dcd06e 100644 --- a/dev-python/pyupgrade/Manifest +++ b/dev-python/pyupgrade/Manifest @@ -1 +1,2 @@ DIST pyupgrade-2.38.0.gh.tar.gz 63620 BLAKE2B 73f551e92a6d68e0e1e2b1f21a3afd0f26ece7889450135fe7c68ad3ce094799cba669547965ff3c5589f1e667568e8dcf60709e8d1b3699fd36680494b79f96 SHA512 c65534c59f1810730cd039375678c648565023e1fbb03df4bd14846be95757b33d712c51197f54009e907da647a04700dd8d8ff1094188ef7ba0dbf2352084cf +DIST pyupgrade-2.38.1.gh.tar.gz 63637 BLAKE2B 348346d82f85c8df4edfaf2b09e8e519b5ee1d895920a896ae4c0a23f0af0da338ec2c1c2d2c175977da725313b4b5ace6ced65a3a54f5722146f35986485a9c SHA512 056e9886a8bacaf58d74461a7cbce8b7e67392b6758a7e42363404b4822df837067a7a2ec5da6a97411ce8297955ff260901f95b17d1a9e84835bce755071fca diff --git a/dev-python/pyupgrade/pyupgrade-2.38.1.ebuild b/dev-python/pyupgrade/pyupgrade-2.38.1.ebuild new file mode 100644 index 000000000000..06b14263e479 --- /dev/null +++ b/dev-python/pyupgrade/pyupgrade-2.38.1.ebuild @@ -0,0 +1,23 @@ +# 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="Tool + pre-commit hook to automatically upgrade syntax for newer Pythons" +HOMEPAGE="https://github.com/asottile/pyupgrade" +SRC_URI=" + https://github.com/asottile/pyupgrade/archive/refs/tags/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="dev-python/tokenize-rt[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest |