Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
4782ab3a
Commit
4782ab3a
authored
Oct 29, 2016
by
Steve Dower
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adds missing _asyncio.pyd to installer and generally tidies pyd management.
parent
868147b0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
69 deletions
+23
-69
Tools/msi/lib/lib_files.wxs
Tools/msi/lib/lib_files.wxs
+1
-1
Tools/msi/make_zip.py
Tools/msi/make_zip.py
+1
-0
Tools/msi/test/test_files.wxs
Tools/msi/test/test_files.wxs
+21
-68
No files found.
Tools/msi/lib/lib_files.wxs
View file @
4782ab3a
<?xml version="1.0" encoding="UTF-8"?>
<Wix
xmlns=
"http://schemas.microsoft.com/wix/2006/wi"
>
<?define exts=pyexpat;select;unicodedata;winsound;_bz2;_elementtree;_socket;_ssl;_msi;_ctypes;_hashlib;_multiprocessing;_lzma;_decimal;_overlapped;_sqlite3 ?>
<?define exts=pyexpat;select;unicodedata;winsound;_bz2;_elementtree;_socket;_ssl;_msi;_ctypes;_hashlib;_multiprocessing;_lzma;_decimal;_overlapped;_sqlite3
;_asyncio
?>
<Fragment>
<ComponentGroup
Id=
"lib_extensions"
>
<?foreach ext in $(var.exts)?>
...
...
Tools/msi/make_zip.py
View file @
4782ab3a
...
...
@@ -19,6 +19,7 @@ DEBUG_FILES = {
'
_ctypes_test
',
'
_testbuffer
',
'
_testcapi
',
'
_testconsole
',
'
_testimportmultiple
',
'
_testmultiphase
',
'
xxlimited
',
...
...
Tools/msi/test/test_files.wxs
View file @
4782ab3a
<?xml version="1.0" encoding="UTF-8"?>
<Wix
xmlns=
"http://schemas.microsoft.com/wix/2006/wi"
>
<?define exts=_testcapi;_ctypes_test;_testbuffer;_testimportmultiple;_testmultiphase;_testconsole ?>
<Fragment>
<ComponentGroup
Id=
"test_extensions"
>
<Component
Id=
"_testcapi.pyd"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_testcapi.pyd"
Name=
"_testcapi.pyd"
KeyPath=
"yes"
/>
</Component>
<Component
Id=
"_ctypes_test.pyd"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_ctypes_test.pyd"
Name=
"_ctypes_test.pyd"
KeyPath=
"yes"
/>
</Component>
<Component
Id=
"_testbuffer.pyd"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_testbuffer.pyd"
Name=
"_testbuffer.pyd"
KeyPath=
"yes"
/>
</Component>
<Component
Id=
"_testimportmultiple.pyd"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_testimportmultiple.pyd"
Name=
"_testimportmultiple.pyd"
KeyPath=
"yes"
/>
</Component>
<Component
Id=
"_testmultiphase.pyd"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_testmultiphase.pyd"
Name=
"_testmultiphase.pyd"
KeyPath=
"yes"
/>
</Component>
<Component
Id=
"_testconsole.pyd"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_testconsole.pyd"
Name=
"_testconsole.pyd"
KeyPath=
"yes"
/>
<?foreach ext in $(var.exts)?>
<Component
Id=
"$(var.ext).pyd"
Directory=
"DLLs"
Guid=
"*"
>
<File
Name=
"$(var.ext).pyd"
KeyPath=
"yes"
/>
</Component>
<?endforeach ?>
</ComponentGroup>
</Fragment>
<Fragment>
<ComponentGroup
Id=
"test_extensions_symbols"
>
<Component
Id=
"_testcapi.pdb"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_testcapi.pdb"
Name=
"_testcapi.pdb"
/>
</Component>
<Component
Id=
"_ctypes_test.pdb"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_ctypes_test.pdb"
Name=
"_ctypes_test.pdb"
/>
</Component>
<Component
Id=
"_testbuffer.pdb"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_testbuffer.pdb"
Name=
"_testbuffer.pdb"
/>
</Component>
<Component
Id=
"_testimportmultiple.pdb"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_testimportmultiple.pdb"
Name=
"_testimportmultiple.pdb"
/>
</Component>
<Component
Id=
"_testmultiphase.pdb"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_testmultiphase.pdb"
Name=
"_testmultiphase.pdb"
/>
</Component>
<Component
Id=
"_testconsole.pdb"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_testconsole.pdb"
Name=
"_testconsole.pdb"
/>
<?foreach ext in $(var.exts)?>
<Component
Id=
"$(var.ext).pdb"
Directory=
"DLLs"
Guid=
"*"
>
<File
Name=
"$(var.ext).pdb"
/>
</Component>
<?endforeach ?>
</ComponentGroup>
</Fragment>
<Fragment>
<ComponentGroup
Id=
"test_extensions_d"
>
<Component
Id=
"_testcapi_d.pyd"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_testcapi_d.pyd"
Name=
"_testcapi_d.pyd"
/>
</Component>
<Component
Id=
"_ctypes_test_d.pyd"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_ctypes_test_d.pyd"
Name=
"_ctypes_test_d.pyd"
/>
</Component>
<Component
Id=
"_testbuffer_d.pyd"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_testbuffer_d.pyd"
Name=
"_testbuffer_d.pyd"
/>
</Component>
<Component
Id=
"_testimportmultiple_d.pyd"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_testimportmultiple_d.pyd"
Name=
"_testimportmultiple_d.pyd"
/>
</Component>
<Component
Id=
"_testmultiphase_d.pyd"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_testmultiphase_d.pyd"
Name=
"_testmultiphase_d.pyd"
/>
</Component>
<Component
Id=
"_testconsole_d.pyd"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_testconsole_d.pyd"
Name=
"_testconsole_d.pyd"
/>
</Component>
<Component
Id=
"_testcapi_d.pdb"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_testcapi_d.pdb"
Name=
"_testcapi_d.pdb"
/>
</Component>
<Component
Id=
"_ctypes_test_d.pdb"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_ctypes_test_d.pdb"
Name=
"_ctypes_test_d.pdb"
/>
</Component>
<Component
Id=
"_testbuffer_d.pdb"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_testbuffer_d.pdb"
Name=
"_testbuffer_d.pdb"
/>
</Component>
<Component
Id=
"_testimportmultiple_d.pdb"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_testimportmultiple_d.pdb"
Name=
"_testimportmultiple_d.pdb"
/>
</Component>
<Component
Id=
"_testmultiphase_d.pdb"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_testmultiphase_d.pdb"
Name=
"_testmultiphase_d.pdb"
/>
<?foreach ext in $(var.exts)?>
<Component
Id=
"$(var.ext)_d.pyd"
Directory=
"DLLs"
Guid=
"*"
>
<File
Name=
"$(var.ext)_d.pyd"
/>
</Component>
<Component
Id=
"
_testconsole
_d.pdb"
Directory=
"DLLs"
Guid=
"*"
>
<File
Id=
"_testconsole_d.pdb"
Name=
"_testconsole
_d.pdb"
/>
<Component
Id=
"
$(var.ext)
_d.pdb"
Directory=
"DLLs"
Guid=
"*"
>
<File
Name=
"$(var.ext)
_d.pdb"
/>
</Component>
<?endforeach ?>
</ComponentGroup>
</Fragment>
</Wix>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment