floppym 14/05/14 02:04:25
Modified:
2.0.2-distutils-fix_handling_of_executables_and_flags.patch
1.9-distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option.patch
2.1-distutils-fix_handling_of_executables_and_flags.patch
1.9-scripts-location.patch
Log:
Normalize paths.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key
0BBEEA1FEA4843A4)
Revision Changes Path
1.2
dev-python/pypy/files/2.0.2-distutils-fix_handling_of_executables_and_flags.patch
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypy/files/2.0.2-distutils-fix_handling_of_executables_and_flags.patch?rev=1.2&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypy/files/2.0.2-distutils-fix_handling_of_executables_and_flags.patch?rev=1.2&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypy/files/2.0.2-distutils-fix_handling_of_executables_and_flags.patch?r1=1.1&r2=1.2
Index: 2.0.2-distutils-fix_handling_of_executables_and_flags.patch
===================================================================
RCS file:
/var/cvsroot/gentoo-x86/dev-python/pypy/files/2.0.2-distutils-fix_handling_of_executables_and_flags.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 2.0.2-distutils-fix_handling_of_executables_and_flags.patch 26 May 2013
01:48:49 -0000 1.1
+++ 2.0.2-distutils-fix_handling_of_executables_and_flags.patch 14 May 2014
02:04:25 -0000 1.2
@@ -1,7 +1,7 @@
http://bugs.python.org/issue1222585
---- lib-python/2.7/distutils/cygwinccompiler.py
-+++ lib-python/2.7/distutils/cygwinccompiler.py
+--- a/lib-python/2.7/distutils/cygwinccompiler.py
++++ b/lib-python/2.7/distutils/cygwinccompiler.py
@@ -132,9 +132,13 @@
self.set_executables(compiler='gcc -mcygwin -O -Wall',
compiler_so='gcc -mcygwin -mdll -O -Wall',
@@ -49,8 +49,8 @@
# Maybe we should also append -mthreads, but then the finished
# dlls need another dll (mingwm10.dll see Mingw32 docs)
# (-mthreads: Support thread-safe exception handling on `Mingw32')
---- lib-python/2.7/distutils/emxccompiler.py
-+++ lib-python/2.7/distutils/emxccompiler.py
+--- a/lib-python/2.7/distutils/emxccompiler.py
++++ b/lib-python/2.7/distutils/emxccompiler.py
@@ -65,8 +65,12 @@
# XXX optimization, warnings etc. should be customizable.
self.set_executables(compiler='gcc -Zomf -Zmt -O3
-fomit-frame-pointer -mprobe -Wall',
@@ -80,8 +80,8 @@
except DistutilsExecError, msg:
raise CompileError, msg
---- lib-python/2.7/distutils/sysconfig_cpython.py
-+++ lib-python/2.7/distutils/sysconfig_cpython.py
+--- a/lib-python/2.7/distutils/sysconfig_cpython.py
++++ b/lib-python/2.7/distutils/sysconfig_cpython.py
@@ -150,10 +150,12 @@
varies across Unices and is stored in Python's Makefile.
"""
@@ -174,8 +174,8 @@
flags = _config_vars[key]
flags = re.sub('-isysroot\s+\S+(\s|$)', ' ',
flags)
---- lib-python/2.7/distutils/sysconfig_pypy.py
-+++ lib-python/2.7/distutils/sysconfig_pypy.py
+--- a/lib-python/2.7/distutils/sysconfig_pypy.py
++++ b/lib-python/2.7/distutils/sysconfig_pypy.py
@@ -114,13 +114,56 @@
optional C speedup components.
"""
@@ -239,8 +239,8 @@
from sysconfig_cpython import (
---- lib-python/2.7/distutils/unixccompiler.py
-+++ lib-python/2.7/distutils/unixccompiler.py
+--- a/lib-python/2.7/distutils/unixccompiler.py
++++ b/lib-python/2.7/distutils/unixccompiler.py
@@ -114,14 +114,17 @@
# are pretty generic; they will probably have to be set by an outsider
# (eg. using information discovered by the sysconfig about building
1.2
dev-python/pypy/files/1.9-distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option.patch
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypy/files/1.9-distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option.patch?rev=1.2&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypy/files/1.9-distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option.patch?rev=1.2&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypy/files/1.9-distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option.patch?r1=1.1&r2=1.2
Index:
1.9-distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option.patch
===================================================================
RCS file:
/var/cvsroot/gentoo-x86/dev-python/pypy/files/1.9-distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 1.9-distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option.patch
8 Jun 2012 16:52:09 -0000 1.1
+++ 1.9-distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option.patch
14 May 2014 02:04:25 -0000 1.2
@@ -1,5 +1,5 @@
---- lib-python/2.7/distutils/unixccompiler.py
-+++ lib-python/2.7/distutils/unixccompiler.py
+--- a/lib-python/2.7/distutils/unixccompiler.py
++++ b/lib-python/2.7/distutils/unixccompiler.py
@@ -297,7 +297,7 @@
# this time, there's no way to determine this information from
# the configuration data stored in the Python installation, so
1.2
dev-python/pypy/files/2.1-distutils-fix_handling_of_executables_and_flags.patch
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypy/files/2.1-distutils-fix_handling_of_executables_and_flags.patch?rev=1.2&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypy/files/2.1-distutils-fix_handling_of_executables_and_flags.patch?rev=1.2&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypy/files/2.1-distutils-fix_handling_of_executables_and_flags.patch?r1=1.1&r2=1.2
Index: 2.1-distutils-fix_handling_of_executables_and_flags.patch
===================================================================
RCS file:
/var/cvsroot/gentoo-x86/dev-python/pypy/files/2.1-distutils-fix_handling_of_executables_and_flags.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 2.1-distutils-fix_handling_of_executables_and_flags.patch 12 Mar 2014
08:21:43 -0000 1.1
+++ 2.1-distutils-fix_handling_of_executables_and_flags.patch 14 May 2014
02:04:25 -0000 1.2
@@ -1,7 +1,7 @@
http://bugs.python.org/issue1222585
---- lib-python/2.7/distutils/cygwinccompiler.py
-+++ lib-python/2.7/distutils/cygwinccompiler.py
+--- a/lib-python/2.7/distutils/cygwinccompiler.py
++++ b/lib-python/2.7/distutils/cygwinccompiler.py
@@ -135,9 +135,13 @@
self.set_executables(compiler='gcc -mcygwin -O -Wall',
compiler_so='gcc -mcygwin -mdll -O -Wall',
@@ -49,8 +49,8 @@
# Maybe we should also append -mthreads, but then the finished
# dlls need another dll (mingwm10.dll see Mingw32 docs)
# (-mthreads: Support thread-safe exception handling on `Mingw32')
---- lib-python/2.7/distutils/emxccompiler.py
-+++ lib-python/2.7/distutils/emxccompiler.py
+--- a/lib-python/2.7/distutils/emxccompiler.py
++++ b/lib-python/2.7/distutils/emxccompiler.py
@@ -65,8 +65,12 @@
# XXX optimization, warnings etc. should be customizable.
self.set_executables(compiler='gcc -Zomf -Zmt -O3
-fomit-frame-pointer -mprobe -Wall',
@@ -80,8 +80,8 @@
except DistutilsExecError, msg:
raise CompileError, msg
---- lib-python/2.7/distutils/sysconfig_cpython.py
-+++ lib-python/2.7/distutils/sysconfig_cpython.py
+--- a/lib-python/2.7/distutils/sysconfig_cpython.py
++++ b/lib-python/2.7/distutils/sysconfig_cpython.py
@@ -149,10 +149,12 @@
varies across Unices and is stored in Python's Makefile.
"""
@@ -174,8 +174,8 @@
flags = _config_vars[key]
flags = re.sub('-isysroot\s+\S+(\s|$)', ' ',
flags)
---- lib-python/2.7/distutils/sysconfig_pypy.py
-+++ lib-python/2.7/distutils/sysconfig_pypy.py
+--- a/lib-python/2.7/distutils/sysconfig_pypy.py
++++ b/lib-python/2.7/distutils/sysconfig_pypy.py
@@ -123,7 +123,55 @@
optional C speedup components.
"""
@@ -233,8 +233,8 @@
compiler.shared_lib_extension = get_config_var('SO')
if "CPPFLAGS" in os.environ:
cppflags = shlex.split(os.environ["CPPFLAGS"])
---- lib-python/2.7/distutils/unixccompiler.py
-+++ lib-python/2.7/distutils/unixccompiler.py
+--- a/lib-python/2.7/distutils/unixccompiler.py
++++ b/lib-python/2.7/distutils/unixccompiler.py
@@ -114,14 +114,17 @@
# are pretty generic; they will probably have to be set by an outsider
# (eg. using information discovered by the sysconfig about building
1.2 dev-python/pypy/files/1.9-scripts-location.patch
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypy/files/1.9-scripts-location.patch?rev=1.2&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypy/files/1.9-scripts-location.patch?rev=1.2&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypy/files/1.9-scripts-location.patch?r1=1.1&r2=1.2
Index: 1.9-scripts-location.patch
===================================================================
RCS file:
/var/cvsroot/gentoo-x86/dev-python/pypy/files/1.9-scripts-location.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 1.9-scripts-location.patch 8 Jun 2012 16:52:09 -0000 1.1
+++ 1.9-scripts-location.patch 14 May 2014 02:04:25 -0000 1.2
@@ -1,5 +1,5 @@
---- pypy-pypy-release-1.7/lib-python/2.7/distutils/command/install.py
-+++ pypy-pypy-release-1.7/lib-python/2.7/distutils/command/install.py
+--- a/lib-python/2.7/distutils/command/install.py
++++ b/lib-python/2.7/distutils/command/install.py
@@ -87,7 +87,7 @@
'purelib': '$base/site-packages',
'platlib': '$base/site-packages',