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 dev-python/setuptools: setuptools-0.6.14.ebuild
Date: Wed, 30 Mar 2011 16:58:58
Message-Id: 20110330165848.9C45220054@flycatcher.gentoo.org
1 arfrever 11/03/30 16:58:48
2
3 Modified: setuptools-0.6.14.ebuild
4 Log:
5 Improve src_test().
6
7 (Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.14 dev-python/setuptools/setuptools-0.6.14.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/setuptools/setuptools-0.6.14.ebuild?rev=1.14&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/setuptools/setuptools-0.6.14.ebuild?rev=1.14&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/setuptools/setuptools-0.6.14.ebuild?r1=1.13&r2=1.14
15
16 Index: setuptools-0.6.14.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/setuptools/setuptools-0.6.14.ebuild,v
19 retrieving revision 1.13
20 retrieving revision 1.14
21 diff -u -r1.13 -r1.14
22 --- setuptools-0.6.14.ebuild 30 Mar 2011 15:01:55 -0000 1.13
23 +++ setuptools-0.6.14.ebuild 30 Mar 2011 16:58:48 -0000 1.14
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2011 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/setuptools/setuptools-0.6.14.ebuild,v 1.13 2011/03/30 15:01:55 arfrever Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/setuptools/setuptools-0.6.14.ebuild,v 1.14 2011/03/30 16:58:48 arfrever Exp $
29
30 EAPI="3"
31 SUPPORT_PYTHON_ABIS="1"
32 @@ -48,7 +48,7 @@
33
34 python_disable_pyc
35 find "(" -name "*.pyc" -o -name "*\$py.class" ")" -print0 | xargs -0 rm -f
36 - find build-* -name "__pycache__" -print0 | xargs -0 rmdir
37 + find -name "__pycache__" -print0 | xargs -0 rmdir
38 }
39
40 src_install() {