commit: 5dce92bed22f52a4526a8ef9e708f95271d9dc64 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Tue Aug 20 18:02:59 2024 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> 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 <ulm <AT> 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: -# [email protected] -# @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
