Mercurial > hgrepos > FreeBSD > ports > PyPy
changeset 78:a5f5a5ecec13
Do not write into the current directory while building the port: only use WRKDIR.
WRKDIR is given as PYPY_WRKDIR into the MAKE_ENV.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Mon, 03 Oct 2022 17:53:21 +0200 |
| parents | 913b7ccce398 |
| children | 22c5d4be50bd |
| files | files/patch-lib-python_3_sysconfig.py files/patch-pypy_tool_release_package.py |
| diffstat | 2 files changed, 30 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/files/patch-lib-python_3_sysconfig.py Mon Oct 03 17:53:21 2022 +0200 @@ -0,0 +1,15 @@ +--- lib-python/3/sysconfig.py.orig 2022-03-28 09:53:47 UTC ++++ lib-python/3/sysconfig.py +@@ -436,7 +436,11 @@ def _generate_posix_vars(args): + pprint.pprint(vars, stream=f) + + # Create file used for sys.path fixup -- see Modules/getpath.c +- with open('pybuilddir.txt', 'w', encoding='utf8') as f: ++ pybuilddir_txt = 'pybuilddir.txt' ++ pypy_wrkdir = os.environ.get("PYPY_WRKDIR") # this is set by FreeBSD port ++ if pypy_wrkdir is not None: ++ pybuilddir_txt = os.path.join(pypy_wrkdir, pybuilddir_txt) ++ with open(pybuilddir_txt, 'w', encoding='utf8') as f: + f.write(pybuilddir) + + def _init_posix(vars):
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/files/patch-pypy_tool_release_package.py Mon Oct 03 17:53:21 2022 +0200 @@ -0,0 +1,15 @@ +--- pypy/tool/release/package.py.orig 2022-03-28 09:53:47 UTC ++++ pypy/tool/release/package.py +@@ -156,7 +156,11 @@ def generate_sysconfigdata(pypy_c, stdlib): + '--generate-posix-vars', + # Use PyPy-specific extension to get HOST_GNU_TYPE + 'HOST_GNU_TYPE', host_gnu_type]) +- with open('pybuilddir.txt') as fid: ++ pybuilddir_txt = 'pybuilddir.txt' ++ pypy_wrkdir = os.environ.get("PYPY_WRKDIR") # this is set by FreeBSD port ++ if pypy_wrkdir is not None: ++ pybuilddir_txt = os.path.join(pypy_wrkdir, pybuilddir_txt) ++ with open(pybuilddir_txt) as fid: + dirname = fid.read().strip() + assert os.path.exists(dirname) + sysconfigdata_names = os.listdir(dirname)
