notepad-plus-plus-legacy/PowerEditor/installer/packageAll.bat

249 lines
10 KiB
Batchfile
Raw Normal View History

echo off
rem this file is part of installer for Notepad++
rem Copyright (C)2006 Don HO <don.h@free.fr>
rem
rem This program is free software; you can redistribute it and/or
rem modify it under the terms of the GNU General Public License
rem as published by the Free Software Foundation; either
rem version 2 of the License, or (at your option) any later version.
rem
rem This program is distributed in the hope that it will be useful,
rem but WITHOUT ANY WARRANTY; without even the implied warranty of
rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
rem GNU General Public License for more details.
rem
rem You should have received a copy of the GNU General Public License
rem along with this program; if not, write to the Free Software
rem Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
echo on
if %SIGN% == 0 goto NoSign
2016-02-20 14:26:40 +00:00
signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\notepad++.exe
signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin64\notepad++.exe
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\SciLexer.dll
signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin64\SciLexer.dll
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\NppShell_06.dll
If ErrorLevel 1 goto End
signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\NppShell64_06.dll
signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin64\NppShell64_06.dll
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
sign them manuelly as they are updated
signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\updater\GUP.exe
If ErrorLevel 1 goto End
signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\updater\gpup.exe
If ErrorLevel 1 goto End
signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\updater\libcurl.dll
If ErrorLevel 1 goto End
signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\plugins\NppExport.dll
If ErrorLevel 1 goto End
signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\plugins\mimeTools.dll
signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin64\plugins\mimeTools.dll
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\plugins\NppConverter.dll
signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin64\plugins\NppConverter.dll
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\plugins\PluginManager.dll
If ErrorLevel 1 goto End
:NoSign
2016-02-20 14:26:40 +00:00
rmdir /S /Q .\build
mkdir .\build
rem Notepad++ minimalist package
rmdir /S /Q .\minimalist
mkdir .\minimalist
copy /Y ..\bin\license.txt .\minimalist\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ..\bin\readme.txt .\minimalist\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ..\bin\change.log .\minimalist\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ..\src\config.model.xml .\minimalist\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ..\src\langs.model.xml .\minimalist\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ..\src\stylers.model.xml .\minimalist\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ..\src\contextMenu.xml .\minimalist\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ..\src\shortcuts.xml .\minimalist\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ..\bin\doLocalConf.xml .\minimalist\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ..\bin\"notepad++.exe" .\minimalist\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ..\bin\SciLexer.dll .\minimalist\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
rem Notepad++ Unicode package
rmdir /S /Q .\zipped.package.release
mkdir .\zipped.package.release
mkdir .\zipped.package.release\updater
mkdir .\zipped.package.release\localization
mkdir .\zipped.package.release\themes
mkdir .\zipped.package.release\plugins
mkdir .\zipped.package.release\plugins\APIs
mkdir .\zipped.package.release\plugins\Config
mkdir .\zipped.package.release\plugins\doc
copy /Y ..\bin\license.txt .\zipped.package.release\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ..\bin\readme.txt .\zipped.package.release\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ..\bin\change.log .\zipped.package.release\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ..\src\config.model.xml .\zipped.package.release\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ..\src\langs.model.xml .\zipped.package.release\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ..\src\stylers.model.xml .\zipped.package.release\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ..\src\contextMenu.xml .\zipped.package.release\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ..\src\shortcuts.xml .\zipped.package.release\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ..\src\functionList.xml .\zipped.package.release\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ..\bin\doLocalConf.xml .\zipped.package.release\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ..\bin\"notepad++.exe" .\zipped.package.release\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ..\bin\SciLexer.dll .\zipped.package.release\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
rem Plugins
copy /Y "..\bin\plugins\NppExport.dll" .\zipped.package.release\plugins\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y "..\bin\plugins\mimeTools.dll" .\zipped.package.release\plugins\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y "..\bin\plugins\NppConverter.dll" .\zipped.package.release\plugins\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y "..\bin64\plugins\mimeTools.dll" .\zipped.package.release64\plugins\
If ErrorLevel 1 goto End
copy /Y "..\bin64\plugins\NppConverter.dll" .\zipped.package.release64\plugins\
If ErrorLevel 1 goto End
rem plugins manager and its updater
copy /Y "..\bin\plugins\PluginManager.dll" .\zipped.package.release\plugins\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y "..\bin\updater\gpup.exe" .\zipped.package.release\updater\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
rem localizations
copy /Y ".\nativeLang\*.xml" .\zipped.package.release\localization\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ".\nativeLang\*.xml" .\zipped.package.release64\localization\
If ErrorLevel 1 goto End
rem files API
copy /Y ".\APIs\*.xml" .\zipped.package.release\plugins\APIs\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ".\APIs\*.xml" .\zipped.package.release64\plugins\APIs\
If ErrorLevel 1 goto End
rem theme
copy /Y ".\themes\*.xml" .\zipped.package.release\themes\
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
copy /Y ".\themes\*.xml" .\zipped.package.release64\themes\
If ErrorLevel 1 goto End
"C:\Program Files\7-Zip\7z.exe" a -r .\build\npp.bin.minimalist.7z .\minimalist\*
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
"C:\Program Files\7-Zip\7z.exe" a -tzip -r .\build\npp.bin.zip .\zipped.package.release\*
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
"C:\Program Files\7-Zip\7z.exe" a -r .\build\npp.bin.7z .\zipped.package.release\*
2016-02-20 14:26:40 +00:00
If ErrorLevel 1 goto End
IF EXIST "%PROGRAMFILES(X86)%" ("%PROGRAMFILES(x86)%\NSIS\Unicode\makensis.exe" nppSetup.nsi) ELSE ("%PROGRAMFILES%\NSIS\Unicode\makensis.exe" nppSetup.nsi)
rem Notepad++ Unicode package
rmdir /S /Q .\zipped.package.release
mkdir .\zipped.package.release64
rem mkdir .\zipped.package.release64\updater
mkdir .\zipped.package.release64\localization
mkdir .\zipped.package.release64\themes
mkdir .\zipped.package.release64\plugins
mkdir .\zipped.package.release64\plugins\APIs
mkdir .\zipped.package.release64\plugins\Config
mkdir .\zipped.package.release64\plugins\doc
copy /Y ..\bin\license.txt .\zipped.package.release64\
If ErrorLevel 1 goto End
copy /Y ..\bin\readme.txt .\zipped.package.release64\
If ErrorLevel 1 goto End
copy /Y ..\bin\change.log .\zipped.package.release64\
If ErrorLevel 1 goto End
copy /Y ..\src\config.model.xml .\zipped.package.release64\
If ErrorLevel 1 goto End
copy /Y ..\src\langs.model.xml .\zipped.package.release64\
If ErrorLevel 1 goto End
copy /Y ..\src\stylers.model.xml .\zipped.package.release64\
If ErrorLevel 1 goto End
copy /Y ..\src\contextMenu.xml .\zipped.package.release64\
If ErrorLevel 1 goto End
copy /Y ..\src\shortcuts.xml .\zipped.package.release64\
If ErrorLevel 1 goto End
copy /Y ..\src\functionList.xml .\zipped.package.release64\
If ErrorLevel 1 goto End
copy /Y ..\bin\doLocalConf.xml .\zipped.package.release64\
If ErrorLevel 1 goto End
copy /Y ..\bin64\"notepad++.exe" .\zipped.package.release64\
If ErrorLevel 1 goto End
copy /Y ..\bin64\SciLexer.dll .\zipped.package.release64\
If ErrorLevel 1 goto End
"C:\Program Files\7-Zip\7z.exe" a -tzip -r .\build\npp.bin64.zip .\zipped.package.release64\*
If ErrorLevel 1 goto End
@echo off
setlocal enableDelayedExpansion
cd .\build\
for %%a in (npp.*.Installer.exe) do (
rem echo a = %%a
set nppInstallerVar=%%a
set zipvar=!nppInstallerVar:Installer.exe=bin.zip!
set 64zipvar=!nppInstallerVar:Installer.exe=bin64.zip!
set 7zvar=!nppInstallerVar:Installer.exe=bin.7z!
set 7zvarMin=!nppInstallerVar:Installer.exe=bin.minimalist.7z!
)
rem echo z=!zipvar!
ren npp.bin.zip !zipvar!
ren npp.bin64.zip !64zipvar!
ren npp.bin.7z !7zvar!
ren npp.bin.minimalist.7z !7zvarMin!
2016-02-20 14:26:40 +00:00
if %SIGN% == 0 goto NoSignInstaller
2016-02-20 14:26:40 +00:00
signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++ Installer" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ !nppInstallerVar!
:NoSignInstaller
cd ..
endlocal
2016-02-20 14:26:40 +00:00
:End