Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
4782ab3a
Kaydet (Commit)
4782ab3a
authored
Eki 29, 2016
tarafından
Steve Dower
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Adds missing _asyncio.pyd to installer and generally tidies pyd management.
üst
868147b0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
69 deletions
+23
-69
lib_files.wxs
Tools/msi/lib/lib_files.wxs
+1
-1
make_zip.py
Tools/msi/make_zip.py
+1
-0
test_files.wxs
Tools/msi/test/test_files.wxs
+21
-68
No files found.
Tools/msi/lib/lib_files.wxs
Dosyayı görüntüle @
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
Dosyayı görüntüle @
4782ab3a
...
...
@@ -19,6 +19,7 @@ DEBUG_FILES = {
'_ctypes_test'
,
'_testbuffer'
,
'_testcapi'
,
'_testconsole'
,
'_testimportmultiple'
,
'_testmultiphase'
,
'xxlimited'
,
...
...
Tools/msi/test/test_files.wxs
Dosyayı görüntüle @
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