Gentoo Archives: gentoo-commits

From: Andrey Utkin <andrey_utkin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/hostapd/
Date: Sat, 07 Jul 2018 01:40:26
Message-Id: 1530927222.0732fe3e762b640eae848ea4accdae9d137a3471.andrey_utkin@gentoo
1 commit: 0732fe3e762b640eae848ea4accdae9d137a3471
2 Author: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 7 01:32:19 2018 +0000
4 Commit: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 7 01:33:42 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0732fe3e
7
8 net-wireless/hostapd: s/!use/! use/g
9
10 Fix syntax issue which caused errors.
11 In all relevant ebuilds including stable.
12
13 Suggested-by: Matt Turner <mattst88 <AT> gentoo.org>
14 Bug: https://bugs.gentoo.org/660378
15 Package-Manager: Portage-2.3.40, Repoman-2.3.9
16
17 net-wireless/hostapd/hostapd-2.6-r4.ebuild | 6 +++---
18 net-wireless/hostapd/hostapd-2.6-r5.ebuild | 6 +++---
19 net-wireless/hostapd/hostapd-2.6-r6.ebuild | 6 +++---
20 net-wireless/hostapd/hostapd-9999.ebuild | 6 +++---
21 4 files changed, 12 insertions(+), 12 deletions(-)
22
23 diff --git a/net-wireless/hostapd/hostapd-2.6-r4.ebuild b/net-wireless/hostapd/hostapd-2.6-r4.ebuild
24 index a0403321ea5..6f00dd91246 100644
25 --- a/net-wireless/hostapd/hostapd-2.6-r4.ebuild
26 +++ b/net-wireless/hostapd/hostapd-2.6-r4.ebuild
27 @@ -82,7 +82,7 @@ src_configure() {
28 echo "CONFIG_ERP=y" >> ${CONFIG}
29 echo "CONFIG_EAP_MD5=y" >> ${CONFIG}
30
31 - if use internal-tls && !use libressl; then
32 + if use internal-tls && ! use libressl; then
33 echo "CONFIG_TLS=internal" >> ${CONFIG}
34 else
35 # SSL authentication methods
36 @@ -183,7 +183,7 @@ src_configure() {
37 src_compile() {
38 emake V=1
39
40 - if use libressl || !use internal-tls; then
41 + if use libressl || ! use internal-tls; then
42 emake V=1 nt_password_hash
43 emake V=1 hlr_auc_gw
44 fi
45 @@ -198,7 +198,7 @@ src_install() {
46 dosbin ${PN}
47 dobin ${PN}_cli
48
49 - if use libressl || !use internal-tls; then
50 + if use libressl || ! use internal-tls; then
51 dobin nt_password_hash hlr_auc_gw
52 fi
53
54
55 diff --git a/net-wireless/hostapd/hostapd-2.6-r5.ebuild b/net-wireless/hostapd/hostapd-2.6-r5.ebuild
56 index 67f105b8c77..82e50e8b7f0 100644
57 --- a/net-wireless/hostapd/hostapd-2.6-r5.ebuild
58 +++ b/net-wireless/hostapd/hostapd-2.6-r5.ebuild
59 @@ -85,7 +85,7 @@ src_configure() {
60 echo "CONFIG_ERP=y" >> ${CONFIG}
61 echo "CONFIG_EAP_MD5=y" >> ${CONFIG}
62
63 - if use internal-tls && !use libressl; then
64 + if use internal-tls && ! use libressl; then
65 echo "CONFIG_TLS=internal" >> ${CONFIG}
66 else
67 # SSL authentication methods
68 @@ -186,7 +186,7 @@ src_configure() {
69 src_compile() {
70 emake V=1
71
72 - if use libressl || !use internal-tls; then
73 + if use libressl || ! use internal-tls; then
74 emake V=1 nt_password_hash
75 emake V=1 hlr_auc_gw
76 fi
77 @@ -201,7 +201,7 @@ src_install() {
78 dosbin ${PN}
79 dobin ${PN}_cli
80
81 - if use libressl || !use internal-tls; then
82 + if use libressl || ! use internal-tls; then
83 dobin nt_password_hash hlr_auc_gw
84 fi
85
86
87 diff --git a/net-wireless/hostapd/hostapd-2.6-r6.ebuild b/net-wireless/hostapd/hostapd-2.6-r6.ebuild
88 index ffca9d29e16..484677f3913 100644
89 --- a/net-wireless/hostapd/hostapd-2.6-r6.ebuild
90 +++ b/net-wireless/hostapd/hostapd-2.6-r6.ebuild
91 @@ -88,7 +88,7 @@ src_configure() {
92 echo "CONFIG_ERP=y" >> ${CONFIG}
93 echo "CONFIG_EAP_MD5=y" >> ${CONFIG}
94
95 - if use internal-tls && !use libressl; then
96 + if use internal-tls && ! use libressl; then
97 echo "CONFIG_TLS=internal" >> ${CONFIG}
98 else
99 # SSL authentication methods
100 @@ -189,7 +189,7 @@ src_configure() {
101 src_compile() {
102 emake V=1
103
104 - if use libressl || !use internal-tls; then
105 + if use libressl || ! use internal-tls; then
106 emake V=1 nt_password_hash
107 emake V=1 hlr_auc_gw
108 fi
109 @@ -204,7 +204,7 @@ src_install() {
110 dosbin ${PN}
111 dobin ${PN}_cli
112
113 - if use libressl || !use internal-tls; then
114 + if use libressl || ! use internal-tls; then
115 dobin nt_password_hash hlr_auc_gw
116 fi
117
118
119 diff --git a/net-wireless/hostapd/hostapd-9999.ebuild b/net-wireless/hostapd/hostapd-9999.ebuild
120 index 7cf65530325..2b99c9ab887 100644
121 --- a/net-wireless/hostapd/hostapd-9999.ebuild
122 +++ b/net-wireless/hostapd/hostapd-9999.ebuild
123 @@ -86,7 +86,7 @@ src_configure() {
124 echo "CONFIG_ERP=y" >> ${CONFIG}
125 echo "CONFIG_EAP_MD5=y" >> ${CONFIG}
126
127 - if use internal-tls && !use libressl; then
128 + if use internal-tls && ! use libressl; then
129 echo "CONFIG_TLS=internal" >> ${CONFIG}
130 else
131 # SSL authentication methods
132 @@ -187,7 +187,7 @@ src_configure() {
133 src_compile() {
134 emake V=1
135
136 - if use libressl || !use internal-tls; then
137 + if use libressl || ! use internal-tls; then
138 emake V=1 nt_password_hash
139 emake V=1 hlr_auc_gw
140 fi
141 @@ -202,7 +202,7 @@ src_install() {
142 dosbin ${PN}
143 dobin ${PN}_cli
144
145 - if use libressl || !use internal-tls; then
146 + if use libressl || ! use internal-tls; then
147 dobin nt_password_hash hlr_auc_gw
148 fi