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
740e1dcd
Kaydet (Commit)
740e1dcd
authored
Kas 02, 2014
tarafından
Zachary Ware
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #17896: Move Windows external lib sources from .. to externals.
üst
048345d4
4b2b1de0
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
13 additions
and
7 deletions
+13
-7
.gitignore
.gitignore
+1
-0
.hgignore
.hgignore
+1
-0
_fix.py
Lib/tkinter/_fix.py
+2
-2
NEWS
Misc/NEWS
+3
-0
get_externals.bat
PCbuild/get_externals.bat
+2
-1
pyproject.props
PCbuild/pyproject.props
+1
-1
readme.txt
PCbuild/readme.txt
+1
-1
test-amd64.bat
Tools/buildbot/test-amd64.bat
+1
-1
test.bat
Tools/buildbot/test.bat
+1
-1
No files found.
.gitignore
Dosyayı görüntüle @
740e1dcd
...
...
@@ -80,4 +80,5 @@ tags
TAGS
.coverage
coverage/
externals/
htmlcov/
.hgignore
Dosyayı görüntüle @
740e1dcd
...
...
@@ -93,6 +93,7 @@ Programs/_freeze_importlib
Programs/_testembed
.coverage
coverage/
externals/
htmlcov/
*.gcda
*.gcno
...
...
Lib/tkinter/_fix.py
Dosyayı görüntüle @
740e1dcd
...
...
@@ -48,8 +48,8 @@ else:
prefix
=
os
.
path
.
join
(
sys
.
base_prefix
,
"tcl"
)
if
not
os
.
path
.
exists
(
prefix
):
# devdir/
..
/tcltk/lib
prefix
=
os
.
path
.
join
(
sys
.
base_prefix
,
os
.
path
.
pardir
,
"tcltk"
,
"lib"
)
# devdir/
externals
/tcltk/lib
prefix
=
os
.
path
.
join
(
sys
.
base_prefix
,
"externals"
,
"tcltk"
,
"lib"
)
prefix
=
os
.
path
.
abspath
(
prefix
)
# if this does not exist, no further search is needed
if
os
.
path
.
exists
(
prefix
):
...
...
Misc/NEWS
Dosyayı görüntüle @
740e1dcd
...
...
@@ -1385,6 +1385,9 @@ Tools/Demos
Windows
-------
- Issue #17896: The Windows build scripts now expect external library sources
to be in ``PCbuild\..\externals`` rather than ``PCbuild\..\..``.
- Issue #17717: The Windows build scripts now use a copy of NASM pulled from
svn.python.org to build OpenSSL.
...
...
PCbuild/get_externals.bat
Dosyayı görüntüle @
740e1dcd
...
...
@@ -2,7 +2,8 @@
setlocal
rem Simple script to fetch source for external libraries
pushd "%~dp0..\.."
if not exist "%~dp0..\externals" mkdir "%~dp0..\externals"
pushd "%~dp0..\externals"
if "%SVNROOT%"=="" set SVNROOT=http://svn.python.org/projects/external/
...
...
PCbuild/pyproject.props
Dosyayı görüntüle @
740e1dcd
...
...
@@ -16,7 +16,7 @@
<PyDllName>
python35$(PyDebugExt)
</PyDllName>
<PythonExe>
$(OutDir)python$(PyDebugExt).exe
</PythonExe>
<KillPythonExe>
$(OutDir)kill_python$(PyDebugExt).exe
</KillPythonExe>
<externalsDir>
..\
..
</externalsDir>
<externalsDir>
..\
externals
</externalsDir>
<sqlite3Dir>
$(externalsDir)\sqlite-3.8.3.1
</sqlite3Dir>
<bz2Dir>
$(externalsDir)\bzip2-1.0.6
</bz2Dir>
<lzmaDir>
$(externalsDir)\xz-5.0.5
</lzmaDir>
...
...
PCbuild/readme.txt
Dosyayı görüntüle @
740e1dcd
...
...
@@ -278,7 +278,7 @@ painless as possible, called "get_externals.bat" and located in this
directory. This script extracts all the external sub-projects from
http://svn.python.org/projects/external
via Subversion (so you'll need svn.exe on your PATH) and places them
in ..\
..
(relative to this directory).
in ..\
externals
(relative to this directory).
It is also possible to download sources from each project's homepage,
though you may have to change folder names or pass the names to MSBuild
...
...
Tools/buildbot/test-amd64.bat
Dosyayı görüntüle @
740e1dcd
...
...
@@ -2,6 +2,6 @@
setlocal
rem The following line should be removed before #20035 is closed
set TCL_LIBRARY=%~dp0..\..\
..
\tcltk64\lib\tcl8.6
set TCL_LIBRARY=%~dp0..\..\
externals
\tcltk64\lib\tcl8.6
call "%~dp0..\..\PCbuild\rt.bat" -d -q -x64 -uall -rwW -n --timeout=3600 %*
Tools/buildbot/test.bat
Dosyayı görüntüle @
740e1dcd
...
...
@@ -2,6 +2,6 @@
setlocal
rem The following line should be removed before #20035 is closed
set TCL_LIBRARY=%~dp0..\..\
..
\tcltk\lib\tcl8.6
set TCL_LIBRARY=%~dp0..\..\
externals
\tcltk\lib\tcl8.6
call "%~dp0..\..\PCbuild\rt.bat" -d -q -uall -rwW -n --timeout=3600 %*
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