diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2018-08-29 10:55:32 +0300 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2018-08-29 10:55:32 +0300 |
commit | 58228e9d709dcb2e3174daf75f3d5086b2451a87 (patch) | |
tree | 5ba7f06a98853bd34da24e35f39ce79e5fe1aed6 /eclass | |
parent | profiles: Cleanup obsolete qt4 p.use.mask entries (diff) | |
download | gentoo-58228e9d709dcb2e3174daf75f3d5086b2451a87.tar.gz gentoo-58228e9d709dcb2e3174daf75f3d5086b2451a87.tar.bz2 gentoo-58228e9d709dcb2e3174daf75f3d5086b2451a87.zip |
leechcraft.eclass: add support for EAPI 7
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/leechcraft.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/leechcraft.eclass b/eclass/leechcraft.eclass index 8e3c69f8c61c..16b4f8d4c93e 100644 --- a/eclass/leechcraft.eclass +++ b/eclass/leechcraft.eclass @@ -7,7 +7,7 @@ # @AUTHOR: # 0xd34df00d@gmail.com # NightNord@niifaq.ru -# @SUPPORTED_EAPIS: 6 +# @SUPPORTED_EAPIS: 6 7 # @BLURB: Common functions and setup utilities for the LeechCraft app # @DESCRIPTION: # The leechcraft eclass contains a common set of functions and steps @@ -22,7 +22,7 @@ # Only EAPI >=6 is supported case ${EAPI:-0} in - 6) ;; + 6|7) ;; *) die "EAPI not supported, bug ebuild mantainer" ;; esac |