X-Git-Url: http://gitweb/?a=blobdiff_plain;f=python%2FPkgfile;h=6f452d7c176c0ec21fcc6e5bdefccb99e13b8c58;hb=a35dd6c00dfc4a48f2c99a37d840e770b3f84599;hp=747edf333144f2edc99a54d29837074d13e80e7b;hpb=8f68de03e762792b2181f8190a0adae926629f81;p=ports%2Fopt-arm.git diff --git a/python/Pkgfile b/python/Pkgfile index 747edf3..6f452d7 100644 --- a/python/Pkgfile +++ b/python/Pkgfile @@ -5,7 +5,7 @@ # Depends on: db gdbm openssl bzip2 zlib sqlite3 name=python -version=2.7.5 +version=2.7.16 release=1 source=(http://www.python.org/ftp/$name/$version/Python-$version.tar.xz \ pyconfig.h) @@ -13,20 +13,22 @@ source=(http://www.python.org/ftp/$name/$version/Python-$version.tar.xz \ build () { cd Python-$version + export CFLAGS="-O2 -pipe -mfloat-abi=hard" + export CXXFLAGS="$CFLAGS" + # set OPT to the python default without -O3 # our CFLAGS are used as well OPT="-Wall -Wstrict-prototypes -fwrapv" \ ./configure --prefix=/usr \ - --mandir=/usr/man \ --enable-shared \ --with-threads \ - --enable-ipv6 + --enable-ipv6 make make -j1 DESTDIR=$PKG install # fix issue with man-page symlink - ln -sf python2.7.1 $PKG/usr/man/man1/python.1 + ln -sf python2.7.1 $PKG/usr/share/man/man1/python.1 ln -sf python2.7 $PKG/usr/bin/python ln -s python2.7 $PKG/usr/lib/python @@ -40,5 +42,5 @@ build () { rm $PKG/usr/lib/python/ctypes/macholib/README.ctypes mv $PKG/usr/include/python2.7/pyconfig{,-32}.h - cp $SRC/pyconfig.h $PKG/usr/include/python2.7/ + install -m 0644 $SRC/pyconfig.h $PKG/usr/include/python2.7/ }