Gentoo Archives: gentoo-commits

From: Ben Kohler <bkohler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/connman/
Date: Wed, 27 Apr 2022 14:27:35
Message-Id: 1651069640.42e934317e4014a43092ac47c7fcee2f32a6c79f.bkohler@gentoo
1 commit: 42e934317e4014a43092ac47c7fcee2f32a6c79f
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 26 13:07:35 2022 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 27 14:27:20 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42e93431
7
8 net-misc/connman: drop 1.40, 1.41
9
10 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
11
12 net-misc/connman/Manifest | 1 -
13 net-misc/connman/connman-1.40.ebuild | 101 -----------------------------------
14 net-misc/connman/connman-1.41.ebuild | 101 -----------------------------------
15 3 files changed, 203 deletions(-)
16
17 diff --git a/net-misc/connman/Manifest b/net-misc/connman/Manifest
18 index 8ea20912c37d..eb7e472a6cf8 100644
19 --- a/net-misc/connman/Manifest
20 +++ b/net-misc/connman/Manifest
21 @@ -1,2 +1 @@
22 -DIST connman-1.40.tar.xz 758516 BLAKE2B 66834032f82e80a6f950d7ff823dc5f1f45090f3444b5a0241cabd0346cf9749b8780b624ce6a8e505305cc1a75423e5a95a7b1f77a282d231845bc33389924a SHA512 33df90814b7499aeafcd51fca4f8ffbc07efacfa29dda46d3b9bcd3ff26264dc53c3991e7e53a8563ca403015c345e59c7ad29427c38ee3d88dd282479db7a0f
23 DIST connman-1.41.tar.xz 758556 BLAKE2B 45e522d4a3a8d1a2f8eb21612d85435020f51387d4285da65da56d022df2d521f81a782af82387bdede8b71bdc591b9ffb8b79e1b1dd9d1d83ffa96eede9c1bd SHA512 b7880d908635ab9350c12e207213d20b11c1a50afcb93ae92e1fc57d4345bf792afe1a5534650e18b8cd05a3766ce9993083b2d659e49f87b867e6f2c1a83b2d
24
25 diff --git a/net-misc/connman/connman-1.40.ebuild b/net-misc/connman/connman-1.40.ebuild
26 deleted file mode 100644
27 index d76ef5ba0be7..000000000000
28 --- a/net-misc/connman/connman-1.40.ebuild
29 +++ /dev/null
30 @@ -1,101 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="7"
35 -inherit autotools systemd tmpfiles
36 -
37 -if [[ ${PV} == *9999* ]]; then
38 - inherit git-r3
39 - EGIT_REPO_URI="https://git.kernel.org/pub/scm/network/connman/connman.git"
40 -else
41 - SRC_URI="https://www.kernel.org/pub/linux/network/${PN}/${P}.tar.xz"
42 - KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv x86"
43 -fi
44 -
45 -DESCRIPTION="Provides a daemon for managing internet connections"
46 -HOMEPAGE="https://git.kernel.org/pub/scm/network/connman/connman.git/"
47 -
48 -LICENSE="GPL-2"
49 -SLOT="0"
50 -
51 -IUSE="bluetooth debug doc +ethernet examples iptables iwd l2tp networkmanager
52 -+nftables ofono openconnect openvpn policykit pptp tools vpnc +wifi wireguard
53 -wispr"
54 -
55 -REQUIRED_USE="^^ ( iptables nftables )"
56 -BDEPEND="virtual/pkgconfig"
57 -RDEPEND=">=dev-libs/glib-2.16
58 - >=sys-apps/dbus-1.2.24
59 - sys-libs/readline:0=
60 - bluetooth? ( net-wireless/bluez )
61 - iptables? ( >=net-firewall/iptables-1.4.8 )
62 - iwd? ( net-wireless/iwd )
63 - l2tp? ( net-dialup/xl2tpd )
64 - nftables? (
65 - >=net-libs/libnftnl-1.0.4:0=
66 - >=net-libs/libmnl-1.0.0:0= )
67 - ofono? ( net-misc/ofono )
68 - openconnect? ( net-vpn/openconnect )
69 - openvpn? ( net-vpn/openvpn )
70 - policykit? ( sys-auth/polkit )
71 - pptp? ( net-dialup/pptpclient )
72 - vpnc? ( net-vpn/vpnc )
73 - wifi? ( >=net-wireless/wpa_supplicant-2.0[dbus] )
74 - wireguard? ( >=net-libs/libmnl-1.0.0:0= )
75 - wispr? ( net-libs/gnutls )"
76 -
77 -DEPEND="${RDEPEND}
78 - >=sys-kernel/linux-headers-2.6.39"
79 -
80 -src_prepare() {
81 - default
82 - eautoreconf
83 -}
84 -
85 -src_configure() {
86 - econf \
87 - --localstatedir=/var \
88 - --runstatedir=/run \
89 - --with-systemdunitdir=$(systemd_get_systemunitdir) \
90 - --with-tmpfilesdir="${EPREFIX}"/usr/lib/tmpfiles.d \
91 - --enable-client \
92 - --enable-datafiles \
93 - --enable-loopback=builtin \
94 - $(use_enable bluetooth bluetooth builtin) \
95 - $(use_enable debug) \
96 - $(use_enable ethernet ethernet builtin) \
97 - $(use_enable examples test) \
98 - $(use_enable iwd) \
99 - $(use_enable l2tp l2tp builtin) \
100 - $(use_enable networkmanager nmcompat) \
101 - $(use_enable ofono ofono builtin) \
102 - $(use_enable openconnect openconnect builtin) \
103 - $(use_enable openvpn openvpn builtin) \
104 - $(use_enable policykit polkit builtin) \
105 - $(use_enable pptp pptp builtin) \
106 - $(use_enable tools) \
107 - $(use_enable vpnc vpnc builtin) \
108 - $(use_enable wifi wifi builtin) \
109 - $(use_enable wireguard) \
110 - $(use_enable wispr wispr builtin) \
111 - --with-firewall=$(usex iptables "iptables" "nftables" ) \
112 - --disable-iospm \
113 - --disable-hh2serial-gps
114 -}
115 -
116 -src_install() {
117 - default
118 - dobin client/connmanctl
119 -
120 - if use doc; then
121 - dodoc doc/*.txt
122 - fi
123 - keepdir /usr/lib/${PN}/scripts
124 - keepdir /var/lib/${PN}
125 - newinitd "${FILESDIR}"/${PN}.initd2 ${PN}
126 - newconfd "${FILESDIR}"/${PN}.confd ${PN}
127 -}
128 -
129 -pkg_postinst() {
130 - tmpfiles_process connman_resolvconf.conf
131 -}
132
133 diff --git a/net-misc/connman/connman-1.41.ebuild b/net-misc/connman/connman-1.41.ebuild
134 deleted file mode 100644
135 index 75fbfd795b38..000000000000
136 --- a/net-misc/connman/connman-1.41.ebuild
137 +++ /dev/null
138 @@ -1,101 +0,0 @@
139 -# Copyright 1999-2022 Gentoo Authors
140 -# Distributed under the terms of the GNU General Public License v2
141 -
142 -EAPI="7"
143 -inherit autotools systemd tmpfiles
144 -
145 -if [[ ${PV} == *9999* ]]; then
146 - inherit git-r3
147 - EGIT_REPO_URI="https://git.kernel.org/pub/scm/network/connman/connman.git"
148 -else
149 - SRC_URI="https://www.kernel.org/pub/linux/network/${PN}/${P}.tar.xz"
150 - KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
151 -fi
152 -
153 -DESCRIPTION="Provides a daemon for managing internet connections"
154 -HOMEPAGE="https://git.kernel.org/pub/scm/network/connman/connman.git/"
155 -
156 -LICENSE="GPL-2"
157 -SLOT="0"
158 -
159 -IUSE="bluetooth debug doc +ethernet examples iptables iwd l2tp networkmanager
160 -+nftables ofono openconnect openvpn policykit pptp tools vpnc +wifi wireguard
161 -wispr"
162 -
163 -REQUIRED_USE="^^ ( iptables nftables )"
164 -BDEPEND="virtual/pkgconfig"
165 -RDEPEND=">=dev-libs/glib-2.16
166 - >=sys-apps/dbus-1.2.24
167 - sys-libs/readline:0=
168 - bluetooth? ( net-wireless/bluez )
169 - iptables? ( >=net-firewall/iptables-1.4.8 )
170 - iwd? ( net-wireless/iwd )
171 - l2tp? ( net-dialup/xl2tpd )
172 - nftables? (
173 - >=net-libs/libnftnl-1.0.4:0=
174 - >=net-libs/libmnl-1.0.0:0= )
175 - ofono? ( net-misc/ofono )
176 - openconnect? ( net-vpn/openconnect )
177 - openvpn? ( net-vpn/openvpn )
178 - policykit? ( sys-auth/polkit )
179 - pptp? ( net-dialup/pptpclient )
180 - vpnc? ( net-vpn/vpnc )
181 - wifi? ( >=net-wireless/wpa_supplicant-2.0[dbus] )
182 - wireguard? ( >=net-libs/libmnl-1.0.0:0= )
183 - wispr? ( net-libs/gnutls )"
184 -
185 -DEPEND="${RDEPEND}
186 - >=sys-kernel/linux-headers-2.6.39"
187 -
188 -src_prepare() {
189 - default
190 - eautoreconf
191 -}
192 -
193 -src_configure() {
194 - econf \
195 - --localstatedir=/var \
196 - --runstatedir=/run \
197 - --with-systemdunitdir=$(systemd_get_systemunitdir) \
198 - --with-tmpfilesdir="${EPREFIX}"/usr/lib/tmpfiles.d \
199 - --enable-client \
200 - --enable-datafiles \
201 - --enable-loopback=builtin \
202 - $(use_enable bluetooth bluetooth builtin) \
203 - $(use_enable debug) \
204 - $(use_enable ethernet ethernet builtin) \
205 - $(use_enable examples test) \
206 - $(use_enable iwd) \
207 - $(use_enable l2tp l2tp builtin) \
208 - $(use_enable networkmanager nmcompat) \
209 - $(use_enable ofono ofono builtin) \
210 - $(use_enable openconnect openconnect builtin) \
211 - $(use_enable openvpn openvpn builtin) \
212 - $(use_enable policykit polkit builtin) \
213 - $(use_enable pptp pptp builtin) \
214 - $(use_enable tools) \
215 - $(use_enable vpnc vpnc builtin) \
216 - $(use_enable wifi wifi builtin) \
217 - $(use_enable wireguard) \
218 - $(use_enable wispr wispr builtin) \
219 - --with-firewall=$(usex iptables "iptables" "nftables" ) \
220 - --disable-iospm \
221 - --disable-hh2serial-gps
222 -}
223 -
224 -src_install() {
225 - default
226 - dobin client/connmanctl
227 -
228 - if use doc; then
229 - dodoc doc/*.txt
230 - fi
231 - keepdir /usr/lib/${PN}/scripts
232 - keepdir /var/lib/${PN}
233 - newinitd "${FILESDIR}"/${PN}.initd2 ${PN}
234 - newconfd "${FILESDIR}"/${PN}.confd ${PN}
235 -}
236 -
237 -pkg_postinst() {
238 - tmpfiles_process connman_resolvconf.conf
239 -}