Gentoo Archives: gentoo-commits

From: "Jesus Rivero (neurogeek)" <neurogeek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/jinja2/files: jinja2-2.0_no_docs.patch
Date: Fri, 24 Oct 2008 05:40:31
Message-Id: E1KtFPR-000665-Gh@stork.gentoo.org
1 neurogeek 08/10/24 05:40:29
2
3 Added: jinja2-2.0_no_docs.patch
4 Log:
5 Initial commit. Bug #237036
6 (Portage version: 2.2_rc12/cvs/Linux 2.6.18-gentoo-r3 i686)
7
8 Revision Changes Path
9 1.1 dev-python/jinja2/files/jinja2-2.0_no_docs.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/jinja2/files/jinja2-2.0_no_docs.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/jinja2/files/jinja2-2.0_no_docs.patch?rev=1.1&content-type=text/plain
13
14 Index: jinja2-2.0_no_docs.patch
15 ===================================================================
16 --- setup.py.orig 2008-10-23 07:58:41.000000000 -0400
17 +++ setup.py 2008-10-23 07:58:55.000000000 -0400
18 @@ -53,15 +53,15 @@
19
20
21 data_files = []
22 -documentation_path = 'docs/_build/html'
23 -if os.path.exists(documentation_path):
24 - documentation_files = []
25 - for fn in os.listdir(documentation_path):
26 - if not fn.startswith('.'):
27 - fn = os.path.join(documentation_path, fn)
28 - if os.path.isfile(fn):
29 - documentation_files.append(fn)
30 - data_files.append(('docs', documentation_files))
31 +#documentation_path = 'docs/_build/html'
32 +#if os.path.exists(documentation_path):
33 +# documentation_files = []
34 +# for fn in os.listdir(documentation_path):
35 +# if not fn.startswith('.'):
36 +# fn = os.path.join(documentation_path, fn)
37 +# if os.path.isfile(fn):
38 +# documentation_files.append(fn)
39 +# data_files.append(('docs', documentation_files))
40
41
42 def get_terminal_width():