Skip to content

Commit

Permalink
AU: 1 updated - vim
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Jan 29, 2020
1 parent cb948ba commit b02fe12
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions automatic/vim/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ in verifying that this package's contents are trustworthy.
The embedded software have been downloaded from GitHub and can be verified like this:

1. Download the following zips:
32-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.0158/gvim_8.2.0158_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.0158/gvim_8.2.0158_x64.zip>
32-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.0172/gvim_8.2.0172_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.0172/gvim_8.2.0172_x64.zip>
2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'

checksum32: 5101162DCDFE7BF08F0282ABF652DC56DC7D5D177E8C33948F3E26EC6CA9001C
checksum64: D36ACF5771C3F7F4B4937ABA622E9574224814496202936AF052A63CC4657F4C
checksum32: B5D400001F2DBA296983F61326593848BF66D6A147BCE3C65FDBA1D958B97BED
checksum64: BA8FA5AFF89B066FA8FA3B3B2E921FBC724E4B320E5F44EC177DBC687B1B23D8
4 changes: 2 additions & 2 deletions automatic/vim/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ $installDir = Get-InstallDir
$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $installDir
file = "$toolsDir\gvim_8.2.0158_x86.zip"
file64 = "$toolsDir\gvim_8.2.0158_x64.zip"
file = "$toolsDir\gvim_8.2.0172_x86.zip"
file64 = "$toolsDir\gvim_8.2.0172_x64.zip"
}

$installArgs = @{
Expand Down
4 changes: 2 additions & 2 deletions automatic/vim/tools/helpers.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ function Get-Statement()
# Use rmdir because Powershell cannot unlink directory symlink
function Create-SymbolicLink()
{
Get-ChildItem -Path "$installDir\vim" -Exclude "vim$shortversion" -Attributes Directory+!ReparsePoint | % { Remove-Item $_ -Recurse ; New-Item -Path $_ -ItemType Directory }
Get-ChildItem -Path "$installDir\vim" -Exclude "vim$shortversion" -Attributes Directory | % { $_.Name } | % { cmd /c rmdir "$installDir\vim\$_" ; cmd /c mklink /d "$installDir\vim\$_" "$installDir\vim\vim$shortversion" }
Get-ChildItem -Path "$installDir\vim" -Exclude "vim$shortversion" -Attributes Directory+!ReparsePoint | ForEach-Object { Remove-Item $_ -Recurse ; New-Item -Path $_ -ItemType Directory }
Get-ChildItem -Path "$installDir\vim" -Exclude "vim$shortversion" -Attributes Directory | ForEach-Object { $_.Name } | ForEach-Object { cmd /c rmdir "$installDir\vim\$_" ; cmd /c mklink /d "$installDir\vim\$_" "$installDir\vim\vim$shortversion" }
}
2 changes: 1 addition & 1 deletion automatic/vim/vim.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>vim</id>
<title>Vim</title>
<version>8.2.0158</version>
<version>8.2.0172</version>
<authors>Bram Moolenaar, Vim Community</authors>
<owners>chocolatey, Rob Reynolds, matsuhav</owners>
<summary>Vim is an advanced text editor that seeks to provide the power of the de-facto Unix editor 'Vi', with a more complete feature set. It's useful whether you're already using vi or using a different editor.</summary>
Expand Down

0 comments on commit b02fe12

Please sign in to comment.