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 3AA001581D3 for ; Wed, 22 May 2024 13:19:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53051E2A23; Wed, 22 May 2024 13:19:33 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2D713E2A22 for ; Wed, 22 May 2024 13:19:33 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 52E92341E1C for ; Wed, 22 May 2024 13:19:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C7DA1B29 for ; Wed, 22 May 2024 13:19:30 +0000 (UTC) From: "Matt Jolly" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Jolly" Message-ID: <1716383841.e283e16f5954988cedb5c08e667ab7cd507db47d.kangie@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.ebuild X-VCS-Directories: app-shells/thefuck/ X-VCS-Committer: kangie X-VCS-Committer-Name: Matt Jolly X-VCS-Revision: e283e16f5954988cedb5c08e667ab7cd507db47d X-VCS-Branch: master Date: Wed, 22 May 2024 13:19:30 +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: 4dcbe7fc-71b2-4f2d-b6f3-624ded7a37e6 X-Archives-Hash: 9dab3fd08393eaf7d71e336c9b94b64e commit: e283e16f5954988cedb5c08e667ab7cd507db47d Author: Matt Jolly gentoo org> AuthorDate: Sun May 12 04:23:31 2024 +0000 Commit: Matt Jolly gentoo org> CommitDate: Wed May 22 13:17:21 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e283e16f app-shells/thefuck: drop 3.32 Signed-off-by: Matt Jolly gentoo.org> app-shells/thefuck/thefuck-3.32.ebuild | 36 ---------------------------------- 1 file changed, 36 deletions(-) diff --git a/app-shells/thefuck/thefuck-3.32.ebuild b/app-shells/thefuck/thefuck-3.32.ebuild deleted file mode 100644 index 078c37a9f1aa..000000000000 --- a/app-shells/thefuck/thefuck-3.32.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9,10} ) - -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 ~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 - -python_prepare_all() { - sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die - distutils-r1_python_prepare_all -}