Gentoo Archives: gentoo-commits

From: "Sergei Trofimovich (slyfox)" <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/ghc: ChangeLog ghc-6.12.3.ebuild
Date: Mon, 04 Oct 2010 20:57:19
Message-Id: 20101004205712.1C91C20051@flycatcher.gentoo.org
1 slyfox 10/10/04 20:57:12
2
3 Modified: ChangeLog ghc-6.12.3.ebuild
4 Log:
5 Export typechecker internals for haddock (alpha, ia64, ppc64). Allow ghc-ia64 to link very large applications (haddock).
6 (Portage version: 2.1.8.3/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.194 dev-lang/ghc/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ghc/ChangeLog?rev=1.194&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ghc/ChangeLog?rev=1.194&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ghc/ChangeLog?r1=1.193&r2=1.194
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-lang/ghc/ChangeLog,v
18 retrieving revision 1.193
19 retrieving revision 1.194
20 diff -u -r1.193 -r1.194
21 --- ChangeLog 26 Sep 2010 19:41:09 -0000 1.193
22 +++ ChangeLog 4 Oct 2010 20:57:12 -0000 1.194
23 @@ -1,6 +1,11 @@
24 # ChangeLog for dev-lang/ghc
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ChangeLog,v 1.193 2010/09/26 19:41:09 hwoarang Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ChangeLog,v 1.194 2010/10/04 20:57:12 slyfox Exp $
28 +
29 + 04 Oct 2010; Sergei Trofimovich <slyfox@g.o> ghc-6.12.3.ebuild,
30 + +files/ghc-6.12.3-ghciless-haddock-3558.patch:
31 + Export typechecker internals for haddock (alpha, ia64, ppc64). Allow
32 + ghc-ia64 to link very large applications (haddock).
33
34 26 Sep 2010; Markos Chandras <hwoarang@g.o> ghc-6.12.3.ebuild:
35 Stable on amd64 wrt bug #338652
36
37
38
39 1.15 dev-lang/ghc/ghc-6.12.3.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ghc/ghc-6.12.3.ebuild?rev=1.15&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ghc/ghc-6.12.3.ebuild?rev=1.15&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ghc/ghc-6.12.3.ebuild?r1=1.14&r2=1.15
44
45 Index: ghc-6.12.3.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-lang/ghc/ghc-6.12.3.ebuild,v
48 retrieving revision 1.14
49 retrieving revision 1.15
50 diff -u -r1.14 -r1.15
51 --- ghc-6.12.3.ebuild 26 Sep 2010 19:41:09 -0000 1.14
52 +++ ghc-6.12.3.ebuild 4 Oct 2010 20:57:12 -0000 1.15
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ghc-6.12.3.ebuild,v 1.14 2010/09/26 19:41:09 hwoarang Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ghc-6.12.3.ebuild,v 1.15 2010/10/04 20:57:12 slyfox Exp $
58
59 # Brief explanation of the bootstrap logic:
60 #
61 @@ -126,6 +126,10 @@
62 # prevent from failind building unregisterised ghc:
63 # http://www.mail-archive.com/debian-bugs-dist@××××××××××××.org/msg171602.html
64 use ppc64 && append-ghc-cflags compile -mminimal-toc
65 + # fix the similar issue as ppc64 TOC on ia64. ia64 has limited size of small data
66 + # currently ghc fails to build haddock
67 + # http://osdir.com/ml/gnu.binutils.bugs/2004-10/msg00050.html
68 + use ia64 && append-ghc-cflags compile -G0
69 }
70
71 pkg_setup() {
72 @@ -227,6 +231,10 @@
73 # substitute outdated macros
74 epatch "${FILESDIR}/ghc-6.12.3-autoconf-2.66-4252.patch"
75
76 + # export typechecker internals even if ghci is disabled
77 + # http://hackage.haskell.org/trac/ghc/ticket/3558
78 + epatch "${FILESDIR}/ghc-6.12.3-ghciless-haddock-3558.patch"
79 +
80 # as we have changed the build system
81 eautoreconf
82 fi