-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevelop
executable file
·242 lines (192 loc) · 5.67 KB
/
develop
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
#!/usr/bin/env bash
#
# install-cli
#
# Don't like sh/bash/etc? Sure.
#
# Love sh/bash/etc? Yeah, but....
#
# Let's use it here, to bootstrap whatever tools/libraries/etc. we
# *really* love for our project.
#
# Update INSTALL_VERSION to require the version of install-cli this
# script expects
INSTALL_VERSION=0.0.7
#
# start bootstrap installation lib
#
# This is a *bit* of boilerplate to ensure we've downloaded the correct
# version of install-cli. (You probably don't need to touch this.)
#
INSTALL_FILE=.install.${INSTALL_VERSION//./-}.bash.inc
INSTALL_URL=https://raw.githubusercontent.com/dssg/install-cli/$INSTALL_VERSION/install.bash.inc
[ -f $INSTALL_FILE ] || curl -#L $INSTALL_URL -o $INSTALL_FILE
. $INSTALL_FILE
#
# end bootstrap installation lib
#
#
# start project check/install
#
# This is your time to shine!
# Invoke 'require' to ensure your project's basic requirements are met.
#
#
# NOTE: This would be well-served by pipenv!
#
# NOTE: However, we want to make sure that contributor can manage environment as
# NOTE: simply and straight-forwardly as possible; and, without built-in, automatic
# NOTE: activation of `pipenv shell`, this would be yet another thing for contributors
# NOTE: to know and do.
#
# NOTE: Therefore, pipenv should definitely be explored for meeting similar requirements
# NOTE: in proper software-development projects. But, here, we'll just try to get
# NOTE: folks up-and-running simply, (and in such a way that doesn't preclude a
# NOTE: proper virtualenv/pyenv environment having already been provisioned).
#
# pyenv
pyenv_bin="${PYENV_ROOT:-$HOME/.pyenv}/bin"
exists_pyenv() {
[ -d "$pyenv_bin" ]
}
boostrap_pyenv() {
export PATH="$pyenv_bin:$PATH"
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"
}
install_pyenv() {
curl -#L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash
boostrap_pyenv # bootstrap for subsequent commands
}
require pyenv \
exists_pyenv \
install_pyenv \
--fail-prefix="OPTIONAL dependency not found"
if exists_pyenv
then
echo
icli::set_context pyenv
if icli::check_command pyenv
then
icli::message "${T_FGREEN}initialized ✓"
else
icli::message "${T_FRED}not set up ✗"
icli::message
icli::message "${T_FYELLOW}hint: add the following lines to your .bashrc, .bash_profile or .zshenv, $(tput sitm)etc."
icli::message
icli::message '\texport PATH="~/.pyenv/bin:$PATH"'
icli::message '\teval "$(pyenv init -)"'
icli::message '\teval "$(pyenv virtualenv-init -)"'
icli::message
icli::message "${T_FMAGENTA}reference: https://github.com/pyenv/pyenv"
icli::message "${T_FMAGENTA}reference: https://github.com/pyenv/pyenv-installer/"
boostrap_pyenv # bootstrap for subsequent commands
fi
icli::unset_context
fi
# python
which_python_min() {
# return name of available python command at newest version meeting
# given minimum requirement
#
local min_version="$1"
local installed_info python_exe
for python_exe in $(compgen -c python | grep -E "^python[.0-9]*$" | sort -ru); do
installed_info="$($python_exe --version 2> /dev/null)"
if [ $? = 0 ] && [ -z "$installed_info" ]; then
# python <3.4 printed version to stderr
installed_info="$($python_exe --version 2>&1)"
fi
icli::vercomp "${installed_info#* }" $min_version
if [ $? = 2 ]; then
# (continue to next)
:
else
# we have a winner
echo $python_exe
return 0
fi
done
return 1
}
VENV_NAME="$(<.python-version.current)"
PY_VERSION="${VENV_NAME#ohio-}"
PY_REQUIRED="python${PY_VERSION}"
if icli::check_command pyenv; then
PYTHON_EXE=python
exists_python () {
pyenv versions --bare --skip-aliases | grep -E "^${PY_VERSION}$" > /dev/null
}
install_python() {
pyenv install -s $PY_VERSION
}
require $PY_REQUIRED \
exists_python \
install_python \
--fail-prefix="v${PY_VERSION} not found"
else
PYTHON_EXE=$(which_python_min $PY_VERSION)
PYTHON_OK=$?
exists_python() {
return $PYTHON_OK
}
require $PY_REQUIRED \
exists_python \
--fail-prefix="v${PY_VERSION} (or better) not found" \
--fail-with="please install"
fi
# virtualenv
if icli::check_command pyenv; then
exists_virtualenv() {
pyenv versions --bare --skip-aliases | grep -qE "${VENV_NAME}$"
}
install_virtualenv() {
pyenv virtualenv $PY_VERSION "$VENV_NAME"
ln -s .python-version.current .python-version
}
else
exists_virtualenv() {
local installed_info
if [ -n "$VIRTUAL_ENV" ]; then
installed_info="$("$VIRTUAL_ENV"/bin/python --version 2> /dev/null)"
icli::vercomp "${installed_info#* }" $PY_VERSION
[ $? != 2 ]
else
[ -f .env/bin/activate ]
fi
}
install_virtualenv () {
$PYTHON_EXE -m venv --upgrade --prompt="$VENV_NAME" .env
}
fi
require venv \
exists_virtualenv \
install_virtualenv \
--fail-prefix="project virtual environment \"$VENV_NAME\" not found"
# python libs
PIP_FLAGS=""
if icli::check_command pyenv; then
if [ "$(pyenv version-name)" != "$VENV_NAME" ]; then
PYTHON_EXE="${PYENV_ROOT:-$HOME/.pyenv}/versions/$VENV_NAME/bin/python"
fi
elif [ -f .env/bin/activate ]; then
PYTHON_EXE=.env/bin/python
elif [ -z "$VIRTUAL_ENV" ]; then
PIP_FLAGS="--user"
fi
install_lib() {
$PYTHON_EXE -m pip install $PIP_FLAGS -r requirement/dev.txt
}
# no great way to check that python libs installed;
# rather, always fail check and let pip figure it out
require lib \
icli::always_install \
install_lib \
--fail-message="install libraries (via executable \`$PYTHON_EXE\`)?"
echo
icli::set_context hint
icli::message "${T_FCYAN}now try: ${T_0}manage --help \U1F914"
icli::unset_context
#
# end project check/install
#