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 03536158020 for ; Thu, 20 Oct 2022 08:05:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B63DE08AD; Thu, 20 Oct 2022 08:05:47 +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 08115E08AD for ; Thu, 20 Oct 2022 08:05:47 +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 D63A0340D79 for ; Thu, 20 Oct 2022 08:05:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 11D02624 for ; Thu, 20 Oct 2022 08:05:44 +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: <1666253104.e1dcb02f09ff0b52a783e67bc4aa868c246c4ba4.ulm@gentoo> Subject: [gentoo-commits] repo/proj/emacs:master commit in: eclass/ X-VCS-Repository: repo/proj/emacs X-VCS-Files: eclass/elisp.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: e1dcb02f09ff0b52a783e67bc4aa868c246c4ba4 X-VCS-Branch: master Date: Thu, 20 Oct 2022 08:05:44 +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: c855efa5-21b0-45ce-a68e-e605f6820e24 X-Archives-Hash: abc68aced6be33da049bf4570789092a commit: e1dcb02f09ff0b52a783e67bc4aa868c246c4ba4 Author: Ulrich Müller gentoo org> AuthorDate: Thu Oct 20 07:53:11 2022 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu Oct 20 08:05:04 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=e1dcb02f elisp.eclass: Drop EAPI 6 support Signed-off-by: Ulrich Müller gentoo.org> eclass/elisp.eclass | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass index 6b6679d..7c05948 100644 --- a/eclass/elisp.eclass +++ b/eclass/elisp.eclass @@ -9,7 +9,7 @@ # Jeremy Maitin-Shepard # Christian Faulhammer # Ulrich Müller -# @SUPPORTED_EAPIS: 6 7 8 +# @SUPPORTED_EAPIS: 7 8 # @PROVIDES: elisp-common # @BLURB: Eclass for Emacs Lisp packages # @DESCRIPTION: @@ -65,7 +65,7 @@ inherit elisp-common case ${EAPI} in - 6|7|8) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac @@ -73,10 +73,7 @@ EXPORT_FUNCTIONS src_{unpack,prepare,configure,compile,install} \ pkg_{setup,postinst,postrm} RDEPEND=">=app-editors/emacs-${NEED_EMACS}:*" -case ${EAPI} in - 6) DEPEND="${RDEPEND}" ;; - *) BDEPEND="${RDEPEND}" ;; -esac +BDEPEND="${RDEPEND}" # @FUNCTION: elisp_pkg_setup # @DESCRIPTION: