Magellan Linux

Annotation of /trunk/python/patches/python-2.7.0-lib64-2.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1091 - (hide annotations) (download)
Thu Aug 19 11:28:54 2010 UTC (13 years, 10 months ago) by niro
File size: 7445 byte(s)
-fixed patch

1 niro 1091 diff -Naur Python-2.7/Lib/distutils/command/install.py Python-2.7-magellan/Lib/distutils/command/install.py
2     --- Python-2.7/Lib/distutils/command/install.py 2010-05-05 21:09:31.000000000 +0200
3     +++ Python-2.7-magellan/Lib/distutils/command/install.py 2010-08-19 13:29:01.000000000 +0200
4     @@ -42,14 +42,14 @@
5     INSTALL_SCHEMES = {
6     'unix_prefix': {
7     'purelib': '$base/lib/python$py_version_short/site-packages',
8     - 'platlib': '$platbase/lib/python$py_version_short/site-packages',
9     + 'platlib': '$platbase/lib64/python$py_version_short/site-packages',
10     'headers': '$base/include/python$py_version_short/$dist_name',
11     'scripts': '$base/bin',
12     'data' : '$base',
13     },
14     'unix_home': {
15     'purelib': '$base/lib/python',
16     - 'platlib': '$base/lib/python',
17     + 'platlib': '$base/lib64/python',
18     'headers': '$base/include/python/$dist_name',
19     'scripts': '$base/bin',
20     'data' : '$base',
21     diff -Naur Python-2.7/Lib/distutils/sysconfig.py Python-2.7-magellan/Lib/distutils/sysconfig.py
22     --- Python-2.7/Lib/distutils/sysconfig.py 2010-05-05 21:09:31.000000000 +0200
23     +++ Python-2.7-magellan/Lib/distutils/sysconfig.py 2010-08-19 13:31:01.000000000 +0200
24     @@ -114,8 +114,12 @@
25     prefix = plat_specific and EXEC_PREFIX or PREFIX
26    
27     if os.name == "posix":
28     + if plat_specific or standard_lib:
29     + lib = "lib64"
30     + else:
31     + lib = "lib"
32     libpython = os.path.join(prefix,
33     - "lib", "python" + get_python_version())
34     + lib, "python" + get_python_version())
35     if standard_lib:
36     return libpython
37     else:
38     diff -Naur Python-2.7/Lib/site.py Python-2.7-magellan/Lib/site.py
39     --- Python-2.7/Lib/site.py 2010-06-03 23:21:03.000000000 +0200
40     +++ Python-2.7-magellan/Lib/site.py 2010-08-19 13:32:22.000000000 +0200
41     @@ -286,12 +286,16 @@
42     if sys.platform in ('os2emx', 'riscos'):
43     sitepackages.append(os.path.join(prefix, "Lib", "site-packages"))
44     elif os.sep == '/':
45     + sitepackages.append(os.path.join(prefix, "lib64",
46     + "python" + sys.version[:3],
47     + "site-packages"))
48     sitepackages.append(os.path.join(prefix, "lib",
49     "python" + sys.version[:3],
50     "site-packages"))
51     sitepackages.append(os.path.join(prefix, "lib", "site-python"))
52     else:
53     sitepackages.append(prefix)
54     + sitepackages.append(os.path.join(prefix, "lib64", "site-packages"))
55     sitepackages.append(os.path.join(prefix, "lib", "site-packages"))
56     if sys.platform == "darwin":
57     # for framework builds *only* we add the standard Apple
58     diff -Naur Python-2.7/Makefile.pre.in Python-2.7-magellan/Makefile.pre.in
59     --- Python-2.7/Makefile.pre.in 2010-04-12 02:10:46.000000000 +0200
60     +++ Python-2.7-magellan/Makefile.pre.in 2010-08-19 13:32:44.000000000 +0200
61     @@ -94,7 +94,7 @@
62     MANDIR= @mandir@
63     INCLUDEDIR= @includedir@
64     CONFINCLUDEDIR= $(exec_prefix)/include
65     -SCRIPTDIR= $(prefix)/lib
66     +SCRIPTDIR= $(prefix)/lib64
67    
68     # Detailed destination directories
69     BINLIBDEST= $(LIBDIR)/python$(VERSION)
70     diff -Naur Python-2.7/Modules/getpath.c Python-2.7-magellan/Modules/getpath.c
71     --- Python-2.7/Modules/getpath.c 2010-05-09 16:46:46.000000000 +0200
72     +++ Python-2.7-magellan/Modules/getpath.c 2010-08-19 13:34:29.000000000 +0200
73     @@ -117,8 +117,8 @@
74     #endif
75    
76     #ifndef PYTHONPATH
77     -#define PYTHONPATH PREFIX "/lib/python" VERSION ":" \
78     - EXEC_PREFIX "/lib/python" VERSION "/lib-dynload"
79     +#define PYTHONPATH PREFIX "/lib64/python" VERSION ":" \
80     + EXEC_PREFIX "/lib64/python" VERSION "/lib-dynload"
81     #endif
82    
83     #ifndef LANDMARK
84     @@ -129,7 +129,7 @@
85     static char exec_prefix[MAXPATHLEN+1];
86     static char progpath[MAXPATHLEN+1];
87     static char *module_search_path = NULL;
88     -static char lib_python[] = "lib/python" VERSION;
89     +static char lib_python[] = "lib64/python" VERSION;
90    
91     static void
92     reduce(char *dir)
93     @@ -524,7 +524,7 @@
94     }
95     else
96     strncpy(zip_path, PREFIX, MAXPATHLEN);
97     - joinpath(zip_path, "lib/python00.zip");
98     + joinpath(zip_path, "lib64/python00.zip");
99     bufsz = strlen(zip_path); /* Replace "00" with version */
100     zip_path[bufsz - 6] = VERSION[0];
101     zip_path[bufsz - 5] = VERSION[2];
102     @@ -534,7 +534,7 @@
103     fprintf(stderr,
104     "Could not find platform dependent libraries <exec_prefix>\n");
105     strncpy(exec_prefix, EXEC_PREFIX, MAXPATHLEN);
106     - joinpath(exec_prefix, "lib/lib-dynload");
107     + joinpath(exec_prefix, "lib64/lib-dynload");
108     }
109     /* If we found EXEC_PREFIX do *not* reduce it! (Yet.) */
110    
111     diff -Naur Python-2.7/Modules/Setup.dist Python-2.7-magellan/Modules/Setup.dist
112     --- Python-2.7/Modules/Setup.dist 2009-12-21 16:22:00.000000000 +0100
113     +++ Python-2.7-magellan/Modules/Setup.dist 2010-08-19 13:37:22.000000000 +0200
114     @@ -414,7 +414,7 @@
115     #DB=/usr/local/BerkeleyDB.4.0
116     #DBLIBVER=4.0
117     #DBINC=$(DB)/include
118     -#DBLIB=$(DB)/lib
119     +#DBLIB=$(DB)/lib64
120     #_bsddb _bsddb.c -I$(DBINC) -L$(DBLIB) -ldb-$(DBLIBVER)
121    
122     # Historical Berkeley DB 1.85
123     @@ -460,7 +460,7 @@
124     # Andrew Kuchling's zlib module.
125     # This require zlib 1.1.3 (or later).
126     # See http://www.gzip.org/zlib/
127     -#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
128     +#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib64 -lz
129    
130     # Interface to the Expat XML parser
131     #
132     diff -Naur Python-2.7/setup.py Python-2.7-magellan/setup.py
133     --- Python-2.7/setup.py 2010-06-27 14:36:16.000000000 +0200
134     +++ Python-2.7-magellan/setup.py 2010-08-19 13:38:41.000000000 +0200
135     @@ -347,7 +347,7 @@
136    
137     def detect_modules(self):
138     # Ensure that /usr/local is always used
139     - add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib')
140     + add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib64')
141     add_dir_to_list(self.compiler.include_dirs, '/usr/local/include')
142    
143     # Add paths specified in the environment variables LDFLAGS and
144     @@ -643,11 +643,11 @@
145     elif curses_library:
146     readline_libs.append(curses_library)
147     elif self.compiler.find_library_file(lib_dirs +
148     - ['/usr/lib/termcap'],
149     + ['/usr/lib64/termcap'],
150     'termcap'):
151     readline_libs.append('termcap')
152     exts.append( Extension('readline', ['readline.c'],
153     - library_dirs=['/usr/lib/termcap'],
154     + library_dirs=['/usr/lib64/termcap'],
155     extra_link_args=readline_extra_link_args,
156     libraries=readline_libs) )
157     else:
158     @@ -681,8 +681,8 @@
159     if krb5_h:
160     ssl_incs += krb5_h
161     ssl_libs = find_library_file(self.compiler, 'ssl',lib_dirs,
162     - ['/usr/local/ssl/lib',
163     - '/usr/contrib/ssl/lib/'
164     + ['/usr/local/ssl/lib64',
165     + '/usr/contrib/ssl/lib64/'
166     ] )
167    
168     if (ssl_incs is not None and