Mercurial > ec-dotfiles
annotate update-vendor @ 713:4f5b040a589c
Remove support for old openbsd tmux
| author | nanaya <me@nanaya.net> | 
|---|---|
| date | Thu, 19 Oct 2023 05:52:05 +0900 | 
| parents | 4576f1471f53 | 
| children | 42e58cea7821 | 
| rev | line source | 
|---|---|
| 508 
bbcffc594d1e
Vendor what should be vendored and add some more.
 edogawaconan <me@myconan.net> parents: diff
changeset | 1 #!/bin/sh | 
| 
bbcffc594d1e
Vendor what should be vendored and add some more.
 edogawaconan <me@myconan.net> parents: diff
changeset | 2 | 
| 572 | 3 set -u | 
| 4 set -e | |
| 5 | |
| 6 | |
| 704 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 7 for _cmd in wget unzip; do | 
| 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 8 if command -v "$_cmd" > /dev/null 2>&1; then : | 
| 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 9 else | 
| 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 10 echo "${_cmd} is required" | 
| 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 11 exit 1 | 
| 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 12 fi | 
| 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 13 done | 
| 572 | 14 | 
| 508 
bbcffc594d1e
Vendor what should be vendored and add some more.
 edogawaconan <me@myconan.net> parents: diff
changeset | 15 _get() { | 
| 688 | 16 ( | 
| 17 if [ -n "${2:-}" ]; then | |
| 18 mkdir -p "$2" && cd "$2" | |
| 19 fi | |
| 20 wget -nv "$1" | |
| 21 ) | |
| 508 
bbcffc594d1e
Vendor what should be vendored and add some more.
 edogawaconan <me@myconan.net> parents: diff
changeset | 22 } | 
| 
bbcffc594d1e
Vendor what should be vendored and add some more.
 edogawaconan <me@myconan.net> parents: diff
changeset | 23 | 
| 704 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 24 _get_pack_github() { | 
| 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 25 ( | 
| 707 | 26 wget -nv -O - "https://github.com/${1}/${2}/archive/refs/heads/${3}.zip" | unzip -q - | 
| 27 mv "./${2}-${3}" "./${2}" | |
| 704 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 28 ) | 
| 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 29 } | 
| 572 | 30 | 
| 704 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 31 _autoloads() { | 
| 572 | 32 ( | 
| 33 cd "$(dirname "$0")/vendor/vim-autoload" | |
| 34 | |
| 688 | 35 rm -f ./*.vim ./*/*.vim | 
| 572 | 36 _get "https://raw.githubusercontent.com/tpope/vim-pathogen/master/autoload/pathogen.vim" | 
| 37 ) | |
| 704 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 38 } | 
| 572 | 39 | 
| 704 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 40 _syntaxes() { | 
| 572 | 41 ( | 
| 42 cd "$(dirname "$0")/vendor/vim-syntax" | |
| 43 | |
| 688 | 44 rm -f ./*.vim ./*/*.vim | 
| 623 | 45 _get https://hg.nginx.org/nginx/raw-file/tip/contrib/vim/syntax/nginx.vim | 
| 632 
c950f0ef2268
Apparently better use githubusercontent?
 nanaya <me@nanaya.pro> parents: 
631diff
changeset | 46 _get https://raw.githubusercontent.com/jwalton512/vim-blade/master/syntax/blade.vim | 
| 
c950f0ef2268
Apparently better use githubusercontent?
 nanaya <me@nanaya.pro> parents: 
631diff
changeset | 47 _get https://raw.githubusercontent.com/kchmck/vim-coffee-script/master/syntax/coffee.vim | 
| 
c950f0ef2268
Apparently better use githubusercontent?
 nanaya <me@nanaya.pro> parents: 
631diff
changeset | 48 _get https://raw.githubusercontent.com/slim-template/vim-slim/master/syntax/slim.vim | 
| 634 
ced2ee9efd9f
Update various syntaxes to the ones in vim repo
 nanaya <me@nanaya.pro> parents: 
632diff
changeset | 49 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/css.vim | 
| 632 
c950f0ef2268
Apparently better use githubusercontent?
 nanaya <me@nanaya.pro> parents: 
631diff
changeset | 50 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/eruby.vim | 
| 634 
ced2ee9efd9f
Update various syntaxes to the ones in vim repo
 nanaya <me@nanaya.pro> parents: 
632diff
changeset | 51 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/javascript.vim | 
| 632 
c950f0ef2268
Apparently better use githubusercontent?
 nanaya <me@nanaya.pro> parents: 
631diff
changeset | 52 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/json.vim | 
| 
c950f0ef2268
Apparently better use githubusercontent?
 nanaya <me@nanaya.pro> parents: 
631diff
changeset | 53 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/less.vim | 
| 
c950f0ef2268
Apparently better use githubusercontent?
 nanaya <me@nanaya.pro> parents: 
631diff
changeset | 54 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/ruby.vim | 
| 
c950f0ef2268
Apparently better use githubusercontent?
 nanaya <me@nanaya.pro> parents: 
631diff
changeset | 55 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/scss.vim | 
| 672 | 56 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/typescript.vim | 
| 688 | 57 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/shared/typescriptcommon.vim shared | 
| 672 | 58 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/typescriptreact.vim | 
| 572 | 59 ) | 
| 704 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 60 } | 
| 662 
f280738a90a6
[vim] vendor theme and add some more
 nanaya <me@nanaya.pro> parents: 
660diff
changeset | 61 | 
| 704 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 62 _colors() { | 
| 662 
f280738a90a6
[vim] vendor theme and add some more
 nanaya <me@nanaya.pro> parents: 
660diff
changeset | 63 ( | 
| 
f280738a90a6
[vim] vendor theme and add some more
 nanaya <me@nanaya.pro> parents: 
660diff
changeset | 64 cd "$(dirname "$0")/vendor/vim-colors" | 
| 
f280738a90a6
[vim] vendor theme and add some more
 nanaya <me@nanaya.pro> parents: 
660diff
changeset | 65 | 
| 688 | 66 rm -f ./*.vim ./*/*.vim | 
| 662 
f280738a90a6
[vim] vendor theme and add some more
 nanaya <me@nanaya.pro> parents: 
660diff
changeset | 67 _get https://raw.githubusercontent.com/NLKNguyen/papercolor-theme/master/colors/PaperColor.vim | 
| 
f280738a90a6
[vim] vendor theme and add some more
 nanaya <me@nanaya.pro> parents: 
660diff
changeset | 68 _get https://raw.githubusercontent.com/tomasiser/vim-code-dark/master/colors/codedark.vim | 
| 
f280738a90a6
[vim] vendor theme and add some more
 nanaya <me@nanaya.pro> parents: 
660diff
changeset | 69 ) | 
| 704 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 70 } | 
| 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 71 | 
| 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 72 _packs() { | 
| 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 73 ( | 
| 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 74 cd "$(dirname "$0")/vendor/vim-packs" | 
| 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 75 | 
| 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 76 touch empty | 
| 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 77 rm -rf ./* | 
| 707 | 78 _get_pack_github "srcery-colors" "srcery-vim" "master" | 
| 79 _get_pack_github "ctrlpvim" "ctrlp.vim" "master" | |
| 704 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 80 ) | 
| 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 81 } | 
| 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 82 | 
| 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 83 _autoloads | 
| 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 84 _syntaxes | 
| 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 85 _colors | 
| 
1e0f578f6752
Update vendor and add support for vim packs
 nanaya <me@nanaya.net> parents: 
688diff
changeset | 86 _packs | 
