Skip to content

Commit 47f0f46

Browse files
authored
Merge pull request #62 from k-takata/strawberry-perl
Switch to Strawberry Perl from ActivePerl
2 parents 482f7f6 + db47458 commit 47f0f46

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ a working Lua installation). This means, those interpreters have to be
2525
installed in addition to Vim. Without it Vim won't be able to use that feature!
2626
You can find those interperters here:
2727

28-
* [ActivePerl](http://www.activestate.com/activeperl/downloads) 5.24
28+
* [Strawberry Perl](http://strawberryperl.com/) 5.28
2929
* [ActiveTcl](http://www.activestate.com/activetcl/downloads) 8.6.6
3030
* [LuaBinaries](http://luabinaries.sourceforge.net/download.html) 5.3
3131
* [Python](https://www.python.org/downloads/) 2.7

appveyor.bat

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ set LUA64_URL=http://downloads.sourceforge.net/luabinaries/lua-5.3.2_Win64_dllw4
1919
set LUA_URL=!LUA%BIT%_URL!
2020
set LUA_DIR=C:\Lua
2121
:: Perl
22-
set PERL_VER=524
23-
set PERL32_URL=http://downloads.activestate.com/ActivePerl/releases/5.24.2.2403/ActivePerl-5.24.2.2403-MSWin32-x86-64int-403863.exe
24-
set PERL64_URL=http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe
22+
set PERL_VER=528
23+
set PERL32_URL=http://strawberryperl.com/download/5.28.0.1/strawberry-perl-5.28.0.1-32bit-portable.zip
24+
set PERL64_URL=http://strawberryperl.com/download/5.28.0.1/strawberry-perl-5.28.0.1-64bit-portable.zip
2525
set PERL_URL=!PERL%BIT%_URL!
26-
set PERL_DIR=C:\ActivePerl
26+
set PERL_DIR=C:\Strawberry\perl
2727
:: Python2
2828
set PYTHON_VER=27
2929
set PYTHON_32_DIR=C:\python%PYTHON_VER%
@@ -107,10 +107,8 @@ call :downloadfile %LUA_URL% downloads\lua.zip
107107
7z x downloads\lua.zip -o%LUA_DIR% > nul || exit 1
108108

109109
:: Perl
110-
call :downloadfile %PERL_URL% downloads\perl.exe
111-
mkdir c:\ActivePerlTemp
112-
start /wait downloads\perl.exe /extract:c:\ActivePerlTemp /exenoui /exenoupdates /quiet /norestart
113-
for /d %%i in (c:\ActivePerlTemp\*) do move %%i %PERL_DIR%
110+
call :downloadfile %PERL_URL% downloads\perl.zip
111+
7z x downloads\perl.zip -o%PERL_DIR%\.. > nul || exit 1
114112

115113
:: Tcl
116114
call :downloadfile %TCL_URL% downloads\tcl.exe

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ deploy:
7272
installation). This means, those interpreters have to be installed in addition to Vim.
7373
Without it Vim won't be able to use that feature! You can find those interperters here:
7474
75-
* [ActivePerl](http://www.activestate.com/activeperl/downloads) 5.24
75+
* [Strawberry Perl](http://strawberryperl.com/) 5.28
7676
* [ActiveTcl](http://www.activestate.com/activetcl/downloads) 8.6.6
7777
* [LuaBinaries](http://luabinaries.sourceforge.net/download.html) 5.3
7878
* [Python](https://www.python.org/downloads/) 2.7

0 commit comments

Comments
 (0)