- ..
- 0001-Win32-Change-FD_SETSIZE-from-512-to-2048.patch
- 0002-Win32-distutils-Add-support-to-cygwinccompiler-for-V.patch
- 0003-Support-cross-compiling-byte-code.patch
- 0004-bpo-45258-search-for-isysroot-in-addition-to-sysroot.patch
- 0005-runtime_library_dir_option-Use-1st-word-of-CC-as-com.patch
- 0006-Win32-Do-not-download-externals.patch
- 0007-Fix-find_library-so-that-it-looks-in-sys.prefix-lib-.patch
- 0008-bpo-22699-Allow-compiling-on-debian-ubuntu-with-a-di.patch
- 0009-Disable-registry-lookup-unless-CONDA_PY_ALLOW_REG_PA.patch
- 0010-Unvendor-openssl.patch
- 0011-Unvendor-sqlite3.patch
- 0012-Use-ranlib-from-env-if-env-variable-is-set.patch
- 0013-Add-CondaEcosystemModifyDllSearchPath.patch
- 0014-Add-d1trimfile-SRC_DIR-to-make-pdbs-more-relocatable.patch
- 0015-Doing-d1trimfile.patch
- 0016-cross-compile-darwin.patch
- 0017-Fix-TZPATH-on-windows.patch
- 0018-Make-dyld-search-work-with-SYSTEM_VERSION_COMPAT-1.patch
- 0019-Fix-LDSHARED-when-CC-is-overriden-on-Linux-too.patch
- 0020-Unvendor-bzip2.patch
- 0021-Unvendor-libffi.patch
- 0022-Unvendor-tcltk.patch
- 0023-unvendor-xz.patch
- 0024-unvendor-zlib.patch
- 0025-Do-not-pass-g-to-GCC-when-not-Py_DEBUG.patch
- 0026-Use-OpenSSL-3-instead-of-1_1.patch
- README.md
README.md @74036c5 — view markup · raw · history · blame
How to re-generate patches
old=v3.9.6
new=v3.10.0
git clone git@github.com:python/cpython && cd cpython
git reset --hard $old
for f in ../recipe/patches/*.patch; do
git am $f;
done
head=$(git rev-parse HEAD)
git reset --hard $new
git cherry-pick $old...$head # fix conflicts and make sure the editor doesn't add end of file line ending
git format-patch $new
wget https://raw.githubusercontent.com/AnacondaRecipes/aggregate/8e3ab044c92c090e2b8ad46d295446690e76f5e3/make-mixed-crlf-patch.py
for f in $(grep -Iir "\.bat\|\.vcxproj\|\.props" -l recipe/patches/); do
python make-mixed-crlf-patch.py $f;
done