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 E28AA15852A for ; Tue, 20 Aug 2024 10:26:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 14EC12BC013; Tue, 20 Aug 2024 10:26:33 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 EDD0E2BC013 for ; Tue, 20 Aug 2024 10:26:32 +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 2FD7C335D75 for ; Tue, 20 Aug 2024 10:26:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 91B1D1EFF for ; Tue, 20 Aug 2024 10:26:30 +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: <1724149560.5269405bac2cba7aa8d467a2da0a950771321999.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/htmlmin/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/htmlmin/htmlmin-0.1.12-r2.ebuild app-text/htmlmin/htmlmin-0.1.12-r3.ebuild X-VCS-Directories: app-text/htmlmin/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5269405bac2cba7aa8d467a2da0a950771321999 X-VCS-Branch: master Date: Tue, 20 Aug 2024 10:26: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: 430a36f1-a256-4576-a0b5-01225ce9b7ca X-Archives-Hash: 46698fa181fbaa568d270ca67f572922 commit: 5269405bac2cba7aa8d467a2da0a950771321999 Author: Michał Górny gentoo org> AuthorDate: Tue Aug 20 10:23:54 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Aug 20 10:26:00 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5269405b app-text/htmlmin: Remove unused cgi import Signed-off-by: Michał Górny gentoo.org> .../{htmlmin-0.1.12-r2.ebuild => htmlmin-0.1.12-r3.ebuild} | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/app-text/htmlmin/htmlmin-0.1.12-r2.ebuild b/app-text/htmlmin/htmlmin-0.1.12-r3.ebuild similarity index 84% rename from app-text/htmlmin/htmlmin-0.1.12-r2.ebuild rename to app-text/htmlmin/htmlmin-0.1.12-r3.ebuild index a70d4399962c..bee49ec88566 100644 --- a/app-text/htmlmin/htmlmin-0.1.12-r2.ebuild +++ b/app-text/htmlmin/htmlmin-0.1.12-r3.ebuild @@ -21,15 +21,12 @@ LICENSE="BSD" SLOT="0" KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86" -RDEPEND=" - $(python_gen_cond_dep ' - dev-python/legacy-cgi[${PYTHON_USEDEP}] - ' 3.13) -" - distutils_enable_tests setup.py src_prepare() { - sed '/prune/d' -i MANIFEST.in || die distutils-r1_src_prepare + + sed -i -e '/prune/d' MANIFEST.in || die + # unused import + sed -i -e '/cgi/d' htmlmin/main.py || die }