mirror of
https://github.com/ScoopInstaller/Main.git
synced 2025-11-04 15:51:23 +00:00
Vim: use stable build (#556)
* Vim: use stable build * No need to use pipeline * No need to use pipeline
This commit is contained in:
parent
42de9586bf
commit
64137e7d50
139
bucket/vim-nightly.json
Normal file
139
bucket/vim-nightly.json
Normal file
@ -0,0 +1,139 @@
|
|||||||
|
{
|
||||||
|
"homepage": "https://www.vim.org",
|
||||||
|
"description": "A highly configurable text editor for efficiently creating and changing any kind of text.",
|
||||||
|
"license": "Vim",
|
||||||
|
"version": "8.1.2260",
|
||||||
|
"architecture": {
|
||||||
|
"64bit": {
|
||||||
|
"url": [
|
||||||
|
"https://github.com/vim/vim-win32-installer/releases/download/v8.1.2269/gvim_8.1.2269_x64.zip",
|
||||||
|
"https://raw.githubusercontent.com/ScoopInstaller/Main/master/scripts/vim/install-context.reg",
|
||||||
|
"https://raw.githubusercontent.com/ScoopInstaller/Main/master/scripts/vim/uninstall-context.reg"
|
||||||
|
],
|
||||||
|
"hash": [
|
||||||
|
"ed00cbf6c9e3c9bc14dfed025155f29877d37b86a08d62bcddba17ad7e678468",
|
||||||
|
"16a29881837047d783e8556506c73bbb292bdfefe042d77564d3c166d92b9d98",
|
||||||
|
"49225d3470bf4b397d3cab865eddca6e47610be356f812588588c2661a11557e"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"32bit": {
|
||||||
|
"url": [
|
||||||
|
"https://github.com/vim/vim-win32-installer/releases/download/v8.1.2269/gvim_8.1.2269_x86.zip",
|
||||||
|
"https://raw.githubusercontent.com/ScoopInstaller/Main/master/scripts/vim/install-context.reg",
|
||||||
|
"https://raw.githubusercontent.com/ScoopInstaller/Main/master/master/scripts/vim/uninstall-context.reg"
|
||||||
|
],
|
||||||
|
"hash": [
|
||||||
|
"59aafc968faa2bc766d53f48faac7378e5f8c1f620c696d936ff0f0650a64880",
|
||||||
|
"16a29881837047d783e8556506c73bbb292bdfefe042d77564d3c166d92b9d98",
|
||||||
|
"49225d3470bf4b397d3cab865eddca6e47610be356f812588588c2661a11557e"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"extract_dir": "vim\\vim81",
|
||||||
|
"pre_install": [
|
||||||
|
"Remove-Item \"$dir\\`$*\", \"$dir\\uninstal.*\", \"$dir\\install.exe\" -Recurse",
|
||||||
|
"if (!(Test-Path \"$persist_dir\\_vimrc\")) {",
|
||||||
|
" Copy-Item \"$dir\\vimrc_example.vim\" \"$dir\\_vimrc\"",
|
||||||
|
" Copy-Item \"$dir\\gvimrc_example.vim\" \"$dir\\_gvimrc\"",
|
||||||
|
" Add-Content \"$dir\\_vimrc\" \"set shell=$((Get-Command powershell).Path)\\ -ExecutionPolicy\\ Bypass\" -Encoding Ascii",
|
||||||
|
"}",
|
||||||
|
"'install-context.reg', 'uninstall-context.reg' | ForEach-Object {",
|
||||||
|
" $vimpath = \"$(current_dir $dir)\\gVim.exe\".Replace('\\', '\\\\')",
|
||||||
|
" $content = (Get-Content \"$dir\\$_\").Replace('$vim', $vimpath)",
|
||||||
|
" if ($global) { $content = $content.Replace('HKEY_CURRENT_USER', 'HKEY_LOCAL_MACHINE') }",
|
||||||
|
" Set-Content \"$dir\\$_\" $content",
|
||||||
|
"}"
|
||||||
|
],
|
||||||
|
"bin": [
|
||||||
|
"vim.exe",
|
||||||
|
[
|
||||||
|
"vim.exe",
|
||||||
|
"vi"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"vim.exe",
|
||||||
|
"ex",
|
||||||
|
"-e"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"vim.exe",
|
||||||
|
"view",
|
||||||
|
"-R"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"vim.exe",
|
||||||
|
"rvim",
|
||||||
|
"-Z"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"vim.exe",
|
||||||
|
"rview",
|
||||||
|
"-RZ"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"vim.exe",
|
||||||
|
"vimdiff",
|
||||||
|
"-d"
|
||||||
|
],
|
||||||
|
"gvim.exe",
|
||||||
|
[
|
||||||
|
"gvim.exe",
|
||||||
|
"gview",
|
||||||
|
"-R"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"gvim.exe",
|
||||||
|
"evim",
|
||||||
|
"-y"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"gvim.exe",
|
||||||
|
"eview",
|
||||||
|
"-Ry"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"gvim.exe",
|
||||||
|
"rgvim",
|
||||||
|
"-Z"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"gvim.exe",
|
||||||
|
"rgview",
|
||||||
|
"-RZ"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"gvim.exe",
|
||||||
|
"gvimdiff",
|
||||||
|
"-d"
|
||||||
|
],
|
||||||
|
"xxd.exe"
|
||||||
|
],
|
||||||
|
"shortcuts": [
|
||||||
|
[
|
||||||
|
"gvim.exe",
|
||||||
|
"gVim"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"persist":[
|
||||||
|
"_vimrc",
|
||||||
|
"_gvimrc",
|
||||||
|
"vimfiles"
|
||||||
|
],
|
||||||
|
"checkver": {
|
||||||
|
"github": "https://github.com/vim/vim-win32-installer"
|
||||||
|
},
|
||||||
|
"autoupdate": {
|
||||||
|
"architecture": {
|
||||||
|
"64bit": {
|
||||||
|
"url": "https://github.com/vim/vim-win32-installer/releases/download/v$version/gvim_$version_x64.zip"
|
||||||
|
},
|
||||||
|
"32bit": {
|
||||||
|
"url": "https://github.com/vim/vim-win32-installer/releases/download/v$version/gvim_$version_x86.zip"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"extract_dir": "vim\\vim$majorVersion$minorVersion"
|
||||||
|
},
|
||||||
|
"suggest": {
|
||||||
|
"vimtutor": "vimtutor"
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -1,19 +1,33 @@
|
|||||||
{
|
{
|
||||||
"homepage": "http://www.vim.org",
|
"homepage": "https://www.vim.org",
|
||||||
"description": "A highly configurable text editor for efficiently creating and changing any kind of text.",
|
"description": "A highly configurable text editor for efficiently creating and changing any kind of text.",
|
||||||
"license": "Vim",
|
"license": "Vim",
|
||||||
"version": "8.2.0008",
|
"version": "8.1.1",
|
||||||
"architecture": {
|
"url": [
|
||||||
"64bit": {
|
"https://ftp.nluug.nl/pub/vim/pc/gvim81.exe#/dl.7z",
|
||||||
"url": "https://github.com/vim/vim-win32-installer/releases/download/v8.2.0008/gvim_8.2.0008_x64.zip",
|
"https://raw.githubusercontent.com/ScoopInstaller/Main/master/scripts/vim/install-context.reg",
|
||||||
"hash": "0607b91d2869a75986af504f2cab56b73e58b80a86e30d090d8e5b3ef3ae3434"
|
"https://raw.githubusercontent.com/ScoopInstaller/Main/master/scripts/vim/uninstall-context.reg"
|
||||||
},
|
],
|
||||||
"32bit": {
|
"hash": [
|
||||||
"url": "https://github.com/vim/vim-win32-installer/releases/download/v8.2.0008/gvim_8.2.0008_x86.zip",
|
"md5:14391c74929552db62acc6bca9efbe1b",
|
||||||
"hash": "2c79d0b141568d5d614d432dae333e3c7b0ebe578bac795930af9405310ed548"
|
"16a29881837047d783e8556506c73bbb292bdfefe042d77564d3c166d92b9d98",
|
||||||
}
|
"49225d3470bf4b397d3cab865eddca6e47610be356f812588588c2661a11557e"
|
||||||
},
|
],
|
||||||
"extract_dir": "vim\\vim82",
|
"extract_dir": "$0",
|
||||||
|
"pre_install": [
|
||||||
|
"Remove-Item \"$dir\\`$*\", \"$dir\\uninstal.*\", \"$dir\\install.exe\" -Recurse",
|
||||||
|
"if (!(Test-Path \"$persist_dir\\_vimrc\")) {",
|
||||||
|
" Copy-Item \"$dir\\vimrc_example.vim\" \"$dir\\_vimrc\"",
|
||||||
|
" Copy-Item \"$dir\\gvimrc_example.vim\" \"$dir\\_gvimrc\"",
|
||||||
|
" Add-Content \"$dir\\_vimrc\" \"set shell=$((Get-Command powershell).Path)\\ -ExecutionPolicy\\ Bypass\" -Encoding Ascii",
|
||||||
|
"}",
|
||||||
|
"'install-context.reg', 'uninstall-context.reg' | ForEach-Object {",
|
||||||
|
" $vimpath = \"$(current_dir $dir)\\gVim.exe\".Replace('\\', '\\\\')",
|
||||||
|
" $content = (Get-Content \"$dir\\$_\").Replace('$vim', $vimpath)",
|
||||||
|
" if ($global) { $content = $content.Replace('HKEY_CURRENT_USER', 'HKEY_LOCAL_MACHINE') }",
|
||||||
|
" Set-Content \"$dir\\$_\" $content",
|
||||||
|
"}"
|
||||||
|
],
|
||||||
"bin": [
|
"bin": [
|
||||||
"vim.exe",
|
"vim.exe",
|
||||||
[
|
[
|
||||||
@ -84,27 +98,21 @@
|
|||||||
"gVim"
|
"gVim"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"post_install": [
|
"persist": [
|
||||||
"if( !(test-path ~\\.vimrc) -and !(test-path ~\\_vimrc) -and !(test-path ~\\vimfiles\\vimrc) -and !(test-path $env:VIM\\_vimrc) ) {",
|
"_vimrc",
|
||||||
" cp \"$dir\\vimrc_example.vim\" ~\\_vimrc",
|
"_gvimrc",
|
||||||
" \"set shell=$((gcm powershell).path)\\ -executionpolicy\\ bypass\" | out-file ~\\_vimrc -append -encoding ascii",
|
"vimfiles"
|
||||||
" echo 'Default vimrc file created in ~/_vimrc, with shell set to PowerShell.'",
|
|
||||||
"} else { echo 'Existing vimrc file found, no default configuration created' }"
|
|
||||||
],
|
],
|
||||||
"checkver": {
|
"checkver": {
|
||||||
"github": "https://github.com/vim/vim-win32-installer"
|
"url": "https://ftp.nluug.nl/pub/vim/pc",
|
||||||
|
"regex": "gvim(?<ver>[\\d-]+)\\.exe\\s+V([\\d.]+)"
|
||||||
},
|
},
|
||||||
"autoupdate": {
|
"autoupdate": {
|
||||||
"architecture": {
|
"url": "https://ftp.nluug.nl/pub/vim/pc/gvim$matchVer.exe#/dl.7z",
|
||||||
"64bit": {
|
"hash": {
|
||||||
"url": "https://github.com/vim/vim-win32-installer/releases/download/v$version/gvim_$version_x64.zip"
|
"url": "$baseurl/MD5SUMS"
|
||||||
},
|
|
||||||
"32bit": {
|
|
||||||
"url": "https://github.com/vim/vim-win32-installer/releases/download/v$version/gvim_$version_x86.zip"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"extract_dir": "vim\\vim$majorVersion$minorVersion"
|
|
||||||
},
|
|
||||||
"suggest": {
|
"suggest": {
|
||||||
"vimtutor": "vimtutor"
|
"vimtutor": "vimtutor"
|
||||||
}
|
}
|
||||||
|
|||||||
7
scripts/vim/install-context.reg
Normal file
7
scripts/vim/install-context.reg
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Windows Registry Editor Version 5.00
|
||||||
|
|
||||||
|
[HKEY_CURRENT_USER\Software\Classes\*\shell\Edit with &Vim]
|
||||||
|
@="Edit with &Vim"
|
||||||
|
"Icon"="$vim"
|
||||||
|
[HKEY_CURRENT_USER\Software\Classes\*\shell\Edit with &Vim\command]
|
||||||
|
@="\"$vim\" \"%1\""
|
||||||
4
scripts/vim/uninstall-context.reg
Normal file
4
scripts/vim/uninstall-context.reg
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
Windows Registry Editor Version 5.00
|
||||||
|
|
||||||
|
[-HKEY_CURRENT_USER\Software\Classes\*\shell\Edit with &Vim]
|
||||||
|
[-HKEY_CURRENT_USER\Software\Classes\*\shell\Edit with &Vim\command]
|
||||||
Loading…
x
Reference in New Issue
Block a user