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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 45F8B139337 for ; Wed, 28 Jul 2021 07:53:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E11FE0857; Wed, 28 Jul 2021 07:53:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 202DEE0857 for ; Wed, 28 Jul 2021 07:53:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6322B342D36 for ; Wed, 28 Jul 2021 07:53:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C0F0C737 for ; Wed, 28 Jul 2021 07:53:50 +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: <1627458781.008b451753b8ec665e55e808d88885c51a99c6f6.ulm@gentoo> Subject: [gentoo-commits] repo/proj/emacs:master commit in: eclass/ X-VCS-Repository: repo/proj/emacs X-VCS-Files: eclass/elisp-common.eclass eclass/elisp.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 008b451753b8ec665e55e808d88885c51a99c6f6 X-VCS-Branch: master Date: Wed, 28 Jul 2021 07:53:50 +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: 77606a48-49a1-4676-8b1b-47d72819d497 X-Archives-Hash: e01eec4354f407023763148ef66037c9 commit: 008b451753b8ec665e55e808d88885c51a99c6f6 Author: Ulrich Müller gentoo org> AuthorDate: Wed Jul 28 07:53:01 2021 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Wed Jul 28 07:53:01 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=008b4517 elisp*.eclass: EAPI 8 Signed-off-by: Ulrich Müller gentoo.org> eclass/elisp-common.eclass | 4 ++-- eclass/elisp.eclass | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/eclass/elisp-common.eclass b/eclass/elisp-common.eclass index 30dad3b..b2c4f10 100644 --- a/eclass/elisp-common.eclass +++ b/eclass/elisp-common.eclass @@ -10,7 +10,7 @@ # Mamoru Komachi # Christian Faulhammer # Ulrich Müller -# @SUPPORTED_EAPIS: 6 7 +# @SUPPORTED_EAPIS: 6 7 8 # @BLURB: Emacs-related installation utilities # @DESCRIPTION: # @@ -167,7 +167,7 @@ case ${EAPI:-0} in 6) inherit eapi7-ver ;; - 7) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass index d763a49..c3c0045 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 +# @SUPPORTED_EAPIS: 6 7 8 # @BLURB: Eclass for Emacs Lisp packages # @DESCRIPTION: # @@ -64,7 +64,7 @@ inherit elisp-common case ${EAPI:-0} in - 6|7) ;; + 6|7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac