Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/notify-python: notify-python-0.1.1-r3.ebuild ChangeLog
Date: Thu, 28 Feb 2013 16:42:32
Message-Id: 20130228164227.4A7702171D@flycatcher.gentoo.org
1 mgorny 13/02/28 16:42:27
2
3 Modified: notify-python-0.1.1-r3.ebuild ChangeLog
4 Log:
5 Let autotools compile the bytecode. Fix compressing examples. Enable tests.
6
7 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 9627F456F9DA7643!)
8
9 Revision Changes Path
10 1.2 dev-python/notify-python/notify-python-0.1.1-r3.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/notify-python-0.1.1-r3.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/notify-python-0.1.1-r3.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/notify-python-0.1.1-r3.ebuild?r1=1.1&r2=1.2
15
16 Index: notify-python-0.1.1-r3.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/notify-python/notify-python-0.1.1-r3.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- notify-python-0.1.1-r3.ebuild 20 Feb 2013 10:44:05 -0000 1.1
23 +++ notify-python-0.1.1-r3.ebuild 28 Feb 2013 16:42:27 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/notify-python/notify-python-0.1.1-r3.ebuild,v 1.1 2013/02/20 10:44:05 jlec Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/notify-python/notify-python-0.1.1-r3.ebuild,v 1.2 2013/02/28 16:42:27 mgorny Exp $
29
30 EAPI=5
31
32 @@ -26,10 +26,6 @@
33 PATCHES=( "${FILESDIR}"/${P}-libnotify-0.7.patch )
34
35 src_prepare() {
36 - # Disable byte-compilation.
37 - rm -f py-compile || die
38 - ln -s $(type -P true) py-compile || die
39 -
40 # Remove the old pynotify.c to ensure it's properly regenerated #212128.
41 rm -f src/pynotify.c || die
42 autotools-utils_src_prepare
43 @@ -43,17 +39,18 @@
44 python_foreach_impl autotools-utils_src_compile
45 }
46
47 +src_test() {
48 + python_foreach_impl autotools-utils_src_test
49 +}
50 +
51 src_install() {
52 - installation() {
53 - autotools-utils_src_install
54 - python_optimize "${D}"$(python_get_sitedir)
55 - prune_libtool_files --all
56 - }
57 - python_foreach_impl installation
58 + python_foreach_impl autotools-utils_src_install
59 + prune_libtool_files --all
60
61 # Requested from bug 351879.
62 if use examples; then
63 - insinto /usr/share/doc/${PF}/examples
64 - doins tests/*.{png,py}
65 + docinto examples
66 + dodoc tests/*.{png,py}
67 + docompress -x /usr/share/doc/${PF}/examples
68 fi
69 }
70
71
72
73 1.40 dev-python/notify-python/ChangeLog
74
75 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/ChangeLog?rev=1.40&view=markup
76 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/ChangeLog?rev=1.40&content-type=text/plain
77 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/notify-python/ChangeLog?r1=1.39&r2=1.40
78
79 Index: ChangeLog
80 ===================================================================
81 RCS file: /var/cvsroot/gentoo-x86/dev-python/notify-python/ChangeLog,v
82 retrieving revision 1.39
83 retrieving revision 1.40
84 diff -u -r1.39 -r1.40
85 --- ChangeLog 20 Feb 2013 10:44:05 -0000 1.39
86 +++ ChangeLog 28 Feb 2013 16:42:27 -0000 1.40
87 @@ -1,6 +1,9 @@
88 # ChangeLog for dev-python/notify-python
89 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
90 -# $Header: /var/cvsroot/gentoo-x86/dev-python/notify-python/ChangeLog,v 1.39 2013/02/20 10:44:05 jlec Exp $
91 +# $Header: /var/cvsroot/gentoo-x86/dev-python/notify-python/ChangeLog,v 1.40 2013/02/28 16:42:27 mgorny Exp $
92 +
93 + 28 Feb 2013; Michał Górny <mgorny@g.o> notify-python-0.1.1-r3.ebuild:
94 + Let autotools compile the bytecode. Fix compressing examples. Enable tests.
95
96 *notify-python-0.1.1-r3 (20 Feb 2013)