Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/gupnp-igd: ChangeLog gupnp-igd-0.2.3.ebuild gupnp-igd-0.1.11.ebuild gupnp-igd-0.2.1.ebuild gupnp-igd-0.1.7.ebuild gupnp-igd-0.2.2.ebuild
Date: Thu, 06 Feb 2014 22:14:43
Message-Id: 20140206221439.EBBA32004C@flycatcher.gentoo.org
1 eva 14/02/06 22:14:39
2
3 Modified: ChangeLog
4 Added: gupnp-igd-0.2.3.ebuild
5 Removed: gupnp-igd-0.1.11.ebuild gupnp-igd-0.2.1.ebuild
6 gupnp-igd-0.1.7.ebuild gupnp-igd-0.2.2.ebuild
7 Log:
8 Version bump. Clean up old revisions.
9
10 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key C6085806)
11
12 Revision Changes Path
13 1.54 net-libs/gupnp-igd/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gupnp-igd/ChangeLog?rev=1.54&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gupnp-igd/ChangeLog?rev=1.54&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gupnp-igd/ChangeLog?r1=1.53&r2=1.54
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/net-libs/gupnp-igd/ChangeLog,v
22 retrieving revision 1.53
23 retrieving revision 1.54
24 diff -u -r1.53 -r1.54
25 --- ChangeLog 26 Jan 2014 12:20:28 -0000 1.53
26 +++ ChangeLog 6 Feb 2014 22:14:39 -0000 1.54
27 @@ -1,6 +1,15 @@
28 # ChangeLog for net-libs/gupnp-igd
29 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/net-libs/gupnp-igd/ChangeLog,v 1.53 2014/01/26 12:20:28 ago Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/net-libs/gupnp-igd/ChangeLog,v 1.54 2014/02/06 22:14:39 eva Exp $
32 +
33 +*gupnp-igd-0.2.3 (06 Feb 2014)
34 +
35 + 06 Feb 2014; Gilles Dartiguelongue <eva@g.o> -gupnp-igd-0.1.7.ebuild,
36 + -gupnp-igd-0.1.11.ebuild, -gupnp-igd-0.2.1.ebuild, -gupnp-igd-0.2.2.ebuild,
37 + +gupnp-igd-0.2.3.ebuild, -files/gupnp-igd-0.1.7-disable_static_modules.patch,
38 + -files/gupnp-igd-0.1.7-make-382.patch,
39 + -files/gupnp-igd-0.2.2-underlinking.patch:
40 + Version bump. Clean up old revisions.
41
42 26 Jan 2014; Agostino Sarubbo <ago@g.o> gupnp-igd-0.2.2-r1.ebuild:
43 Stable for sparc, wrt bug #496626
44
45
46
47 1.1 net-libs/gupnp-igd/gupnp-igd-0.2.3.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gupnp-igd/gupnp-igd-0.2.3.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gupnp-igd/gupnp-igd-0.2.3.ebuild?rev=1.1&content-type=text/plain
51
52 Index: gupnp-igd-0.2.3.ebuild
53 ===================================================================
54 # Copyright 1999-2014 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/net-libs/gupnp-igd/gupnp-igd-0.2.3.ebuild,v 1.1 2014/02/06 22:14:39 eva Exp $
57
58 EAPI=5
59
60 PYTHON_COMPAT=( python2_7 )
61 AUTOTOOLS_AUTORECONF=true
62
63 inherit autotools-utils gnome.org python-r1
64
65 DESCRIPTION="Library to handle UPnP IGD port mapping for GUPnP"
66 HOMEPAGE="http://gupnp.org"
67
68 LICENSE="LGPL-2"
69 SLOT="0"
70 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
71 IUSE="+introspection python"
72
73 RDEPEND="
74 >=dev-libs/glib-2.26:2
75 net-libs/gssdp
76 >=net-libs/gupnp-0.18
77 introspection? ( >=dev-libs/gobject-introspection-0.10 )
78 python? (
79 >=dev-libs/gobject-introspection-0.10
80 >=dev-python/pygobject-2.16:2[${PYTHON_USEDEP}]
81 )"
82 DEPEND="${RDEPEND}
83 dev-util/gtk-doc-am
84 sys-devel/gettext
85 virtual/pkgconfig
86 "
87
88 # The only existing test is broken
89 RESTRICT="test"
90
91 PATCHES=(
92 "${FILESDIR}"/${PN}-0.1.11-disable_static_modules.patch
93 )
94
95 src_prepare() {
96 # Python bindings are built/installed manually.
97 if use python; then
98 sed -e "/PYTHON_SUBDIR =/s/ python//" -i Makefile.am Makefile.in || die
99 fi
100 autotools-utils_src_prepare
101 }
102
103 src_configure() {
104 local myeconfargs=(
105 --disable-static
106 --disable-gtk-doc
107 $(use_enable introspection)
108 $(use_enable python)
109 )
110 autotools-utils_src_configure
111 }
112
113 src_compile() {
114 autotools-utils_src_compile
115
116 if use python; then
117 python_copy_sources
118
119 building() {
120 cd "${BUILD_DIR}"/python || die
121 emake \
122 PYTHON_INCLUDES="-I$(python_get_includedir)" \
123 pyexecdir="$(python_get_sitedir)"
124 }
125 python_foreach_impl building
126 fi
127 }
128
129 src_install() {
130 autotools-utils_src_install
131
132 if use python; then
133 installation() {
134 cd "${BUILD_DIR}"/python || die
135 emake \
136 DESTDIR="${D}" \
137 pyexecdir="$(python_get_sitedir)" \
138 install
139 }
140 python_foreach_impl installation
141 fi
142 }