python/pypy3: Updated for version 5.5_alpha.

Signed-off-by: Audrius Kažukauskas <audrius@neutrino.lt>
This commit is contained in:
Audrius Kažukauskas 2016-12-29 19:23:19 +02:00 committed by Willy Sudiarto Raharjo
parent c08e0e0bf5
commit fe90a0547b
No known key found for this signature in database
GPG key ID: 887B8374D7333381
2 changed files with 14 additions and 12 deletions

View file

@ -2,7 +2,7 @@
# Slackware build script for pypy3
# Copyright 2015 Audrius Kažukauskas <audrius@neutrino.lt>
# Copyright 2015-2016 Audrius Kažukauskas <audrius@neutrino.lt>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -23,7 +23,9 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=pypy3
VERSION=${VERSION:-2.4}
VERSION=${VERSION:-5.5_alpha}
SRCNAM=pypy3.3
SRCVER=$(echo $VERSION | tr '_' '-')
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -40,8 +42,8 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
@ -59,9 +61,9 @@ set -eu
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION-linux_$ARCH-portable
tar xvf $CWD/$PRGNAM-$VERSION-linux_$ARCH-portable.tar.bz2
cd $PRGNAM-$VERSION-linux_$ARCH-portable
rm -rf $SRCNAM-$SRCVER-*-linux_$ARCH-portable
tar xvf $CWD/$SRCNAM-$SRCVER-*-linux_$ARCH-portable.tar.bz2
cd $SRCNAM-$SRCVER-*-linux_$ARCH-portable
chown -R root:root .
find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \

View file

@ -1,10 +1,10 @@
PRGNAM="pypy3"
VERSION="2.4"
VERSION="5.5_alpha"
HOMEPAGE="http://pypy.org/"
DOWNLOAD="https://bitbucket.org/squeaky/portable-pypy/downloads/pypy3-2.4-linux_i686-portable.tar.bz2"
MD5SUM="deb9c7de9666d6e67939c5a97f4c0224"
DOWNLOAD_x86_64="https://bitbucket.org/squeaky/portable-pypy/downloads/pypy3-2.4-linux_x86_64-portable.tar.bz2"
MD5SUM_x86_64="6fd83263159cc3ece4a9a186ce1ed388"
DOWNLOAD="https://bitbucket.org/squeaky/portable-pypy/downloads/pypy3.3-5.5-alpha-20161014-linux_i686-portable.tar.bz2"
MD5SUM="51bb9b25e86868a37b76d26a4f259511"
DOWNLOAD_x86_64="https://bitbucket.org/squeaky/portable-pypy/downloads/pypy3.3-5.5-alpha-20161013-linux_x86_64-portable.tar.bz2"
MD5SUM_x86_64="b0f064518a5742f042b5cc067f83b9d2"
REQUIRES=""
MAINTAINER="Audrius Kažukauskas"
EMAIL="audrius@neutrino.lt"