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/qscintilla-python/files: qscintilla-python-2.1-nostrip.patch
Date: Tue, 04 Dec 2007 10:18:07
Message-Id: E1IzUql-0006tR-9F@stork.gentoo.org
1 hawking 07/12/04 10:17:59
2
3 Added: qscintilla-python-2.1-nostrip.patch
4 Log:
5 Added patch to disable stripping, #199925
6 (Portage version: 2.1.4_rc4)
7
8 Revision Changes Path
9 1.1 dev-python/qscintilla-python/files/qscintilla-python-2.1-nostrip.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/files/qscintilla-python-2.1-nostrip.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/qscintilla-python/files/qscintilla-python-2.1-nostrip.patch?rev=1.1&content-type=text/plain
13
14 Index: qscintilla-python-2.1-nostrip.patch
15 ===================================================================
16 --- configure.py 2007-06-01 20:10:16.000000000 +0300
17 +++ configure.py 2007-12-04 11:51:56.000000000 +0200
18 @@ -229,7 +229,8 @@
19 installs=installs,
20 static=opt_static,
21 debug=opt_debug,
22 - universal=pyqt.universal
23 + universal=pyqt.universal,
24 + strip=0
25 )
26 elif pyqt.pyqt_version >= 0x040000:
27 makefile = pyqt4.QtGuiModuleMakefile(
28 @@ -238,7 +239,8 @@
29 install_dir=opt_qscimoddir,
30 installs=installs,
31 static=opt_static,
32 - debug=opt_debug
33 + debug=opt_debug,
34 + strip=0
35 )
36 else:
37 makefile = pyqt3.QtModuleMakefile(
38 @@ -247,7 +249,8 @@
39 install_dir=opt_qscimoddir,
40 installs=installs,
41 static=opt_static,
42 - debug=opt_debug
43 + debug=opt_debug,
44 + strip=0
45 )
46
47 makefile.extra_include_dirs.append(opt_qsciincdir)
48
49
50
51 --
52 gentoo-commits@g.o mailing list