]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #28783: Embedded and nuget packages incorrect reference missing bdist_wininst...
authorSteve Dower <steve.dower@microsoft.com>
Wed, 23 Nov 2016 18:23:47 +0000 (10:23 -0800)
committerSteve Dower <steve.dower@microsoft.com>
Wed, 23 Nov 2016 18:23:47 +0000 (10:23 -0800)
Tools/msi/distutils.command.__init__.py [new file with mode: 0644]
Tools/msi/make_zip.py

diff --git a/Tools/msi/distutils.command.__init__.py b/Tools/msi/distutils.command.__init__.py
new file mode 100644 (file)
index 0000000..83f34b4
--- /dev/null
@@ -0,0 +1,32 @@
+"""distutils.command
+
+Package containing implementation of all the standard Distutils
+commands."""
+
+__all__ = ['build',
+           'build_py',
+           'build_ext',
+           'build_clib',
+           'build_scripts',
+           'clean',
+           'install',
+           'install_lib',
+           'install_headers',
+           'install_scripts',
+           'install_data',
+           'sdist',
+           'register',
+           'bdist',
+           'bdist_dumb',
+           'bdist_rpm',
+           # This command is not included in this package
+           #'bdist_wininst',
+           'check',
+           'upload',
+           # These two are reserved for future use:
+           #'bdist_sdux',
+           #'bdist_pkgtool',
+           # Note:
+           # bdist_packager is not included because it only provides
+           # an abstract base class
+          ]
index 0e8a4a69bb85b88ea26bbe0f4dac375f175e8a37..460cd5bff32b50ee77a9a4cdd984a5cd323544aa 100644 (file)
@@ -7,6 +7,7 @@ import stat
 import os
 import tempfile
 
+from itertools import chain
 from pathlib import Path
 from zipfile import ZipFile, ZIP_DEFLATED
 import subprocess
@@ -74,6 +75,10 @@ def include_in_lib(p):
     if name in EXCLUDE_FILE_FROM_LIBRARY:
         return False
 
+    # Special code is included below to patch this file back in
+    if [d.lower() for d in p.parts[-3:]] == ['distutils', 'command', '__init__.py']:
+        return False
+
     suffix = p.suffix.lower()
     return suffix not in {'.pyc', '.pyo', '.exe'}
 
@@ -203,10 +208,17 @@ def main():
     try:
         for t, s, p, c in layout:
             if s == '$build':
-                s = build
+                fs = build
             else:
-                s = source / s
-            copied = copy_to_layout(temp / t.rstrip('/'), rglob(s, p, c))
+                fs = source / s
+            files = rglob(fs, p, c)
+            extra_files = []
+            if s == 'Lib' and p == '**/*':
+                extra_files.append((
+                    source / 'tools' / 'msi' / 'distutils.command.__init__.py',
+                    Path('distutils') / 'command' / '__init__.py'
+                ))
+            copied = copy_to_layout(temp / t.rstrip('/'), chain(files, extra_files))
             print('Copied {} files'.format(copied))
 
         with open(str(temp / 'pyvenv.cfg'), 'w') as f: