* python-setuptools - 40.6.2 - Update to new version fix easy-install script fix some dependencies that are listed in requirements.txt including certifi and winse * Make wincertstore and certifi optdepends for the individual packages. You should still use those two packages to make setuptools.
15 lines
245 B
Plaintext
15 lines
245 B
Plaintext
post_install() {
|
|
cd mingw32
|
|
local _prefix=$(pwd -W)
|
|
cd -
|
|
local _it
|
|
for _it in easy_install easy_install-2.7; do
|
|
sed -e "s|/mingw32|${_prefix}|g" \
|
|
-i mingw32/bin/${_it}-script.py
|
|
done
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|