>>>>> On Mon, 01 Oct 2018, Mike Gilbert wrote: > @@ -15,7 +15,7 @@ > inherit xdg-utils > case "${EAPI:-0}" in This was there before your change, but the ":-0" isn't needed here ... > - 4|5|6) > + 4|5|6|7) > EXPORT_FUNCTIONS src_prepare pkg_preinst pkg_postinst pkg_postrm > ;; > *) die "EAPI=${EAPI} is not supported" ;; ... while this line could profit from it. > @@ -35,7 +35,7 @@ fi > xdg_src_prepare() { > xdg_environment_reset > > - has ${EAPI:-0} 6 && default > + has "${EAPI:-0}" 4 5 || default Ditto. Ulrich