diff options
author | Hye-Shik Chang <perky@FreeBSD.org> | 2006-10-09 14:29:18 +0000 |
---|---|---|
committer | Hye-Shik Chang <perky@FreeBSD.org> | 2006-10-09 14:29:18 +0000 |
commit | 1d18bb4fff9ca7e0fca8452b1874fe1f58ffca6f (patch) | |
tree | 147f92d454787d912bee658515932bf0eeae4d6c /lang/python-devel/files | |
parent | a109e33441e4540e21473b7b27b9c549e09d3c0e (diff) |
Notes
Diffstat (limited to 'lang/python-devel/files')
-rw-r--r-- | lang/python-devel/files/patch-Modules-_ctypes-libffi-configure | 11 | ||||
-rw-r--r-- | lang/python-devel/files/patch-setup.py | 30 |
2 files changed, 0 insertions, 41 deletions
diff --git a/lang/python-devel/files/patch-Modules-_ctypes-libffi-configure b/lang/python-devel/files/patch-Modules-_ctypes-libffi-configure deleted file mode 100644 index 89b31267f174..000000000000 --- a/lang/python-devel/files/patch-Modules-_ctypes-libffi-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- Modules/_ctypes/libffi/configure.orig Sun Mar 26 13:22:58 2006 -+++ Modules/_ctypes/libffi/configure Sun Mar 26 13:23:07 2006 -@@ -3520,7 +3520,7 @@ - cris-*-*) TARGET=LIBFFI_CRIS; TARGETDIR=cris;; - s390-*-linux-*) TARGET=S390; TARGETDIR=s390;; - s390x-*-linux-*) TARGET=S390; TARGETDIR=s390;; --x86_64-*-linux* | x86_64-*-freebsd* | x86_64-*-kfreebsd*-gnu) TARGET=X86_64; TARGETDIR=x86;; -+amd64-*-freebsd* | x86_64-*-linux* | x86_64-*-freebsd* | x86_64-*-kfreebsd*-gnu) TARGET=X86_64; TARGETDIR=x86;; - sh-*-linux* | sh[34]*-*-linux*) TARGET=SH; TARGETDIR=sh;; - sh-*-rtems*) TARGET=SH; TARGETDIR=sh;; - sh64-*-linux* | sh5*-*-linux*) TARGET=SH64; TARGETDIR=sh64;; diff --git a/lang/python-devel/files/patch-setup.py b/lang/python-devel/files/patch-setup.py deleted file mode 100644 index cf0beedab0c6..000000000000 --- a/lang/python-devel/files/patch-setup.py +++ /dev/null @@ -1,30 +0,0 @@ ---- setup.py.orig Fri Jun 30 15:18:39 2006 -+++ setup.py Thu Aug 10 18:41:33 2006 -@@ -15,7 +15,7 @@ - from distutils.command.install_lib import install_lib - - # This global variable is used to hold the list of modules to be disabled. --disabled_module_list = [] -+disabled_module_list = ["_bsddb", "_sqlite3", "_tkinter", "gdbm", "mpz"] - - def add_dir_to_list(dirlist, dir): - """Add the directory 'dir' to the list 'dirlist' (at the front) if -@@ -590,6 +590,8 @@ - # OpenSSL doesn't do these until 0.9.8 so we'll bring our own hash - exts.append( Extension('_sha256', ['sha256module.c']) ) - exts.append( Extension('_sha512', ['sha512module.c']) ) -+ else: -+ open('.without_own_sha', 'w') - - - # Modules that provide persistent dictionary-like semantics. You will -@@ -1498,8 +1500,7 @@ - ext_modules=[Extension('_struct', ['_struct.c'])], - - # Scripts to install -- scripts = ['Tools/scripts/pydoc', 'Tools/scripts/idle', -- 'Lib/smtpd.py'] -+ scripts = [] - ) - - # --install-platlib |