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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F0BD415817D for ; Sat, 8 Jun 2024 03:53:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EDE8CE2A19; Sat, 8 Jun 2024 03:53:22 +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 7063DE2A0E for ; Sat, 8 Jun 2024 03:53:22 +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 308E733BDFF for ; Sat, 8 Jun 2024 03:53:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 89F8C1C03 for ; Sat, 8 Jun 2024 03:53:19 +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: <1717818713.47035fb9daaacb2ecf64c33b98baeeabff5071e3.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/eutils.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 47035fb9daaacb2ecf64c33b98baeeabff5071e3 X-VCS-Branch: master Date: Sat, 8 Jun 2024 03:53:19 +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: bc3703ec-6257-42fe-b425-e1e091a23e3b X-Archives-Hash: f1ef71d447cb5f38822d0a766bde9246 commit: 47035fb9daaacb2ecf64c33b98baeeabff5071e3 Author: Ulrich Müller gentoo org> AuthorDate: Sat Jun 8 03:51:53 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Jun 8 03:51:53 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47035fb9 eutils.eclass: Remove dead eclass Signed-off-by: Ulrich Müller gentoo.org> eclass/eutils.eclass | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass deleted file mode 100644 index 1e36c78f7780..000000000000 --- a/eclass/eutils.eclass +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# @DEAD -# @ECLASS: eutils.eclass -# @MAINTAINER: -# base-system@gentoo.org -# @SUPPORTED_EAPIS: 6 -# @BLURB: many extra (but common) functions that are used in ebuilds -# @DEPRECATED: native package manager functions, more specific eclasses - -if [[ -z ${_EUTILS_ECLASS} ]]; then -_EUTILS_ECLASS=1 - -# implicitly inherited (now split) eclasses -case ${EAPI} in - 6) inherit desktop edos2unix epatch eqawarn estack ltprune multilib \ - preserve-libs strip-linguas toolchain-funcs vcs-clean wrapper ;; - *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; -esac -fi