Gentoo Archives: gentoo-commits

From: "Mark Wright (gienah)" <gienah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lisp/sbcl: sbcl-1.0.55-r1.ebuild ChangeLog
Date: Sun, 01 Feb 2015 01:46:16
Message-Id: 20150201014612.7F48D10C9C@oystercatcher.gentoo.org
1 gienah 15/02/01 01:46:12
2
3 Modified: sbcl-1.0.55-r1.ebuild ChangeLog
4 Log:
5 Fix Bug 463882 - dev-lisp/sbcl-1.0.55-r1 - x86-64-linux-os.c:93:1: error: REG_RAX undeclared (first use in this function). Thanks to Bernardo Costa for reporting, Coacher for supplying the pointer to the patch from upstream that is applied to fix the problem, Juergen Rose and Guenther Brunthaler for supplying build logs, Vasiliy, Nuno Silva, patrick, blueboar, jer, pchrist and tomwij for helping. Apply fix for Bug 526194 - dev-lisp/sbcl-1.2.4 does not respect CFLAGS and LDFLAGS to sbcl-1.0.55-r1
6
7 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 618E971F)
8
9 Revision Changes Path
10 1.10 dev-lisp/sbcl/sbcl-1.0.55-r1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/sbcl/sbcl-1.0.55-r1.ebuild?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/sbcl/sbcl-1.0.55-r1.ebuild?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/sbcl/sbcl-1.0.55-r1.ebuild?r1=1.9&r2=1.10
15
16 Index: sbcl-1.0.55-r1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-1.0.55-r1.ebuild,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- sbcl-1.0.55-r1.ebuild 5 Aug 2014 12:47:08 -0000 1.9
23 +++ sbcl-1.0.55-r1.ebuild 1 Feb 2015 01:46:12 -0000 1.10
24 @@ -1,6 +1,6 @@
25 -# Copyright 1999-2014 Gentoo Foundation
26 +# Copyright 1999-2015 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-1.0.55-r1.ebuild,v 1.9 2014/08/05 12:47:08 gienah Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-1.0.55-r1.ebuild,v 1.10 2015/02/01 01:46:12 gienah Exp $
30
31 EAPI=3
32 inherit multilib eutils flag-o-matic pax-utils
33 @@ -85,6 +85,14 @@
34 epatch "${FILESDIR}"/gentoo-fix_nopie_for_hardened_toolchain.patch
35 fi
36
37 + # bug #463882, patch from upstream https://bugs.launchpad.net/sbcl/+bug/1095036
38 + epatch "${FILESDIR}"/${P}-newglibc.patch
39 +
40 + # bug #526194
41 + sed -e "s@CFLAGS =@CFLAGS = ${CFLAGS}@" \
42 + -e "s@LINKFLAGS =@LINKFLAGS = ${LDFLAGS}@" \
43 + -i src/runtime/GNUmakefile || die
44 +
45 use source && sed 's%"$(BUILD_ROOT)%$(MODULE).lisp "$(BUILD_ROOT)%' -i contrib/vanilla-module.mk
46
47 # Some shells(such as dash) don't have "time" as builtin
48
49
50
51 1.216 dev-lisp/sbcl/ChangeLog
52
53 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/sbcl/ChangeLog?rev=1.216&view=markup
54 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/sbcl/ChangeLog?rev=1.216&content-type=text/plain
55 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/sbcl/ChangeLog?r1=1.215&r2=1.216
56
57 Index: ChangeLog
58 ===================================================================
59 RCS file: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/ChangeLog,v
60 retrieving revision 1.215
61 retrieving revision 1.216
62 diff -u -r1.215 -r1.216
63 --- ChangeLog 31 Jan 2015 04:35:14 -0000 1.215
64 +++ ChangeLog 1 Feb 2015 01:46:12 -0000 1.216
65 @@ -1,6 +1,16 @@
66 # ChangeLog for dev-lisp/sbcl
67 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
68 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/ChangeLog,v 1.215 2015/01/31 04:35:14 gienah Exp $
69 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/ChangeLog,v 1.216 2015/02/01 01:46:12 gienah Exp $
70 +
71 + 01 Feb 2015; Mark Wright <gienah@g.o>
72 + +files/sbcl-1.0.55-newglibc.patch, sbcl-1.0.55-r1.ebuild:
73 + Fix Bug 463882 - dev-lisp/sbcl-1.0.55-r1 - x86-64-linux-os.c:93:1: error:
74 + REG_RAX undeclared (first use in this function). Thanks to Bernardo Costa for
75 + reporting, Coacher for supplying the pointer to the patch from upstream that
76 + is applied to fix the problem, Juergen Rose and Guenther Brunthaler for
77 + supplying build logs, Vasiliy, Nuno Silva, patrick, blueboar, jer, pchrist and
78 + tomwij for helping. Apply fix for Bug 526194 - dev-lisp/sbcl-1.2.4 does not
79 + respect CFLAGS and LDFLAGS to sbcl-1.0.55-r1
80
81 31 Jan 2015; Mark Wright <gienah@g.o>
82 +files/sbcl-1.2.7-verbose-build.patch, sbcl-1.2.7.ebuild: