Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/libtool: libtool-2.4.3-r1.ebuild ChangeLog
Date: Sat, 01 Nov 2014 02:44:08
Message-Id: 20141101024402.530E492DE@oystercatcher.gentoo.org
1 vapier 14/11/01 02:44:02
2
3 Modified: libtool-2.4.3-r1.ebuild ChangeLog
4 Log:
5 Move up the libtool static hack to fix unit tests too #384731 by Markus Oehme.
6
7 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
8
9 Revision Changes Path
10 1.5 sys-devel/libtool/libtool-2.4.3-r1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/libtool/libtool-2.4.3-r1.ebuild?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/libtool/libtool-2.4.3-r1.ebuild?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/libtool/libtool-2.4.3-r1.ebuild?r1=1.4&r2=1.5
15
16 Index: libtool-2.4.3-r1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-2.4.3-r1.ebuild,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- libtool-2.4.3-r1.ebuild 1 Nov 2014 01:44:36 -0000 1.4
23 +++ libtool-2.4.3-r1.ebuild 1 Nov 2014 02:44:02 -0000 1.5
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-2.4.3-r1.ebuild,v 1.4 2014/11/01 01:44:36 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-2.4.3-r1.ebuild,v 1.5 2014/11/01 02:44:02 vapier Exp $
29
30 EAPI="4"
31
32 @@ -68,6 +68,12 @@
33 export CONFIG_SHELL=/bin/bash
34 ECONF_SOURCE="${S}" \
35 econf $(use_enable static-libs static)
36 +
37 + # Building libtool with --disable-static will cause the installed
38 + # helper to not build static objects by default. This is undesirable
39 + # for crappy packages that utilize the system libtool, so undo that.
40 + # It also breaks some unittests. #384731
41 + sed -i -e '1,/^build_old_libs=/{/^build_old_libs=/{s:=.*:=yes:}}' libtool || die
42 }
43
44 multilib_src_test() {
45 @@ -81,11 +87,6 @@
46 # keys off of its existence when searching for ltdl support. #293921
47 #use static-libs || find "${ED}" -name libltdl.la -delete
48
49 - # Building libtool with --disable-static will cause the installed
50 - # helper to not build static objects by default. This is undesirable
51 - # for crappy packages that utilize the system libtool, so undo that.
52 - sed -i -e '1,/^build_old_libs=/{/^build_old_libs=/{s:=.*:=yes:}}' "${ED}"/usr/bin/libtool || die
53 -
54 local x
55 for x in $(find "${ED}" -name config.guess -o -name config.sub) ; do
56 ln -sf "${EPREFIX}"/usr/share/gnuconfig/${x##*/} "${x}" || die
57
58
59
60 1.232 sys-devel/libtool/ChangeLog
61
62 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/libtool/ChangeLog?rev=1.232&view=markup
63 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/libtool/ChangeLog?rev=1.232&content-type=text/plain
64 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/libtool/ChangeLog?r1=1.231&r2=1.232
65
66 Index: ChangeLog
67 ===================================================================
68 RCS file: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v
69 retrieving revision 1.231
70 retrieving revision 1.232
71 diff -u -r1.231 -r1.232
72 --- ChangeLog 1 Nov 2014 01:44:36 -0000 1.231
73 +++ ChangeLog 1 Nov 2014 02:44:02 -0000 1.232
74 @@ -1,6 +1,9 @@
75 # ChangeLog for sys-devel/libtool
76 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
77 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v 1.231 2014/11/01 01:44:36 vapier Exp $
78 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v 1.232 2014/11/01 02:44:02 vapier Exp $
79 +
80 + 01 Nov 2014; Mike Frysinger <vapier@g.o> libtool-2.4.3-r1.ebuild:
81 + Move up the libtool static hack to fix unit tests too #384731 by Markus Oehme.
82
83 01 Nov 2014; Mike Frysinger <vapier@g.o>
84 +files/libtool-2.4.3-test-cmdline_wrap.patch, libtool-2.4.3-r1.ebuild: