Gentoo Archives: gentoo-commits

From: "Tony Vroon (chainsaw)" <chainsaw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/connman: connman-1.22.ebuild ChangeLog connman-1.23.ebuild connman-1.20.ebuild connman-1.19.ebuild
Date: Fri, 02 May 2014 15:32:54
Message-Id: 20140502153250.1CA0F2004C@flycatcher.gentoo.org
1 chainsaw 14/05/02 15:32:50
2
3 Modified: ChangeLog
4 Added: connman-1.22.ebuild connman-1.23.ebuild
5 Removed: connman-1.20.ebuild connman-1.19.ebuild
6 Log:
7 Version 1.22 uses newer wpa_supplicant "wrong passphrase" handling and drops on-board code to deal with this. Version 1.23 fixes issues around DHCP & VPN route removal. As requested by José Romildo Malaquias in bug #509250.
8
9 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB5058F9A)
10
11 Revision Changes Path
12 1.85 net-misc/connman/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?rev=1.85&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?rev=1.85&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?r1=1.84&r2=1.85
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v
21 retrieving revision 1.84
22 retrieving revision 1.85
23 diff -u -r1.84 -r1.85
24 --- ChangeLog 14 Mar 2014 10:15:46 -0000 1.84
25 +++ ChangeLog 2 May 2014 15:32:49 -0000 1.85
26 @@ -1,6 +1,15 @@
27 # ChangeLog for net-misc/connman
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v 1.84 2014/03/14 10:15:46 ago Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v 1.85 2014/05/02 15:32:49 chainsaw Exp $
31 +
32 +*connman-1.23 (02 May 2014)
33 +*connman-1.22 (02 May 2014)
34 +
35 + 02 May 2014; Tony Vroon <chainsaw@g.o> -connman-1.19.ebuild,
36 + -connman-1.20.ebuild, +connman-1.22.ebuild, +connman-1.23.ebuild:
37 + Version 1.22 uses newer wpa_supplicant "wrong passphrase" handling and drops
38 + on-board code to deal with this. Version 1.23 fixes issues around DHCP & VPN
39 + route removal. As requested by José Romildo Malaquias in bug #509250.
40
41 14 Mar 2014; Agostino Sarubbo <ago@g.o> connman-1.21.ebuild:
42 Stable for ppc64, wrt bug #502894
43
44
45
46 1.1 net-misc/connman/connman-1.22.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-1.22.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-1.22.ebuild?rev=1.1&content-type=text/plain
50
51 Index: connman-1.22.ebuild
52 ===================================================================
53 # Copyright 1999-2014 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/net-misc/connman/connman-1.22.ebuild,v 1.1 2014/05/02 15:32:49 chainsaw Exp $
56
57 EAPI="5"
58 inherit base systemd
59
60 DESCRIPTION="Provides a daemon for managing internet connections"
61 HOMEPAGE="http://connman.net"
62 SRC_URI="mirror://kernel/linux/network/${PN}/${P}.tar.xz"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
67 IUSE="bluetooth debug doc examples +ethernet ofono openvpn openconnect policykit tools vpnc +wifi"
68
69 RDEPEND=">=dev-libs/glib-2.16
70 >=sys-apps/dbus-1.2.24
71 >=net-firewall/iptables-1.4.8
72 net-libs/gnutls
73 bluetooth? ( net-wireless/bluez )
74 ofono? ( net-misc/ofono )
75 policykit? ( sys-auth/polkit )
76 openvpn? ( net-misc/openvpn )
77 vpnc? ( net-misc/vpnc )
78 wifi? ( >=net-wireless/wpa_supplicant-2.0[dbus] )"
79
80 DEPEND="${RDEPEND}
81 >=sys-kernel/linux-headers-2.6.39"
82
83 PATCHES=( "${FILESDIR}/${PN}-1.16-execinfo-assumptions.patch" )
84
85 src_configure() {
86 econf \
87 --localstatedir=/var \
88 --enable-client \
89 --enable-datafiles \
90 --enable-loopback=builtin \
91 $(use_enable examples test) \
92 $(use_enable ethernet ethernet builtin) \
93 $(use_enable wifi wifi builtin) \
94 $(use_enable bluetooth bluetooth builtin) \
95 $(use_enable ofono ofono builtin) \
96 $(use_enable openconnect openconnect builtin) \
97 $(use_enable openvpn openvpn builtin) \
98 $(use_enable policykit polkit builtin) \
99 $(use_enable vpnc vpnc builtin) \
100 $(use_enable debug) \
101 $(use_enable tools) \
102 --disable-iospm \
103 --disable-hh2serial-gps
104 }
105
106 src_install() {
107 emake DESTDIR="${D}" install
108 dobin client/connmanctl || die "client installation failed"
109
110 if use doc; then
111 dodoc doc/*.txt
112 fi
113 keepdir /var/lib/${PN}
114 newinitd "${FILESDIR}"/${PN}.initd2 ${PN}
115 newconfd "${FILESDIR}"/${PN}.confd ${PN}
116 systemd_dounit "${FILESDIR}"/connman.service
117 }
118
119
120
121 1.1 net-misc/connman/connman-1.23.ebuild
122
123 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-1.23.ebuild?rev=1.1&view=markup
124 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-1.23.ebuild?rev=1.1&content-type=text/plain
125
126 Index: connman-1.23.ebuild
127 ===================================================================
128 # Copyright 1999-2014 Gentoo Foundation
129 # Distributed under the terms of the GNU General Public License v2
130 # $Header: /var/cvsroot/gentoo-x86/net-misc/connman/connman-1.23.ebuild,v 1.1 2014/05/02 15:32:49 chainsaw Exp $
131
132 EAPI="5"
133 inherit base systemd
134
135 DESCRIPTION="Provides a daemon for managing internet connections"
136 HOMEPAGE="http://connman.net"
137 SRC_URI="mirror://kernel/linux/network/${PN}/${P}.tar.xz"
138
139 LICENSE="GPL-2"
140 SLOT="0"
141 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
142 IUSE="bluetooth debug doc examples +ethernet ofono openvpn openconnect policykit tools vpnc +wifi"
143
144 RDEPEND=">=dev-libs/glib-2.16
145 >=sys-apps/dbus-1.2.24
146 >=net-firewall/iptables-1.4.8
147 net-libs/gnutls
148 bluetooth? ( net-wireless/bluez )
149 ofono? ( net-misc/ofono )
150 policykit? ( sys-auth/polkit )
151 openvpn? ( net-misc/openvpn )
152 vpnc? ( net-misc/vpnc )
153 wifi? ( >=net-wireless/wpa_supplicant-2.0[dbus] )"
154
155 DEPEND="${RDEPEND}
156 >=sys-kernel/linux-headers-2.6.39"
157
158 PATCHES=( "${FILESDIR}/${PN}-1.16-execinfo-assumptions.patch" )
159
160 src_configure() {
161 econf \
162 --localstatedir=/var \
163 --enable-client \
164 --enable-datafiles \
165 --enable-loopback=builtin \
166 $(use_enable examples test) \
167 $(use_enable ethernet ethernet builtin) \
168 $(use_enable wifi wifi builtin) \
169 $(use_enable bluetooth bluetooth builtin) \
170 $(use_enable ofono ofono builtin) \
171 $(use_enable openconnect openconnect builtin) \
172 $(use_enable openvpn openvpn builtin) \
173 $(use_enable policykit polkit builtin) \
174 $(use_enable vpnc vpnc builtin) \
175 $(use_enable debug) \
176 $(use_enable tools) \
177 --disable-iospm \
178 --disable-hh2serial-gps
179 }
180
181 src_install() {
182 emake DESTDIR="${D}" install
183 dobin client/connmanctl || die "client installation failed"
184
185 if use doc; then
186 dodoc doc/*.txt
187 fi
188 keepdir /var/lib/${PN}
189 newinitd "${FILESDIR}"/${PN}.initd2 ${PN}
190 newconfd "${FILESDIR}"/${PN}.confd ${PN}
191 systemd_dounit "${FILESDIR}"/connman.service
192 }