This repository was archived by the owner on Mar 15, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed
docker/build_scripts_pypy Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,13 @@ the only supported platform is ``x86_64``.
1111.. _`Docker image` : https://hub.docker.com/r/pypywheels/manylinux2010-pypy_x86_64
1212.. _manylinux : https://github.com/pypa/manylinux
1313
14- At the moment of writing, this image provide the two following versions of
14+ At the moment of writing, this image provide the following versions of
1515PyPy:
1616
17+ - PyPy2.7 7.2.0
18+
19+ - PyPy3.6 7.2.0
20+
1721- PyPy2.7 7.1.1
1822
1923- PyPy3.6 7.1.1
Original file line number Diff line number Diff line change 33set -ex
44
55SOURCES=docker/sources
6- URL=https://bitbucket.org/squeaky/portable-pypy/downloads
6+ BITBUCKET_URL=https://bitbucket.org/squeaky/portable-pypy/downloads # old releases
7+ URL=https://github.com/squeaky-pl/portable-pypy/releases/download # new releases
78
89MY_DIR=$( dirname " ${BASH_SOURCE[0]} " )
910. $MY_DIR /../build_scripts/build_utils.sh
@@ -12,5 +13,9 @@ MY_DIR=$(dirname "${BASH_SOURCE[0]}")
1213cd " $SOURCES "
1314
1415# pypy 7.1.1
15- fetch_source pypy-7.1.1-linux_x86_64-portable.tar.bz2 " $URL "
16- fetch_source pypy3.6-7.1.1-beta-linux_x86_64-portable.tar.bz2 " $URL "
16+ fetch_source pypy-7.1.1-linux_x86_64-portable.tar.bz2 " $BITBUCKET_URL "
17+ fetch_source pypy3.6-7.1.1-beta-linux_x86_64-portable.tar.bz2 " $BITBUCKET_URL "
18+
19+ # pypy 7.2.0
20+ fetch_source pypy-7.2.0-linux_x86_64-portable.tar.bz2 " $URL /pypy-7.2.0"
21+ fetch_source pypy3.6-7.2.0-linux_x86_64-portable.tar.bz2 " $URL /pypy3.6-7.2.0"
You can’t perform that action at this time.
0 commit comments