Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-accessibility/accerciser: ChangeLog accerciser-3.2.1.ebuild
Date: Sun, 20 Nov 2011 22:52:27
Message-Id: 20111120225217.05CC52004B@flycatcher.gentoo.org
1 eva 11/11/20 22:52:17
2
3 Modified: ChangeLog
4 Added: accerciser-3.2.1.ebuild
5 Log:
6 Version bump. Port to gobject-introspection.
7
8 (Portage version: 2.2.0_alpha75/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.23 app-accessibility/accerciser/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/accerciser/ChangeLog?rev=1.23&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/accerciser/ChangeLog?rev=1.23&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/accerciser/ChangeLog?r1=1.22&r2=1.23
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-accessibility/accerciser/ChangeLog,v
20 retrieving revision 1.22
21 retrieving revision 1.23
22 diff -u -r1.22 -r1.23
23 --- ChangeLog 19 Aug 2011 11:21:53 -0000 1.22
24 +++ ChangeLog 20 Nov 2011 22:52:16 -0000 1.23
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-accessibility/accerciser
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/accerciser/ChangeLog,v 1.22 2011/08/19 11:21:53 nirbheek Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/accerciser/ChangeLog,v 1.23 2011/11/20 22:52:16 eva Exp $
30 +
31 +*accerciser-3.2.1 (20 Nov 2011)
32 +
33 + 20 Nov 2011; Gilles Dartiguelongue <eva@g.o> +accerciser-3.2.1.ebuild:
34 + Version bump. Port to gobject-introspection.
35
36 19 Aug 2011; Nirbheek Chauhan <nirbheek@g.o> accerciser-1.12.1.ebuild:
37 Fix slot deps on pygtk, pygobject, at-spi
38
39
40
41 1.1 app-accessibility/accerciser/accerciser-3.2.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/accerciser/accerciser-3.2.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/accerciser/accerciser-3.2.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: accerciser-3.2.1.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-accessibility/accerciser/accerciser-3.2.1.ebuild,v 1.1 2011/11/20 22:52:16 eva Exp $
51
52 EAPI="4"
53 GCONF_DEBUG="no"
54 PYTHON_DEPEND="2:2.4"
55
56 inherit gnome2 python
57
58 DESCRIPTION="Interactive Python accessibility explorer"
59 HOMEPAGE="http://live.gnome.org/Accerciser"
60
61 LICENSE="BSD"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE=""
65
66 RDEPEND="dev-python/ipython
67 >=dev-python/pygobject-2.90.3:3
68 dev-python/librsvg-python
69 >=dev-python/pyatspi-2.1.5
70 dev-python/pycairo
71
72 >=gnome-base/gconf-3:2[introspection]
73 >=x11-libs/libwnck-3:3[introspection]
74 >=gnome-extra/at-spi-2.1.5:2
75 dev-libs/atk[introspection]
76 >=dev-libs/glib-2.28:2
77 x11-libs/gdk-pixbuf[introspection]
78 >=x11-libs/gtk+-3.1.13:3[introspection]"
79 DEPEND="${RDEPEND}
80 sys-devel/gettext
81 >=dev-util/intltool-0.35
82 app-text/scrollkeeper
83 >=app-text/gnome-doc-utils-0.17.3"
84
85 pkg_setup() {
86 G2CONF="${G2CONF} --without-pyreqs"
87 DOCS="AUTHORS COPYING ChangeLog NEWS README"
88 python_set_active_version 2
89 python_pkg_setup
90 }
91
92 src_prepare() {
93 gnome2_src_prepare
94
95 # disable pyc compiling
96 mv "${S}"/py-compile "${S}"/py-compile.orig
97 ln -s $(type -P true) "${S}"/py-compile
98
99 python_convert_shebangs -r 2 .
100 }
101
102 pkg_postinst() {
103 gnome2_pkg_postinst
104 python_need_rebuild
105 python_mod_optimize "${PN}"
106 }
107
108 pkg_postrm() {
109 gnome2_pkg_postrm
110 python_mod_cleanup "${PN}"
111 }