From 97459af323867deeab8981cc82066be4a2631808 Mon Sep 17 00:00:00 2001 From: Mike Gilbert Date: Thu, 27 Oct 2016 20:02:42 -0400 Subject: dev-lang/python: add 3.3.5 Package-Manager: portage-2.3.2 --- .../files/3.3/02_all_disable_modules_and_ssl.patch | 57 ++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 dev-lang/python/files/3.3/02_all_disable_modules_and_ssl.patch (limited to 'dev-lang/python/files/3.3/02_all_disable_modules_and_ssl.patch') diff --git a/dev-lang/python/files/3.3/02_all_disable_modules_and_ssl.patch b/dev-lang/python/files/3.3/02_all_disable_modules_and_ssl.patch new file mode 100644 index 0000000..af735be --- /dev/null +++ b/dev-lang/python/files/3.3/02_all_disable_modules_and_ssl.patch @@ -0,0 +1,57 @@ +--- setup.py ++++ setup.py +@@ -31,7 +31,17 @@ + COMPILED_WITH_PYDEBUG = ('--with-pydebug' in sysconfig.get_config_var("CONFIG_ARGS")) + + # This global variable is used to hold the list of modules to be disabled. +-disabled_module_list = [] ++pdm_env = "PYTHON_DISABLE_MODULES" ++if pdm_env in os.environ: ++ disabled_module_list = os.environ[pdm_env].split() ++else: ++ disabled_module_list = [] ++ ++pds_env = "PYTHON_DISABLE_SSL" ++if pds_env in os.environ: ++ disable_ssl = os.environ[pds_env] ++else: ++ disable_ssl = 0 + + def add_dir_to_list(dirlist, dir): + """Add the directory 'dir' to the list 'dirlist' (after any relative +@@ -435,6 +445,7 @@ + os.unlink(tmpfile) + + def detect_modules(self): ++ global disable_ssl + # Ensure that /usr/local is always used, but the local build + # directories (i.e. '.' and 'Include') must be first. See issue + # 10520. +@@ -747,7 +758,7 @@ + ssl_incs = find_file('openssl/ssl.h', inc_dirs, + search_for_ssl_incs_in + ) +- if ssl_incs is not None: ++ if ssl_incs is not None and not disable_ssl: + krb5_h = find_file('krb5.h', inc_dirs, + ['/usr/kerberos/include']) + if krb5_h: +@@ -758,7 +769,8 @@ + ] ) + + if (ssl_incs is not None and +- ssl_libs is not None): ++ ssl_libs is not None and ++ not disable_ssl): + exts.append( Extension('_ssl', ['_ssl.c'], + include_dirs = ssl_incs, + library_dirs = ssl_libs, +@@ -791,7 +803,7 @@ + + #print('openssl_ver = 0x%08x' % openssl_ver) + min_openssl_ver = 0x00907000 +- have_any_openssl = ssl_incs is not None and ssl_libs is not None ++ have_any_openssl = ssl_incs is not None and ssl_libs is not None and not disable_ssl + have_usable_openssl = (have_any_openssl and + openssl_ver >= min_openssl_ver) + -- cgit v1.2.3-18-g5258