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-python/pyclutter: pyclutter-1.0.2.ebuild ChangeLog
Date: Sat, 26 Jun 2010 02:34:52
Message-Id: 20100626023445.576D82CF6F@corvid.gentoo.org
1 nirbheek 10/06/26 02:34:44
2
3 Modified: ChangeLog
4 Added: pyclutter-1.0.2.ebuild
5 Log:
6 Bump to 1.0.2, force the new glx/x11 modules to always-on and depend on clutter-1.2
7 (Portage version: 2.1.8.3/cvs/Linux i686)
8
9 Revision Changes Path
10 1.2 dev-python/pyclutter/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyclutter/ChangeLog?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyclutter/ChangeLog?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyclutter/ChangeLog?r1=1.1&r2=1.2
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyclutter/ChangeLog,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ChangeLog 26 Feb 2010 22:42:28 -0000 1.1
23 +++ ChangeLog 26 Jun 2010 02:34:44 -0000 1.2
24 @@ -1,6 +1,13 @@
25 # ChangeLog for dev-python/pyclutter
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyclutter/ChangeLog,v 1.1 2010/02/26 22:42:28 nirbheek Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyclutter/ChangeLog,v 1.2 2010/06/26 02:34:44 nirbheek Exp $
29 +
30 +*pyclutter-1.0.2 (26 Jun 2010)
31 +
32 + 26 Jun 2010; Nirbheek Chauhan <nirbheek@g.o>
33 + +pyclutter-1.0.2.ebuild:
34 + Bump to 1.0.2, force the new glx/x11 modules to always-on and depend on
35 + clutter-1.2
36
37 *pyclutter-1.0.0 (26 Feb 2010)
38
39
40
41
42 1.1 dev-python/pyclutter/pyclutter-1.0.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyclutter/pyclutter-1.0.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyclutter/pyclutter-1.0.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pyclutter-1.0.2.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyclutter/pyclutter-1.0.2.ebuild,v 1.1 2010/06/26 02:34:44 nirbheek Exp $
52
53 EAPI="2"
54
55 inherit eutils python clutter
56
57 DESCRIPTION="Python bindings for Clutter"
58
59 KEYWORDS="~amd64 ~x86"
60 IUSE="doc examples"
61
62 SLOT="1.0"
63 RDEPEND=">=dev-lang/python-2.5
64 >=dev-python/pygtk-2.8.0
65 >=dev-python/pycairo-1.0.2
66 >=media-libs/clutter-1.2.0:${SLOT}"
67 DEPEND="${RDEPEND}
68 doc? ( dev-libs/libxslt )"
69 EXAMPLES="examples/{*.py,*.png}"
70
71 src_configure() {
72 ln -sf $(type -P true) py-compile
73 local myconf="
74 --with-clutterx11=yes
75 --with-clutterglx=yes
76 $(use_enable doc docs)"
77
78 econf ${myconf}
79 }
80
81 src_install() {
82 # FIXME: Parallel make failure in emake install
83 MAKEOPTS="-j1" clutter_src_install
84 }
85
86 pkg_postinst() {
87 python_mod_optimize $(python_get_sitedir)/clutter
88 python_need_rebuild
89 }
90
91 pkg_postrm() {
92 python_mod_cleanup /usr/lib*/python*/site-packages/clutter
93 }