Hello community,

here is the log from the commit of package python for openSUSE:Factory checked 
in at 2012-04-12 09:46:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python (Old)
 and      /work/SRC/openSUSE:Factory/.python.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/python/python-base.changes       2012-03-05 
14:03:05.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.python.new/python-base.changes  2012-04-12 
09:46:56.000000000 +0200
@@ -1,0 +2,21 @@
+Wed Mar 28 18:19:18 UTC 2012 - [email protected]
+
+- update to 2.7.3rc2
+  * fixes several security issues:
+  * CVE-2012-0845, bnc#747125
+  * CVE-2012-1150, bnc#751718
+  * CVE-2011-4944, bnc#754447
+  * CVE-2011-3389
+- fix for insecure .pypirc (CVE-2011-4944, bnc#754447)
+
+!!important!!
+- disabled test_unicode which segfaults on 64bits.
+  this should not happen, revisit in next RC!
+!!important!!
+
+-------------------------------------------------------------------
+Thu Feb 16 12:33:44 UTC 2012 - [email protected]
+
+- skip broken test_io test on ppc
+
+-------------------------------------------------------------------
python.changes: same change

Old:
----
  Python-2.7.2.tar.bz2
  python-2.7.1-urllib-noproxy.patch
  python-2.7.2-linux3.patch
  python-2.7.2-multilib.patch
  python-2.7rc2-canonicalize2.patch

New:
----
  Python-2.7.3rc2.tar.bz2
  pypirc-secure.diff
  python-2.7.2-disable-tests-in-test_io.patch
  python-2.7.3rc2-canonicalize2.patch
  python-2.7.3rc2-multilib.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-base.spec ++++++
--- /var/tmp/diff_new_pack.xstZZX/_old  2012-04-12 09:46:58.000000000 +0200
+++ /var/tmp/diff_new_pack.xstZZX/_new  2012-04-12 09:46:58.000000000 +0200
@@ -18,13 +18,14 @@
 
 
 Name:           python-base
-Version:        2.7.2
+Version:        2.7.2.99rc2
 Release:        0
 License:        Python-2.0
 Summary:        Python Interpreter base package
 Url:            http://www.python.org/
 Group:          Development/Languages/Python
-%define         tarversion %{version}
+#%%define         tarversion %{version}
+%define         tarversion 2.7.3rc2
 %define         tarname Python-%{tarversion}
 Source0:        %{tarname}.tar.bz2
 Source1:        macros.python
@@ -35,18 +36,18 @@
 # COMMON-PATCH-BEGIN
 Patch1:         python-2.7-dirs.patch
 Patch2:         python-distutils-rpm-8.patch
-Patch3:         python-2.7.2-multilib.patch
+Patch3:         python-2.7.3rc2-multilib.patch
 Patch4:         python-2.5.1-sqlite.patch
-Patch5:         python-2.7rc2-canonicalize2.patch
+Patch5:         python-2.7.3rc2-canonicalize2.patch
 Patch6:         python-2.7rc2-configure.patch
 Patch7:         python-2.6-gettext-plurals.patch
 Patch8:         python-2.6b3-curses-panel.patch
 Patch9:         python-2.7.1-distutils_test_path.patch
 Patch10:        sparc_longdouble.patch
-Patch11:        python-2.7.2-linux3.patch
 Patch12:        
http://psf.upfronthosting.co.za/roundup/tracker/file19029/python-test_structmembers.patch
 Patch13:        python-2.7.2-fix_date_time_compiler.patch
-Patch14:        python-2.7.1-urllib-noproxy.patch
+Patch15:        python-2.7.2-disable-tests-in-test_io.patch
+Patch16:        pypirc-secure.diff
 # COMMON-PATCH-END
 %define         python_version    %(echo %{tarversion} | head -c 3)
 BuildRequires:  automake
@@ -124,10 +125,13 @@
 %patch8
 %patch9 -p1
 %patch10 -p1
-%patch11
 %patch12
 %patch13
-%patch14 -p1
+#skip test_io test for ppc,ppc64 as it broken.
+%ifarch ppc ppc64
+%patch15 -p1
+%endif
+%patch16 -p1
 # COMMON-PREP-END
 
 # drop Autoconf version requirement
@@ -171,13 +175,13 @@
 # test_smtplib's testSend is known to be broken and on ia64 it actually fails 
most of the time, preventing the build.
 EXCLUDE="$EXCLUDE -x test_smtplib"
 %endif
-# test_subprocess and test_unittest and test_threaded_import fail in Factory
-EXCLUDE="$EXCLUDE -x test_subprocess -x test_unittest -xtest_threaded_import"
+# test_unicode fails in Factory
+EXCLUDE="$EXCLUDE -x test_unicode"
 # Limit virtual memory to avoid spurious failures
 if test $(ulimit -v) = unlimited || test $(ulimit -v) -gt 10000000; then
   ulimit -v 10000000 || :
 fi
-make test TESTOPTS="-l $EXCLUDE"
+make test TESTOPTS="-l $EXCLUDE" TESTPYTHONOPTS="-R"
 # use network, be verbose:
 #make test TESTOPTS="-l -u network -v"
 %endif
@@ -191,7 +195,7 @@
 ########################################
 %make_install OPT="%{optflags} -fPIC"
 # install site-specific tweaks
-ln -s python%{python_version} %{buildroot}%{_bindir}/python2
+#ln -s python%{python_version} %{buildroot}%{_bindir}/python2
 install -m 644 %{SOURCE4} 
%{buildroot}%{_libdir}/python%{python_version}/distutils
 install -m 644 %{SOURCE5} 
%{buildroot}%{_libdir}/python%{python_version}/site-packages
 install -d -m 755 %{buildroot}%{_sysconfdir}/rpm
@@ -246,11 +250,13 @@
 %{_libdir}/libpython*.so
 %{_libdir}/pkgconfig/python-%{python_version}.pc
 %{_libdir}/pkgconfig/python.pc
+%{_libdir}/pkgconfig/python2.pc
 %{_includedir}/python*
 %exclude %{_includedir}/python%{python_version}/pyconfig.h
 %{_libdir}/python%{python_version}/test
 %defattr(755, root, root)
 %{_bindir}/python-config
+%{_bindir}/python2-config
 %{_bindir}/python%{python_version}-config
 
 %files -n python-xml
@@ -354,7 +360,7 @@
 %{_libdir}/python%{python_version}/lib-dynload/zlib.so
 %{_libdir}/python%{python_version}/lib-dynload/_codecs*.so
 %{_libdir}/python%{python_version}/lib-dynload/_multibytecodec.so
-%{_libdir}/python%{python_version}/lib-dynload/Python-%{version}-py%{python_version}.egg-info
+%{_libdir}/python%{python_version}/lib-dynload/Python-%{tarversion}-py%{python_version}.egg-info
 # these modules don't support 64-bit arches (disabled by setup.py)
 %ifnarch alpha ia64 x86_64 s390x ppc64 sparc64
 # requires sizeof(int) == sizeof(long) == sizeof(char*)

++++++ python-doc.spec ++++++
--- /var/tmp/diff_new_pack.xstZZX/_old  2012-04-12 09:46:58.000000000 +0200
+++ /var/tmp/diff_new_pack.xstZZX/_new  2012-04-12 09:46:58.000000000 +0200
@@ -24,8 +24,9 @@
 Summary:        Additional Package Documentation for Python
 Url:            http://www.python.org/
 Group:          Development/Languages/Python
-%define         pyver   2.7.2
-%define         tarname Python-%{pyver}
+%define         pyver   2.7.2.99rc2
+#%%define         tarname Python-%{pyver}
+%define         tarname Python-2.7.3rc2
 Source0:        %{tarname}.tar.bz2
 Source1:        python-%{version}-docs-html.tar.bz2
 Source2:        python-%{version}-docs-pdf-a4.tar.bz2

++++++ python.spec ++++++
--- /var/tmp/diff_new_pack.xstZZX/_old  2012-04-12 09:46:59.000000000 +0200
+++ /var/tmp/diff_new_pack.xstZZX/_new  2012-04-12 09:46:59.000000000 +0200
@@ -15,16 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:           python
-Version:        2.7.2
+Version:        2.7.2.99rc2
 Release:        0
 License:        Python-2.0
 Summary:        Python Interpreter
 Url:            http://www.python.org/
 Group:          Development/Languages/Python
-%define         tarversion %{version}
+#%%define         tarversion %{version}
+%define         tarversion 2.7.3rc2
 %define         tarname Python-%{tarversion}
 Source0:        %{tarname}.tar.bz2
 Source1:        README.SUSE
@@ -41,18 +40,18 @@
 # COMMON-PATCH-BEGIN
 Patch1:         python-2.7-dirs.patch
 Patch2:         python-distutils-rpm-8.patch
-Patch3:         python-2.7.2-multilib.patch
+Patch3:         python-2.7.3rc2-multilib.patch
 Patch4:         python-2.5.1-sqlite.patch
-Patch5:         python-2.7rc2-canonicalize2.patch
+Patch5:         python-2.7.3rc2-canonicalize2.patch
 Patch6:         python-2.7rc2-configure.patch
 Patch7:         python-2.6-gettext-plurals.patch
 Patch8:         python-2.6b3-curses-panel.patch
 Patch9:         python-2.7.1-distutils_test_path.patch
 Patch10:        sparc_longdouble.patch
-Patch11:        python-2.7.2-linux3.patch
 Patch12:        
http://psf.upfronthosting.co.za/roundup/tracker/file19029/python-test_structmembers.patch
 Patch13:        python-2.7.2-fix_date_time_compiler.patch
-Patch14:        python-2.7.1-urllib-noproxy.patch
+Patch15:        python-2.7.2-disable-tests-in-test_io.patch
+Patch16:        pypirc-secure.diff
 # COMMON-PATCH-END
 BuildRequires:  automake
 BuildRequires:  db-devel
@@ -166,10 +165,13 @@
 %patch8
 %patch9 -p1
 %patch10 -p1
-%patch11
 %patch12
 %patch13
-%patch14 -p1
+#skip test_io test for ppc,ppc64 as it broken.
+%ifarch ppc ppc64
+%patch15 -p1
+%endif
+%patch16 -p1
 # COMMON-PREP-END
 
 # drop Autoconf version requirement
@@ -208,7 +210,7 @@
   ulimit -v 10000000 || :
 fi
 LIST="test_urllib test_ssl test_hashlib test_hmac test_urllib2_localnet 
test_unicodedata test_tarfile test_sqlite test_tcl test_anydbm test_dumbdbm 
test_gdbm test_whichdb test_tk test_ttk_textonly test_bsddb test_readline "
-make test TESTOPTS="$LIST"
+make test TESTOPTS="$LIST" TESTPYTHONOPTS="-R"
 %endif
 
 %install
@@ -230,7 +232,9 @@
 # kill imageop.so, it's insecure
 rm -f %{buildroot}/%{_libdir}/python%{python_version}/lib-dynload/imageop.so
 #cleanup for -base
-rm %{buildroot}%{_bindir}/python{,%{python_version}}
+rm %{buildroot}%{_bindir}/python%{python_version}
+rm %{buildroot}%{_bindir}/python2
+rm %{buildroot}%{_bindir}/python
 rm %{buildroot}%{_bindir}/smtpd.py
 rm %{buildroot}%{_bindir}/pydoc
 rm %{buildroot}%{_bindir}/2to3
@@ -239,6 +243,7 @@
 rm %{buildroot}%{_libdir}/python
 find %{buildroot}%{_libdir}/python%{python_version} -maxdepth 1 ! \( -name 
"ssl.py" \) -exec rm {} ";"
 rm %{buildroot}%{_bindir}/python%{python_version}-config
+rm %{buildroot}%{_bindir}/python2-config
 rm %{buildroot}%{_bindir}/python-config
 rm %{buildroot}%{_libdir}/pkgconfig/*
 rm -r %{buildroot}%{_includedir}/python
@@ -314,7 +319,7 @@
 rm 
%{buildroot}%{_libdir}/python%{python_version}/lib-dynload/_multibytecodec.so
 rm %{buildroot}%{_libdir}/python%{python_version}/lib-dynload/audioop.so
 rm -f %{buildroot}%{_libdir}/python%{python_version}/lib-dynload/dl.so
-rm 
%{buildroot}%{_libdir}/python%{python_version}/lib-dynload/Python-%{version}-py%{python_version}.egg-info
+rm 
%{buildroot}%{_libdir}/python%{python_version}/lib-dynload/Python-%{tarversion}-py%{python_version}.egg-info
 # replace duplicate .pyo/.pyc with hardlinks
 %fdupes %{buildroot}/%{_libdir}/python%{python_version}
 ########################################

++++++ pypirc-secure.diff ++++++
# HG changeset patch
# User Philip Jenvey <[email protected]>
# Date 1322701507 28800
# Branch 2.7
# Node ID e7c20a8476a0e2ca18f8040864cbc400818d8f24
# Parent  3ecddf168f1f554a17a047384fe0b02f2d688277
create the .pypirc securely

diff -r 3ecddf168f1f -r e7c20a8476a0 Lib/distutils/config.py
--- a/Lib/distutils/config.py   Tue Nov 29 00:53:09 2011 +0100
+++ b/Lib/distutils/config.py   Wed Nov 30 17:05:07 2011 -0800
@@ -42,16 +42,8 @@
     def _store_pypirc(self, username, password):
         """Creates a default .pypirc file."""
         rc = self._get_rc_file()
-        f = open(rc, 'w')
-        try:
-            f.write(DEFAULT_PYPIRC % (username, password))
-        finally:
-            f.close()
-        try:
-            os.chmod(rc, 0600)
-        except OSError:
-            # should do something better here
-            pass
+        with os.fdopen(os.open(rc, os.O_CREAT | os.O_WRONLY, 0600), 'w') as fp:
+            fp.write(DEFAULT_PYPIRC % (username, password))
 
     def _read_pypirc(self):
         """Reads the .pypirc file."""
++++++ python-2.7.2-disable-tests-in-test_io.patch ++++++
--- Python-2.7.2/Lib/test/test_io.py.disable-tests-in-test_io  2011-09-01 
14:18:45.963304089 -0400
+++ Python-2.7.2/Lib/test/test_io.py   2011-09-01 15:08:53.796098413 -0400
@@ -2669,6 +2669,7 @@ class SignalsTest(unittest.TestCase):
         self.check_interrupted_read_retry(lambda x: x,
                                           mode="r")
 
+    @unittest.skip('rhbz#732998')
     @unittest.skipUnless(threading, 'Threading required for this test.')
     def check_interrupted_write_retry(self, item, **fdopen_kwargs):
         """Check that a buffered write, when it gets interrupted (either
++++++ python-2.7rc2-canonicalize2.patch -> python-2.7.3rc2-canonicalize2.patch 
++++++
--- /work/SRC/openSUSE:Factory/python/python-2.7rc2-canonicalize2.patch 
2011-09-23 12:42:22.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.python.new/python-2.7.3rc2-canonicalize2.patch  
2012-04-12 09:46:56.000000000 +0200
@@ -1,8 +1,8 @@
 Index: Python/sysmodule.c
 ===================================================================
---- Python/sysmodule.c.orig
-+++ Python/sysmodule.c
-@@ -1671,7 +1671,20 @@ PySys_SetArgvEx(int argc, char **argv, i
+--- Python/sysmodule.c.orig    2012-03-28 20:13:00.000000000 +0200
++++ Python/sysmodule.c 2012-03-28 20:13:00.000000000 +0200
+@@ -1620,7 +1620,20 @@
          char *p = NULL;
          Py_ssize_t n = 0;
          PyObject *a;
@@ -24,7 +24,7 @@
          char link[MAXPATHLEN+1];
          char argv0copy[2*MAXPATHLEN+1];
          int nr = 0;
-@@ -1698,7 +1711,8 @@ PySys_SetArgvEx(int argc, char **argv, i
+@@ -1647,7 +1660,8 @@
                  }
              }
          }
@@ -34,7 +34,7 @@
  #if SEP == '\\' /* Special case for MS filename syntax */
          if (argc > 0 && argv0 != NULL && strcmp(argv0, "-c") != 0) {
              char *q;
-@@ -1727,11 +1741,6 @@ PySys_SetArgvEx(int argc, char **argv, i
+@@ -1676,11 +1690,6 @@
          }
  #else /* All other filename syntaxes */
          if (argc > 0 && argv0 != NULL && strcmp(argv0, "-c") != 0) {
@@ -46,7 +46,7 @@
              p = strrchr(argv0, SEP);
          }
          if (p != NULL) {
-@@ -1749,6 +1758,9 @@ PySys_SetArgvEx(int argc, char **argv, i
+@@ -1698,6 +1707,9 @@
          a = PyString_FromStringAndSize(argv0, n);
          if (a == NULL)
              Py_FatalError("no mem for sys.path insertion");
@@ -58,9 +58,9 @@
          Py_DECREF(a);
 Index: configure.in
 ===================================================================
---- configure.in.orig
-+++ configure.in
-@@ -2728,7 +2728,7 @@ AC_CHECK_FUNCS(alarm setitimer getitimer
+--- configure.in.orig  2012-03-28 20:13:00.000000000 +0200
++++ configure.in       2012-03-28 20:13:00.000000000 +0200
+@@ -2761,7 +2761,7 @@
   getpriority getresuid getresgid getpwent getspnam getspent getsid getwd \
   initgroups kill killpg lchmod lchown lstat mkfifo mknod mktime \
   mremap nice pathconf pause plock poll pthread_init \
@@ -71,10 +71,10 @@
   setlocale setregid setreuid setsid setpgid setpgrp setuid setvbuf snprintf \
 Index: pyconfig.h.in
 ===================================================================
---- pyconfig.h.in.orig
-+++ pyconfig.h.in
-@@ -97,6 +97,9 @@
- /* Define to 1 if you have the `chflags' function. */
+--- pyconfig.h.in.orig 2012-03-16 02:26:39.000000000 +0100
++++ pyconfig.h.in      2012-03-28 20:13:00.000000000 +0200
+@@ -106,6 +106,9 @@
+ /* Define to 1 if you have the 'chflags' function. */
  #undef HAVE_CHFLAGS
  
 +/* Define to 1 if you have the `canonicalize_file_name' function. */

++++++ python-2.7.3rc2-multilib.patch ++++++
Index: configure.in
===================================================================
--- configure.in.orig   2012-03-16 02:26:39.000000000 +0100
+++ configure.in        2012-03-28 20:09:13.000000000 +0200
@@ -630,6 +630,41 @@
     ;;
 esac
 
+AC_SUBST(ARCH)
+AC_MSG_CHECKING(ARCH)
+ARCH=`uname -m`
+case $ARCH in
+i?86) ARCH=i386;;
+esac
+AC_MSG_RESULT($ARCH)
+
+AC_SUBST(LIB)
+AC_MSG_CHECKING(LIB)
+case $ac_sys_system in
+Linux*)
+  # Test if the compiler is 64bit
+  echo 'int i;' > conftest.$ac_ext
+  python_cv_cc_64bit_output=no
+  if AC_TRY_EVAL(ac_compile); then
+    case `/usr/bin/file conftest.$ac_objext` in
+    *"ELF 64"*)
+      python_cv_cc_64bit_output=yes
+      ;;
+    esac
+  fi
+  rm -rf conftest*
+  ;;
+esac
+
+case $ARCH:$python_cv_cc_64bit_output in
+ppc64:yes | powerpc64:yes | s390x:yes | sparc64:yes | x86_64:yes)
+  LIB="lib64"
+  ;;
+*:*)
+  LIB="lib"
+  ;;
+esac
+AC_MSG_RESULT($LIB)
 
 AC_SUBST(LIBRARY)
 AC_MSG_CHECKING(LIBRARY)
