diff options
author | watcherhd <watcherhd@gmail.com> | 2017-08-11 08:08:41 +0300 |
---|---|---|
committer | watcherhd <watcherhd@gmail.com> | 2017-08-11 08:08:56 +0300 |
commit | 49af8c8d81ea785622fe037ed4db75a47aa359f4 (patch) | |
tree | a5dcbc3a29a1a625597545e299d67b8e826a371a /tools/build_scripts | |
parent | bb751cb231abc116f1a2b1385a7ce7d0e2884342 (diff) |
unneeded scripts removed
Diffstat (limited to 'tools/build_scripts')
19 files changed, 0 insertions, 445 deletions
diff --git a/tools/build_scripts/bin10/MirUpdateStatrt.bat b/tools/build_scripts/bin10/MirUpdateStatrt.bat deleted file mode 100644 index dc2e847478..0000000000 --- a/tools/build_scripts/bin10/MirUpdateStatrt.bat +++ /dev/null @@ -1,27 +0,0 @@ -for %%i IN (1) do call taskkill /T /IM miranda32.exe -if %errorlevel% ==0 (goto :EXIT) else (goto :ACT) -:EXIT -timeout 1 -for %%i IN (1) do call taskkill /T /IM miranda32.exe -if %errorlevel% ==0 goto :EXIT - -:ACT -pushd Release -rd /s /q OBJ >nul -popd -xcopy /S /Y "Release\*.dll" "E:\MirandaNG\" -xcopy /S /Y "Release\*.mir" "E:\MirandaNG\" -copy /V /Y "Release\Plugins\tox.ini" "E:\MirandaNG\Plugins\" -copy /V /Y "Release\miranda32.exe" "E:\MirandaNG\" -del /F /S /Q "Release\*.dll" >> nul -del /F /S /Q "Release\*.mir" >> nul -del /F /Q "Release\miranda32.exe" - -rd /S /Q "Release" >nul - -pushd E:\MirandaNG -call rebaser.cmd -start /b miranda32.exe -cd Languages\Lang -svn update -popd
\ No newline at end of file diff --git a/tools/build_scripts/bin10/vad.bat b/tools/build_scripts/bin10/vad.bat deleted file mode 100644 index d4d3ea10c5..0000000000 --- a/tools/build_scripts/bin10/vad.bat +++ /dev/null @@ -1,21 +0,0 @@ -rem @echo off - -pushd ..\plugins - -pushd mRadio -call make.bat fpc 10 -if errorlevel 1 goto :Error -popd - -pushd QuickSearch -call make.bat fpc 10 -if errorlevel 1 goto :Error -popd - -popd -goto :eof - -:Error -echo ============================= FAIL! ============================= -pause -exit
\ No newline at end of file diff --git a/tools/build_scripts/bin10/vad64.bat b/tools/build_scripts/bin10/vad64.bat deleted file mode 100644 index cbc72d10f5..0000000000 --- a/tools/build_scripts/bin10/vad64.bat +++ /dev/null @@ -1,21 +0,0 @@ -rem @echo off - -pushd ..\plugins - -pushd mRadio -call make.bat fpc64 10 -if errorlevel 1 goto :Error -popd - -pushd QuickSearch -call make.bat fpc64 10 -if errorlevel 1 goto :Error -popd - -popd -goto :eof - -:Error -echo ============================= FAIL! ============================= -pause -exit
\ No newline at end of file diff --git a/tools/build_scripts/bin10/w_Rebuild_Plugins.bat b/tools/build_scripts/bin10/w_Rebuild_Plugins.bat deleted file mode 100644 index 484fcec41d..0000000000 --- a/tools/build_scripts/bin10/w_Rebuild_Plugins.bat +++ /dev/null @@ -1,21 +0,0 @@ -call "%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat" - -call git_update.bat - -if exist "Release" rd /Q /S "Release" >nul - -if exist "..\include\m_version.h" del /F /Q "..\include\m_version.h" -echo on -pushd ..\build -call make_ver.bat -popd - -MsBuild.exe "plugs_vad.sln" /m /t:Rebuild /p:Configuration=Release /p:Platform="Win32" /fileLogger /fileLoggerParameters:LogFile=Logs\plugs_vad.log;errorsonly;warningsonly - -call vad.bat - -rd /S /Q "Release\Obj" - -del /F /S /Q "Release\*.pdb" - -popd
\ No newline at end of file diff --git a/tools/build_scripts/bin12/CloseMiranda.vbs b/tools/build_scripts/bin12/CloseMiranda.vbs deleted file mode 100644 index 6ef02f0912..0000000000 --- a/tools/build_scripts/bin12/CloseMiranda.vbs +++ /dev/null @@ -1,11 +0,0 @@ -Set objShell = CreateObject("WScript.Shell") -Set objWmi = GetObject("winmgmts:") - - -strWmiq = "select * from Win32_Process where name='miranda32.exe'" -Set objQResult = objWmi.Execquery(strWmiq) - - -For Each objProcess In objQResult -intRet = objProcess.Terminate(1) -Next
\ No newline at end of file diff --git a/tools/build_scripts/bin12/MirUpdateStatrt.bat b/tools/build_scripts/bin12/MirUpdateStatrt.bat deleted file mode 100644 index 16916b6128..0000000000 --- a/tools/build_scripts/bin12/MirUpdateStatrt.bat +++ /dev/null @@ -1,31 +0,0 @@ -Set Release=Release -Set MirDir=E:\MirandaNG\ - -for %%i IN (1) do call taskkill /T /IM miranda32.exe -if %errorlevel% ==0 (goto :EXIT) else (goto :ACT) -:EXIT -timeout 1 -for %%i IN (1) do call taskkill /T /IM miranda32.exe -if %errorlevel% ==0 goto :EXIT - -:ACT -pushd %Release% -rd /s /q OBJ >nul -popd -xcopy /S /Y "%Release%\*.dll" "%MirDir%" -xcopy /S /Y "%Release%\*.mir" "%MirDir%" -copy /V /Y "%Release%\Plugins\tox.ini" "%MirDir%\Plugins\" -copy /V /Y "%Release%\miranda*.exe" "%MirDir%" -del /F /S /Q "%Release%\*.dll" >> nul -del /F /S /Q "%Release%\*.mir" >> nul -del /F /Q "%Release%\miranda*.exe" -del /F /Q "%Release%\Plugins\tox.ini" - -rem rd /S /Q "Release" - -pushd %MirDir% -call rebaser.cmd -start /b miranda32.exe -cd Languages\Lang -svn update -popd
\ No newline at end of file diff --git a/tools/build_scripts/bin12/git_update.bat b/tools/build_scripts/bin12/git_update.bat deleted file mode 100644 index 9936973e18..0000000000 --- a/tools/build_scripts/bin12/git_update.bat +++ /dev/null @@ -1,5 +0,0 @@ -pushd .. - -git pull --rebase=true --progress -v 2>&1 > update.log - -popd
\ No newline at end of file diff --git a/tools/build_scripts/bin12/svn_update.bat b/tools/build_scripts/bin12/svn_update.bat deleted file mode 100644 index a6090591a4..0000000000 --- a/tools/build_scripts/bin12/svn_update.bat +++ /dev/null @@ -1,21 +0,0 @@ -pushd .. - -del /F /Q version.txt - -svn cleanup - -svn update > update.log - -cd build - -for /F %%g in ('svnversion build.no') do set Revision=%%g - -for /F "tokens=1,2,3 delims= " %%i in (build.no) do set MirVer=%%i.%%j.%%k - -cd .. - -rem echo v%MirVer%_%Revision% > version.txt - -rem svn log -l 30 >> version.txt - -popd
\ No newline at end of file diff --git a/tools/build_scripts/bin12/vad.bat b/tools/build_scripts/bin12/vad.bat deleted file mode 100644 index e197fe87c6..0000000000 --- a/tools/build_scripts/bin12/vad.bat +++ /dev/null @@ -1,21 +0,0 @@ -rem @echo off - -pushd ..\plugins - -pushd mRadio -call make.bat fpc 12 -if errorlevel 1 goto :Error -popd - -pushd QuickSearch -call make.bat fpc 12 -if errorlevel 1 goto :Error -popd - -popd -goto :eof - -:Error -echo ============================= FAIL! ============================= -pause -exit
\ No newline at end of file diff --git a/tools/build_scripts/bin12/vad64.bat b/tools/build_scripts/bin12/vad64.bat deleted file mode 100644 index 7a1c45dcf0..0000000000 --- a/tools/build_scripts/bin12/vad64.bat +++ /dev/null @@ -1,21 +0,0 @@ -rem @echo off - -pushd ..\plugins - -pushd mRadio -call make.bat fpc64 12 -if errorlevel 1 goto :Error -popd - -pushd QuickSearch -call make.bat fpc64 12 -if errorlevel 1 goto :Error -popd - -popd -goto :eof - -:Error -echo ============================= FAIL! ============================= -pause -exit
\ No newline at end of file diff --git a/tools/build_scripts/bin12/w_Rebuild_Plugins.bat b/tools/build_scripts/bin12/w_Rebuild_Plugins.bat deleted file mode 100644 index d61886c103..0000000000 --- a/tools/build_scripts/bin12/w_Rebuild_Plugins.bat +++ /dev/null @@ -1,31 +0,0 @@ -call "%VS120COMNTOOLS%\..\..\VC\vcvarsall.bat" - -call git_update.bat - -if exist "Release" rd /Q /S "Release" >nul - -if exist "..\include\m_version.h" del /F /Q "..\include\m_version.h" -echo on -pushd ..\build -call make_ver.bat -popd - -MsBuild.exe "plugs_vad.sln" /m /t:Rebuild /p:Configuration=Release /p:Platform="Win32" /fileLogger /fileLoggerParameters:LogFile=Logs\plugs_vad.log;errorsonly;warningsonly -set BUILD_STATUS=%ERRORLEVEL% -if %BUILD_STATUS%==0 echo Build success -if not %BUILD_STATUS%==0 goto :Error - -call vad.bat - -rd /S /Q "Release\Obj" - -rem del /F /S /Q "Release\*.pdb" - -rem popd - -goto :eof - -:Error -echo ============================= FAIL! ============================= -pause -exit diff --git a/tools/build_scripts/bin15/MirUpdateStatrt64.bat b/tools/build_scripts/bin15/MirUpdateStatrt64.bat deleted file mode 100644 index bf84ba2e8b..0000000000 --- a/tools/build_scripts/bin15/MirUpdateStatrt64.bat +++ /dev/null @@ -1,40 +0,0 @@ -Set Release=Release64 -Set MirDir=E:\MirandaNG\ - -for %%i IN (1) do call taskkill /T /IM miranda64.exe -if %errorlevel% ==0 (goto :EXIT) else (goto :ACT) -:EXIT -timeout 1 -for %%i IN (1) do call taskkill /T /IM miranda64.exe -if %errorlevel% ==0 goto :EXIT - -:ACT -pushd %Release% -rd /s /q OBJ >nul -popd -xcopy /S /Y "%Release%\*.dll" "%MirDir%" -xcopy /S /Y "%Release%\*.mir" "%MirDir%" -copy /V /Y "%Release%\Plugins\tox.ini" "%MirDir%\Plugins\" -copy /V /Y "%Release%\miranda*.exe" "%MirDir%" -del /F /S /Q "%Release%\*.dll" >> nul -del /F /S /Q "%Release%\*.mir" >> nul -del /F /Q "%Release%\miranda*.exe" -del /F /Q "%Release%\Plugins\tox.ini" - -REM rd /S /Q "Release" - -REM pushd %MirDir% -REM call rebaser.cmd -REM start /b miranda64.exe -REM cd Languages\Lang -REM svn update -REM popd - -pushd "..\langpacks\tool" -LangpackSuite.exe \q \prussian \o"=MINE=.txt" \n%MirDir%\Languages\Langpack_russian.txt -popd - -pushd %MirDir% -call rebaser.cmd -start /b miranda64.exe -popd
\ No newline at end of file diff --git a/tools/build_scripts/bin15/MirUpdateStatrt86.bat b/tools/build_scripts/bin15/MirUpdateStatrt86.bat deleted file mode 100644 index 7c5c1949c9..0000000000 --- a/tools/build_scripts/bin15/MirUpdateStatrt86.bat +++ /dev/null @@ -1,40 +0,0 @@ -Set Release=Release -Set MirDir=E:\MirandaNG\ - -for %%i IN (1) do call taskkill /T /IM miranda32.exe -if %errorlevel% ==0 (goto :EXIT) else (goto :ACT) -:EXIT -timeout 1 -for %%i IN (1) do call taskkill /T /IM miranda32.exe -if %errorlevel% ==0 goto :EXIT - -:ACT -pushd %Release% -rd /s /q OBJ >nul -popd -xcopy /S /Y "%Release%\*.dll" "%MirDir%" -xcopy /S /Y "%Release%\*.mir" "%MirDir%" -copy /V /Y "%Release%\Plugins\tox.ini" "%MirDir%\Plugins\" -copy /V /Y "%Release%\miranda*.exe" "%MirDir%" -del /F /S /Q "%Release%\*.dll" >> nul -del /F /S /Q "%Release%\*.mir" >> nul -del /F /Q "%Release%\miranda*.exe" -del /F /Q "%Release%\Plugins\tox.ini" - -REM rd /S /Q "Release" - -REM pushd %MirDir% -REM call rebaser.cmd -REM start /b miranda32.exe -REM cd Languages\Lang -REM svn update -REM popd - -pushd "..\langpacks\tool" -LangpackSuite.exe \q \prussian \o"=MINE=.txt" \n%MirDir%\Languages\Langpack_russian.txt -popd - -pushd %MirDir% -call rebaser.cmd -start /b miranda32.exe -popd
\ No newline at end of file diff --git a/tools/build_scripts/bin15/git_update.bat b/tools/build_scripts/bin15/git_update.bat deleted file mode 100644 index 9936973e18..0000000000 --- a/tools/build_scripts/bin15/git_update.bat +++ /dev/null @@ -1,5 +0,0 @@ -pushd .. - -git pull --rebase=true --progress -v 2>&1 > update.log - -popd
\ No newline at end of file diff --git a/tools/build_scripts/bin15/svn_update.bat b/tools/build_scripts/bin15/svn_update.bat deleted file mode 100644 index e40d4ca610..0000000000 --- a/tools/build_scripts/bin15/svn_update.bat +++ /dev/null @@ -1,21 +0,0 @@ -pushd .. - -rem del /F /Q version.txt - -svn cleanup - -svn update > update.log - -cd build - -for /F %%g in ('svnversion build.no') do set Revision=%%g - -for /F "tokens=1,2,3 delims= " %%i in (build.no) do set MirVer=%%i.%%j.%%k - -cd .. - -rem echo v%MirVer%_%Revision% > version.txt - -rem svn log -l 30 >> version.txt - -popd
\ No newline at end of file diff --git a/tools/build_scripts/bin15/vad.bat b/tools/build_scripts/bin15/vad.bat deleted file mode 100644 index 37a24c5879..0000000000 --- a/tools/build_scripts/bin15/vad.bat +++ /dev/null @@ -1,21 +0,0 @@ -rem @echo off - -pushd ..\plugins - -pushd mRadio -call make.bat fpc 15 -if errorlevel 1 goto :Error -popd - -pushd QuickSearch -call make.bat fpc 15 -if errorlevel 1 goto :Error -popd - -popd -goto :eof - -:Error -echo ============================= FAIL! ============================= -pause -exit
\ No newline at end of file diff --git a/tools/build_scripts/bin15/vad64.bat b/tools/build_scripts/bin15/vad64.bat deleted file mode 100644 index d5d2b8cb4a..0000000000 --- a/tools/build_scripts/bin15/vad64.bat +++ /dev/null @@ -1,21 +0,0 @@ -rem @echo off - -pushd ..\plugins - -pushd mRadio -call make.bat fpc64 15 -if errorlevel 1 goto :Error -popd - -pushd QuickSearch -call make.bat fpc64 15 -if errorlevel 1 goto :Error -popd - -popd -goto :eof - -:Error -echo ============================= FAIL! ============================= -pause -exit
\ No newline at end of file diff --git a/tools/build_scripts/bin15/w_Rebuild_Plugins64.bat b/tools/build_scripts/bin15/w_Rebuild_Plugins64.bat deleted file mode 100644 index 362975a67e..0000000000 --- a/tools/build_scripts/bin15/w_Rebuild_Plugins64.bat +++ /dev/null @@ -1,33 +0,0 @@ -call call "%ProgramFiles(x86)%\Microsoft Visual Studio\2017\Community\Common7\Tools\VsDevCmd.bat" - -call git_update.bat - -if exist "Release64" rd /Q /S "Release64" >nul - -if exist "..\include\m_version.h" del /F /Q "..\include\m_version.h" -echo on -pushd ..\build -call make_ver.bat -popd - -MsBuild.exe "plugs_vad.sln" /m /t:Rebuild /p:Configuration=Release /p:Platform="x64" /fileLogger /fileLoggerParameters:LogFile=Logs\plugs_vad.log;errorsonly;warningsonly -set BUILD_STATUS=%ERRORLEVEL% -if %BUILD_STATUS%==0 echo Build success -if not %BUILD_STATUS%==0 goto :Error - -call vad64.bat - -..\tools\installer_ng_stable\Tools\wget.exe -P Release64/Libs -r -np -nd -nH -R html -e robots=off https://www.miranda-ng.org/distr/build/x64/ - -rd /S /Q "Release64\Obj" - -rem del /F /S /Q "Release64\*.pdb" - -rem popd - -goto :eof - -:Error -echo ============================= FAIL! ============================= -pause -exit diff --git a/tools/build_scripts/bin15/w_Rebuild_Plugins86.bat b/tools/build_scripts/bin15/w_Rebuild_Plugins86.bat deleted file mode 100644 index a972f72394..0000000000 --- a/tools/build_scripts/bin15/w_Rebuild_Plugins86.bat +++ /dev/null @@ -1,33 +0,0 @@ -call "%ProgramFiles(x86)%\Microsoft Visual Studio\2017\Community\Common7\Tools\VsDevCmd.bat" - -call git_update.bat - -if exist "Release" rd /Q /S "Release" >nul - -if exist "..\include\m_version.h" del /F /Q "..\include\m_version.h" -echo on -pushd ..\build -call make_ver.bat -popd - -MsBuild.exe "plugs_vad.sln" /m /t:Rebuild /p:Configuration=Release /p:Platform="Win32" /fileLogger /fileLoggerParameters:LogFile=Logs\plugs_vad.log;errorsonly;warningsonly -set BUILD_STATUS=%ERRORLEVEL% -if %BUILD_STATUS%==0 echo Build success -if not %BUILD_STATUS%==0 goto :Error - -call vad.bat - -rd /S /Q "Release\Obj" - -..\tools\installer_ng_stable\Tools\wget.exe -P Release/Libs -r -np -nd -nH -R html -e robots=off https://www.miranda-ng.org/distr/build/x86/ - -rem del /F /S /Q "Release\*.pdb" - -rem popd - -goto :eof - -:Error -echo ============================= FAIL! ============================= -pause -exit |