python-pip - fix startup. Build with dependencies on libraries so they can be updated easily. python-cachecontrol - 0.12.5 - new package - required by pip python-distlib - 0.2.3 - new package - required by pip. Note that I was unable to recompile the launchers in this so I use the ones from they provide python-lockfile - 0.12.2 - new package required by pip python-progress - 1.4 - rebuild - required for python-pip python-pytoml - 0.1.18 - new package - required for python-pip
15 lines
227 B
Plaintext
15 lines
227 B
Plaintext
post_install() {
|
|
cd mingw32
|
|
local _prefix=$(pwd -W)
|
|
cd -
|
|
local _it
|
|
for _it in doesitcache; do
|
|
sed -e "s|/mingw32|${_prefix}|g" \
|
|
-i mingw32/bin/${_it}-script.py
|
|
done
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|