diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-06-03 15:06:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-03 15:06:53 (GMT) |
commit | 671b740f45bf606208d89300b63b1d206c6a6e4a (patch) | |
tree | 805710317f9fd0c60a82a13bf906514ae6a73fdc /PC/layout/main.py | |
parent | b26b410ce90214480c96079ff3a9c202b59f54a0 (diff) | |
download | cpython-671b740f45bf606208d89300b63b1d206c6a6e4a.zip cpython-671b740f45bf606208d89300b63b1d206c6a6e4a.tar.gz cpython-671b740f45bf606208d89300b63b1d206c6a6e4a.tar.bz2 |
gh-119679: Ensures correct import libraries are included in Windows install packages (GH-119790)
(cherry picked from commit fd01271366abefa8f991e53f090387882fbd6bdd)
Co-authored-by: Steve Dower <steve.dower@python.org>
Diffstat (limited to 'PC/layout/main.py')
-rw-r--r-- | PC/layout/main.py | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/PC/layout/main.py b/PC/layout/main.py index 1c4842f..716f010 100644 --- a/PC/layout/main.py +++ b/PC/layout/main.py @@ -121,7 +121,7 @@ def get_tcltk_lib(ns): def get_layout(ns): - def in_build(f, dest="", new_name=None): + def in_build(f, dest="", new_name=None, no_lib=False): n, _, x = f.rpartition(".") n = new_name or n src = ns.build / f @@ -136,7 +136,7 @@ def get_layout(ns): pdb = src.with_suffix(".pdb") if pdb.is_file(): yield dest + n + ".pdb", pdb - if ns.include_dev: + if ns.include_dev and not no_lib: lib = src.with_suffix(".lib") if lib.is_file(): yield "libs/" + n + ".lib", lib @@ -202,7 +202,9 @@ def get_layout(ns): yield "LICENSE.txt", ns.build / "LICENSE.txt" - for dest, src in rglob(ns.build, "*.pyd"): + dest="" if ns.flat_dlls else "DLLs/" + + for _, src in rglob(ns.build, "*.pyd"): if ns.include_freethreaded: if not src.match("*.cp*t-win*.pyd"): continue @@ -217,14 +219,14 @@ def get_layout(ns): continue if src in TCLTK_PYDS_ONLY and not ns.include_tcltk: continue - yield from in_build(src.name, dest="" if ns.flat_dlls else "DLLs/") + yield from in_build(src.name, dest=dest, no_lib=True) - for dest, src in rglob(ns.build, "*.dll"): + for _, src in rglob(ns.build, "*.dll"): if src.stem.endswith("_d") != bool(ns.debug) and src not in REQUIRED_DLLS: continue if src in EXCLUDE_FROM_DLLS: continue - yield from in_build(src.name, dest="" if ns.flat_dlls else "DLLs/") + yield from in_build(src.name, no_lib=True) if ns.zip_lib: zip_name = PYTHON_ZIP_NAME |