commit: 2b79642c8e57709b387c4297f4b21fd22cdde00c Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sat Mar 11 15:06:24 2017 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sat Mar 18 07:33:17 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b79642c
eutils.eclass: Kill multilib inherit for EAPI 7 The multilib.eclass seems not to be used by any eutils function. Therefore, disable the inherit for EAPI 7. It is being preserved for older EAPIs not to break ebuilds inheriting this eclass and using multilib.eclass functions implicitly. eclass/eutils.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass index 724a310b300..e036001dc5e 100644 --- a/eclass/eutils.eclass +++ b/eclass/eutils.eclass @@ -17,12 +17,12 @@ if [[ -z ${_EUTILS_ECLASS} ]]; then _EUTILS_ECLASS=1 -inherit multilib toolchain-funcs +inherit toolchain-funcs # implicitly inherited (now split) eclasses case ${EAPI:-0} in 0|1|2|3|4|5|6) - inherit epatch estack + inherit epatch estack multilib ;; esac