Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/cyrus-sasl: cyrus-sasl-2.1.26-r7.ebuild ChangeLog
Date: Mon, 07 Jul 2014 14:31:22
Message-Id: 20140707143119.124F82004E@flycatcher.gentoo.org
1 mgorny 14/07/07 14:31:18
2
3 Modified: cyrus-sasl-2.1.26-r7.ebuild ChangeLog
4 Log:
5 Pass --enable-sql for non-native build only when SQLite is enabled (since MySQL and PgSQL are not multilib ATM), bug #516514.
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
8
9 Revision Changes Path
10 1.3 dev-libs/cyrus-sasl/cyrus-sasl-2.1.26-r7.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cyrus-sasl/cyrus-sasl-2.1.26-r7.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cyrus-sasl/cyrus-sasl-2.1.26-r7.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cyrus-sasl/cyrus-sasl-2.1.26-r7.ebuild?r1=1.2&r2=1.3
15
16 Index: cyrus-sasl-2.1.26-r7.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/cyrus-sasl/cyrus-sasl-2.1.26-r7.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- cyrus-sasl-2.1.26-r7.ebuild 19 Jun 2014 07:20:35 -0000 1.2
23 +++ cyrus-sasl-2.1.26-r7.ebuild 7 Jul 2014 14:31:18 -0000 1.3
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/dev-libs/cyrus-sasl/cyrus-sasl-2.1.26-r7.ebuild,v 1.2 2014/06/19 07:20:35 mgorny Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/cyrus-sasl/cyrus-sasl-2.1.26-r7.ebuild,v 1.3 2014/07/07 14:31:18 mgorny Exp $
29
30 EAPI=5
31
32 @@ -99,7 +99,7 @@
33 myconf+=( --without-des )
34 fi
35
36 - if use mysql || use postgres || use sqlite ; then
37 + if use sqlite || { multilib_is_native_abi && { use mysql || use postgres; }; } ; then
38 myconf+=( --enable-sql )
39 else
40 myconf+=( --disable-sql )
41
42
43
44 1.302 dev-libs/cyrus-sasl/ChangeLog
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cyrus-sasl/ChangeLog?rev=1.302&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cyrus-sasl/ChangeLog?rev=1.302&content-type=text/plain
48 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/cyrus-sasl/ChangeLog?r1=1.301&r2=1.302
49
50 Index: ChangeLog
51 ===================================================================
52 RCS file: /var/cvsroot/gentoo-x86/dev-libs/cyrus-sasl/ChangeLog,v
53 retrieving revision 1.301
54 retrieving revision 1.302
55 diff -u -r1.301 -r1.302
56 --- ChangeLog 19 Jun 2014 07:20:35 -0000 1.301
57 +++ ChangeLog 7 Jul 2014 14:31:18 -0000 1.302
58 @@ -1,6 +1,10 @@
59 # ChangeLog for dev-libs/cyrus-sasl
60 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
61 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/cyrus-sasl/ChangeLog,v 1.301 2014/06/19 07:20:35 mgorny Exp $
62 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/cyrus-sasl/ChangeLog,v 1.302 2014/07/07 14:31:18 mgorny Exp $
63 +
64 + 07 Jul 2014; Michał Górny <mgorny@g.o> cyrus-sasl-2.1.26-r7.ebuild:
65 + Pass --enable-sql for non-native build only when SQLite is enabled (since
66 + MySQL and PgSQL are not multilib ATM), bug #516514.
67
68 19 Jun 2014; Michał Górny <mgorny@g.o> cyrus-sasl-2.1.26-r7.ebuild:
69 Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug