annotate files/py37/patch-lib-python_3_sysconfig.py @ 85:56d0e959bcf0

Allow to build PyPy3 for Python 3.7 properly also
author Franz Glasner <f.glasner@feldmann-mg.com>
date Wed, 05 Oct 2022 15:37:59 +0200
parents files/patch-lib-python_3_sysconfig.py@a5f5a5ecec13
children 962a1436b2c0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
78
a5f5a5ecec13 Do not write into the current directory while building the port: only use WRKDIR.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
1 --- lib-python/3/sysconfig.py.orig 2022-03-28 09:53:47 UTC
a5f5a5ecec13 Do not write into the current directory while building the port: only use WRKDIR.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
2 +++ lib-python/3/sysconfig.py
a5f5a5ecec13 Do not write into the current directory while building the port: only use WRKDIR.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
3 @@ -436,7 +436,11 @@ def _generate_posix_vars(args):
a5f5a5ecec13 Do not write into the current directory while building the port: only use WRKDIR.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
4 pprint.pprint(vars, stream=f)
a5f5a5ecec13 Do not write into the current directory while building the port: only use WRKDIR.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
5
a5f5a5ecec13 Do not write into the current directory while building the port: only use WRKDIR.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
6 # Create file used for sys.path fixup -- see Modules/getpath.c
85
56d0e959bcf0 Allow to build PyPy3 for Python 3.7 properly also
Franz Glasner <f.glasner@feldmann-mg.com>
parents: 78
diff changeset
7 - with open('pybuilddir.txt', 'w', encoding='ascii') as f:
78
a5f5a5ecec13 Do not write into the current directory while building the port: only use WRKDIR.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
8 + pybuilddir_txt = 'pybuilddir.txt'
a5f5a5ecec13 Do not write into the current directory while building the port: only use WRKDIR.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
9 + pypy_wrkdir = os.environ.get("PYPY_WRKDIR") # this is set by FreeBSD port
a5f5a5ecec13 Do not write into the current directory while building the port: only use WRKDIR.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
10 + if pypy_wrkdir is not None:
a5f5a5ecec13 Do not write into the current directory while building the port: only use WRKDIR.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
11 + pybuilddir_txt = os.path.join(pypy_wrkdir, pybuilddir_txt)
a5f5a5ecec13 Do not write into the current directory while building the port: only use WRKDIR.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
12 + with open(pybuilddir_txt, 'w', encoding='utf8') as f:
a5f5a5ecec13 Do not write into the current directory while building the port: only use WRKDIR.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
13 f.write(pybuilddir)
a5f5a5ecec13 Do not write into the current directory while building the port: only use WRKDIR.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
14
a5f5a5ecec13 Do not write into the current directory while building the port: only use WRKDIR.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
15 def _init_posix(vars):