annotate files/py38/patch-lib-python_3_sysconfig.py @ 101:962a1436b2c0

FIX: Do not try to write sysconfigdata into the current directory: use WRKDIR instead
author Franz Glasner <fzglas.hg@dom66.de>
date Sun, 09 Oct 2022 16:48:12 +0200
parents 56d0e959bcf0
children
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
101
962a1436b2c0 FIX: Do not try to write sysconfigdata into the current directory: use WRKDIR instead
Franz Glasner <fzglas.hg@dom66.de>
parents: 85
diff changeset
3 @@ -423,7 +423,11 @@ def _generate_posix_vars(args):
962a1436b2c0 FIX: Do not try to write sysconfigdata into the current directory: use WRKDIR instead
Franz Glasner <fzglas.hg@dom66.de>
parents: 85
diff changeset
4 module.build_time_vars = vars
962a1436b2c0 FIX: Do not try to write sysconfigdata into the current directory: use WRKDIR instead
Franz Glasner <fzglas.hg@dom66.de>
parents: 85
diff changeset
5 sys.modules[name] = module
962a1436b2c0 FIX: Do not try to write sysconfigdata into the current directory: use WRKDIR instead
Franz Glasner <fzglas.hg@dom66.de>
parents: 85
diff changeset
6
962a1436b2c0 FIX: Do not try to write sysconfigdata into the current directory: use WRKDIR instead
Franz Glasner <fzglas.hg@dom66.de>
parents: 85
diff changeset
7 + pypy_wrkdir = os.environ.get("PYPY_WRKDIR") # this is set by FreeBSD port
962a1436b2c0 FIX: Do not try to write sysconfigdata into the current directory: use WRKDIR instead
Franz Glasner <fzglas.hg@dom66.de>
parents: 85
diff changeset
8 +
962a1436b2c0 FIX: Do not try to write sysconfigdata into the current directory: use WRKDIR instead
Franz Glasner <fzglas.hg@dom66.de>
parents: 85
diff changeset
9 pybuilddir = 'build/lib.%s-%s' % (get_platform(), _PY_VERSION_SHORT)
962a1436b2c0 FIX: Do not try to write sysconfigdata into the current directory: use WRKDIR instead
Franz Glasner <fzglas.hg@dom66.de>
parents: 85
diff changeset
10 + if pypy_wrkdir is not None:
962a1436b2c0 FIX: Do not try to write sysconfigdata into the current directory: use WRKDIR instead
Franz Glasner <fzglas.hg@dom66.de>
parents: 85
diff changeset
11 + pybuilddir = os.path.join(pypy_wrkdir, pybuilddir)
962a1436b2c0 FIX: Do not try to write sysconfigdata into the current directory: use WRKDIR instead
Franz Glasner <fzglas.hg@dom66.de>
parents: 85
diff changeset
12 if hasattr(sys, "gettotalrefcount"):
962a1436b2c0 FIX: Do not try to write sysconfigdata into the current directory: use WRKDIR instead
Franz Glasner <fzglas.hg@dom66.de>
parents: 85
diff changeset
13 pybuilddir += '-pydebug'
962a1436b2c0 FIX: Do not try to write sysconfigdata into the current directory: use WRKDIR instead
Franz Glasner <fzglas.hg@dom66.de>
parents: 85
diff changeset
14 os.makedirs(pybuilddir, exist_ok=True)
962a1436b2c0 FIX: Do not try to write sysconfigdata into the current directory: use WRKDIR instead
Franz Glasner <fzglas.hg@dom66.de>
parents: 85
diff changeset
15 @@ -436,7 +440,10 @@ def _generate_posix_vars(args):
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
16 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
17
a5f5a5ecec13 Do not write into the current directory while building the port: only use WRKDIR.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
18 # Create file used for sys.path fixup -- see Modules/getpath.c
a5f5a5ecec13 Do not write into the current directory while building the port: only use WRKDIR.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
19 - 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
20 + 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
21 + 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
22 + 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
23 + 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
24 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
25
a5f5a5ecec13 Do not write into the current directory while building the port: only use WRKDIR.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
26 def _init_posix(vars):