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 15:02:09
Message-Id: 20110330150155.F1CCF20051@flycatcher.gentoo.org
1 arfrever 11/03/30 15:01:55
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.13 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.13&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/setuptools/setuptools-0.6.14.ebuild?rev=1.13&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/setuptools/setuptools-0.6.14.ebuild?r1=1.12&r2=1.13
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.12
20 retrieving revision 1.13
21 diff -u -r1.12 -r1.13
22 --- setuptools-0.6.14.ebuild 30 Mar 2011 14:58:16 -0000 1.12
23 +++ setuptools-0.6.14.ebuild 30 Mar 2011 15:01:55 -0000 1.13
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.12 2011/03/30 14:58:16 arfrever Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/setuptools/setuptools-0.6.14.ebuild,v 1.13 2011/03/30 15:01:55 arfrever Exp $
29
30 EAPI="3"
31 SUPPORT_PYTHON_ABIS="1"
32 @@ -47,7 +47,7 @@
33 distutils_src_test
34
35 python_disable_pyc
36 - find -name "*.pyc" -print0 | xargs -0 rm -f
37 + find "(" -name "*.pyc" -o -name "*\$py.class" ")" -print0 | xargs -0 rm -f
38 find build-* -name "__pycache__" -print0 | xargs -0 rmdir
39 }