Separating python2 (stayed at 1.8.5) and python3 (updated to 2.0.1) Added check() Added sphinxcontrib* sub-packages which were recently separated Revised dependencies
15 lines
278 B
Plaintext
15 lines
278 B
Plaintext
post_install() {
|
|
cd mingw32
|
|
local _prefix=$(pwd -W)
|
|
cd -
|
|
local _it
|
|
for _it in sphinx-apidoc sphinx-autogen sphinx-build sphinx-quickstart; do
|
|
sed -e "s|/mingw32|${_prefix}|g" \
|
|
-i ${_prefix}/bin/${_it}-script.py
|
|
done
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|