Gentoo Archives: gentoo-commits

From: "Christian Ruppert (idl0r)" <idl0r@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-dns/bind: bind-9.9.5.ebuild ChangeLog
Date: Fri, 31 Jan 2014 21:14:27
Message-Id: 20140131211424.746852004C@flycatcher.gentoo.org
1 idl0r 14/01/31 21:14:24
2
3 Modified: bind-9.9.5.ebuild ChangeLog
4 Log:
5 Fix static-libs
6
7 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key B427ABC8)
8
9 Revision Changes Path
10 1.2 net-dns/bind/bind-9.9.5.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/bind/bind-9.9.5.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/bind/bind-9.9.5.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/bind/bind-9.9.5.ebuild?r1=1.1&r2=1.2
15
16 Index: bind-9.9.5.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-dns/bind/bind-9.9.5.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- bind-9.9.5.ebuild 31 Jan 2014 21:09:09 -0000 1.1
23 +++ bind-9.9.5.ebuild 31 Jan 2014 21:14:24 -0000 1.2
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/net-dns/bind/bind-9.9.5.ebuild,v 1.1 2014/01/31 21:09:09 idl0r Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-dns/bind/bind-9.9.5.ebuild,v 1.2 2014/01/31 21:14:24 idl0r Exp $
29
30 # Re dlz/mysql and threads, needs to be verified..
31 # MySQL uses thread local storage in its C api. Thus MySQL
32 @@ -273,9 +273,12 @@
33
34 # bug 405251, library archives aren't properly handled by --enable/disable-static
35 if ! use static-libs; then
36 - find "${D}" -type f -name '*.la' -delete || die
37 + find "${D}" -type f -name '*.a' -delete || die
38 fi
39
40 + # bug 405251
41 + find "${D}" -type f -name '*.la' -delete || die
42 +
43 if use python; then
44 install_python_tools() {
45 python_convert_shebangs $PYTHON_ABI bin/python/dnssec-checkds bin/python/dnssec-coverage
46
47
48
49 1.487 net-dns/bind/ChangeLog
50
51 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/bind/ChangeLog?rev=1.487&view=markup
52 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/bind/ChangeLog?rev=1.487&content-type=text/plain
53 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/bind/ChangeLog?r1=1.486&r2=1.487
54
55 Index: ChangeLog
56 ===================================================================
57 RCS file: /var/cvsroot/gentoo-x86/net-dns/bind/ChangeLog,v
58 retrieving revision 1.486
59 retrieving revision 1.487
60 diff -u -r1.486 -r1.487
61 --- ChangeLog 31 Jan 2014 21:09:09 -0000 1.486
62 +++ ChangeLog 31 Jan 2014 21:14:24 -0000 1.487
63 @@ -1,6 +1,9 @@
64 # ChangeLog for net-dns/bind
65 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
66 -# $Header: /var/cvsroot/gentoo-x86/net-dns/bind/ChangeLog,v 1.486 2014/01/31 21:09:09 idl0r Exp $
67 +# $Header: /var/cvsroot/gentoo-x86/net-dns/bind/ChangeLog,v 1.487 2014/01/31 21:14:24 idl0r Exp $
68 +
69 + 31 Jan 2014; Christian Ruppert <idl0r@g.o> bind-9.9.5.ebuild:
70 + Fix static-libs
71
72 *bind-9.9.5 (31 Jan 2014)