Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/gajim/
Date: Sun, 09 Feb 2020 16:47:06
Message-Id: 1581266797.21a42a5a0e331b110ea9857ac0c29199489f7cee.mgorny@gentoo
1 commit: 21a42a5a0e331b110ea9857ac0c29199489f7cee
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 8 06:48:46 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 9 16:46:37 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21a42a5a
7
8 net-im/gajim: Switch to PYTHON_MULTI_USEDEP API
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 net-im/gajim/gajim-1.0.3-r1.ebuild | 78 ---------------------------------
13 net-im/gajim/gajim-1.0.3-r2.ebuild | 80 ++++++++++++++++++++++++++++++++++
14 net-im/gajim/gajim-1.0.3-r3.ebuild | 80 ++++++++++++++++++++++++++++++++++
15 net-im/gajim/gajim-1.0.3.ebuild | 78 ---------------------------------
16 net-im/gajim/gajim-1.1.3-r1.ebuild | 88 ++++++++++++++++++++++++++++++++++++++
17 net-im/gajim/gajim-1.1.3.ebuild | 86 -------------------------------------
18 6 files changed, 248 insertions(+), 242 deletions(-)
19
20 diff --git a/net-im/gajim/gajim-1.0.3-r1.ebuild b/net-im/gajim/gajim-1.0.3-r1.ebuild
21 deleted file mode 100644
22 index e8d7bd3df20..00000000000
23 --- a/net-im/gajim/gajim-1.0.3-r1.ebuild
24 +++ /dev/null
25 @@ -1,78 +0,0 @@
26 -# Copyright 1999-2020 Gentoo Authors
27 -# Distributed under the terms of the GNU General Public License v2
28 -
29 -EAPI=6
30 -
31 -PYTHON_COMPAT=( python3_6 )
32 -PYTHON_REQ_USE="sqlite,xml"
33 -DISTUTILS_SINGLE_IMPL=1
34 -
35 -inherit gnome2-utils distutils-r1 versionator xdg-utils
36 -
37 -DESCRIPTION="Jabber client written in PyGTK"
38 -HOMEPAGE="https://www.gajim.org/"
39 -SRC_URI="https://www.gajim.org/downloads/$(get_version_component_range 1-2)/${P}.tar.bz2"
40 -
41 -LICENSE="GPL-3"
42 -SLOT="0"
43 -#KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
44 -KEYWORDS="~amd64 ~x86"
45 -IUSE="+crypt geolocation jingle keyring networkmanager remote rst +spell upnp
46 - +webp"
47 -
48 -COMMON_DEPEND="
49 - dev-libs/gobject-introspection[cairo]
50 - >=x11-libs/gtk+-3.22:3[introspection]"
51 -DEPEND="${COMMON_DEPEND}
52 - app-arch/unzip
53 - >=dev-util/intltool-0.40.1
54 - virtual/pkgconfig
55 - >=sys-devel/gettext-0.17-r1"
56 -RDEPEND="${COMMON_DEPEND}
57 - dev-python/idna[${PYTHON_USEDEP}]
58 - dev-python/precis-i18n[${PYTHON_USEDEP}]
59 - dev-python/pyasn1[${PYTHON_USEDEP}]
60 - dev-python/pycairo[${PYTHON_USEDEP}]
61 - dev-python/pycurl[${PYTHON_USEDEP}]
62 - dev-python/pygobject[cairo,${PYTHON_USEDEP}]
63 - >=dev-python/pyopenssl-0.14[${PYTHON_USEDEP}]
64 - >=dev-python/python-nbxmpp-0.6.6[${PYTHON_USEDEP}]
65 - x11-libs/libXScrnSaver
66 - crypt? (
67 - dev-python/pycryptodome[${PYTHON_USEDEP}]
68 - >=dev-python/python-gnupg-0.4.0[${PYTHON_USEDEP}] )
69 - geolocation? ( app-misc/geoclue[introspection] )
70 - jingle? (
71 - net-libs/farstream:0.2[introspection]
72 - media-libs/gstreamer:1.0[introspection]
73 - media-libs/gst-plugins-base:1.0[introspection]
74 - media-libs/gst-plugins-ugly:1.0
75 - )
76 - keyring? (
77 - app-crypt/libsecret[crypt,introspection]
78 - dev-python/keyring[${PYTHON_USEDEP}]
79 - )
80 - networkmanager? ( net-misc/networkmanager[introspection] )
81 - remote? (
82 - >=dev-python/dbus-python-1.2.0[${PYTHON_USEDEP}]
83 - sys-apps/dbus[X]
84 - )
85 - rst? ( dev-python/docutils[${PYTHON_USEDEP}] )
86 - spell? (
87 - app-text/gspell[introspection]
88 - app-text/hunspell
89 - )
90 - upnp? ( net-libs/gupnp-igd[introspection] )
91 - webp? ( dev-python/pillow[${PYTHON_USEDEP}] )"
92 -
93 -RESTRICT="test"
94 -
95 -pkg_postinst() {
96 - gnome2_icon_cache_update
97 - xdg_desktop_database_update
98 -}
99 -
100 -pkg_postrm() {
101 - gnome2_icon_cache_update
102 - xdg_desktop_database_update
103 -}
104
105 diff --git a/net-im/gajim/gajim-1.0.3-r2.ebuild b/net-im/gajim/gajim-1.0.3-r2.ebuild
106 new file mode 100644
107 index 00000000000..ecd507a5add
108 --- /dev/null
109 +++ b/net-im/gajim/gajim-1.0.3-r2.ebuild
110 @@ -0,0 +1,80 @@
111 +# Copyright 1999-2020 Gentoo Authors
112 +# Distributed under the terms of the GNU General Public License v2
113 +
114 +EAPI=6
115 +
116 +PYTHON_COMPAT=( python3_6 )
117 +PYTHON_REQ_USE="sqlite,xml"
118 +DISTUTILS_SINGLE_IMPL=1
119 +
120 +inherit gnome2-utils distutils-r1 versionator xdg-utils
121 +
122 +DESCRIPTION="Jabber client written in PyGTK"
123 +HOMEPAGE="https://www.gajim.org/"
124 +SRC_URI="https://www.gajim.org/downloads/$(get_version_component_range 1-2)/${P}.tar.bz2"
125 +
126 +LICENSE="GPL-3"
127 +SLOT="0"
128 +#KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
129 +KEYWORDS="amd64 x86"
130 +IUSE="+crypt geolocation jingle keyring networkmanager remote rst +spell upnp
131 + +webp"
132 +
133 +COMMON_DEPEND="
134 + dev-libs/gobject-introspection[cairo]
135 + >=x11-libs/gtk+-3.22:3[introspection]"
136 +DEPEND="${COMMON_DEPEND}
137 + app-arch/unzip
138 + >=dev-util/intltool-0.40.1
139 + virtual/pkgconfig
140 + >=sys-devel/gettext-0.17-r1"
141 +RDEPEND="${COMMON_DEPEND}
142 + $(python_gen_cond_dep '
143 + dev-python/idna[${PYTHON_MULTI_USEDEP}]
144 + dev-python/precis-i18n[${PYTHON_MULTI_USEDEP}]
145 + dev-python/pyasn1[${PYTHON_MULTI_USEDEP}]
146 + dev-python/pycairo[${PYTHON_MULTI_USEDEP}]
147 + dev-python/pycurl[${PYTHON_MULTI_USEDEP}]
148 + dev-python/pygobject[cairo,${PYTHON_MULTI_USEDEP}]
149 + >=dev-python/pyopenssl-0.14[${PYTHON_MULTI_USEDEP}]
150 + >=dev-python/python-nbxmpp-0.6.6[${PYTHON_MULTI_USEDEP}]
151 + x11-libs/libXScrnSaver
152 + crypt? (
153 + dev-python/pycryptodome[${PYTHON_MULTI_USEDEP}]
154 + >=dev-python/python-gnupg-0.4.0[${PYTHON_MULTI_USEDEP}] )
155 + geolocation? ( app-misc/geoclue[introspection] )
156 + jingle? (
157 + net-libs/farstream:0.2[introspection]
158 + media-libs/gstreamer:1.0[introspection]
159 + media-libs/gst-plugins-base:1.0[introspection]
160 + media-libs/gst-plugins-ugly:1.0
161 + )
162 + keyring? (
163 + app-crypt/libsecret[crypt,introspection]
164 + dev-python/keyring[${PYTHON_MULTI_USEDEP}]
165 + )
166 + networkmanager? ( net-misc/networkmanager[introspection] )
167 + remote? (
168 + >=dev-python/dbus-python-1.2.0[${PYTHON_MULTI_USEDEP}]
169 + sys-apps/dbus[X]
170 + )
171 + rst? ( dev-python/docutils[${PYTHON_MULTI_USEDEP}] )
172 + spell? (
173 + app-text/gspell[introspection]
174 + app-text/hunspell
175 + )
176 + upnp? ( net-libs/gupnp-igd[introspection] )
177 + webp? ( dev-python/pillow[${PYTHON_MULTI_USEDEP}] )
178 + ')"
179 +
180 +RESTRICT="test"
181 +
182 +pkg_postinst() {
183 + gnome2_icon_cache_update
184 + xdg_desktop_database_update
185 +}
186 +
187 +pkg_postrm() {
188 + gnome2_icon_cache_update
189 + xdg_desktop_database_update
190 +}
191
192 diff --git a/net-im/gajim/gajim-1.0.3-r3.ebuild b/net-im/gajim/gajim-1.0.3-r3.ebuild
193 new file mode 100644
194 index 00000000000..6bda29b9abd
195 --- /dev/null
196 +++ b/net-im/gajim/gajim-1.0.3-r3.ebuild
197 @@ -0,0 +1,80 @@
198 +# Copyright 1999-2020 Gentoo Authors
199 +# Distributed under the terms of the GNU General Public License v2
200 +
201 +EAPI=6
202 +
203 +PYTHON_COMPAT=( python3_6 )
204 +PYTHON_REQ_USE="sqlite,xml"
205 +DISTUTILS_SINGLE_IMPL=1
206 +
207 +inherit gnome2-utils distutils-r1 versionator xdg-utils
208 +
209 +DESCRIPTION="Jabber client written in PyGTK"
210 +HOMEPAGE="https://www.gajim.org/"
211 +SRC_URI="https://www.gajim.org/downloads/$(get_version_component_range 1-2)/${P}.tar.bz2"
212 +
213 +LICENSE="GPL-3"
214 +SLOT="0"
215 +#KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
216 +KEYWORDS="~amd64 ~x86"
217 +IUSE="+crypt geolocation jingle keyring networkmanager remote rst +spell upnp
218 + +webp"
219 +
220 +COMMON_DEPEND="
221 + dev-libs/gobject-introspection[cairo]
222 + >=x11-libs/gtk+-3.22:3[introspection]"
223 +DEPEND="${COMMON_DEPEND}
224 + app-arch/unzip
225 + >=dev-util/intltool-0.40.1
226 + virtual/pkgconfig
227 + >=sys-devel/gettext-0.17-r1"
228 +RDEPEND="${COMMON_DEPEND}
229 + $(python_gen_cond_dep '
230 + dev-python/idna[${PYTHON_MULTI_USEDEP}]
231 + dev-python/precis-i18n[${PYTHON_MULTI_USEDEP}]
232 + dev-python/pyasn1[${PYTHON_MULTI_USEDEP}]
233 + dev-python/pycairo[${PYTHON_MULTI_USEDEP}]
234 + dev-python/pycurl[${PYTHON_MULTI_USEDEP}]
235 + dev-python/pygobject[cairo,${PYTHON_MULTI_USEDEP}]
236 + >=dev-python/pyopenssl-0.14[${PYTHON_MULTI_USEDEP}]
237 + >=dev-python/python-nbxmpp-0.6.6[${PYTHON_MULTI_USEDEP}]
238 + x11-libs/libXScrnSaver
239 + crypt? (
240 + dev-python/pycryptodome[${PYTHON_MULTI_USEDEP}]
241 + >=dev-python/python-gnupg-0.4.0[${PYTHON_MULTI_USEDEP}] )
242 + geolocation? ( app-misc/geoclue[introspection] )
243 + jingle? (
244 + net-libs/farstream:0.2[introspection]
245 + media-libs/gstreamer:1.0[introspection]
246 + media-libs/gst-plugins-base:1.0[introspection]
247 + media-libs/gst-plugins-ugly:1.0
248 + )
249 + keyring? (
250 + app-crypt/libsecret[crypt,introspection]
251 + dev-python/keyring[${PYTHON_MULTI_USEDEP}]
252 + )
253 + networkmanager? ( net-misc/networkmanager[introspection] )
254 + remote? (
255 + >=dev-python/dbus-python-1.2.0[${PYTHON_MULTI_USEDEP}]
256 + sys-apps/dbus[X]
257 + )
258 + rst? ( dev-python/docutils[${PYTHON_MULTI_USEDEP}] )
259 + spell? (
260 + app-text/gspell[introspection]
261 + app-text/hunspell
262 + )
263 + upnp? ( net-libs/gupnp-igd[introspection] )
264 + webp? ( dev-python/pillow[${PYTHON_MULTI_USEDEP}] )
265 + ')"
266 +
267 +RESTRICT="test"
268 +
269 +pkg_postinst() {
270 + gnome2_icon_cache_update
271 + xdg_desktop_database_update
272 +}
273 +
274 +pkg_postrm() {
275 + gnome2_icon_cache_update
276 + xdg_desktop_database_update
277 +}
278
279 diff --git a/net-im/gajim/gajim-1.0.3.ebuild b/net-im/gajim/gajim-1.0.3.ebuild
280 deleted file mode 100644
281 index 373bb4d2f1a..00000000000
282 --- a/net-im/gajim/gajim-1.0.3.ebuild
283 +++ /dev/null
284 @@ -1,78 +0,0 @@
285 -# Copyright 1999-2020 Gentoo Authors
286 -# Distributed under the terms of the GNU General Public License v2
287 -
288 -EAPI=6
289 -
290 -PYTHON_COMPAT=( python3_6 )
291 -PYTHON_REQ_USE="sqlite,xml"
292 -DISTUTILS_SINGLE_IMPL=1
293 -
294 -inherit gnome2-utils distutils-r1 versionator xdg-utils
295 -
296 -DESCRIPTION="Jabber client written in PyGTK"
297 -HOMEPAGE="https://www.gajim.org/"
298 -SRC_URI="https://www.gajim.org/downloads/$(get_version_component_range 1-2)/${P}.tar.bz2"
299 -
300 -LICENSE="GPL-3"
301 -SLOT="0"
302 -#KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
303 -KEYWORDS="amd64 x86"
304 -IUSE="+crypt geolocation jingle keyring networkmanager remote rst +spell upnp
305 - +webp"
306 -
307 -COMMON_DEPEND="
308 - dev-libs/gobject-introspection[cairo]
309 - >=x11-libs/gtk+-3.22:3[introspection]"
310 -DEPEND="${COMMON_DEPEND}
311 - app-arch/unzip
312 - >=dev-util/intltool-0.40.1
313 - virtual/pkgconfig
314 - >=sys-devel/gettext-0.17-r1"
315 -RDEPEND="${COMMON_DEPEND}
316 - dev-python/idna[${PYTHON_USEDEP}]
317 - dev-python/precis-i18n[${PYTHON_USEDEP}]
318 - dev-python/pyasn1[${PYTHON_USEDEP}]
319 - dev-python/pycairo[${PYTHON_USEDEP}]
320 - dev-python/pycurl[${PYTHON_USEDEP}]
321 - dev-python/pygobject[cairo,${PYTHON_USEDEP}]
322 - >=dev-python/pyopenssl-0.14[${PYTHON_USEDEP}]
323 - >=dev-python/python-nbxmpp-0.6.6[${PYTHON_USEDEP}]
324 - x11-libs/libXScrnSaver
325 - crypt? (
326 - dev-python/pycryptodome[${PYTHON_USEDEP}]
327 - >=dev-python/python-gnupg-0.4.0[${PYTHON_USEDEP}] )
328 - geolocation? ( app-misc/geoclue[introspection] )
329 - jingle? (
330 - net-libs/farstream:0.2[introspection]
331 - media-libs/gstreamer:1.0[introspection]
332 - media-libs/gst-plugins-base:1.0[introspection]
333 - media-libs/gst-plugins-ugly:1.0
334 - )
335 - keyring? (
336 - app-crypt/libsecret[crypt,introspection]
337 - dev-python/keyring[${PYTHON_USEDEP}]
338 - )
339 - networkmanager? ( net-misc/networkmanager[introspection] )
340 - remote? (
341 - >=dev-python/dbus-python-1.2.0[${PYTHON_USEDEP}]
342 - sys-apps/dbus[X]
343 - )
344 - rst? ( dev-python/docutils[${PYTHON_USEDEP}] )
345 - spell? (
346 - app-text/gspell[introspection]
347 - app-text/hunspell
348 - )
349 - upnp? ( net-libs/gupnp-igd[introspection] )
350 - webp? ( dev-python/pillow[${PYTHON_USEDEP}] )"
351 -
352 -RESTRICT="test"
353 -
354 -pkg_postinst() {
355 - gnome2_icon_cache_update
356 - xdg_desktop_database_update
357 -}
358 -
359 -pkg_postrm() {
360 - gnome2_icon_cache_update
361 - xdg_desktop_database_update
362 -}
363
364 diff --git a/net-im/gajim/gajim-1.1.3-r1.ebuild b/net-im/gajim/gajim-1.1.3-r1.ebuild
365 new file mode 100644
366 index 00000000000..cfa793c7bc5
367 --- /dev/null
368 +++ b/net-im/gajim/gajim-1.1.3-r1.ebuild
369 @@ -0,0 +1,88 @@
370 +# Copyright 1999-2020 Gentoo Authors
371 +# Distributed under the terms of the GNU General Public License v2
372 +
373 +EAPI=7
374 +
375 +PYTHON_COMPAT=( python3_{6,7} )
376 +PYTHON_REQ_USE="sqlite,xml"
377 +DISTUTILS_SINGLE_IMPL=1
378 +
379 +inherit distutils-r1 xdg-utils
380 +
381 +DESCRIPTION="Jabber client written in PyGTK"
382 +HOMEPAGE="https://www.gajim.org/"
383 +SRC_URI="https://www.gajim.org/downloads/$(ver_cut 1-2)/${P}.tar.bz2"
384 +
385 +LICENSE="GPL-3"
386 +SLOT="0"
387 +#KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
388 +KEYWORDS="~amd64 ~x86"
389 +IUSE="+crypt geolocation jingle networkmanager remote rst +spell upnp
390 + +webp"
391 +
392 +COMMON_DEPEND="
393 + dev-libs/gobject-introspection[cairo]
394 + >=x11-libs/gtk+-3.22:3[introspection]"
395 +DEPEND="${COMMON_DEPEND}
396 + app-arch/unzip
397 + >=dev-util/intltool-0.40.1
398 + virtual/pkgconfig
399 + >=sys-devel/gettext-0.17-r1"
400 +RDEPEND="${COMMON_DEPEND}
401 + $(python_gen_cond_dep '
402 + dev-python/idna[${PYTHON_MULTI_USEDEP}]
403 + dev-python/precis-i18n[${PYTHON_MULTI_USEDEP}]
404 + dev-python/pyasn1[${PYTHON_MULTI_USEDEP}]
405 + dev-python/pycairo[${PYTHON_MULTI_USEDEP}]
406 + dev-python/pycurl[${PYTHON_MULTI_USEDEP}]
407 + dev-python/pygobject[cairo,${PYTHON_MULTI_USEDEP}]
408 + >=dev-python/pyopenssl-0.14[${PYTHON_MULTI_USEDEP}]
409 + >=dev-python/python-nbxmpp-0.6.9[${PYTHON_MULTI_USEDEP}]
410 + x11-libs/libXScrnSaver
411 + app-crypt/libsecret[crypt,introspection]
412 + dev-python/keyring[${PYTHON_MULTI_USEDEP}]
413 + >=dev-python/secretstorage-3.1.1[${PYTHON_MULTI_USEDEP}]
414 + >=dev-python/cssutils-1.0.2[${PYTHON_MULTI_USEDEP}]
415 + crypt? (
416 + dev-python/pycryptodome[${PYTHON_MULTI_USEDEP}]
417 + >=dev-python/python-gnupg-0.4.0[${PYTHON_MULTI_USEDEP}] )
418 + geolocation? ( app-misc/geoclue[introspection] )
419 + jingle? (
420 + net-libs/farstream:0.2[introspection]
421 + media-libs/gstreamer:1.0[introspection]
422 + media-libs/gst-plugins-base:1.0[introspection]
423 + media-libs/gst-plugins-ugly:1.0
424 + )
425 + networkmanager? ( net-misc/networkmanager[introspection] )
426 + remote? (
427 + >=dev-python/dbus-python-1.2.0[${PYTHON_MULTI_USEDEP}]
428 + sys-apps/dbus[X]
429 + )
430 + rst? ( dev-python/docutils[${PYTHON_MULTI_USEDEP}] )
431 + spell? (
432 + app-text/gspell[introspection]
433 + app-text/hunspell
434 + )
435 + upnp? ( net-libs/gupnp-igd[introspection] )
436 + webp? ( dev-python/pillow[${PYTHON_MULTI_USEDEP}] )
437 + ')"
438 +
439 +RESTRICT="test"
440 +
441 +src_install() {
442 + distutils-r1_src_install
443 +
444 + # avoid precompressed man pages
445 + rm -r "${D}/usr/share/man"
446 + doman data/*.1
447 +}
448 +
449 +pkg_postinst() {
450 + xdg_icon_cache_update
451 + xdg_desktop_database_update
452 +}
453 +
454 +pkg_postrm() {
455 + xdg_icon_cache_update
456 + xdg_desktop_database_update
457 +}
458
459 diff --git a/net-im/gajim/gajim-1.1.3.ebuild b/net-im/gajim/gajim-1.1.3.ebuild
460 deleted file mode 100644
461 index e8d0781880c..00000000000
462 --- a/net-im/gajim/gajim-1.1.3.ebuild
463 +++ /dev/null
464 @@ -1,86 +0,0 @@
465 -# Copyright 1999-2020 Gentoo Authors
466 -# Distributed under the terms of the GNU General Public License v2
467 -
468 -EAPI=7
469 -
470 -PYTHON_COMPAT=( python3_{6,7} )
471 -PYTHON_REQ_USE="sqlite,xml"
472 -DISTUTILS_SINGLE_IMPL=1
473 -
474 -inherit distutils-r1 xdg-utils
475 -
476 -DESCRIPTION="Jabber client written in PyGTK"
477 -HOMEPAGE="https://www.gajim.org/"
478 -SRC_URI="https://www.gajim.org/downloads/$(ver_cut 1-2)/${P}.tar.bz2"
479 -
480 -LICENSE="GPL-3"
481 -SLOT="0"
482 -#KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
483 -KEYWORDS="~amd64 ~x86"
484 -IUSE="+crypt geolocation jingle networkmanager remote rst +spell upnp
485 - +webp"
486 -
487 -COMMON_DEPEND="
488 - dev-libs/gobject-introspection[cairo]
489 - >=x11-libs/gtk+-3.22:3[introspection]"
490 -DEPEND="${COMMON_DEPEND}
491 - app-arch/unzip
492 - >=dev-util/intltool-0.40.1
493 - virtual/pkgconfig
494 - >=sys-devel/gettext-0.17-r1"
495 -RDEPEND="${COMMON_DEPEND}
496 - dev-python/idna[${PYTHON_USEDEP}]
497 - dev-python/precis-i18n[${PYTHON_USEDEP}]
498 - dev-python/pyasn1[${PYTHON_USEDEP}]
499 - dev-python/pycairo[${PYTHON_USEDEP}]
500 - dev-python/pycurl[${PYTHON_USEDEP}]
501 - dev-python/pygobject[cairo,${PYTHON_USEDEP}]
502 - >=dev-python/pyopenssl-0.14[${PYTHON_USEDEP}]
503 - >=dev-python/python-nbxmpp-0.6.9[${PYTHON_USEDEP}]
504 - x11-libs/libXScrnSaver
505 - app-crypt/libsecret[crypt,introspection]
506 - dev-python/keyring[${PYTHON_USEDEP}]
507 - >=dev-python/secretstorage-3.1.1[${PYTHON_USEDEP}]
508 - >=dev-python/cssutils-1.0.2[${PYTHON_USEDEP}]
509 - crypt? (
510 - dev-python/pycryptodome[${PYTHON_USEDEP}]
511 - >=dev-python/python-gnupg-0.4.0[${PYTHON_USEDEP}] )
512 - geolocation? ( app-misc/geoclue[introspection] )
513 - jingle? (
514 - net-libs/farstream:0.2[introspection]
515 - media-libs/gstreamer:1.0[introspection]
516 - media-libs/gst-plugins-base:1.0[introspection]
517 - media-libs/gst-plugins-ugly:1.0
518 - )
519 - networkmanager? ( net-misc/networkmanager[introspection] )
520 - remote? (
521 - >=dev-python/dbus-python-1.2.0[${PYTHON_USEDEP}]
522 - sys-apps/dbus[X]
523 - )
524 - rst? ( dev-python/docutils[${PYTHON_USEDEP}] )
525 - spell? (
526 - app-text/gspell[introspection]
527 - app-text/hunspell
528 - )
529 - upnp? ( net-libs/gupnp-igd[introspection] )
530 - webp? ( dev-python/pillow[${PYTHON_USEDEP}] )"
531 -
532 -RESTRICT="test"
533 -
534 -src_install() {
535 - distutils-r1_src_install
536 -
537 - # avoid precompressed man pages
538 - rm -r "${D}/usr/share/man"
539 - doman data/*.1
540 -}
541 -
542 -pkg_postinst() {
543 - xdg_icon_cache_update
544 - xdg_desktop_database_update
545 -}
546 -
547 -pkg_postrm() {
548 - xdg_icon_cache_update
549 - xdg_desktop_database_update
550 -}