changeset 41955:9661a9c0695e

wix: package missing .dll and .pyd files dist.wxs is currently missing some .pyd and .dll files which are picked up and staged by py2exe. This means that the WiX installer is missing some Python extension modules and their dependencies which are referenced by Mercurial or a Python package distributed with it. This commit adds the missing files to the WiX installer. Differential Revision: https://phab.mercurial-scm.org/D6137
author Gregory Szorc <gregory.szorc@gmail.com>
date Thu, 14 Mar 2019 18:25:23 -0700
parents e5ac701e5b7c
children 39f65c506899
files contrib/packaging/wix/dist.wxs
diffstat 1 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/contrib/packaging/wix/dist.wxs	Thu Mar 14 18:25:07 2019 -0700
+++ b/contrib/packaging/wix/dist.wxs	Thu Mar 14 18:25:23 2019 -0700
@@ -17,18 +17,25 @@
           <File Name="mercurial.cext.mpatch.pyd" />
           <File Name="mercurial.cext.osutil.pyd" />
           <File Name="mercurial.cext.parsers.pyd" />
+          <File Name="mercurial.thirdparty.zope.interface._zope_interface_coptimizations.pyd" />
           <File Name="mercurial.zstd.pyd" />
           <File Name="hgext.fsmonitor.pywatchman.bser.pyd" />
           <File Name="pyexpat.pyd" />
           <File Name="bz2.pyd" />
           <File Name="select.pyd" />
+          <File Name="sqlite3.dll" />
+          <File Name="tcl85.dll" />
+          <File Name="tk85.dll" />
           <File Name="unicodedata.pyd" />
           <File Name="_ctypes.pyd" />
           <File Name="_elementtree.pyd" />
           <File Name="_testcapi.pyd" />
           <File Name="_hashlib.pyd" />
+          <File Name="_multiprocessing.pyd" />
           <File Name="_socket.pyd" />
+          <File Name="_sqlite3.pyd" />
           <File Name="_ssl.pyd" />
+          <File Name="_tkinter.pyd" />
         </Component>
       </Directory>
     </DirectoryRef>