aboutsummaryrefslogtreecommitdiff
path: root/tools/depends/target/python27/Python-setup.patch
diff options
context:
space:
mode:
authorRechi <Rechi@users.noreply.github.com>2018-01-11 12:00:00 +0100
committerRechi <Rechi@users.noreply.github.com>2018-01-11 12:00:00 +0100
commit48eb261008ab342a68d44645b233ee9cdc487db6 (patch)
treed1b7923bf5dcddac63c16106468ba27285b379b9 /tools/depends/target/python27/Python-setup.patch
parent0dc22173fe84e040b32f3e180f5c0a33b965f836 (diff)
[depends][python27] rename patch files
python in the name is redundant
Diffstat (limited to 'tools/depends/target/python27/Python-setup.patch')
-rw-r--r--tools/depends/target/python27/Python-setup.patch76
1 files changed, 0 insertions, 76 deletions
diff --git a/tools/depends/target/python27/Python-setup.patch b/tools/depends/target/python27/Python-setup.patch
deleted file mode 100644
index da1a59052f..0000000000
--- a/tools/depends/target/python27/Python-setup.patch
+++ /dev/null
@@ -1,76 +0,0 @@
---- setup.py.orig 2015-10-07 16:32:16.219083585 +0200
-+++ setup.py 2015-10-07 16:41:48.563085871 +0200
-@@ -337,6 +337,9 @@
- self.announce('WARNING: skipping import check for Cygwin-based "%s"'
- % ext.name)
- return
-+ #if os.environ.get('CROSS_COMPILE_TARGET') == 'yes':
-+ # return
-+
- ext_filename = os.path.join(
- self.build_lib,
- self.get_ext_filename(self.get_ext_fullname(ext.name)))
-@@ -351,27 +354,30 @@
- try:
- imp.load_dynamic(ext.name, ext_filename)
- except ImportError, why:
-- self.failed.append(ext.name)
-- self.announce('*** WARNING: renaming "%s" since importing it'
-- ' failed: %s' % (ext.name, why), level=3)
-- assert not self.inplace
-- basename, tail = os.path.splitext(ext_filename)
-- newname = basename + "_failed" + tail
-- if os.path.exists(newname):
-- os.remove(newname)
-- os.rename(ext_filename, newname)
--
-- # XXX -- This relies on a Vile HACK in
-- # distutils.command.build_ext.build_extension(). The
-- # _built_objects attribute is stored there strictly for
-- # use here.
-- # If there is a failure, _built_objects may not be there,
-- # so catch the AttributeError and move on.
-- try:
-- for filename in self._built_objects:
-- os.remove(filename)
-- except AttributeError:
-- self.announce('unable to remove files (ignored)')
-+ if os.environ.get('CROSS_COMPILE_TARGET') != "yes":
-+ self.failed.append(ext.name)
-+ self.announce('*** WARNING: renaming "%s" since importing it'
-+ ' failed: %s' % (ext.name, why), level=3)
-+ assert not self.inplace
-+ basename, tail = os.path.splitext(ext_filename)
-+ newname = basename + "_failed" + tail
-+ if os.path.exists(newname):
-+ os.remove(newname)
-+ os.rename(ext_filename, newname)
-+
-+ # XXX -- This relies on a Vile HACK in
-+ # distutils.command.build_ext.build_extension(). The
-+ # _built_objects attribute is stored there strictly for
-+ # use here.
-+ # If there is a failure, _built_objects may not be there,
-+ # so catch the AttributeError and move on.
-+ try:
-+ for filename in self._built_objects:
-+ os.remove(filename)
-+ except AttributeError:
-+ self.announce('unable to remove files (ignored)')
-+ else:
-+ self.announce('WARNING: "%s" failed importing, ignored because we are cross-compiling' % ext.name)
- except:
- exc_type, why, tb = sys.exc_info()
- self.announce('*** WARNING: importing extension "%s" '
-
---- Modules/makesetup.orig 2015-10-08 09:53:38.787333151 +0200
-+++ Modules/makesetup 2015-10-08 11:28:50.939355966 +0200
-@@ -212,6 +212,7 @@
- objs="$objs $obj"
- case $src in
- glmodule.c) ;;
-+ # _*io.c) src='$(srcdir)/'"$srcdir/_io/$(echo $src| tr -d "_")";;
- /*) ;;
- \$*) ;;
- *) src='$(srcdir)/'"$srcdir/$src";;
-