Remove old python/ subdir and add README containing the plan.
[fedora-mingw.git] / python / python-2.5.2-binutils-no-dep.patch
diff --git a/python/python-2.5.2-binutils-no-dep.patch b/python/python-2.5.2-binutils-no-dep.patch
deleted file mode 100644 (file)
index 6792c9f..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-diff -ru Python-2.5.2-orig/Lib/ctypes/util.py Python-2.5.2/Lib/ctypes/util.py
---- Python-2.5.2-orig/Lib/ctypes/util.py       2007-09-14 16:05:26.000000000 -0400
-+++ Python-2.5.2/Lib/ctypes/util.py    2008-09-24 17:30:06.000000000 -0400
-@@ -83,9 +83,14 @@
-             if not f:
-                 return None
-             cmd = "objdump -p -j .dynamic 2>/dev/null " + f
--            res = re.search(r'\sSONAME\s+([^\s]+)', os.popen(cmd).read())
-+            try:
-+                res = re.search(r'\sSONAME\s+([^\s]+)', os.popen(cmd).read())
-+            except:
-+                res = None
-             if not res:
--                return None
-+                return os.path.basename(f) #  This is good for GLibc, I think,
-+                                           # and a dep on binutils is big (for
-+                                           # live CDs).
-             return res.group(1)
-     if (sys.platform.startswith("freebsd")