Gentoo Archives: gentoo-commits

From: "Nirbheek Chauhan (nirbheek)" <nirbheek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/gobject-introspection: gobject-introspection-0.10.3.ebuild ChangeLog gobject-introspection-0.10.1.ebuild
Date: Wed, 23 Feb 2011 17:02:34
Message-Id: 20110223170225.0451520054@flycatcher.gentoo.org
1 nirbheek 11/02/23 17:02:24
2
3 Modified: ChangeLog
4 Added: gobject-introspection-0.10.3.ebuild
5 Removed: gobject-introspection-0.10.1.ebuild
6 Log:
7 Bump to 0.10.3, lots of introspection building fixes
8
9 (Portage version: 2.1.9.41/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.17 dev-libs/gobject-introspection/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gobject-introspection/ChangeLog?rev=1.17&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gobject-introspection/ChangeLog?rev=1.17&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gobject-introspection/ChangeLog?r1=1.16&r2=1.17
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-libs/gobject-introspection/ChangeLog,v
21 retrieving revision 1.16
22 retrieving revision 1.17
23 diff -u -r1.16 -r1.17
24 --- ChangeLog 8 Feb 2011 09:54:03 -0000 1.16
25 +++ ChangeLog 23 Feb 2011 17:02:24 -0000 1.17
26 @@ -1,6 +1,13 @@
27 # ChangeLog for dev-libs/gobject-introspection
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/gobject-introspection/ChangeLog,v 1.16 2011/02/08 09:54:03 pacho Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/gobject-introspection/ChangeLog,v 1.17 2011/02/23 17:02:24 nirbheek Exp $
31 +
32 +*gobject-introspection-0.10.3 (23 Feb 2011)
33 +
34 + 23 Feb 2011; Nirbheek Chauhan <nirbheek@g.o>
35 + -gobject-introspection-0.10.1.ebuild,
36 + +gobject-introspection-0.10.3.ebuild:
37 + Bump to 0.10.3, lots of introspection building fixes
38
39 *gobject-introspection-0.10.2 (08 Feb 2011)
40
41
42
43
44 1.1 dev-libs/gobject-introspection/gobject-introspection-0.10.3.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gobject-introspection/gobject-introspection-0.10.3.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gobject-introspection/gobject-introspection-0.10.3.ebuild?rev=1.1&content-type=text/plain
48
49 Index: gobject-introspection-0.10.3.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-libs/gobject-introspection/gobject-introspection-0.10.3.ebuild,v 1.1 2011/02/23 17:02:24 nirbheek Exp $
54
55 EAPI="3"
56 GCONF_DEBUG="no"
57 PYTHON_DEPEND="2:2.5"
58
59 inherit gnome2 python
60
61 DESCRIPTION="Introspection infrastructure for gobject library bindings"
62 HOMEPAGE="http://live.gnome.org/GObjectIntrospection/"
63
64 LICENSE="LGPL-2 GPL-2"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
67 IUSE="doc test"
68
69 RDEPEND=">=dev-libs/glib-2.24:2
70 virtual/libffi"
71 DEPEND="${RDEPEND}
72 dev-util/pkgconfig
73 sys-devel/flex
74 doc? ( >=dev-util/gtk-doc-1.12 )
75 test? ( x11-libs/cairo )"
76
77 pkg_setup() {
78 DOCS="AUTHORS CONTRIBUTORS ChangeLog NEWS README TODO"
79 G2CONF="${G2CONF}
80 --disable-static
81 $(use_enable test tests)"
82
83 python_set_active_version 2
84 }
85
86 src_prepare() {
87 # FIXME: Parallel compilation failure with USE=doc
88 use doc && MAKEOPTS="-j1"
89
90 # Don't pre-compile .py
91 ln -sf $(type -P true) py-compile
92 }
93
94 src_install() {
95 gnome2_src_install
96 python_convert_shebangs 2 "${ED}"usr/bin/g-ir-scanner
97 python_convert_shebangs 2 "${ED}"usr/bin/g-ir-annotation-tool
98 find "${ED}" -name "*.la" -delete || die "la files removal failed"
99 }
100
101 pkg_postinst() {
102 python_mod_optimize /usr/$(get_libdir)/${PN}/giscanner
103 python_need_rebuild
104 }
105
106 pkg_postrm() {
107 python_mod_cleanup /usr/lib*/${PN}/giscanner
108 }