Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/gupnp: gupnp-0.20.12.ebuild ChangeLog gupnp-0.20.11.ebuild
Date: Sat, 31 May 2014 15:38:11
Message-Id: 20140531153807.9E2872004E@flycatcher.gentoo.org
1 pacho 14/05/31 15:38:07
2
3 Modified: ChangeLog
4 Added: gupnp-0.20.12.ebuild
5 Removed: gupnp-0.20.11.ebuild
6 Log:
7 Version bump, drop old
8
9 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
10
11 Revision Changes Path
12 1.84 net-libs/gupnp/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gupnp/ChangeLog?rev=1.84&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gupnp/ChangeLog?rev=1.84&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gupnp/ChangeLog?r1=1.83&r2=1.84
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-libs/gupnp/ChangeLog,v
21 retrieving revision 1.83
22 retrieving revision 1.84
23 diff -u -r1.83 -r1.84
24 --- ChangeLog 31 May 2014 10:05:41 -0000 1.83
25 +++ ChangeLog 31 May 2014 15:38:07 -0000 1.84
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-libs/gupnp
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-libs/gupnp/ChangeLog,v 1.83 2014/05/31 10:05:41 pacho Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-libs/gupnp/ChangeLog,v 1.84 2014/05/31 15:38:07 pacho Exp $
31 +
32 +*gupnp-0.20.12 (31 May 2014)
33 +
34 + 31 May 2014; Pacho Ramos <pacho@g.o> +gupnp-0.20.12.ebuild,
35 + -gupnp-0.20.11.ebuild:
36 + Version bump, drop old
37
38 *gupnp-0.20.11 (31 May 2014)
39
40
41
42
43 1.1 net-libs/gupnp/gupnp-0.20.12.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gupnp/gupnp-0.20.12.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gupnp/gupnp-0.20.12.ebuild?rev=1.1&content-type=text/plain
47
48 Index: gupnp-0.20.12.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-libs/gupnp/gupnp-0.20.12.ebuild,v 1.1 2014/05/31 15:38:07 pacho Exp $
53
54 EAPI="5"
55 GCONF_DEBUG="no"
56 VALA_MIN_API_VERSION="0.14"
57 VALA_USE_DEPEND="vapigen"
58 # FIXME: Claims to works with python3 but appears to be wishful thinking
59 PYTHON_COMPAT=( python{2_6,2_7} )
60 PYTHON_REQ_USE="xml"
61
62 inherit gnome2 python-r1 vala
63
64 DESCRIPTION="An object-oriented framework for creating UPnP devs and control points"
65 HOMEPAGE="https://wiki.gnome.org/Projects/GUPnP"
66
67 LICENSE="LGPL-2"
68 SLOT="0/4"
69 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
70 IUSE="connman +introspection kernel_linux networkmanager"
71
72 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
73
74 RDEPEND="
75 ${PYTHON_DEPS}
76 >=net-libs/gssdp-0.13.0:0=[introspection?]
77 >=net-libs/libsoup-2.28.2:2.4[introspection?]
78 >=dev-libs/glib-2.28.0:2
79 dev-libs/libxml2
80 || (
81 >=sys-apps/util-linux-2.16
82 <sys-libs/e2fsprogs-libs-1.41.8 )
83 introspection? (
84 >=dev-libs/gobject-introspection-0.6.4
85 $(vala_depend) )
86 connman? (
87 >=dev-libs/glib-2.28:2
88 >=net-misc/connman-0.80 )
89 networkmanager? ( >=dev-libs/glib-2.26:2 )
90 !net-libs/gupnp-vala
91 "
92 DEPEND="${RDEPEND}
93 >=dev-util/gtk-doc-am-1
94 sys-devel/gettext
95 virtual/pkgconfig
96 "
97
98 src_prepare() {
99 use introspection && vala_src_prepare
100 gnome2_src_prepare
101 }
102
103 src_configure() {
104 local backend=unix
105 use kernel_linux && backend=linux
106 use connman && backend=connman
107 use networkmanager && backend=network-manager
108
109 gnome2_src_configure \
110 $(use_enable introspection) \
111 --disable-static \
112 --with-context-manager=${backend}
113 }
114
115 src_install() {
116 gnome2_src_install
117 python_parallel_foreach_impl python_doscript tools/gupnp-binding-tool
118 }