CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
python: updated release
[ports/opt-arm.git] / python / Pkgfile
index 3405475b5e18f9b593ef65475190f926a433cf3c..00013b34e452d03828b889658a0569cec7d4abd4 100644 (file)
@@ -1,32 +1,40 @@
 # Description: Python interpreter, version 2.7
 # URL: http://www.python.org
 # Maintainer: Juergen Daubert, jue at crux dot nu
-# Depends on: db gdbm openssl bzip2 zlib sqlite3
 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
+# Depends on: db gdbm openssl bzip2 zlib sqlite3
 
 name=python
-version=2.7.5
-release=1
+version=2.7.14
+release=2
 source=(http://www.python.org/ftp/$name/$version/Python-$version.tar.xz \
+        CVE-2018-1000030.patch
         pyconfig.h)
 
 build () {
   cd Python-$version
 
+  export CFLAGS="-O2 -pipe -mfloat-abi=hard"
+  export CXXFLAGS="$CFLAGS"
+
+  # fix for CVE-2018-1000030
+  # see https://bugs.python.org/issue31530
+  patch -p1 -i $SRC/CVE-2018-1000030.patch
+
   # 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 +48,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/
 }