Bump pypy to 7.3.1, verify hash (#6070)
As of pypy 7.3.0, we can utilize the official pypy project as opposed to the previously used "portable-pypy" distribution.
This commit is contained in:
parent
641a2a8bb4
commit
c58e5e80ce
1 changed files with 8 additions and 4 deletions
|
@ -2,6 +2,9 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
BINDIR="/opt/bin"
|
BINDIR="/opt/bin"
|
||||||
|
PYPY_VERSION=7.3.1
|
||||||
|
PYPI_URL="https://bitbucket.org/pypy/pypy/downloads/pypy3.6-v${PYPY_VERSION}-linux64.tar.bz2"
|
||||||
|
PYPI_HASH=f67cf1664a336a3e939b58b3cabfe47d893356bdc01f2e17bc912aaa6605db12
|
||||||
|
|
||||||
mkdir -p $BINDIR
|
mkdir -p $BINDIR
|
||||||
|
|
||||||
|
@ -11,10 +14,11 @@ if [[ -e $BINDIR/.bootstrapped ]]; then
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
PYPY_VERSION=7.2.0
|
TAR_FILE=pyp.tar.bz2
|
||||||
|
wget -O "${TAR_FILE}" "${PYPI_URL}"
|
||||||
wget -O - https://github.com/squeaky-pl/portable-pypy/releases/download/pypy3.6-7.2.0/pypy3.6-$PYPY_VERSION-linux_x86_64-portable.tar.bz2 | tar -xjf -
|
echo "${PYPI_HASH} ${TAR_FILE}" | sha256sum -c -
|
||||||
mv -n pypy3.6-$PYPY_VERSION-linux_x86_64-portable pypy3
|
tar -xjf "${TAR_FILE}" && rm "${TAR_FILE}"
|
||||||
|
mv -n "pypy3.6-v${PYPY_VERSION}-linux64" pypy3
|
||||||
|
|
||||||
ln -s ./pypy3/bin/pypy3 python
|
ln -s ./pypy3/bin/pypy3 python
|
||||||
$BINDIR/python --version
|
$BINDIR/python --version
|
||||||
|
|
Loading…
Reference in a new issue