Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/notify-python: ChangeLog notify-python-0.1.1-r1.ebuild
Date: Sat, 29 Jan 2011 16:20:31
Message-Id: 20110129162021.9182A20054@flycatcher.gentoo.org
1 ssuominen 11/01/29 16:20:21
2
3 Modified: ChangeLog notify-python-0.1.1-r1.ebuild
4 Log:
5 Remove useless libtool archive _pynotify.la from site-packages. Fix building with x11-libs/libnotify >= 0.7.
6
7 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.27 dev-python/notify-python/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/ChangeLog?rev=1.27&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/ChangeLog?rev=1.27&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/ChangeLog?r1=1.26&r2=1.27
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/notify-python/ChangeLog,v
19 retrieving revision 1.26
20 retrieving revision 1.27
21 diff -u -r1.26 -r1.27
22 --- ChangeLog 19 Sep 2010 17:03:49 -0000 1.26
23 +++ ChangeLog 29 Jan 2011 16:20:21 -0000 1.27
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-python/notify-python
26 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/notify-python/ChangeLog,v 1.26 2010/09/19 17:03:49 armin76 Exp $
28 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/notify-python/ChangeLog,v 1.27 2011/01/29 16:20:21 ssuominen Exp $
30 +
31 + 29 Jan 2011; Samuli Suominen <ssuominen@g.o>
32 + notify-python-0.1.1-r1.ebuild,
33 + +files/notify-python-0.1.1-libnotify-0.7.patch:
34 + Remove useless libtool archive _pynotify.la from site-packages. Fix building
35 + with x11-libs/libnotify >= 0.7.
36
37 19 Sep 2010; Raúl Porcel <armin76@g.o>
38 notify-python-0.1.1-r1.ebuild:
39
40
41
42 1.18 dev-python/notify-python/notify-python-0.1.1-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/notify-python-0.1.1-r1.ebuild?rev=1.18&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/notify-python-0.1.1-r1.ebuild?rev=1.18&content-type=text/plain
46 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/notify-python-0.1.1-r1.ebuild?r1=1.17&r2=1.18
47
48 Index: notify-python-0.1.1-r1.ebuild
49 ===================================================================
50 RCS file: /var/cvsroot/gentoo-x86/dev-python/notify-python/notify-python-0.1.1-r1.ebuild,v
51 retrieving revision 1.17
52 retrieving revision 1.18
53 diff -u -r1.17 -r1.18
54 --- notify-python-0.1.1-r1.ebuild 19 Sep 2010 17:03:49 -0000 1.17
55 +++ notify-python-0.1.1-r1.ebuild 29 Jan 2011 16:20:21 -0000 1.18
56 @@ -1,13 +1,13 @@
57 -# Copyright 1999-2010 Gentoo Foundation
58 +# Copyright 1999-2011 Gentoo Foundation
59 # Distributed under the terms of the GNU General Public License v2
60 -# $Header: /var/cvsroot/gentoo-x86/dev-python/notify-python/notify-python-0.1.1-r1.ebuild,v 1.17 2010/09/19 17:03:49 armin76 Exp $
61 +# $Header: /var/cvsroot/gentoo-x86/dev-python/notify-python/notify-python-0.1.1-r1.ebuild,v 1.18 2011/01/29 16:20:21 ssuominen Exp $
62
63 EAPI="3"
64 PYTHON_DEPEND="2"
65 SUPPORT_PYTHON_ABIS="1"
66 PYTHON_EXPORT_PHASE_FUNCTIONS="1"
67
68 -inherit python
69 +inherit eutils python
70
71 DESCRIPTION="Python bindings for libnotify"
72 HOMEPAGE="http://www.galago-project.org/"
73 @@ -25,6 +25,8 @@
74 RESTRICT_PYTHON_ABIS="3.*"
75
76 src_prepare() {
77 + has_version ">=x11-libs/libnotify-0.7" && epatch "${FILESDIR}"/${P}-libnotify-0.7.patch
78 +
79 # Disable byte-compilation.
80 mv py-compile py-compile.orig
81 ln -s $(type -P true) py-compile
82 @@ -37,6 +39,7 @@
83
84 src_install() {
85 python_src_install
86 + python_clean_installation_image
87 dodoc AUTHORS ChangeLog NEWS README
88 }