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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 95CAD1382C5 for ; Mon, 14 Jun 2021 23:09:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EFD67E09F3; Mon, 14 Jun 2021 23:09:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D67CCE09F3 for ; Mon, 14 Jun 2021 23:09:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CC353340E7D for ; Mon, 14 Jun 2021 23:09:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2997F7BD for ; Mon, 14 Jun 2021 23:09:47 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1623712183.f2240a2f2e417526271e826645a4688ee6698f58.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/autoflake/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/autoflake/Manifest dev-python/autoflake/autoflake-1.3.1.ebuild X-VCS-Directories: dev-python/autoflake/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: f2240a2f2e417526271e826645a4688ee6698f58 X-VCS-Branch: dev Date: Mon, 14 Jun 2021 23:09:47 +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: 61ae8970-d3a2-4bd1-8c9e-999a5fdac17c X-Archives-Hash: 9083b8e023d3b9dfb800d26824135ee3 commit: f2240a2f2e417526271e826645a4688ee6698f58 Author: Alessandro Barbieri gmail com> AuthorDate: Mon Jun 14 22:52:34 2021 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Mon Jun 14 23:09:43 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f2240a2f dev-python/autoflake: drop 1.3.1 Signed-off-by: Alessandro Barbieri gmail.com> dev-python/autoflake/Manifest | 1 - dev-python/autoflake/autoflake-1.3.1.ebuild | 31 ----------------------------- 2 files changed, 32 deletions(-) diff --git a/dev-python/autoflake/Manifest b/dev-python/autoflake/Manifest index 871629d8a..1c009f0b6 100644 --- a/dev-python/autoflake/Manifest +++ b/dev-python/autoflake/Manifest @@ -1,2 +1 @@ -DIST autoflake-1.3.1.tar.gz 19756 BLAKE2B 8a172888a8c44483b8771b59bebda841e55455f544197e2f1bce08dfb7cb3dd54e8a616a15a3712609480bc484561ffa27aaa93d9b5e1a573bb1960df96ea9cf SHA512 763bcfc824412129901106ddcaf7104a2bfa5ee86b43d2822b51af5532ea0ac46466b64a004c099dc6fa2a96b23ae959e1ef1eb68c6be0c1e4c08ab9bf174e08 DIST autoflake-1.4.tar.gz 24219 BLAKE2B 622c82b9ab5e7fd68e8bc2678c5868282e605640e1c52d1a8f81fbaaba26dfb738ac1ceb9eb20195bb820256fbae27222953a5271130e74b8708988516e20e00 SHA512 53e542a765cbd18df7c35a90f16786e173bdc332b4410abfbc6d24f1009bf5d6f8a383e897e72558617bdf339573d8aa9b8de6901aac392caf48889aacf0c9a6 diff --git a/dev-python/autoflake/autoflake-1.3.1.ebuild b/dev-python/autoflake/autoflake-1.3.1.ebuild deleted file mode 100644 index fa87feaf1..000000000 --- a/dev-python/autoflake/autoflake-1.3.1.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -PYTHON_COMPAT=( python3_{7,8} ) -DISTUTILS_USE_SETUPTOOLS=rdepend - -inherit distutils-r1 - -DESCRIPTION="Removes unused imports and unused variables as reported by pyflakes" -HOMEPAGE=" - https://github.com/myint/autoflake - https://pypi.org/project/autoflake -" -SRC_URI="https://github.com/myint/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -DEPEND=" - >=dev-python/pyflakes-1.1.0[${PYTHON_USEDEP}] -" -RDEPEND="${DEPEND}" - -python_test() { - "${EPYTHON}" test_autoflake.py || die -}