Gentoo Archives: gentoo-dev

From: "Michał Górny" <mgorny@g.o>
To: gentoo-dev@l.g.o
Cc: "Michał Górny" <mgorny@g.o>
Subject: [gentoo-dev] [PATCH 1/4] eutils.eclass: Remove implicit epunt-cxx inherit
Date: Fri, 14 Apr 2017 19:32:42
Message-Id: 20170414193215.12952-1-mgorny@gentoo.org
1 Stop inheriting the epunt-cxx eclass in eutils implicitly. All the uses
2 in ::gentoo are fixed already, and this lets us add extra dependencies
3 in the eclass without affecting most of the packages out there.
4 ---
5 eclass/eutils.eclass | 3 +--
6 1 file changed, 1 insertion(+), 2 deletions(-)
7
8 diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass
9 index ea2a76200f09..d5dbffabf295 100644
10 --- a/eclass/eutils.eclass
11 +++ b/eclass/eutils.eclass
12 @@ -20,8 +20,7 @@ _EUTILS_ECLASS=1
13 # implicitly inherited (now split) eclasses
14 case ${EAPI:-0} in
15 0|1|2|3|4|5|6)
16 - # note: we want to remove epunt-cxx retroactively for #566424
17 - inherit epatch epunt-cxx estack ltprune multilib toolchain-funcs
18 + inherit epatch estack ltprune multilib toolchain-funcs
19 ;;
20 esac
21
22 --
23 2.12.2

Replies