mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
user-info.eclass: Support EAPI 9
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
This commit is contained in:
@@ -5,17 +5,17 @@
|
||||
# @MAINTAINER:
|
||||
# base-system@gentoo.org (Linux)
|
||||
# Michał Górny <mgorny@gentoo.org> (NetBSD)
|
||||
# @SUPPORTED_EAPIS: 7 8
|
||||
# @SUPPORTED_EAPIS: 7 8 9
|
||||
# @BLURB: Read-only access to user and group information
|
||||
|
||||
case ${EAPI} in
|
||||
7|8) ;;
|
||||
*) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
|
||||
esac
|
||||
|
||||
if [[ -z ${_USER_INFO_ECLASS} ]]; then
|
||||
_USER_INFO_ECLASS=1
|
||||
|
||||
case ${EAPI} in
|
||||
7|8|9) ;;
|
||||
*) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
|
||||
esac
|
||||
|
||||
# @FUNCTION: egetent
|
||||
# @USAGE: <database> <key>
|
||||
# @DESCRIPTION:
|
||||
|
||||
Reference in New Issue
Block a user