Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/libunwind: ChangeLog libunwind-0.99-r1.ebuild
Date: Sun, 31 Jan 2010 12:37:18
Message-Id: E1NbZ3E-00009t-5A@stork.gentoo.org
1 ssuominen 10/01/31 12:37:16
2
3 Modified: ChangeLog
4 Added: libunwind-0.99-r1.ebuild
5 Log:
6 Disable building of libunwind-setjmp library as imcompatible with GLIBC >= 2.11 wrt #299344 (from Fedora). Fix implicit declaration wrt #289445.
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.9 sys-libs/libunwind/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.9&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libunwind/ChangeLog?rev=1.9&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libunwind/ChangeLog?r1=1.8&r2=1.9
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v
19 retrieving revision 1.8
20 retrieving revision 1.9
21 diff -u -r1.8 -r1.9
22 --- ChangeLog 24 Nov 2009 19:10:14 -0000 1.8
23 +++ ChangeLog 31 Jan 2010 12:37:15 -0000 1.9
24 @@ -1,6 +1,14 @@
25 # ChangeLog for sys-libs/libunwind
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.8 2009/11/24 19:10:14 armin76 Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.9 2010/01/31 12:37:15 ssuominen Exp $
30 +
31 +*libunwind-0.99-r1 (31 Jan 2010)
32 +
33 + 31 Jan 2010; Samuli Suominen <ssuominen@g.o>
34 + +libunwind-0.99-r1.ebuild, +files/libunwind-0.99-disable-setjmp.patch,
35 + +files/libunwind-0.99-implicit-declaration.patch:
36 + Disable building of libunwind-setjmp library as imcompatible with GLIBC >=
37 + 2.11 wrt #299344 (from Fedora). Fix implicit declaration wrt #289445.
38
39 24 Nov 2009; Raúl Porcel <armin76@g.o> libunwind-0.99.ebuild:
40 ia64 stable wrt #289445
41
42
43
44 1.1 sys-libs/libunwind/libunwind-0.99-r1.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libunwind/libunwind-0.99-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libunwind/libunwind-0.99-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: libunwind-0.99-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-0.99-r1.ebuild,v 1.1 2010/01/31 12:37:15 ssuominen Exp $
54
55 inherit autotools eutils
56
57 DESCRIPTION="Portable and efficient API to determine the call-chain of a program"
58 HOMEPAGE="http://savannah.nongnu.org/projects/libunwind"
59 SRC_URI="http://download.savannah.nongnu.org/releases/libunwind/${P}.tar.gz"
60
61 LICENSE="MIT"
62 SLOT="7"
63 KEYWORDS="~amd64 ~ia64 ~x86"
64 IUSE=""
65
66 DEPEND=""
67 RDEPEND=""
68
69 RESTRICT="test" # https://savannah.nongnu.org/bugs/?22368
70 # https://bugs.gentoo.org/273372
71
72 src_unpack() {
73 unpack ${A}
74 cd "${S}"
75 epatch "${FILESDIR}"/${P}-disable-setjmp.patch \
76 "${FILESDIR}"/${P}-implicit-declaration.patch
77 eautoreconf
78 }
79
80 src_install() {
81 emake install DESTDIR="${D}" || die
82 dodoc AUTHORS ChangeLog NEWS README TODO
83 }