From a48fb96ce6d0d3c0439f8fb118af24404b5bb400 Mon Sep 17 00:00:00 2001 From: Maciej Barć Date: Mon, 17 Jul 2023 16:24:55 +0200 Subject: snippets/ebuild-mode: add eapi-case.yas MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maciej Barć --- snippets/ebuild-mode/eapi-case.yas | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 snippets/ebuild-mode/eapi-case.yas diff --git a/snippets/ebuild-mode/eapi-case.yas b/snippets/ebuild-mode/eapi-case.yas new file mode 100644 index 0000000..7d2f0a2 --- /dev/null +++ b/snippets/ebuild-mode/eapi-case.yas @@ -0,0 +1,29 @@ +# -*- mode: snippet; indent-tabs-mode: t; -*- + + +# Copyright 2023 Gentoo Authors + + +# This file is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. + +# This file is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with GNU Emacs. If not, see . + + +# name: eapi-case +# key: eapi-case + + +# -- +case \${EAPI} in + 7|8) ;; + *) die "\${ECLASS}: EAPI \${EAPI:-0} not supported" ;; +esac -- cgit v1.2.3-65-gdbad