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 C893415807A for ; Tue, 8 Oct 2024 15:30:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C40DEE29E4; Tue, 8 Oct 2024 15:30:00 +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 pigeon.gentoo.org (Postfix) with ESMTPS id A96B1E29E4 for ; Tue, 8 Oct 2024 15:30:00 +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 C20B23431BD for ; Tue, 8 Oct 2024 15:29:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F6FB1F45 for ; Tue, 8 Oct 2024 15:29:58 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1728400961.5dce92bed22f52a4526a8ef9e708f95271d9dc64.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/eqawarn.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 5dce92bed22f52a4526a8ef9e708f95271d9dc64 X-VCS-Branch: master Date: Tue, 8 Oct 2024 15:29:58 +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: b1f0aafb-3f02-457a-aa10-ba9daa48a50a X-Archives-Hash: 26e8a72a640fd00c1871713d30e31791 commit: 5dce92bed22f52a4526a8ef9e708f95271d9dc64 Author: Ulrich Müller gentoo org> AuthorDate: Tue Aug 20 18:02:59 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Oct 8 15:22:41 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dce92be eqawarn.eclass: Remove dead eclass Signed-off-by: Ulrich Müller gentoo.org> eclass/eqawarn.eclass | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/eclass/eqawarn.eclass b/eclass/eqawarn.eclass deleted file mode 100644 index df6b13151d74..000000000000 --- a/eclass/eqawarn.eclass +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# @DEAD -# @ECLASS: eqawarn.eclass -# @MAINTAINER: -# base-system@gentoo.org -# @SUPPORTED_EAPIS: 6 -# @BLURB: output a QA warning - -case ${EAPI} in - 6) ;; - *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; -esac - -# @FUNCTION: eqawarn -# @USAGE: [message] -# @DESCRIPTION: -# Proxy to ewarn for package managers that don't provide eqawarn and -# use the PM implementation if available. Reuses PORTAGE_ELOG_CLASSES -# as set by the dev profile. -if ! declare -F eqawarn >/dev/null ; then - eqawarn() { - has qa ${PORTAGE_ELOG_CLASSES} && ewarn "$@" - : - } -fi