From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 finch.gentoo.org (Postfix) with ESMTPS id 774501584AD for ; Sat, 03 May 2025 00:29:20 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 5CEB7342FAA for ; Sat, 03 May 2025 00:29:20 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 50E67110287; Sat, 03 May 2025 00:29:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 bobolink.gentoo.org (Postfix) with ESMTPS id 49C0E110287 for ; Sat, 03 May 2025 00:29:19 +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 EAE7E3417BD for ; Sat, 03 May 2025 00:29:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 87A7812A for ; Sat, 03 May 2025 00:29:17 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1746231984.3881fef0603aa27d2c90f70b361b3f6844c9c262.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/thefuck/thefuck-3.32-r1.ebuild X-VCS-Directories: app-shells/thefuck/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3881fef0603aa27d2c90f70b361b3f6844c9c262 X-VCS-Branch: master Date: Sat, 03 May 2025 00:29:17 +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: 53f73f7e-dd4f-4100-a57e-ad283d1f4288 X-Archives-Hash: 143fc178d15b1359f6c42c48f7b84c42 commit: 3881fef0603aa27d2c90f70b361b3f6844c9c262 Author: Sam James gentoo org> AuthorDate: Sat May 3 00:26:24 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sat May 3 00:26:24 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3881fef0 app-shells/thefuck: drop 3.32-r1 Signed-off-by: Sam James gentoo.org> app-shells/thefuck/thefuck-3.32-r1.ebuild | 45 ------------------------------- 1 file changed, 45 deletions(-) diff --git a/app-shells/thefuck/thefuck-3.32-r1.ebuild b/app-shells/thefuck/thefuck-3.32-r1.ebuild deleted file mode 100644 index 63211e454c00..000000000000 --- a/app-shells/thefuck/thefuck-3.32-r1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) - -inherit distutils-r1 - -DESCRIPTION="Magnificent app which corrects your previous console command" -HOMEPAGE="https://github.com/nvbn/thefuck" -SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" - -RDEPEND=" - dev-python/psutil[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] - dev-python/decorator[${PYTHON_USEDEP}] - dev-python/colorama[${PYTHON_USEDEP}] - dev-python/pyte[${PYTHON_USEDEP}]" -DEPEND=" - test? ( - dev-python/mock[${PYTHON_USEDEP}] - dev-python/pytest-mock[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest - -EPYTEST_DESELECT=( - # failing tests because of trying to access portage's home dir - tests/test_conf.py - tests/entrypoints/test_not_configured.py - tests/test_utils.py::test_get_all_executables_exclude_paths - tests/test_utils.py::TestCache -) - -python_prepare_all() { - sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die - distutils-r1_python_prepare_all -}