Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/cbflib/files: 0.9.0-python.patch
Date: Mon, 05 Jul 2010 12:45:09
Message-Id: 20100705124506.4A2D12C5F4@corvid.gentoo.org
1 jlec 10/07/05 12:45:06
2
3 Added: 0.9.0-python.patch
4 Log:
5 Small python fix
6 (Portage version: 2.2_rc67/cvs/Linux x86_64, RepoMan options: --force)
7
8 Revision Changes Path
9 1.1 sci-libs/cbflib/files/0.9.0-python.patch
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cbflib/files/0.9.0-python.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cbflib/files/0.9.0-python.patch?rev=1.1&content-type=text/plain
13
14 Index: 0.9.0-python.patch
15 ===================================================================
16 diff --git a/pycbf/setup.py b/pycbf/setup.py
17 index 0763f06..f55a42f 100644
18 --- a/pycbf/setup.py
19 +++ b/pycbf/setup.py
20 @@ -14,4 +14,4 @@ e = Extension('_pycbf',
21 include_dirs = ["../include"] )
22
23 # Build it
24 -setup(name="_pycbf",ext_modules=[e],)
25 +setup(name="_pycbf",ext_modules=[e],py_modules=["pycbf"],)