Merge pull request #10362 from nextcloud/fix/remove-outdated-windows-enablers

fix: Remove outdated "windows enablers"
This commit is contained in:
Joas Schilling
2023-05-12 08:28:48 +02:00
committed by GitHub
10 changed files with 0 additions and 3794 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1,50 +0,0 @@
@echo off
set WIN32PATH=%CD%\win32
set PATH=%PATH%;%WIN32PATH%
set OLDDIR=%CD%
set TMPDIR=%TEMP%\sphinx-install
if defined ProgramFiles(x86) (
set msi="python-2.7.6.amd64.msi"
) else (
set msi="python-2.7.6.msi"
)
set PYTHONURL="http://www.python.org/ftp/python/2.7.6/%msi%"
set EZSETUPURL="http://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py"
set EASY_INSTALL="C:\Python27\Scripts\easy_install"
rmdir /s /q %TMPDIR%
mkdir %TMPDIR%
cd %TMPDIR%
echo Fetching Python...
wget %PYTHONURL%
echo Fetching Python Easy Setup...
wget --ca-certificate=%WIN32PATH%\ca-bundle.crt %EZSETUPURL%
echo Fetching RST2PDF...
wget --ca-certificate=%WIN32PATH%\ca-bundle.crt %RST2PDFURL%
echo Installing Python...
msiexec /i %msi% /qb ADDLOCAL="Extensions" ADDLOCAL="Tools" ALLUSERS=1
echo Installing Python Easy Setup...
C:\Python27\python.exe ez_setup.py
echo Installing Sphinx...
%EASY_INSTALL% -U sphinx
echo Installing RST2PDF...
%EASY_INSTALL% -U rst2pdf
echo Installing Sphinx PHP Domain...
%EASY_INSTALL% -U sphinxcontrib-phpdomain
echo Setting SPHINXBUILD variable...
setx SPHINXBUILD C:\Python27\Scripts\sphinx-build.exe
echo Removing temporary directory...
cd %OLDDIR%
rmdir /s /q %TMPDIR%
echo Done!
pause

Binary file not shown.

Binary file not shown.

View File

@@ -1,6 +0,0 @@
Helper tools for Windows
------------------------
- wget.exe: Statically compiled wget from
https://code.google.com/p/mingw-and-ndk/downloads/detail?name=wget-1.13.4-static-mingw.7z
- ca-bundle.crt: Static root bundle from Firefox for use with wget

File diff suppressed because it is too large Load Diff

Binary file not shown.