commit: 2dea9f5cd46ef2d00c0dddab8e90cd0d78180ffc Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Wed Dec 17 15:30:22 2025 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Sun Mar 15 14:49:12 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dea9f5c
xemacs-packages.eclass: Support EAPI 9 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> eclass/xemacs-packages.eclass | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/eclass/xemacs-packages.eclass b/eclass/xemacs-packages.eclass index ca60e0c3b3b7..3d74bc7e1442 100644 --- a/eclass/xemacs-packages.eclass +++ b/eclass/xemacs-packages.eclass @@ -1,10 +1,10 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: xemacs-packages.eclass # @MAINTAINER: # [email protected] -# @SUPPORTED_EAPIS: 8 +# @SUPPORTED_EAPIS: 8 9 # @BLURB: Eclass to support elisp packages distributed by XEmacs. # @DESCRIPTION: # This eclass supports ebuilds for packages distributed by XEmacs. @@ -24,14 +24,14 @@ # in the experimental repository are auto-generated from XEmacs VCS, so # they may not be well-tested. +if [[ -z ${_XEMACS_PACKAGES_ECLASS} ]] ; then +_XEMACS_PACKAGES_ECLASS=1 + case ${EAPI} in - 8) ;; + 8|9) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac -if [[ -z ${_XEMACS_PACKAGES_ECLASS} ]] ; then -_XEMACS_PACKAGES_ECLASS=1 - RDEPEND="app-editors/xemacs" S="${WORKDIR}"
