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 D8EBB158020 for ; Mon, 12 Dec 2022 21:50:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 168BAE085A; Mon, 12 Dec 2022 21:50: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 D5949E07EE for ; Mon, 12 Dec 2022 21:50:32 +0000 (UTC) From: James Le Cuirot To: gentoo-dev Cc: Apache project , James Le Cuirot Subject: [gentoo-dev] [PATCH 1/3] db-use.eclass: Drop support for EAPI 5 and 6 Date: Mon, 12 Dec 2022 21:50:02 +0000 Message-Id: <20221212215004.7445-1-chewi@gentoo.org> X-Mailer: git-send-email 2.38.1 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: f37d4dee-3ed7-4c23-819a-f298a6c0e2d0 X-Archives-Hash: f2cd9df3f98311a7cc98af684854698b The last consumers have been dropped from the gentoo repo. Signed-off-by: James Le Cuirot --- eclass/db-use.eclass | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/eclass/db-use.eclass b/eclass/db-use.eclass index 55e72286fda4..3e5d6f63fa2e 100644 --- a/eclass/db-use.eclass +++ b/eclass/db-use.eclass @@ -8,7 +8,7 @@ # maintainer-needed@gentoo.org # @AUTHOR: # Paul de Vrieze -# @SUPPORTED_EAPIS: 5 6 7 8 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: This is a common location for functions that aid the use of sys-libs/db # @DESCRIPTION: # This eclass is designed to provide helpful functions for depending on @@ -16,7 +16,6 @@ # multilib is used for get_libname in all EAPI case ${EAPI} in - 5|6) inherit eapi7-ver ;& # fallthrough 7|8) inherit multilib ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac -- 2.38.1