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-misc/gnome-blog: gnome-blog-0.9.2.ebuild ChangeLog
Date: Wed, 31 Mar 2010 22:06:55
Message-Id: E1Nx63p-00051W-VK@stork.gentoo.org
1 eva 10/03/31 22:06:53
2
3 Modified: ChangeLog
4 Added: gnome-blog-0.9.2.ebuild
5 Log:
6 Version bump. Bug fixes and translation updates.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.25 net-misc/gnome-blog/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gnome-blog/ChangeLog?rev=1.25&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gnome-blog/ChangeLog?rev=1.25&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gnome-blog/ChangeLog?r1=1.24&r2=1.25
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/gnome-blog/ChangeLog,v
19 retrieving revision 1.24
20 retrieving revision 1.25
21 diff -u -r1.24 -r1.25
22 --- ChangeLog 3 May 2009 17:02:26 -0000 1.24
23 +++ ChangeLog 31 Mar 2010 22:06:53 -0000 1.25
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-misc/gnome-blog
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/gnome-blog/ChangeLog,v 1.24 2009/05/03 17:02:26 eva Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/gnome-blog/ChangeLog,v 1.25 2010/03/31 22:06:53 eva Exp $
30 +
31 +*gnome-blog-0.9.2 (31 Mar 2010)
32 +
33 + 31 Mar 2010; Gilles Dartiguelongue <eva@g.o>
34 + +gnome-blog-0.9.2.ebuild:
35 + Version bump. Bug fixes and translation updates.
36
37 03 May 2009; Gilles Dartiguelongue <eva@g.o>
38 gnome-blog-0.9.1.ebuild:
39
40
41
42 1.1 net-misc/gnome-blog/gnome-blog-0.9.2.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gnome-blog/gnome-blog-0.9.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gnome-blog/gnome-blog-0.9.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gnome-blog-0.9.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/net-misc/gnome-blog/gnome-blog-0.9.2.ebuild,v 1.1 2010/03/31 22:06:53 eva Exp $
52
53 EAPI="2"
54 GCONF_DEBUG="no"
55
56 inherit gnome2 python
57
58 DESCRIPTION="Post entries to your blog right from the Gnome panel"
59 HOMEPAGE="http://www.gnome.org/~seth/gnome-blog/"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE=""
65
66 RDEPEND=">=gnome-base/gconf-2
67 >=dev-python/pygtk-2.6
68
69 >=dev-python/gconf-python-2
70 >=dev-python/libgnome-python-2
71 >=dev-python/gnome-applets-python-2
72 >=dev-python/gnome-vfs-python-2
73 >=dev-python/gtkspell-python-2
74 >=dev-python/gdata-2"
75 DEPEND="${RDEPEND}
76 dev-util/desktop-file-utils
77 >=dev-util/intltool-0.35
78 >=dev-util/pkgconfig-0.9"
79
80 DOCS="AUTHORS ChangeLog NEWS README TODO"
81
82 src_prepare() {
83 gnome2_src_prepare
84
85 # Let this file be re-created so the path in the <oaf_server> element is
86 # correct. See bug #93612.
87 rm -f GNOME_BlogApplet.server.in || die "rm failed"
88
89 # disable pyc compiling
90 mv py-compile py-compile.orig
91 ln -s $(type -P true) py-compile
92 }
93
94 pkg_postinst() {
95 gnome2_pkg_postinst
96 python_mod_optimize $(python_get_sitedir)/gnomeblog
97 }
98
99 pkg_postrm() {
100 gnome2_pkg_postrm
101 python_mod_cleanup /usr/$(get_libdir)/python*/site-packages/gnomeblog
102 }