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