Gentoo Archives: gentoo-commits

From: "Roy Marples
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-wireless/wpa_supplicant: ChangeLog wpa_supplicant-0.5.8.ebuild wpa_supplicant-0.6.0.ebuild
Date: Tue, 11 Sep 2007 15:24:20
Message-Id: E1IV6fc-0003vD-8m@stork.gentoo.org
1 uberlord 07/09/11 14:24:52
2
3 Modified: ChangeLog wpa_supplicant-0.5.8.ebuild
4 wpa_supplicant-0.6.0.ebuild
5 Log:
6 Default to GNUTLS if both gnutls and ssl are specified.
7 (Portage version: 2.1.3.7)
8
9 Revision Changes Path
10 1.99 net-wireless/wpa_supplicant/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-wireless/wpa_supplicant/ChangeLog?rev=1.99&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-wireless/wpa_supplicant/ChangeLog?rev=1.99&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-wireless/wpa_supplicant/ChangeLog?r1=1.98&r2=1.99
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/ChangeLog,v
19 retrieving revision 1.98
20 retrieving revision 1.99
21 diff -u -r1.98 -r1.99
22 --- ChangeLog 1 Jul 2007 11:06:24 -0000 1.98
23 +++ ChangeLog 11 Sep 2007 14:24:51 -0000 1.99
24 @@ -1,6 +1,10 @@
25 # ChangeLog for net-wireless/wpa_supplicant
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/ChangeLog,v 1.98 2007/07/01 11:06:24 uberlord Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/ChangeLog,v 1.99 2007/09/11 14:24:51 uberlord Exp $
29 +
30 + 11 Sep 2007; Roy Marples <uberlord@g.o>
31 + wpa_supplicant-0.5.8.ebuild, wpa_supplicant-0.6.0.ebuild:
32 + Default to GNUTLS if both gnutls and ssl are specified.
33
34 01 Jul 2007; Roy Marples <uberlord@g.o>
35 wpa_supplicant-0.5.7.ebuild, wpa_supplicant-0.5.8.ebuild,
36
37
38
39 1.3 net-wireless/wpa_supplicant/wpa_supplicant-0.5.8.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-wireless/wpa_supplicant/wpa_supplicant-0.5.8.ebuild?rev=1.3&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-wireless/wpa_supplicant/wpa_supplicant-0.5.8.ebuild?rev=1.3&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-wireless/wpa_supplicant/wpa_supplicant-0.5.8.ebuild?r1=1.2&r2=1.3
44
45 Index: wpa_supplicant-0.5.8.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/wpa_supplicant-0.5.8.ebuild,v
48 retrieving revision 1.2
49 retrieving revision 1.3
50 diff -u -r1.2 -r1.3
51 --- wpa_supplicant-0.5.8.ebuild 1 Jul 2007 11:06:24 -0000 1.2
52 +++ wpa_supplicant-0.5.8.ebuild 11 Sep 2007 14:24:51 -0000 1.3
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2007 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/wpa_supplicant-0.5.8.ebuild,v 1.2 2007/07/01 11:06:24 uberlord Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/wpa_supplicant-0.5.8.ebuild,v 1.3 2007/09/11 14:24:51 uberlord Exp $
58
59 inherit eutils toolchain-funcs
60
61 @@ -93,13 +93,13 @@
62 echo "CONFIG_READLINE=y" >> .config
63 fi
64
65 - if use ssl ; then
66 - # SSL authentication methods
67 - echo "CONFIG_TLS=openssl" >> .config
68 - echo "CONFIG_SMARTCARD=y" >> .config
69 - elif use gnutls ; then
70 + # SSL authentication methods
71 + if use gnutls ; then
72 echo "CONFIG_TLS=gnutls" >> .config
73 echo "CONFIG_GNUTLS_EXTRA=y" >> .config
74 + elif use ssl ; then
75 + echo "CONFIG_TLS=openssl" >> .config
76 + echo "CONFIG_SMARTCARD=y" >> .config
77 else
78 echo "CONFIG_TLS=internal" >> .config
79 fi
80
81
82
83 1.5 net-wireless/wpa_supplicant/wpa_supplicant-0.6.0.ebuild
84
85 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-wireless/wpa_supplicant/wpa_supplicant-0.6.0.ebuild?rev=1.5&view=markup
86 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-wireless/wpa_supplicant/wpa_supplicant-0.6.0.ebuild?rev=1.5&content-type=text/plain
87 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-wireless/wpa_supplicant/wpa_supplicant-0.6.0.ebuild?r1=1.4&r2=1.5
88
89 Index: wpa_supplicant-0.6.0.ebuild
90 ===================================================================
91 RCS file: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/wpa_supplicant-0.6.0.ebuild,v
92 retrieving revision 1.4
93 retrieving revision 1.5
94 diff -u -r1.4 -r1.5
95 --- wpa_supplicant-0.6.0.ebuild 1 Jul 2007 11:06:24 -0000 1.4
96 +++ wpa_supplicant-0.6.0.ebuild 11 Sep 2007 14:24:51 -0000 1.5
97 @@ -1,6 +1,6 @@
98 # Copyright 1999-2007 Gentoo Foundation
99 # Distributed under the terms of the GNU General Public License v2
100 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/wpa_supplicant-0.6.0.ebuild,v 1.4 2007/07/01 11:06:24 uberlord Exp $
101 +# $Header: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/wpa_supplicant-0.6.0.ebuild,v 1.5 2007/09/11 14:24:51 uberlord Exp $
102
103 inherit eutils toolchain-funcs
104
105 @@ -95,13 +95,13 @@
106 echo "CONFIG_READLINE=y" >> .config
107 fi
108
109 - if use ssl ; then
110 - # SSL authentication methods
111 - echo "CONFIG_TLS=openssl" >> .config
112 - echo "CONFIG_SMARTCARD=y" >> .config
113 - elif use gnutls ; then
114 + # SSL authentication methods
115 + if use gnutls ; then
116 echo "CONFIG_TLS=gnutls" >> .config
117 echo "CONFIG_GNUTLS_EXTRA=y" >> .config
118 + elif use ssl ; then
119 + echo "CONFIG_TLS=openssl" >> .config
120 + echo "CONFIG_SMARTCARD=y" >> .config
121 else
122 echo "CONFIG_TLS=internal" >> .config
123 fi
124
125
126
127 --
128 gentoo-commits@g.o mailing list