Index: Include/pythonrun.h
===================================================================
--- Include/pythonrun.h.orig    2012-03-16 02:26:31.000000000 +0100
+++ Include/pythonrun.h 2012-03-28 20:09:13.000000000 +0200
@@ -108,6 +108,8 @@
 /* In their own files */
 PyAPI_FUNC(const char *) Py_GetVersion(void);
 PyAPI_FUNC(const char *) Py_GetPlatform(void);
+PyAPI_FUNC(const char *) Py_GetArch(void);
+PyAPI_FUNC(const char *) Py_GetLib(void);
 PyAPI_FUNC(const char *) Py_GetCopyright(void);
 PyAPI_FUNC(const char *) Py_GetCompiler(void);
 PyAPI_FUNC(const char *) Py_GetBuildInfo(void);
Index: Lib/distutils/command/install.py
===================================================================
--- Lib/distutils/command/install.py.orig       2012-03-28 20:09:11.000000000 
+0200
+++ Lib/distutils/command/install.py    2012-03-28 20:09:13.000000000 +0200
@@ -22,6 +22,8 @@
 from site import USER_SITE
 
 
+libname = sys.lib
+
 if sys.version < "2.2":
     WINDOWS_SCHEME = {
         'purelib': '$base',
@@ -42,7 +44,7 @@
 INSTALL_SCHEMES = {
     'unix_prefix': {
         'purelib': '$base/lib/python$py_version_short/site-packages',
-        'platlib': '$platbase/lib/python$py_version_short/site-packages',
+        'platlib': 
'$platbase/'+libname+'/python$py_version_short/site-packages',
         'headers': '$base/include/python$py_version_short/$dist_name',
         'scripts': '$base/bin',
         'data'   : '$base',
Index: Lib/distutils/sysconfig.py
===================================================================
--- Lib/distutils/sysconfig.py.orig     2012-03-16 02:26:31.000000000 +0100
+++ Lib/distutils/sysconfig.py  2012-03-28 20:09:13.000000000 +0200
@@ -114,8 +114,11 @@
         prefix = plat_specific and EXEC_PREFIX or PREFIX
 
     if os.name == "posix":
-        libpython = os.path.join(prefix,
-                                 "lib", "python" + get_python_version())
+        if plat_specific or standard_lib:
+            lib = sys.lib
+        else:
+            lib = "lib"
+        libpython = os.path.join(prefix, lib, "python" + get_python_version())
         if standard_lib:
             return libpython
         else:
Index: Lib/pydoc.py
===================================================================
--- Lib/pydoc.py.orig   2012-03-16 02:26:33.000000000 +0100
+++ Lib/pydoc.py        2012-03-28 20:09:13.000000000 +0200
@@ -352,7 +352,7 @@
 
         docloc = os.environ.get("PYTHONDOCS",
                                 "http://docs.python.org/library";)
-        basedir = os.path.join(sys.exec_prefix, "lib",
+        basedir = os.path.join(sys.exec_prefix, sys.lib,
                                "python"+sys.version[0:3])
         if (isinstance(object, type(os)) and
             (object.__name__ in ('errno', 'exceptions', 'gc', 'imp',
Index: Lib/site.py
===================================================================
--- Lib/site.py.orig    2012-03-16 02:26:33.000000000 +0100
+++ Lib/site.py 2012-03-28 20:09:13.000000000 +0200
@@ -300,13 +300,18 @@
         if sys.platform in ('os2emx', 'riscos'):
             sitepackages.append(os.path.join(prefix, "Lib", "site-packages"))
         elif os.sep == '/':
-            sitepackages.append(os.path.join(prefix, "lib",
+            sitepackages.append(os.path.join(prefix, sys.lib,
                                         "python" + sys.version[:3],
                                         "site-packages"))
-            sitepackages.append(os.path.join(prefix, "lib", "site-python"))
+            sitepackages.append(os.path.join(prefix, sys.lib, "site-python"))
+            if sys.lib != "lib":
+                sitepackages.append(os.path.join(prefix, "lib",
+                                            "python" + sys.version[:3],
+                                            "site-packages"))
+                sitepackages.append(os.path.join(prefix, "lib", "site-python"))
         else:
             sitepackages.append(prefix)
-            sitepackages.append(os.path.join(prefix, "lib", "site-packages"))
+            sitepackages.append(os.path.join(prefix, sys.lib, "site-packages"))
         if sys.platform == "darwin":
             # for framework builds *only* we add the standard Apple
             # locations.
Index: Lib/sysconfig.py
===================================================================
--- Lib/sysconfig.py.orig       2012-03-16 02:26:33.000000000 +0100
+++ Lib/sysconfig.py    2012-03-28 20:09:13.000000000 +0200
@@ -7,10 +7,10 @@
 
 _INSTALL_SCHEMES = {
     'posix_prefix': {
-        'stdlib': '{base}/lib/python{py_version_short}',
-        'platstdlib': '{platbase}/lib/python{py_version_short}',
+        'stdlib': '{base}/'+sys.lib+'/python{py_version_short}',
+        'platstdlib': '{platbase}/'+sys.lib+'/python{py_version_short}',
         'purelib': '{base}/lib/python{py_version_short}/site-packages',
-        'platlib': '{platbase}/lib/python{py_version_short}/site-packages',
+        'platlib': 
'{platbase}/'+sys.lib+'/python{py_version_short}/site-packages',
         'include': '{base}/include/python{py_version_short}',
         'platinclude': '{platbase}/include/python{py_version_short}',
         'scripts': '{base}/bin',
@@ -65,10 +65,10 @@
         'data'   : '{userbase}',
         },
     'posix_user': {
-        'stdlib': '{userbase}/lib/python{py_version_short}',
-        'platstdlib': '{userbase}/lib/python{py_version_short}',
+        'stdlib': '{userbase}/'+sys.lib+'/python{py_version_short}',
+        'platstdlib': '{userbase}/'+sys.lib+'/python{py_version_short}',
         'purelib': '{userbase}/lib/python{py_version_short}/site-packages',
-        'platlib': '{userbase}/lib/python{py_version_short}/site-packages',
+        'platlib': 
'{userbase}/'+sys.lib+'/python{py_version_short}/site-packages',
         'include': '{userbase}/include/python{py_version_short}',
         'scripts': '{userbase}/bin',
         'data'   : '{userbase}',
Index: Lib/test/test_dl.py
===================================================================
--- Lib/test/test_dl.py.orig    2012-03-16 02:26:34.000000000 +0100
+++ Lib/test/test_dl.py 2012-03-28 20:09:13.000000000 +0200
@@ -5,10 +5,11 @@
 import unittest
 from test.test_support import verbose, import_module
 dl = import_module('dl', deprecated=True)
+import sys
 
 sharedlibs = [
-    ('/usr/lib/libc.so', 'getpid'),
-    ('/lib/libc.so.6', 'getpid'),
+    ('/usr/'+sys.lib+'/libc.so', 'getpid'),
+    ('/'+sys.lib+'/libc.so.6', 'getpid'),
     ('/usr/bin/cygwin1.dll', 'getpid'),
     ('/usr/lib/libc.dylib', 'getpid'),
     ]
Index: Lib/test/test_site.py
===================================================================
--- Lib/test/test_site.py.orig  2012-03-16 02:26:34.000000000 +0100
+++ Lib/test/test_site.py       2012-03-28 20:11:10.000000000 +0200
@@ -241,12 +241,16 @@
             self.assertEqual(dirs[2], wanted)
         elif os.sep == '/':
             # OS X non-framwework builds, Linux, FreeBSD, etc
-            self.assertEqual(len(dirs), 2)
             wanted = os.path.join('xoxo', 'lib', 'python' + sys.version[:3],
                                   'site-packages')
-            self.assertEqual(dirs[0], wanted)
+            self.assertTrue(wanted in dirs)
             wanted = os.path.join('xoxo', 'lib', 'site-python')
-            self.assertEqual(dirs[1], wanted)
+            self.assertTrue(wanted in dirs)
+            wanted = os.path.join('xoxo', sys.lib, 'python' + sys.version[:3],
+                                  'site-packages')
+            self.assertTrue(wanted in dirs)
+            wanted = os.path.join('xoxo', sys.lib, 'site-python')
+            self.assertTrue(wanted in dirs)
         else:
             # other platforms
             self.assertEqual(len(dirs), 2)
Index: Lib/trace.py
===================================================================
--- Lib/trace.py.orig   2012-03-16 02:26:34.000000000 +0100
+++ Lib/trace.py        2012-03-28 20:09:13.000000000 +0200
@@ -754,10 +754,10 @@
                 # should I also call expanduser? (after all, could use $HOME)
 
                 s = s.replace("$prefix",
-                              os.path.join(sys.prefix, "lib",
+                              os.path.join(sys.prefix, sys.lib,
                                            "python" + sys.version[:3]))
                 s = s.replace("$exec_prefix",
-                              os.path.join(sys.exec_prefix, "lib",
+                              os.path.join(sys.exec_prefix, sys.lib,
                                            "python" + sys.version[:3]))
                 s = os.path.normpath(s)
                 ignore_dirs.append(s)
Index: Makefile.pre.in
===================================================================
--- Makefile.pre.in.orig        2012-03-28 20:09:11.000000000 +0200
+++ Makefile.pre.in     2012-03-28 20:09:13.000000000 +0200
@@ -81,6 +81,8 @@
 
 # Machine-dependent subdirectories
 MACHDEP=       @MACHDEP@
+LIB=           @LIB@
+ARCH=          @ARCH@
 
 # Install prefix for architecture-independent files
 prefix=                @prefix@
@@ -533,6 +535,7 @@
                -DEXEC_PREFIX='"$(exec_prefix)"' \
                -DVERSION='"$(VERSION)"' \
                -DVPATH='"$(VPATH)"' \
+               -DARCH='"$(ARCH)"' -DLIB='"$(LIB)"' \
                -o $@ $(srcdir)/Modules/getpath.c
 
 Modules/python.o: $(srcdir)/Modules/python.c
@@ -567,7 +570,7 @@
 Python/compile.o Python/symtable.o Python/ast.o: $(GRAMMAR_H) $(AST_H)
 
 Python/getplatform.o: $(srcdir)/Python/getplatform.c
-               $(CC) -c $(PY_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ 
$(srcdir)/Python/getplatform.c
+               $(CC) -c $(PY_CFLAGS) -DPLATFORM='"$(MACHDEP)"' 
-DARCH='"$(ARCH)"' -DLIB='"$(LIB)"' -o $@ $(srcdir)/Python/getplatform.c
 
 Python/importdl.o: $(srcdir)/Python/importdl.c
                $(CC) -c $(PY_CFLAGS) -I$(DLINCLDIR) -o $@ 
$(srcdir)/Python/importdl.c
Index: Modules/getpath.c
===================================================================
--- Modules/getpath.c.orig      2012-03-16 02:26:37.000000000 +0100
+++ Modules/getpath.c   2012-03-28 20:09:13.000000000 +0200
@@ -116,9 +116,11 @@
 #define EXEC_PREFIX PREFIX
 #endif
 
+#define LIB_PYTHON LIB "/python" VERSION
+
 #ifndef PYTHONPATH
-#define PYTHONPATH PREFIX "/lib/python" VERSION ":" \
-              EXEC_PREFIX "/lib/python" VERSION "/lib-dynload"
+#define PYTHONPATH PREFIX "/" LIB_PYTHON ":" \
+              EXEC_PREFIX "/" LIB_PYTHON "/lib-dynload"
 #endif
 
 #ifndef LANDMARK
@@ -129,7 +131,7 @@
 static char exec_prefix[MAXPATHLEN+1];
 static char progpath[MAXPATHLEN+1];
 static char *module_search_path = NULL;
-static char lib_python[] = "lib/python" VERSION;
+static char lib_python[] = LIB_PYTHON;
 
 static void
 reduce(char *dir)
Index: Python/getplatform.c
===================================================================
--- Python/getplatform.c.orig   2012-03-16 02:26:38.000000000 +0100
+++ Python/getplatform.c        2012-03-28 20:09:13.000000000 +0200
@@ -10,3 +10,23 @@
 {
        return PLATFORM;
 }
+
+#ifndef ARCH
+#define ARCH "unknown"
+#endif
+
+const char *
+Py_GetArch(void)
+{
+       return ARCH;
+}
+
+#ifndef LIB
+#define LIB "lib"
+#endif
+
+const char *
+Py_GetLib(void)
+{
+       return LIB;
+}
Index: Python/sysmodule.c
===================================================================
--- Python/sysmodule.c.orig     2012-03-16 02:26:39.000000000 +0100
+++ Python/sysmodule.c  2012-03-28 20:09:13.000000000 +0200
@@ -1419,6 +1419,10 @@
                         PyString_FromString(Py_GetCopyright()));
     SET_SYS_FROM_STRING("platform",
                         PyString_FromString(Py_GetPlatform()));
+    SET_SYS_FROM_STRING("arch",
+                        PyString_FromString(Py_GetArch()));
+    SET_SYS_FROM_STRING("lib",
+                        PyString_FromString(Py_GetLib()));
     SET_SYS_FROM_STRING("executable",
                         PyString_FromString(Py_GetProgramFullPath()));
     SET_SYS_FROM_STRING("prefix",
Index: setup.py
===================================================================
--- setup.py.orig       2012-03-16 02:26:39.000000000 +0100
+++ setup.py    2012-03-28 20:09:13.000000000 +0200
@@ -369,7 +369,7 @@
 
     def detect_modules(self):
         # Ensure that /usr/local is always used
-        add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib')
+        add_dir_to_list(self.compiler.library_dirs, '/usr/local/' + sys.lib)
         add_dir_to_list(self.compiler.include_dirs, '/usr/local/include')
         self.add_multiarch_paths()
 
@@ -427,8 +427,7 @@
         # if a file is found in one of those directories, it can
         # be assumed that no additional -I,-L directives are needed.
         lib_dirs = self.compiler.library_dirs + [
-            '/lib64', '/usr/lib64',
-            '/lib', '/usr/lib',
+            '/' + sys.lib, '/usr/' + sys.lib,
             ]
         inc_dirs = self.compiler.include_dirs + ['/usr/include']
         exts = []
@@ -677,11 +676,11 @@
             elif curses_library:
                 readline_libs.append(curses_library)
             elif self.compiler.find_library_file(lib_dirs +
-                                                     ['/usr/lib/termcap'],
+                                                     
['/usr/'+sys.lib+'/termcap'],
                                                      'termcap'):
                 readline_libs.append('termcap')
             exts.append( Extension('readline', ['readline.c'],
-                                   library_dirs=['/usr/lib/termcap'],
+                                   library_dirs=['/usr/'+sys.lib+'/termcap'],
                                    extra_link_args=readline_extra_link_args,
                                    libraries=readline_libs) )
         else:
@@ -1753,18 +1752,17 @@
         # Check for various platform-specific directories
         if platform == 'sunos5':
             include_dirs.append('/usr/openwin/include')
-            added_lib_dirs.append('/usr/openwin/lib')
+            added_lib_dirs.append('/usr/openwin/' + sys.lib)
         elif os.path.exists('/usr/X11R6/include'):
             include_dirs.append('/usr/X11R6/include')
-            added_lib_dirs.append('/usr/X11R6/lib64')
-            added_lib_dirs.append('/usr/X11R6/lib')
+            added_lib_dirs.append('/usr/X11R6/' + sys.lib)
         elif os.path.exists('/usr/X11R5/include'):
             include_dirs.append('/usr/X11R5/include')
-            added_lib_dirs.append('/usr/X11R5/lib')
+            added_lib_dirs.append('/usr/X11R5/' + sys.lib)
         else:
             # Assume default location for X11
             include_dirs.append('/usr/X11/include')
-            added_lib_dirs.append('/usr/X11/lib')
+            added_lib_dirs.append('/usr/X11/' + sys.lib)
 
         # If Cygwin, then verify that X is installed before proceeding
         if platform == 'cygwin':
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to