Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Tue, 31 May 2016 23:21:03
Message-Id: 1464736748.7ced79f5c6e8aa8c5c86d33addd22ceeb57f8822.slyfox@gentoo
1 commit: 7ced79f5c6e8aa8c5c86d33addd22ceeb57f8822
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 31 23:19:08 2016 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Tue May 31 23:19:08 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ced79f5
7
8 haskell-cabal.eclass: drop IUSE=hoogle
9
10 commit 2db4176c329e5e99e68f47dcb058c55d434bb64e accidentally
11 exposed IUSE=hoogle to ::gentoo. It's meant
12 to be used only in ::haskell.
13
14 The patch reverts accidental change back.
15
16 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
17
18 eclass/haskell-cabal.eclass | 4 +++-
19 1 file changed, 3 insertions(+), 1 deletion(-)
20
21 diff --git a/eclass/haskell-cabal.eclass b/eclass/haskell-cabal.eclass
22 index a568bf4..7732711 100644
23 --- a/eclass/haskell-cabal.eclass
24 +++ b/eclass/haskell-cabal.eclass
25 @@ -125,7 +125,9 @@ if [[ -n "${CABAL_USE_HSCOLOUR}" ]]; then
26 fi
27
28 if [[ -n "${CABAL_USE_HOOGLE}" ]]; then
29 - IUSE="${IUSE} hoogle"
30 + # enabled only in ::haskell
31 + #IUSE="${IUSE} hoogle"
32 + CABAL_USE_HOOGLE=
33 fi
34
35 if [[ -n "${CABAL_USE_ALEX}" ]]; then