CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
python3-mako: updated to 1.2.1
[ports/opt-arm.git] / python / Pkgfile
index 0103aa80b686a4319c51f38a7957d60b255f50f5..c2b5ce91909cf6b875b49c53d9420aadfa0bf977 100644 (file)
@@ -5,33 +5,45 @@
 # Depends on: db gdbm openssl bzip2 zlib sqlite3
 
 name=python
-version=2.7.2
+version=2.7.18
 release=2
 source=(http://www.python.org/ftp/$name/$version/Python-$version.tar.xz \
-        $name-gdbm.patch)
+        pyconfig.h)
 
 build () {
-    cd Python-$version
+  cd Python-$version
 
-    patch -p1 -i $SRC/$name-gdbm.patch
+  # remove 2to3, we use the one from python3
+  rm -r Lib/lib2to3
 
-    ./configure --prefix=/usr \
-                --mandir=/usr/man \
-                --enable-shared \
-                --with-threads \
-                --enable-ipv6 
+  export CFLAGS="-O2 -pipe -mfloat-abi=hard"
+  export CXXFLAGS="$CFLAGS"
 
-    make EXTRA_CFLAGS="$CFLAGS"
-    make -j1 DESTDIR=$PKG install
+  # remove tests
+  rm -r Lib/{bsddb,ctypes,email,lib-tk,sqlite3,unittest}/test
+  rm -r Lib/{{distutils,json}/tests,idlelib/idle_test,test}
 
-    ln -sf python2.7 $PKG/usr/bin/python
-    ln -s python2.7 $PKG/usr/lib/python
-    ln -s python2.7 $PKG/usr/include/python
-    ln -s /usr/lib/libpython2.7.so $PKG/usr/lib/python2.7/config/libpython2.7.so
+  ./configure --prefix=/usr \
+              --enable-shared \
+              --with-threads \
+              --enable-ipv6
 
-    rm -r $PKG/usr/lib/python/{bsddb,ctypes,email,sqlite3}/test
-    rm -r $PKG/usr/lib/python/{distutils,json,lib2to3}/tests
-    rm $PKG/usr/lib/python/{distutils,site-packages,test/data}/README
-    rm $PKG/usr/lib/python/idlelib/{ChangeLog,{NEWS,README,TODO}.txt}
-    rm $PKG/usr/lib/python/ctypes/macholib/README.ctypes
+  make
+  make -j1 DESTDIR=$PKG install
+
+  # fix issue with man-page symlink
+  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
+  ln -s python2.7 $PKG/usr/include/python
+  ln -s /usr/lib/libpython2.7.so $PKG/usr/lib/python2.7/config/libpython2.7.so
+
+  rm $PKG/usr/bin/2to3
+  rm $PKG/usr/lib/python/{distutils,site-packages}/README
+  rm $PKG/usr/lib/python/idlelib/{ChangeLog,{NEWS,README,TODO}.txt}
+  rm $PKG/usr/lib/python/ctypes/macholib/README.ctypes
+
+  mv $PKG/usr/include/python2.7/pyconfig{,-32}.h
+  install -m 0644 $SRC/pyconfig.h $PKG/usr/include/python2.7/
 }