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 5D5B5158020 for ; Mon, 14 Nov 2022 04:39:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A4FC2E0965; Mon, 14 Nov 2022 04:39:23 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 8C93EE0965 for ; Mon, 14 Nov 2022 04:39:23 +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 D08FB33C1C1 for ; Mon, 14 Nov 2022 04:39:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7110E603 for ; Mon, 14 Nov 2022 04:39:21 +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: <1668400592.e65a8d7a193a6c3c19813f117a4ab95ab68a86ba.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/flake8-polyfill/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/flake8-polyfill/flake8-polyfill-1.0.2.ebuild X-VCS-Directories: dev-python/flake8-polyfill/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e65a8d7a193a6c3c19813f117a4ab95ab68a86ba X-VCS-Branch: master Date: Mon, 14 Nov 2022 04:39:21 +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: 49ca8958-bfb8-484a-8491-9c32ffbc9423 X-Archives-Hash: 06a0afa30f457bd74e2d8905b9cb27bb commit: e65a8d7a193a6c3c19813f117a4ab95ab68a86ba Author: Michał Górny gentoo org> AuthorDate: Mon Nov 14 04:36:32 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Nov 14 04:36:32 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e65a8d7a dev-python/flake8-polyfill: Remove old Signed-off-by: Michał Górny gentoo.org> .../flake8-polyfill/flake8-polyfill-1.0.2.ebuild | 31 ---------------------- 1 file changed, 31 deletions(-) diff --git a/dev-python/flake8-polyfill/flake8-polyfill-1.0.2.ebuild b/dev-python/flake8-polyfill/flake8-polyfill-1.0.2.ebuild deleted file mode 100644 index 750f32742879..000000000000 --- a/dev-python/flake8-polyfill/flake8-polyfill-1.0.2.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..11} ) -inherit distutils-r1 - -DESCRIPTION="Polyfill package for Flake8 plugins" -HOMEPAGE="https://gitlab.com/pycqa/flake8-polyfill" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND="dev-python/flake8[${PYTHON_USEDEP}]" -BDEPEND="test? ( dev-python/mock[${PYTHON_USEDEP}] )" - -distutils_enable_tests pytest - -EPYTEST_IGNORE=( - # Get rid of the test that seems to test only the migration from - # pep8 to pycodestyle (bug 598918). - tests/test_stdin.py -) - -src_prepare() { - sed -e 's|\[pytest\]|\[tool:pytest\]|' -i setup.cfg || die - distutils-r1_src_prepare -}