Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/christine: ChangeLog christine-0.4.0.ebuild
Date: Fri, 28 May 2010 19:16:51
Message-Id: 20100528191645.E5CFB2CF37@corvid.gentoo.org
1 arfrever 10/05/28 19:16:45
2
3 Modified: ChangeLog christine-0.4.0.ebuild
4 Log:
5 Delete call to deprecated python_version().
6 (Portage version: HEAD/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.6 media-sound/christine/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/christine/ChangeLog?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/christine/ChangeLog?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/christine/ChangeLog?r1=1.5&r2=1.6
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-sound/christine/ChangeLog,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- ChangeLog 8 Sep 2009 11:43:25 -0000 1.5
22 +++ ChangeLog 28 May 2010 19:16:45 -0000 1.6
23 @@ -1,6 +1,10 @@
24 # ChangeLog for media-sound/christine
25 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-sound/christine/ChangeLog,v 1.5 2009/09/08 11:43:25 ssuominen Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/christine/ChangeLog,v 1.6 2010/05/28 19:16:45 arfrever Exp $
29 +
30 + 28 May 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
31 + christine-0.4.0.ebuild:
32 + Delete call to deprecated python_version().
33
34 08 Sep 2009; Samuli Suominen <ssuominen@g.o>
35 christine-0.4.0.ebuild:
36
37
38
39 1.3 media-sound/christine/christine-0.4.0.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/christine/christine-0.4.0.ebuild?rev=1.3&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/christine/christine-0.4.0.ebuild?rev=1.3&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/christine/christine-0.4.0.ebuild?r1=1.2&r2=1.3
44
45 Index: christine-0.4.0.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/media-sound/christine/christine-0.4.0.ebuild,v
48 retrieving revision 1.2
49 retrieving revision 1.3
50 diff -u -r1.2 -r1.3
51 --- christine-0.4.0.ebuild 8 Sep 2009 11:43:25 -0000 1.2
52 +++ christine-0.4.0.ebuild 28 May 2010 19:16:45 -0000 1.3
53 @@ -1,9 +1,9 @@
54 -# Copyright 1999-2009 Gentoo Foundation
55 +# Copyright 1999-2010 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/media-sound/christine/christine-0.4.0.ebuild,v 1.2 2009/09/08 11:43:25 ssuominen Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/media-sound/christine/christine-0.4.0.ebuild,v 1.3 2010/05/28 19:16:45 arfrever Exp $
59
60 EAPI=2
61 -inherit autotools eutils multilib python
62 +inherit autotools eutils python
63
64 DESCRIPTION="Python, GTK+ and GStreamer based media player (audio and video)"
65 HOMEPAGE="http://christine-project.org"
66 @@ -48,10 +48,9 @@
67 }
68
69 pkg_postinst() {
70 - python_version
71 - python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/lib${PN}
72 + python_mod_optimize $(python_get_sitedir)/lib${PN}
73 }
74
75 pkg_postrm() {
76 - python_mod_cleanup
77 + python_mod_cleanup $(python_get_sitedir)/lib${PN}
78 }