Signed-off-by: Ulrich Müller <ulm@gentoo.org>
# @AUTHOR:
# Michael Orlitzky <mjo@gentoo.org>
# Michał Górny <mgorny@gentoo.org>
+# @SUPPORTED_EAPIS: 7
# @BLURB: Eclass used to create and maintain a single group entry
# @DESCRIPTION:
# This eclass represents and creates a single group entry. The name
case ${EAPI:-0} in
7) ;;
- *) die "EAPI=${EAPI} not supported";;
+ *) die "EAPI=${EAPI:-0} not supported";;
esac
inherit user
# @AUTHOR:
# Michael Orlitzky <mjo@gentoo.org>
# Michał Górny <mgorny@gentoo.org>
+# @SUPPORTED_EAPIS: 7
# @BLURB: Eclass used to create and maintain a single user entry
# @DESCRIPTION:
# This eclass represents and creates a single user entry. The name
case ${EAPI:-0} in
7) ;;
- *) die "EAPI=${EAPI} not supported";;
+ *) die "EAPI=${EAPI:-0} not supported";;
esac
inherit user
# @REQUIRED
# @DESCRIPTION:
# List of groups the user should belong to. This must be a bash
-# array.
+# array.
# << Boilerplate ebuild variables >>