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
6b4c63de
Kaydet (Commit)
6b4c63de
authored
May 02, 2015
tarafından
Steve Dower
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Makes embedded distribution a plain ZIP file and corrects pyd exclusion.
üst
19694abd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
12 deletions
+16
-12
make_zip.proj
Tools/msi/make_zip.proj
+2
-1
make_zip.py
Tools/msi/make_zip.py
+14
-11
No files found.
Tools/msi/make_zip.proj
Dosyayı görüntüle @
6b4c63de
...
...
@@ -9,8 +9,9 @@
<Import
Project=
"msi.props"
/>
<PropertyGroup>
<SignOutput>
false
</SignOutput>
<TargetName>
python-$(PythonVersion)-embed-$(ArchName)
</TargetName>
<TargetExt>
.
exe
</TargetExt>
<TargetExt>
.
zip
</TargetExt>
<TargetPath>
$(OutputPath)\en-us\$(TargetName)$(TargetExt)
</TargetPath>
<Arguments>
"$(PythonExe)" "$(MSBuildThisFileDirectory)\make_zip.py"
</Arguments>
<Arguments>
$(Arguments) -e -o "$(TargetPath)" -t "$(IntermediateOutputPath)\zip_$(ArchName)" -a $(ArchName)
</Arguments>
...
...
Tools/msi/make_zip.py
Dosyayı görüntüle @
6b4c63de
...
...
@@ -14,7 +14,19 @@ DEBUG_RE = re.compile(r'_d\.(pyd|dll|exe)$', re.IGNORECASE)
PYTHON_DLL_RE
=
re
.
compile
(
r'python\d\d?\.dll$'
,
re
.
IGNORECASE
)
def
is_not_debug
(
p
):
return
not
DEBUG_RE
.
search
(
p
.
name
)
and
not
TKTCL_RE
.
search
(
p
.
name
)
if
DEBUG_RE
.
search
(
p
.
name
):
return
False
if
TKTCL_RE
.
search
(
p
.
name
):
return
False
return
p
.
name
.
lower
()
not
in
{
'_ctypes_test.pyd'
,
'_testbuffer.pyd'
,
'_testcapi.pyd'
,
'_testimportmultiple.pyd'
,
'xxlimited.pyd'
,
}
def
is_not_debug_or_python
(
p
):
return
is_not_debug
(
p
)
and
not
PYTHON_DLL_RE
.
search
(
p
.
name
)
...
...
@@ -31,14 +43,6 @@ def include_in_lib(p):
return
True
suffix
=
p
.
suffix
.
lower
()
if
suffix
==
'.pyd'
:
return
name
not
in
{
'_ctypes_test.pyd'
,
'_testbuffer.pyd'
,
'_testcapi.pyd'
,
'_testimportmultiple.pyd'
,
'xxlimited.pyd'
,
}
return
suffix
not
in
{
'.pyc'
,
'.pyo'
}
def
include_in_tools
(
p
):
...
...
@@ -153,8 +157,7 @@ def main():
subprocess
.
check_call
([
str
(
rar
),
"a"
,
"-m5"
,
"-ed"
,
"-ep1"
,
"-s"
,
"-r"
,
"-sfxwincon.sfx"
,
"-ed"
,
"-ep1"
,
"-s"
,
"-r"
,
str
(
out
),
str
(
temp
/
'*'
)
])
...
...
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