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/helium: ChangeLog helium-1.6.ebuild
Date: Sun, 29 Aug 2010 18:30:53
Message-Id: 20100829183050.6D67620051@flycatcher.gentoo.org
1 slyfox 10/08/29 18:30:50
2
3 Modified: ChangeLog helium-1.6.ebuild
4 Log:
5 Fixed build failure with forced --as-needed (bug #334403). Removed binary stripping, CFLAGS are now respected too.
6 (Portage version: 2.1.8.3/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.25 dev-lang/helium/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/helium/ChangeLog?rev=1.25&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/helium/ChangeLog?rev=1.25&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/helium/ChangeLog?r1=1.24&r2=1.25
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-lang/helium/ChangeLog,v
18 retrieving revision 1.24
19 retrieving revision 1.25
20 diff -u -r1.24 -r1.25
21 --- ChangeLog 24 Jul 2010 14:39:07 -0000 1.24
22 +++ ChangeLog 29 Aug 2010 18:30:50 -0000 1.25
23 @@ -1,6 +1,12 @@
24 # ChangeLog for dev-lang/helium
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/helium/ChangeLog,v 1.24 2010/07/24 14:39:07 slyfox Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/helium/ChangeLog,v 1.25 2010/08/29 18:30:50 slyfox Exp $
28 +
29 + 29 Aug 2010; Sergei Trofimovich <slyfox@g.o> helium-1.6.ebuild,
30 + +files/helium-1.6-respect-cflags-ldflags-nostrip.patch:
31 + Fixed build failure with forced --as-needed (bug #334403). Thanks to Diego
32 + E. 'Flameeyes' Pettenò <flameeyes@g.o> who reported it. Removed
33 + binary stripping, CFLAGS are now respected too.
34
35 24 Jul 2010; Sergei Trofimovich <slyfox@g.o> helium-1.6.ebuild:
36 Fixed build breakage against ghc-6.8+ (bug #247044). Thanks to Diego E.
37
38
39
40 1.5 dev-lang/helium/helium-1.6.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/helium/helium-1.6.ebuild?rev=1.5&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/helium/helium-1.6.ebuild?rev=1.5&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/helium/helium-1.6.ebuild?r1=1.4&r2=1.5
45
46 Index: helium-1.6.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/dev-lang/helium/helium-1.6.ebuild,v
49 retrieving revision 1.4
50 retrieving revision 1.5
51 diff -u -r1.4 -r1.5
52 --- helium-1.6.ebuild 24 Jul 2010 22:11:55 -0000 1.4
53 +++ helium-1.6.ebuild 29 Aug 2010 18:30:50 -0000 1.5
54 @@ -1,6 +1,6 @@
55 # Copyright 1999-2010 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/helium/helium-1.6.ebuild,v 1.4 2010/07/24 22:11:55 mr_bones_ Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/helium/helium-1.6.ebuild,v 1.5 2010/08/29 18:30:50 slyfox Exp $
59
60 inherit autotools eutils
61
62 @@ -25,6 +25,7 @@
63 src_unpack() {
64 unpack ${A}
65 epatch "${P}-ghc.patch"
66 + epatch "${FILESDIR}/helium-1.6-respect-cflags-ldflags-nostrip.patch"
67
68 # split base only
69 sed -e 's/^GHCFLAGS =.*$/& -package containers/' \
70 @@ -67,7 +68,7 @@
71 -i "${S}/$bad_file"
72 done
73
74 - # cabal is their friend (oneOf bwcame polymorphic and breaks the test)
75 + # cabal is their friend (oneOf became polymorphic and breaks the test)
76 sed -e 's/Text.ParserCombinators.Parsec/&.Pos/g' \
77 -e 's/oneOf/newPos/g' \
78 -i "${S}/helium/configure.in"