/usr/share/weboob/windows-install/setup-weboob.bat is in weboob 1.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 | @echo off
setlocal enableextensions enabledelayedexpansion
call settings.cmd
echo.
echo 0.Set proxy
set/P HTTP_PROXY=Enter HTTP_PROXY if needed :
set/P HTTPS_PROXY=Enter HTTPS_PROXY if needed :
echo.
echo 1.GNU/WGET Init
set WGET=wget-%ARCHITECTURE%.exe
echo.
echo 2.Check Python Installation
rem check first possible key
set KEY_NAME=HKLM\Software\Python\PythonCore\2.7\InstallPath
if %ARCHITECTURE% == x64 (
set KEY_NAME=HKLM\SOFTWARE\Python\PythonCore\2.7\InstallPath
)
set IsPythonInstalled=0
REG QUERY !KEY_NAME! >NUL 2>NUL
if %ERRORLEVEL% EQU 0 (
set IsPythonInstalled=1
) else (
rem first key doesn't exist, test the second possible key
set KEY_NAME=HKCU\Software\Python\PythonCore\2.7\InstallPath
REG QUERY !KEY_NAME! >NUL 2>NUL
if %ERRORLEVEL% EQU 0 (
set IsPythonInstalled=1
)
)
if %IsPythonInstalled% EQU 1 (
rem check installed python version
for /F "tokens=4" %%A IN ('REG QUERY !KEY_NAME!') do (
set PythonPath=%%A
)
!PythonPath!python.exe --version 2>&1 | find /i "!PYTHON_VERSION!" > tmp.txt
if %ERRORLEVEL% EQU 1 (
set IsPythonInstalled=0
) else (
FOR /F "eol=; tokens=2 delims=." %%i in (tmp.txt) do set minor_version=%%i
if !minor_version! LSS !PYTHON_MINOR_VERSION! (
set IsPythonInstalled=0
)
)
del tmp.txt
)
if %IsPythonInstalled% EQU 0 (
rem Python is not installed
set PYTHON_MSI=python-!PYTHON_VERSION!.msi
if %ARCHITECTURE% == x64 (
set PYTHON_MSI=python-!PYTHON_VERSION!.amd64.msi
)
echo 2.1 Download !PYTHON_MSI!
"%WGET%" -o python_donwload --no-check-certificate "http://www.python.org/ftp/python/!PYTHON_VERSION!/!PYTHON_MSI!"
echo 2.2 Setup !PYTHON_MSI!
!PYTHON_MSI!
del !PYTHON_MSI!
del python_donwload
)
echo Retrieve Python path
rem check first possible key
set KEY_NAME=HKLM\Software\Python\PythonCore\2.7\InstallPath
if %ARCHITECTURE% == x64 (
set KEY_NAME=HKLM\SOFTWARE\Python\PythonCore\2.7\InstallPath
)
REG QUERY !KEY_NAME! >NUL 2>NUL
if %ERRORLEVEL% EQU 1 (
rem first key doesn't exist, test the second possible key
set KEY_NAME=HKCU\Software\Python\PythonCore\2.7\InstallPath
)
for /F "tokens=4" %%A IN ('REG QUERY !KEY_NAME!') do (
set PythonPath=%%A
)
echo.
echo 3.Check EasyInstall
if exist "%PythonPath%Scripts\easy_install.exe" (
goto :step4
) else (
echo 3.1 Setup setuptools
%PythonPath%python.exe ez_setup.py || goto :InstallFailed
del setuptools-1.1.6.tar.gz
goto :step4
)
:step4
echo.
echo 4.PyQt5 Installation
%PythonPath%Scripts\easy_install.exe python-qt5 || goto :InstallFailed
echo.
echo 5.Check Gpg4win Installation
set ShouldReboot=0
set KEY_NAME=HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\GPG4Win
REG QUERY %KEY_NAME% > nul 2>NUL || (
echo 5.1 Download Gpg4win
"%WGET%" -o gpg4win_download http://files.gpg4win.org/gpg4win-2.2.2.exe
echo 5.2 Setup Gpg4win
gpg4win-2.2.2.exe
set ShouldReboot=1
del gpg4win-2.2.2.exe
del gpg4win_download
)
echo.
echo 6.Install Weboob Dependances
echo.
echo -- cssselect
%PythonPath%Scripts\easy_install.exe cssselect || goto :InstallFailed
echo.
echo -- lxml
%PythonPath%Scripts\easy_install.exe lxml==3.2.5 || goto :InstallFailed
echo.
echo -- dateutils
%PythonPath%Scripts\easy_install.exe dateutils || goto :InstallFailed
echo.
echo -- pyyaml
%PythonPath%Scripts\easy_install.exe pyyaml || goto :InstallFailed
echo.
echo -- html2text
%PythonPath%Scripts\easy_install.exe html2text || goto :InstallFailed
echo.
echo -- mechanize
%PythonPath%Scripts\easy_install.exe mechanize || goto :InstallFailed
echo.
echo -- google-api-python-client
%PythonPath%Scripts\easy_install.exe google-api-python-client || goto :InstallFailed
echo.
echo -- feedparser
%PythonPath%Scripts\easy_install.exe feedparser || goto :InstallFailed
echo.
echo -- pillow
%PythonPath%Scripts\easy_install.exe pillow==2.3.0 || goto :InstallFailed
echo.
echo -- requests
%PythonPath%Scripts\easy_install.exe requests==2.3.0 || goto :InstallFailed
echo.
echo 6.Install WeBoob
%PythonPath%Scripts\easy_install.exe %WEBOOB% || goto :InstallFailed
set StartupFolder=%AppData%\Microsoft\Windows\Start Menu\Programs
if exist "%StartupFolder%" Goto :FoundStartup
set StartupFolder=%UserProfile%\Start Menu\Programs
if exist "%StartupFolder%" Goto :FoundStartup
echo Cannot find Startup folder.
echo do not create launchers
goto :InstallSucceed
:FoundStartup
if exist "%StartupFolder%\Weboob" (
goto :CreateLauncher
) else (
md "%StartupFolder%\Weboob"
goto :CreateLauncher
)
:CreateLauncher
for %%i in (%LIST_APPLIQUATIONS_QT%) do (
echo Process %%i
(
echo @echo off
echo start %PythonPath%pythonw.exe %PythonPath%Scripts\%%i
) > %%i.bat
%PythonPath%python.exe convertPNG2ICO.py "%PythonPath%\Lib\site-packages\%WEBOOB%\share\icons\hicolor\64x64\apps\%%i.png" > nul
if exist "%StartupFolder%\Weboob\%%i.exe" (
del "%StartupFolder%\Weboob\%%i.exe"
)
"Bat_To_Exe_Converter_%ARCHITECTURE%.exe" -bat "%%i.bat" -save "%StartupFolder%\Weboob\%%i.exe" -icon "%PythonPath%\Lib\site-packages\%WEBOOB%\share\icons\hicolor\64x64\apps\%%i.ico" "%%i"
del "%%i.bat"
del "%PythonPath%\Lib\site-packages\%WEBOOB%\share\icons\hicolor\64x64\apps\%%i.ico"
)
goto :InstallSucceed
:InstallSucceed
echo.
echo INSTALLATION PROCESS SUCCEED
if %ShouldReboot% EQU 1 (
echo.
echo YOU SHOULD REBOOT BEFORE USING WEBOOB
)
goto :Quit
:InstallFailed
echo.
echo INSTALLATION PROCESS FAILED
goto :Quit
:Quit
del "%WEBOOB%"
del ez_setup.py
del convertPNG2ICO.py
del settings.cmd
pause
|