Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libpeas: libpeas-1.6.2.ebuild ChangeLog
Date: Sun, 25 Nov 2012 21:21:56
Message-Id: 20121125212146.05A0D20C65@flycatcher.gentoo.org
1 eva 12/11/25 21:21:45
2
3 Modified: ChangeLog
4 Added: libpeas-1.6.2.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key C6085806)
9
10 Revision Changes Path
11 1.9 dev-libs/libpeas/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libpeas/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libpeas/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libpeas/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libpeas/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 20 Oct 2012 06:46:36 -0000 1.8
24 +++ ChangeLog 25 Nov 2012 21:21:45 -0000 1.9
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/libpeas
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpeas/ChangeLog,v 1.8 2012/10/20 06:46:36 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpeas/ChangeLog,v 1.9 2012/11/25 21:21:45 eva Exp $
30 +
31 +*libpeas-1.6.2 (25 Nov 2012)
32 +
33 + 25 Nov 2012; Gilles Dartiguelongue <eva@g.o> +libpeas-1.6.2.ebuild:
34 + Version bump.
35
36 *libpeas-1.6.1 (20 Oct 2012)
37
38
39
40
41 1.1 dev-libs/libpeas/libpeas-1.6.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libpeas/libpeas-1.6.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libpeas/libpeas-1.6.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libpeas-1.6.2.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libpeas/libpeas-1.6.2.ebuild,v 1.1 2012/11/25 21:21:45 eva Exp $
51
52 EAPI="4"
53 GCONF_DEBUG="no"
54 GNOME2_LA_PUNT="yes"
55 PYTHON_DEPEND="python? 2:2.5"
56
57 inherit eutils gnome2 multilib python virtualx
58
59 DESCRIPTION="A GObject plugins library"
60 HOMEPAGE="http://developer.gnome.org/libpeas/stable/"
61
62 LICENSE="LGPL-2+"
63 SLOT="0"
64 IUSE="gjs +gtk glade +python seed"
65 KEYWORDS="~amd64 ~ppc ~x86 ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux"
66
67 RDEPEND=">=dev-libs/glib-2.32:2
68 >=dev-libs/gobject-introspection-0.10.1
69 gjs? ( >=dev-libs/gjs-1.31.11 )
70 glade? ( >=dev-util/glade-3.9.1:3.10 )
71 gtk? ( >=x11-libs/gtk+-3:3[introspection] )
72 python? ( >=dev-python/pygobject-3.0.0:3 )
73 seed? ( >=dev-libs/seed-2.91.91 )"
74 DEPEND="${RDEPEND}
75 >=dev-util/intltool-0.40
76 >=sys-devel/gettext-0.17"
77
78 pkg_setup() {
79 python_set_active_version 2
80 python_pkg_setup
81 }
82
83 src_prepare() {
84 DOCS="AUTHORS ChangeLog NEWS README"
85
86 G2CONF="${G2CONF}
87 $(use_enable gjs)
88 $(use_enable glade glade-catalog)
89 $(use_enable gtk)
90 $(use_enable python)
91 $(use_enable seed)
92 --disable-deprecation
93 --disable-static"
94 # Wtf, --disable-gcov, --enable-gcov=no, --enable-gcov, all enable gcov
95 # What do we do about gdb, valgrind, gcov, etc?
96
97 use python && python_clean_py-compile_files
98 gnome2_src_prepare
99 }
100
101 src_test() {
102 # FIXME: Tests fail because of some bug involving Xvfb and Gtk.IconTheme
103 # DO NOT REPORT UPSTREAM, this is not a libpeas bug.
104 # To reproduce:
105 # >>> from gi.repository import Gtk
106 # >>> Gtk.IconTheme.get_default().has_icon("gtk-about")
107 # This should return True, it returns False for Xvfb
108 Xemake check
109 }
110
111 pkg_postinst() {
112 gnome2_pkg_postinst
113 use python && python_mod_optimize /usr/$(get_libdir)/peas-demo
114 }
115
116 pkg_postrm() {
117 gnome2_pkg_postrm
118 use python && python_mod_cleanup /usr/$(get_libdir)/peas-demo
119 }