summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2021-07-09 08:40:23 +0200
committerHans de Graaff <graaff@gentoo.org>2021-07-09 08:55:11 +0200
commitb72d96fb25f2d5122b430f07c41df5cbc9df46dd (patch)
tree96c43afdfd93becf3ad8f5a92658def215dbd53d /eclass
parentdev-ruby/git: add 1.9.1 (diff)
downloadgentoo-b72d96fb25f2d5122b430f07c41df5cbc9df46dd.tar.gz
gentoo-b72d96fb25f2d5122b430f07c41df5cbc9df46dd.tar.bz2
gentoo-b72d96fb25f2d5122b430f07c41df5cbc9df46dd.zip
eclass/ruby-utils.eclass: support EAPI 8
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ruby-utils.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/ruby-utils.eclass b/eclass/ruby-utils.eclass
index 4db362e2cd50..d4b1534caefc 100644
--- a/eclass/ruby-utils.eclass
+++ b/eclass/ruby-utils.eclass
@@ -6,7 +6,7 @@
# Ruby team <ruby@gentoo.org>
# @AUTHOR:
# Author: Hans de Graaff <graaff@gentoo.org>
-# @SUPPORTED_EAPIS: 5 6 7
+# @SUPPORTED_EAPIS: 5 6 7 8
# @BLURB: An eclass for supporting ruby scripts and bindings in non-ruby packages
# @DESCRIPTION:
# The ruby-utils eclass is designed to allow an easier installation of
@@ -16,7 +16,7 @@
# functions. It can be inherited safely.
case ${EAPI:-0} in
- [567]) ;;
+ [5678]) ;;
*) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
esac