Gentoo Archives: gentoo-commits

From: "Ali Polatel (hawking)" <hawking@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pychecker/files: pychecker-0.8.17-no-data-files.patch
Date: Mon, 01 Sep 2008 22:04:02
Message-Id: E1KaHV9-0003Vy-T7@stork.gentoo.org
1 hawking 08/09/01 22:03:59
2
3 Added: pychecker-0.8.17-no-data-files.patch
4 Log:
5 Revision bump. Add patch by René 'Necoro' Neumann not to install data files under site-packages, #236365
6 (Portage version: -svn/cvs/Linux 2.6.26-gentoo x86_64)
7
8 Revision Changes Path
9 1.1 dev-python/pychecker/files/pychecker-0.8.17-no-data-files.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pychecker/files/pychecker-0.8.17-no-data-files.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pychecker/files/pychecker-0.8.17-no-data-files.patch?rev=1.1&content-type=text/plain
13
14 Index: pychecker-0.8.17-no-data-files.patch
15 ===================================================================
16 === modified file 'setup.py'
17 --- setup.py 2008-09-01 16:31:56 +0000
18 +++ setup.py 2008-09-01 16:33:28 +0000
19 @@ -255,7 +255,9 @@
20 'url' : "http://pychecker.sourceforge.net/",
21 'packages' : [ 'pychecker', ],
22 'scripts' : [ "pychecker" ], # note: will be replaced by customized action
23 - 'data_files' : [ ( "pychecker", DATA_FILES, ) ],
24 + # Gentoo Modification: Do not install data files into site-packages
25 + # use DOCS variable in ebuild instead
26 + #'data_files' : [ ( "pychecker", DATA_FILES, ) ],
27 'long_description' : LONG_DESCRIPTION,
28 'cmdclass' : CUSTOMIZED_ACTIONS,
29 }