aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2023-07-17 16:24:55 +0200
committerMaciej Barć <xgqt@gentoo.org>2023-07-17 16:24:55 +0200
commita48fb96ce6d0d3c0439f8fb118af24404b5bb400 (patch)
tree7acaab057d125f28576526768fac498bf25deb50
parentebuild-snippets.el: bump to 2.1.0 (diff)
downloademacs-ebuild-snippets-a48fb96ce6d0d3c0439f8fb118af24404b5bb400.tar.gz
emacs-ebuild-snippets-a48fb96ce6d0d3c0439f8fb118af24404b5bb400.tar.bz2
emacs-ebuild-snippets-a48fb96ce6d0d3c0439f8fb118af24404b5bb400.zip
snippets/ebuild-mode: add eapi-case.yas
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
-rw-r--r--snippets/ebuild-mode/eapi-case.yas29
1 files changed, 29 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>.
+
+
+# name: eapi-case
+# key: eapi-case
+
+
+# --
+case \${EAPI} in
+ 7|8) ;;
+ *) die "\${ECLASS}: EAPI \${EAPI:-0} not supported" ;;
+esac