You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
Merge branch 'python-3.3-to-3.5' into python-3.0-to-3.2
This commit is contained in:
@@ -1,18 +1,18 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Check out master branch and dependent development master branches
|
# Check out master branch and dependent development master branches
|
||||||
PYTHON_VERSION=3.8
|
|
||||||
|
|
||||||
bs=${BASH_SOURCE[0]}
|
bs=${BASH_SOURCE[0]}
|
||||||
if [[ $0 == $bs ]] ; then
|
if [[ $0 == $bs ]] ; then
|
||||||
echo "This script should be *sourced* rather than run directly through bash"
|
echo "This script should be *sourced* rather than run directly through bash"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mydir=$(dirname $bs)
|
PYTHON_VERSION=3.8
|
||||||
|
|
||||||
uncompyle6_owd=$(pwd)
|
uncompyle6_owd=$(pwd)
|
||||||
|
mydir=$(dirname $bs)
|
||||||
|
fulldir=$(readlink -f $mydir)
|
||||||
cd $mydir
|
cd $mydir
|
||||||
. ./checkout_common.sh
|
. ./checkout_common.sh
|
||||||
fulldir=$(readlink -f $mydir)
|
|
||||||
cd $fulldir/..
|
cd $fulldir/..
|
||||||
(cd $fulldir/.. && \
|
(cd $fulldir/.. && \
|
||||||
setup_version python-spark master && \
|
setup_version python-spark master && \
|
||||||
|
@@ -1,32 +1,23 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Check out python-2.4-to-2.7 and dependent development branches.
|
# Check out python-2.4-to-2.7 and dependent development branches.
|
||||||
|
|
||||||
PYTHON_VERSION=2.4.6
|
|
||||||
|
|
||||||
bs=${BASH_SOURCE[0]}
|
bs=${BASH_SOURCE[0]}
|
||||||
if [[ $0 == $bs ]] ; then
|
if [[ $0 == $bs ]] ; then
|
||||||
echo "This script should be *sourced* rather than run directly through bash"
|
echo "This script should be *sourced* rather than run directly through bash"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
function checkout_version {
|
PYTHON_VERSION=2.4.6
|
||||||
local repo=$1
|
|
||||||
version=${2:-python-2.4-to-2.7}
|
|
||||||
echo Checking out $version on $repo ...
|
|
||||||
(cd ../$repo && git checkout $version && pyenv local $PYTHON_VERSION) && \
|
|
||||||
git pull
|
|
||||||
return $?
|
|
||||||
}
|
|
||||||
|
|
||||||
owd=$(pwd)
|
|
||||||
|
|
||||||
export PATH=$HOME/.pyenv/bin/pyenv:$PATH
|
|
||||||
|
|
||||||
|
uncompyle6_owd=$(pwd)
|
||||||
mydir=$(dirname $bs)
|
mydir=$(dirname $bs)
|
||||||
fulldir=$(readlink -f $mydir)
|
fulldir=$(readlink -f $mydir)
|
||||||
(cd $fulldir/.. && checkout_version python-spark && checkout_version python-xdis python-2.4-to-2.7 &&
|
cd $mydir
|
||||||
checkout_version python-uncompyle6)
|
. ./checkout_common.sh
|
||||||
|
|
||||||
git pull
|
(cd $fulldir/.. && \
|
||||||
rm -v */.python-version || true
|
setup_version python-spark python-2.4 && \
|
||||||
cd $owd
|
checkout_version python-xdis python-2.4-to-2.7)
|
||||||
|
|
||||||
|
|
||||||
|
checkout_finish python-2.4-to-2.7
|
||||||
|
@@ -1,21 +1,20 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Check out python-3.0-to-3.2 and dependent development branches.
|
# Check out python-3.0-to-3.2 and dependent development branches.
|
||||||
|
|
||||||
PYTHON_VERSION=3.0.1
|
|
||||||
|
|
||||||
bs=${BASH_SOURCE[0]}
|
bs=${BASH_SOURCE[0]}
|
||||||
if [[ $0 == $bs ]] ; then
|
if [[ $0 == $bs ]] ; then
|
||||||
echo "This script should be *sourced* rather than run directly through bash"
|
echo "This script should be *sourced* rather than run directly through bash"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
PYTHON_VERSION=3.0.1
|
||||||
|
|
||||||
|
uncompyle6_owd=$(pwd)
|
||||||
mydir=$(dirname $bs)
|
mydir=$(dirname $bs)
|
||||||
. ./checkout_common.sh
|
|
||||||
fulldir=$(readlink -f $mydir)
|
fulldir=$(readlink -f $mydir)
|
||||||
cd $fulldir
|
cd $mydir
|
||||||
cd $fulldir/..
|
. ./checkout_common.sh
|
||||||
(cd $fulldir/.. && \
|
(cd $fulldir/.. && \
|
||||||
setup_version python-spark master && \
|
setup_version python-spark master && \
|
||||||
checkout_version python-xdis python-3.0-to-3.2)
|
setup_version python-xdis python-3.0)
|
||||||
|
|
||||||
checkout_finish python-3.0-to-3.2
|
checkout_finish python-3.0-to-3.2
|
||||||
|
@@ -1,16 +1,17 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Check out python-3.3-to-3.5 and dependent development branches.
|
# Check out python-3.3-to-3.5 and dependent development branches.
|
||||||
PYTHON_VERSION=3.3.7
|
|
||||||
|
|
||||||
bs=${BASH_SOURCE[0]}
|
bs=${BASH_SOURCE[0]}
|
||||||
if [[ $0 == $bs ]] ; then
|
if [[ $0 == $bs ]] ; then
|
||||||
echo "This script should be *sourced* rather than run directly through bash"
|
echo "This script should be *sourced* rather than run directly through bash"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
PYTHON_VERSION=3.3.7
|
||||||
|
|
||||||
|
uncompyle6_owd=$(pwd)
|
||||||
mydir=$(dirname $bs)
|
mydir=$(dirname $bs)
|
||||||
. ./checkout_common.sh
|
|
||||||
fulldir=$(readlink -f $mydir)
|
fulldir=$(readlink -f $mydir)
|
||||||
|
. ./checkout_common.sh
|
||||||
cd $fulldir/..
|
cd $fulldir/..
|
||||||
(cd $fulldir/.. && \
|
(cd $fulldir/.. && \
|
||||||
setup_version python-spark master && \
|
setup_version python-spark master && \
|
||||||
|
Reference in New Issue
Block a user