Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/gupnp/
Date: Sun, 30 Dec 2018 11:29:06
Message-Id: 1546169220.1e4053be10c136c7aa94d31f9665000922b24dd6.leio@gentoo
1 commit: 1e4053be10c136c7aa94d31f9665000922b24dd6
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 30 11:27:00 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 30 11:27:00 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e4053be
7
8 net-libs/gupnp: remove old
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 net-libs/gupnp/Manifest | 1 -
14 net-libs/gupnp/gupnp-1.0.2.ebuild | 73 ---------------------------------------
15 2 files changed, 74 deletions(-)
16
17 diff --git a/net-libs/gupnp/Manifest b/net-libs/gupnp/Manifest
18 index bb88072d42f..99181995fc8 100644
19 --- a/net-libs/gupnp/Manifest
20 +++ b/net-libs/gupnp/Manifest
21 @@ -1,2 +1 @@
22 -DIST gupnp-1.0.2.tar.xz 421792 BLAKE2B f89bd5f345637718a90fcd90bb4b0a17cf143042018d6a529a6cbac9c411218f1b014b5eee2a09e888e0dba195a1a8a31c078f0be749bb1b6d059a665c4ca2fa SHA512 a22082b10725abe233a8b3212a988a7c7e52a617aefe2029f25572d371560264cddd15eab2ad4637880b4be3b4bdb85dbc5c47c8da338667152c86eaecd7e165
23 DIST gupnp-1.0.3.tar.xz 422912 BLAKE2B 900a2a81982a50239b26ddd5df3f57caac1ee66103e857b9014db7dc694e303c1eaa0633cb467887f3370e97058abc221bd0175c9df11ca4af31e3f802145a66 SHA512 f256757ddf1a31f1dc93dc138401329e40aa063e7452dccaabe53682eebcb1b98cb6429c01d806290587ca9d01d91afce0603627d2d8675ddb68ef919efb6448
24
25 diff --git a/net-libs/gupnp/gupnp-1.0.2.ebuild b/net-libs/gupnp/gupnp-1.0.2.ebuild
26 deleted file mode 100644
27 index 19b46e74529..00000000000
28 --- a/net-libs/gupnp/gupnp-1.0.2.ebuild
29 +++ /dev/null
30 @@ -1,73 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="6"
35 -VALA_USE_DEPEND="vapigen"
36 -# FIXME: Claims to works with python3 but appears to be wishful thinking
37 -PYTHON_COMPAT=( python2_7 )
38 -PYTHON_REQ_USE="xml"
39 -
40 -inherit gnome2 multilib-minimal python-r1 vala
41 -
42 -DESCRIPTION="An object-oriented framework for creating UPnP devs and control points"
43 -HOMEPAGE="https://wiki.gnome.org/Projects/GUPnP"
44 -
45 -LICENSE="LGPL-2"
46 -SLOT="0/4"
47 -KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~ppc ppc64 ~sparc x86"
48 -
49 -IUSE="connman +introspection kernel_linux networkmanager"
50 -REQUIRED_USE="${PYTHON_REQUIRED_USE}
51 - ?? ( connman networkmanager )
52 -"
53 -
54 -# prefix: uuid dependency can be adapted to non-linux platforms
55 -RDEPEND="${PYTHON_DEPS}
56 - >=net-libs/gssdp-0.14.15:0=[introspection?,${MULTILIB_USEDEP}]
57 - >=net-libs/libsoup-2.48.0:2.4[introspection?,${MULTILIB_USEDEP}]
58 - >=dev-libs/glib-2.40:2[${MULTILIB_USEDEP}]
59 - >=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}]
60 - >=sys-apps/util-linux-2.24.1-r3[${MULTILIB_USEDEP}]
61 - introspection? (
62 - >=dev-libs/gobject-introspection-1.36:=
63 - $(vala_depend) )
64 - connman? ( >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}] )
65 - networkmanager? ( >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}] )
66 - !net-libs/gupnp-vala
67 -"
68 -DEPEND="${RDEPEND}
69 - >=dev-util/gtk-doc-am-1.14
70 - sys-devel/gettext
71 - >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
72 -"
73 -
74 -src_prepare() {
75 - use introspection && vala_src_prepare
76 - gnome2_src_prepare
77 -}
78 -
79 -multilib_src_configure() {
80 - local backend=unix
81 - use kernel_linux && backend=linux
82 - use connman && backend=connman
83 - use networkmanager && backend=network-manager
84 -
85 - ECONF_SOURCE=${S} \
86 - gnome2_src_configure \
87 - $(multilib_native_use_enable introspection) \
88 - --disable-static \
89 - --with-context-manager=${backend}
90 -
91 - if multilib_is_native_abi; then
92 - ln -s "${S}"/doc/html doc/html || die
93 - fi
94 -}
95 -
96 -multilib_src_install() {
97 - gnome2_src_install
98 -}
99 -
100 -multilib_src_install_all() {
101 - einstalldocs
102 - python_foreach_impl python_doscript tools/gupnp-binding-tool
103 -}