Allow running from 3.0

This commit is contained in:
rocky
2022-11-03 16:20:52 -04:00
parent 0ce23288cb
commit e596fb0917
3 changed files with 43 additions and 3 deletions

View File

@@ -0,0 +1,35 @@
#!/bin/bash
PYTHON_VERSION=3.0.1
pyenv local $PYTHON_VERSION
# FIXME put some of the below in a common routine
function checkout_version {
local repo=$1
version=${2:-python-3.0-to-3.2}
echo Checking out $version on $repo ...
(cd ../$repo && git checkout $version && pyenv local $PYTHON_VERSION) && \
git pull
return $?
}
function finish {
cd $owd
}
export PATH=$HOME/.pyenv/bin/pyenv:$PATH
owd=$(pwd)
bs=${BASH_SOURCE[0]}
if [[ $0 == $bs ]] ; then
echo "This script should be *sourced* rather than run directly through bash"
exit 1
fi
mydir=$(dirname $bs)
fulldir=$(readlink -f $mydir)
cd $fulldir/..
(cd $fulldir/.. && checkout_version python-spark master && checkout_version python-xdis &&
checkout_version python-uncompyle6)
cd $owd
rm -v */.python-version || true
git checkout python-3.0-to-3.2 && git pull && pyenv local $PYTHON_VERSION