diff options
author | Ulrich Müller <ulm@gentoo.org> | 2024-06-23 12:02:08 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2024-06-24 13:56:47 +0200 |
commit | 6933e6224a51125ef893b2e1c7e56b046373f7e6 (patch) | |
tree | 91e3e07f81b26c8575c3434bcea766246097ae18 /eclass | |
parent | media-libs/libmpeg3: last rite (diff) | |
download | gentoo-6933e6224a51125ef893b2e1c7e56b046373f7e6.tar.gz gentoo-6933e6224a51125ef893b2e1c7e56b046373f7e6.tar.bz2 gentoo-6933e6224a51125ef893b2e1c7e56b046373f7e6.zip |
common-lisp-3.eclass: Drop support for EAPI 6
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/common-lisp-3.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/common-lisp-3.eclass b/eclass/common-lisp-3.eclass index 99825190f32e..cc906d0d5cca 100644 --- a/eclass/common-lisp-3.eclass +++ b/eclass/common-lisp-3.eclass @@ -4,14 +4,14 @@ # @ECLASS: common-lisp-3.eclass # @MAINTAINER: # Common Lisp project <common-lisp@gentoo.org> -# @SUPPORTED_EAPIS: 6 7 8 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: functions to support the installation of Common Lisp libraries # @DESCRIPTION: # Since Common Lisp libraries share similar structure, this eclass aims # to provide a simple way to write ebuilds with these characteristics. case ${EAPI} in - 6|7|8) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac @@ -27,14 +27,14 @@ CLIMPLEMENTATIONS="sbcl clisp clozurecl cmucl ecl gcl abcl" # @DESCRIPTION: # Default path of Common Lisp libraries sources. Sources will # be installed into ${CLSOURCEROOT}/${CLPACKAGE}. -CLSOURCEROOT="${ROOT%/}"/usr/share/common-lisp/source +CLSOURCEROOT="${ROOT}"/usr/share/common-lisp/source # @ECLASS_VARIABLE: CLSYSTEMROOT # @DESCRIPTION: # Default path to find any asdf file. Any asdf files will be # symlinked in ${CLSYSTEMROOT}/${CLSYSTEM} as they may be in # an arbitrarily deeply nested directory under ${CLSOURCEROOT}/${CLPACKAGE}. -CLSYSTEMROOT="${ROOT%/}"/usr/share/common-lisp/systems +CLSYSTEMROOT="${ROOT}"/usr/share/common-lisp/systems # @ECLASS_VARIABLE: CLPACKAGE # @DESCRIPTION: |