forked from amix/vimrc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate_plugins.py
More file actions
101 lines (84 loc) · 3.99 KB
/
update_plugins.py
File metadata and controls
101 lines (84 loc) · 3.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import zipfile
import shutil
import tempfile
import requests
import subprocess as sub
from os import path
from sys import exit
#--- Globals ----------------------------------------------
PLUGINS = [
'ack.vim https://github.com/mileszs/ack.vim',
'bufexplorer https://github.com/corntrace/bufexplorer',
'ctrlp.vim https://github.com/kien/ctrlp.vim',
'mayansmoke https://github.com/vim-scripts/mayansmoke',
'nerdtree https://github.com/scrooloose/nerdtree',
'nginx.vim https://github.com/vim-scripts/nginx.vim',
'open_file_under_cursor.vim https://github.com/amix/open_file_under_cursor.vim',
'snipmate-snippets https://github.com/scrooloose/snipmate-snippets',
'taglist.vim https://github.com/vim-scripts/taglist.vim',
'tlib https://github.com/vim-scripts/tlib',
'vim-addon-mw-utils https://github.com/MarcWeber/vim-addon-mw-utils',
'vim-bundle-mako https://github.com/sophacles/vim-bundle-mako',
'vim-coffee-script https://github.com/kchmck/vim-coffee-script',
'vim-colors-solarized https://github.com/altercation/vim-colors-solarized',
'vim-indent-object https://github.com/michaeljsmith/vim-indent-object',
'vim-less https://github.com/groenewege/vim-less',
'vim-markdown https://github.com/tpope/vim-markdown',
'vim-pyte https://github.com/therubymug/vim-pyte',
'vim-snipmate https://github.com/garbas/vim-snipmate',
'vim-snippets https://github.com/honza/vim-snippets',
'vim-surround https://github.com/tpope/vim-surround',
'vim-expand-region https://github.com/terryma/vim-expand-region',
'vim-multiple-cursors https://github.com/terryma/vim-multiple-cursors',
'vim-fugitive https://github.com/tpope/vim-fugitive',
'vim-airline https://github.com/bling/vim-airline',
'vim-airline-themes https://github.com/vim-airline/vim-airline-themes',
'goyo.vim https://github.com/junegunn/goyo.vim',
'syntastic https://github.com/scrooloose/syntastic',
'vim-repeat https://github.com/tpope/vim-repeat',
'vim-commentary https://github.com/tpope/vim-commentary',
'vim-go https://github.com/fatih/vim-go',
'vim-golang https://github.com/jnwhiteh/vim-golang',
'vim-colorschemes https://github.com/flazz/vim-colorschemes',
'flatlandia https://github.com/jordwalke/flatlandia',
'vim-colorscheme-switcher https://github.com/xolox/vim-colorscheme-switcher',
'SimpylFold https://github.com/tmhedberg/SimpylFold',
#'vimwiki https://github.com/vimwiki/vimwiki',
'vim-puppet https://github.com/evidex/vim-puppet',
'vim-json https://github.com/elzr/vim-json',
'DidYouMean https://github.com/EinfachToll/DidYouMean',
'vim-virtualenv https://github.com/jmcantrell/vim-virtualenv',
'Dpaste.com-Plugin https://github.com/vim-scripts/Dpaste.com-Plugin',
'vim-colors-solarized https://github.com/altercation/vim-colors-solarized',
'vim-search-pulse https://github.com/inside/vim-search-pulse.git'
]
GITHUB_ZIP = '%s/archive/master.zip'
SOURCE_DIR = path.join(path.dirname(__file__), 'sources_non_forked')
def download_extract_replace(plugin_name, zip_path, temp_dir, source_dir):
temp_zip_path = path.join(temp_dir, plugin_name)
# Download and extract file in temp dir
# req = requests.get(zip_path)
# open(temp_zip_path, 'wb').write(req.content)
sub.call(["wget", "-v", zip_path, "-O", temp_zip_path])
zip_f = zipfile.ZipFile(temp_zip_path)
zip_f.extractall(temp_dir)
plugin_temp_path = path.join(temp_dir,
path.join(temp_dir, '%s-master' % plugin_name))
# Remove the current plugin and replace it with the extracted
plugin_dest_path = path.join(source_dir, plugin_name)
try:
shutil.rmtree(plugin_dest_path)
except OSError:
pass
shutil.move(plugin_temp_path, plugin_dest_path)
print('Updated {0}'.format(plugin_name))
if __name__ == '__main__':
temp_directory = tempfile.mkdtemp()
try:
for line in PLUGINS:
name, github_url = line.split(' ')
zip_path = GITHUB_ZIP % github_url
download_extract_replace(name, zip_path,
temp_directory, SOURCE_DIR)
finally:
shutil.rmtree(temp_directory)