Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/autoflake/
Date: Mon, 14 Jun 2021 23:09:55
Message-Id: 1623712183.f2240a2f2e417526271e826645a4688ee6698f58.Alessandro-Barbieri@gentoo
1 commit: f2240a2f2e417526271e826645a4688ee6698f58
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Mon Jun 14 22:52:34 2021 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Mon Jun 14 23:09:43 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f2240a2f
7
8 dev-python/autoflake: drop 1.3.1
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 dev-python/autoflake/Manifest | 1 -
13 dev-python/autoflake/autoflake-1.3.1.ebuild | 31 -----------------------------
14 2 files changed, 32 deletions(-)
15
16 diff --git a/dev-python/autoflake/Manifest b/dev-python/autoflake/Manifest
17 index 871629d8a..1c009f0b6 100644
18 --- a/dev-python/autoflake/Manifest
19 +++ b/dev-python/autoflake/Manifest
20 @@ -1,2 +1 @@
21 -DIST autoflake-1.3.1.tar.gz 19756 BLAKE2B 8a172888a8c44483b8771b59bebda841e55455f544197e2f1bce08dfb7cb3dd54e8a616a15a3712609480bc484561ffa27aaa93d9b5e1a573bb1960df96ea9cf SHA512 763bcfc824412129901106ddcaf7104a2bfa5ee86b43d2822b51af5532ea0ac46466b64a004c099dc6fa2a96b23ae959e1ef1eb68c6be0c1e4c08ab9bf174e08
22 DIST autoflake-1.4.tar.gz 24219 BLAKE2B 622c82b9ab5e7fd68e8bc2678c5868282e605640e1c52d1a8f81fbaaba26dfb738ac1ceb9eb20195bb820256fbae27222953a5271130e74b8708988516e20e00 SHA512 53e542a765cbd18df7c35a90f16786e173bdc332b4410abfbc6d24f1009bf5d6f8a383e897e72558617bdf339573d8aa9b8de6901aac392caf48889aacf0c9a6
23
24 diff --git a/dev-python/autoflake/autoflake-1.3.1.ebuild b/dev-python/autoflake/autoflake-1.3.1.ebuild
25 deleted file mode 100644
26 index fa87feaf1..000000000
27 --- a/dev-python/autoflake/autoflake-1.3.1.ebuild
28 +++ /dev/null
29 @@ -1,31 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI="7"
34 -
35 -PYTHON_COMPAT=( python3_{7,8} )
36 -DISTUTILS_USE_SETUPTOOLS=rdepend
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Removes unused imports and unused variables as reported by pyflakes"
41 -HOMEPAGE="
42 - https://github.com/myint/autoflake
43 - https://pypi.org/project/autoflake
44 -"
45 -SRC_URI="https://github.com/myint/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
46 -
47 -LICENSE="MIT"
48 -SLOT="0"
49 -KEYWORDS="~amd64 ~x86"
50 -IUSE="test"
51 -RESTRICT="!test? ( test )"
52 -
53 -DEPEND="
54 - >=dev-python/pyflakes-1.1.0[${PYTHON_USEDEP}]
55 -"
56 -RDEPEND="${DEPEND}"
57 -
58 -python_test() {
59 - "${EPYTHON}" test_autoflake.py || die
60 -}