[arch-commits] Commit in python/repos (3 files)

2020-12-13 Thread Felix Yan via arch-commits
Date: Sunday, December 13, 2020 @ 12:57:23
  Author: felixonmars
Revision: 404277

archrelease: copy trunk to testing-x86_64

Added:
  python/repos/testing-x86_64/
  python/repos/testing-x86_64/PKGBUILD
(from rev 404276, python/trunk/PKGBUILD)
  python/repos/testing-x86_64/genrebuild
(from rev 404276, python/trunk/genrebuild)

+
 PKGBUILD   |  147 +++
 genrebuild |   14 +
 2 files changed, 161 insertions(+)

Copied: python/repos/testing-x86_64/PKGBUILD (from rev 404276, 
python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-12-13 12:57:23 UTC (rev 404277)
@@ -0,0 +1,147 @@
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Jason Chu 
+
+shopt -s extglob
+
+pkgbase=python
+pkgname=(python python-tests)
+pkgver=3.9.1
+pkgrel=1
+_pybasever=${pkgver%.*}
+pkgdesc="Next generation of the python high-level scripting language"
+arch=('x86_64')
+license=('custom')
+url="https://www.python.org/;
+depends=('bzip2' 'expat' 'gdbm' 'libffi' 'libnsl' 'libxcrypt' 'openssl' 'zlib')
+makedepends=('tk' 'sqlite' 'valgrind' 'bluez-libs' 'mpdecimal' 'llvm' 'gdb' 
'xorg-server-xvfb' 'ttf-font')
+source=("https://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz"{,.asc})
+sha512sums=('b90029d6825751685983e9dcf0e0ec9e46f18e6c7d37b0dd7a245a94316f8c0090308ad7c2b2b49ed2514b0b909177231dd5bcad03031bf4624e37136fcf8019'
+'SKIP')
+validpgpkeys=('0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D'  # Ned Deily (Python 
release signing key) 
+  'E3FF2839C048B25C084DEBE9B26995E310250568') # Łukasz Langa (GPG 
langa.pl) 
+
+prepare() {
+  cd Python-${pkgver}
+
+  # FS#23997
+  sed -i -e "s|^#.* /usr/local/bin/python|#!/usr/bin/python|" Lib/cgi.py
+
+  # Speed up LTO
+  sed -i -e "s|-flto |-flto=4 |g" configure configure.ac
+
+  # Ensure that we are using the system copy of various libraries (expat, 
libffi, and libmpdec),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/_ctypes/{darwin,libffi}*
+  rm -r Modules/_decimal/libmpdec
+}
+
+build() {
+  cd Python-${pkgver}
+
+  # PGO should be done with -O3
+  # Also included the -fno-semantic-interposition optimization:
+  # https://fedoraproject.org/wiki/Changes/PythonNoSemanticInterpositionSpeedup
+  CFLAGS="${CFLAGS/-O2/-O3} -fno-semantic-interposition"
+  LDFLAGS="$LDFLAGS -fno-semantic-interposition"
+
+  # Disable bundled pip & setuptools
+  ./configure --prefix=/usr \
+  --enable-shared \
+  --with-computed-gotos \
+  --enable-optimizations \
+  --with-lto \
+  --enable-ipv6 \
+  --with-system-expat \
+  --with-dbmliborder=gdbm:ndbm \
+  --with-system-ffi \
+  --with-system-libmpdec \
+  --enable-loadable-sqlite-extensions \
+  --without-ensurepip \
+  --with-tzpath=/usr/share/zoneinfo
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LC_CTYPE=en_US.UTF-8 xvfb-run -s "-screen 0 1920x1080x16 -ac +extension GLX" 
-a -n "$servernum" make EXTRA_CFLAGS="$CFLAGS"
+}
+
+check() {
+  cd Python-${pkgver}
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LD_LIBRARY_PATH="${srcdir}/Python-${pkgver}":${LD_LIBRARY_PATH} \
+  LC_CTYPE=en_US.UTF-8 xvfb-run -s "-screen 0 1920x1080x16 -ac +extension GLX" 
-a -n "$servernum" \
+"${srcdir}/Python-${pkgver}/python" -m test.regrtest -v -uall
+}
+
+package_python() {
+  optdepends=('python-setuptools'
+  'python-pip'
+  'sqlite'
+  'mpdecimal: for decimal'
+  'xz: for lzma'
+  'tk: for tkinter')
+  provides=('python3')
+  replaces=('python3')
+
+  cd Python-${pkgver}
+
+  # Hack to avoid building again
+  sed -i 's/^all:.*$/all: build_all/' Makefile
+
+  # PGO should be done with -O3
+  CFLAGS="${CFLAGS/-O2/-O3}"
+
+  make DESTDIR="${pkgdir}" EXTRA_CFLAGS="$CFLAGS" install
+
+  # Split tests
+  rm -r 
"$pkgdir"/usr/lib/python*/{test,ctypes/test,distutils/tests,idlelib/idle_test,lib2to3/tests,sqlite3/test,tkinter/test,unittest/test}
+
+  # Why are these not done by default...
+  ln -s python3   "${pkgdir}"/usr/bin/python
+  ln -s python3-config"${pkgdir}"/usr/bin/python-config
+  ln -s idle3 "${pkgdir}"/usr/bin/idle
+  ln -s pydoc3"${pkgdir}"/usr/bin/pydoc
+  ln -s python${_pybasever}.1 

[arch-commits] Commit in python/repos (3 files)

2020-11-09 Thread Felix Yan via arch-commits
Date: Monday, November 9, 2020 @ 09:28:05
  Author: felixonmars
Revision: 399654

archrelease: copy trunk to staging-x86_64

Added:
  python/repos/staging-x86_64/
  python/repos/staging-x86_64/PKGBUILD
(from rev 399653, python/trunk/PKGBUILD)
  python/repos/staging-x86_64/genrebuild
(from rev 399653, python/trunk/genrebuild)

+
 PKGBUILD   |  150 +++
 genrebuild |   13 +
 2 files changed, 163 insertions(+)

Copied: python/repos/staging-x86_64/PKGBUILD (from rev 399653, 
python/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-11-09 09:28:05 UTC (rev 399654)
@@ -0,0 +1,150 @@
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Jason Chu 
+
+shopt -s extglob
+
+pkgbase=python
+pkgname=(python python-tests)
+pkgver=3.9.0
+pkgrel=1
+_pybasever=${pkgver%.*}
+pkgdesc="Next generation of the python high-level scripting language"
+arch=('x86_64')
+license=('custom')
+url="https://www.python.org/;
+depends=('bzip2' 'expat' 'gdbm' 'libffi' 'libnsl' 'libxcrypt' 'openssl' 'zlib')
+makedepends=('tk' 'sqlite' 'valgrind' 'bluez-libs' 'mpdecimal' 'llvm' 'gdb' 
'xorg-server-xvfb' 'ttf-font')
+source=("https://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz"{,.asc})
+sha512sums=('b141039c9701a8cb0d15cd11a279153077524af4d0599e7d2c7279d4c18d05fda06b33ef82342d875de996c7117b7dc6eb154dc3669d38a1efa99801aeec6c5e'
+'SKIP')
+validpgpkeys=('0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D'  # Ned Deily (Python 
release signing key) 
+  'E3FF2839C048B25C084DEBE9B26995E310250568') # Łukasz Langa (GPG 
langa.pl) 
+
+prepare() {
+  cd Python-${pkgver}
+
+  # FS#23997
+  sed -i -e "s|^#.* /usr/local/bin/python|#!/usr/bin/python|" Lib/cgi.py
+
+  # Speed up LTO
+  sed -i -e "s|-flto |-flto=4 |g" configure configure.ac
+
+  # Ensure that we are using the system copy of various libraries (expat, 
libffi, and libmpdec),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/_ctypes/{darwin,libffi}*
+  rm -r Modules/_decimal/libmpdec
+}
+
+build() {
+  cd Python-${pkgver}
+
+  # PGO should be done with -O3
+  # Also included the -fno-semantic-interposition optimization:
+  # https://fedoraproject.org/wiki/Changes/PythonNoSemanticInterpositionSpeedup
+  CFLAGS="${CFLAGS/-O2/-O3} -fno-semantic-interposition"
+  LDFLAGS="$LDFLAGS -fno-semantic-interposition"
+
+  # Disable bundled pip & setuptools
+  ./configure --prefix=/usr \
+  --enable-shared \
+  --with-computed-gotos \
+  --enable-optimizations \
+  --with-lto \
+  --enable-ipv6 \
+  --with-system-expat \
+  --with-dbmliborder=gdbm:ndbm \
+  --with-system-ffi \
+  --with-system-libmpdec \
+  --enable-loadable-sqlite-extensions \
+  --without-ensurepip
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LC_CTYPE=en_US.UTF-8 xvfb-run -s "-screen 0 1920x1080x16 -ac +extension GLX" 
-a -n "$servernum" make EXTRA_CFLAGS="$CFLAGS"
+}
+
+check() {
+  # test_tk: https://bugs.python.org/issue41306
+  # test_lib2to3: https://bugs.python.org/issue41970
+  # test_tools: https://bugs.python.org/issue41971
+
+  cd Python-${pkgver}
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LD_LIBRARY_PATH="${srcdir}/Python-${pkgver}":${LD_LIBRARY_PATH} \
+  LC_CTYPE=en_US.UTF-8 xvfb-run -s "-screen 0 1920x1080x16 -ac +extension GLX" 
-a -n "$servernum" \
+"${srcdir}/Python-${pkgver}/python" -m test.regrtest -v -uall -x test_tk 
-x test_lib2to3 -x test_tools
+}
+
+package_python() {
+  optdepends=('python-setuptools'
+  'python-pip'
+  'sqlite'
+  'mpdecimal: for decimal'
+  'xz: for lzma'
+  'tk: for tkinter')
+  provides=('python3')
+  replaces=('python3')
+
+  cd Python-${pkgver}
+
+  # Hack to avoid building again
+  sed -i 's/^all:.*$/all: build_all/' Makefile
+
+  # PGO should be done with -O3
+  CFLAGS="${CFLAGS/-O2/-O3}"
+
+  make DESTDIR="${pkgdir}" EXTRA_CFLAGS="$CFLAGS" install
+
+  # Split tests
+  rm -r 
"$pkgdir"/usr/lib/python*/{test,ctypes/test,distutils/tests,idlelib/idle_test,lib2to3/tests,sqlite3/test,tkinter/test,unittest/test}
+
+  # Why are these not done by default...
+  ln -s python3   "${pkgdir}"/usr/bin/python
+  ln -s python3-config"${pkgdir}"/usr/bin/python-config
+  ln -s 

[arch-commits] Commit in python/repos (3 files)

2020-09-30 Thread Felix Yan via arch-commits
Date: Wednesday, September 30, 2020 @ 20:44:51
  Author: felixonmars
Revision: 397010

archrelease: copy trunk to testing-x86_64

Added:
  python/repos/testing-x86_64/
  python/repos/testing-x86_64/PKGBUILD
(from rev 397009, python/trunk/PKGBUILD)
  python/repos/testing-x86_64/genrebuild
(from rev 397009, python/trunk/genrebuild)

+
 PKGBUILD   |  148 +++
 genrebuild |7 ++
 2 files changed, 155 insertions(+)

Copied: python/repos/testing-x86_64/PKGBUILD (from rev 397009, 
python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-09-30 20:44:51 UTC (rev 397010)
@@ -0,0 +1,148 @@
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Jason Chu 
+
+shopt -s extglob
+
+pkgbase=python
+pkgname=(python python-tests)
+pkgver=3.8.6
+pkgrel=1
+_pybasever=${pkgver%.*}
+pkgdesc="Next generation of the python high-level scripting language"
+arch=('x86_64')
+license=('custom')
+url="https://www.python.org/;
+depends=('bzip2' 'expat' 'gdbm' 'libffi' 'libnsl' 'libxcrypt' 'openssl' 'zlib')
+makedepends=('tk' 'sqlite' 'valgrind' 'bluez-libs' 'mpdecimal' 'llvm' 'gdb' 
'xorg-server-xvfb' 'ttf-font')
+source=("https://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz"{,.asc})
+sha512sums=('22faec84f6e172e1ac7c6bd6fd37e9b6ae4afc91cf5136aa8cac8ebbed8d18793f9196e8749b8ccc43447cb6c41cb450f65ea72dd363c06dfaeb14e0455f5560'
+'SKIP')
+validpgpkeys=('0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D'  # Ned Deily (Python 
release signing key) 
+  'E3FF2839C048B25C084DEBE9B26995E310250568') # Łukasz Langa (GPG 
langa.pl) 
+
+prepare() {
+  cd Python-${pkgver}
+
+  # FS#23997
+  sed -i -e "s|^#.* /usr/local/bin/python|#!/usr/bin/python|" Lib/cgi.py
+
+  # Speed up LTO
+  sed -i -e "s|-flto |-flto=4 |g" configure configure.ac
+
+  # Ensure that we are using the system copy of various libraries (expat, 
libffi, and libmpdec),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/_ctypes/{darwin,libffi}*
+  rm -r Modules/_decimal/libmpdec
+}
+
+build() {
+  cd Python-${pkgver}
+
+  # PGO should be done with -O3
+  # Also included the -fno-semantic-interposition optimization:
+  # https://fedoraproject.org/wiki/Changes/PythonNoSemanticInterpositionSpeedup
+  CFLAGS="${CFLAGS/-O2/-O3} -fno-semantic-interposition"
+  LDFLAGS="$LDFLAGS -fno-semantic-interposition"
+
+  # Disable bundled pip & setuptools
+  ./configure --prefix=/usr \
+  --enable-shared \
+  --with-computed-gotos \
+  --enable-optimizations \
+  --with-lto \
+  --enable-ipv6 \
+  --with-system-expat \
+  --with-dbmliborder=gdbm:ndbm \
+  --with-system-ffi \
+  --with-system-libmpdec \
+  --enable-loadable-sqlite-extensions \
+  --without-ensurepip
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LC_CTYPE=en_US.UTF-8 xvfb-run -s "-screen 0 1920x1080x16 -ac +extension GLX" 
-a -n "$servernum" make EXTRA_CFLAGS="$CFLAGS"
+}
+
+check() {
+  # test_tk: https://bugs.python.org/issue41306
+
+  cd Python-${pkgver}
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LD_LIBRARY_PATH="${srcdir}/Python-${pkgver}":${LD_LIBRARY_PATH} \
+  LC_CTYPE=en_US.UTF-8 xvfb-run -s "-screen 0 1920x1080x16 -ac +extension GLX" 
-a -n "$servernum" \
+"${srcdir}/Python-${pkgver}/python" -m test.regrtest -v -uall -x test_tk
+}
+
+package_python() {
+  optdepends=('python-setuptools'
+  'python-pip'
+  'sqlite'
+  'mpdecimal: for decimal'
+  'xz: for lzma'
+  'tk: for tkinter')
+  provides=('python3')
+  replaces=('python3')
+
+  cd Python-${pkgver}
+
+  # Hack to avoid building again
+  sed -i 's/^all:.*$/all: build_all/' Makefile
+
+  # PGO should be done with -O3
+  CFLAGS="${CFLAGS/-O2/-O3}"
+
+  make DESTDIR="${pkgdir}" EXTRA_CFLAGS="$CFLAGS" install
+
+  # Split tests
+  rm -r 
"$pkgdir"/usr/lib/python*/{test,ctypes/test,distutils/tests,idlelib/idle_test,lib2to3/tests,sqlite3/test,tkinter/test,unittest/test}
+
+  # Why are these not done by default...
+  ln -s python3   "${pkgdir}"/usr/bin/python
+  ln -s python3-config"${pkgdir}"/usr/bin/python-config
+  ln -s idle3 "${pkgdir}"/usr/bin/idle
+  ln -s pydoc3"${pkgdir}"/usr/bin/pydoc
+  ln -s python${_pybasever}.1 

[arch-commits] Commit in python/repos (3 files)

2020-07-27 Thread Felix Yan via arch-commits
Date: Monday, July 27, 2020 @ 09:22:41
  Author: felixonmars
Revision: 392574

archrelease: copy trunk to testing-x86_64

Added:
  python/repos/testing-x86_64/
  python/repos/testing-x86_64/PKGBUILD
(from rev 392573, python/trunk/PKGBUILD)
  python/repos/testing-x86_64/genrebuild
(from rev 392573, python/trunk/genrebuild)

+
 PKGBUILD   |  148 +++
 genrebuild |7 ++
 2 files changed, 155 insertions(+)

Copied: python/repos/testing-x86_64/PKGBUILD (from rev 392573, 
python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-07-27 09:22:41 UTC (rev 392574)
@@ -0,0 +1,148 @@
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Jason Chu 
+
+shopt -s extglob
+
+pkgbase=python
+pkgname=(python python-tests)
+pkgver=3.8.5
+pkgrel=1
+_pybasever=${pkgver%.*}
+pkgdesc="Next generation of the python high-level scripting language"
+arch=('x86_64')
+license=('custom')
+url="https://www.python.org/;
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib' 'libnsl')
+makedepends=('tk' 'sqlite' 'valgrind' 'bluez-libs' 'mpdecimal' 'llvm' 'gdb' 
'xorg-server-xvfb' 'ttf-font')
+source=("https://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz"{,.asc})
+sha512sums=('460cee65d7df7150694590575502d7f22e548ebfc99c8f8b363eef8bf30ee72e58d8ffacb1d607824f877f880eb9fd6775a508388029583e1e1df3380f3f9587'
+'SKIP')
+validpgpkeys=('0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D'  # Ned Deily (Python 
release signing key) 
+  'E3FF2839C048B25C084DEBE9B26995E310250568') # Łukasz Langa (GPG 
langa.pl) 
+
+prepare() {
+  cd Python-${pkgver}
+
+  # FS#23997
+  sed -i -e "s|^#.* /usr/local/bin/python|#!/usr/bin/python|" Lib/cgi.py
+
+  # Speed up LTO
+  sed -i -e "s|-flto |-flto=4 |g" configure configure.ac
+
+  # Ensure that we are using the system copy of various libraries (expat, 
libffi, and libmpdec),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/_ctypes/{darwin,libffi}*
+  rm -r Modules/_decimal/libmpdec
+}
+
+build() {
+  cd Python-${pkgver}
+
+  # PGO should be done with -O3
+  # Also included the -fno-semantic-interposition optimization:
+  # https://fedoraproject.org/wiki/Changes/PythonNoSemanticInterpositionSpeedup
+  CFLAGS="${CFLAGS/-O2/-O3} -fno-semantic-interposition"
+  LDFLAGS="$LDFLAGS -fno-semantic-interposition"
+
+  # Disable bundled pip & setuptools
+  ./configure --prefix=/usr \
+  --enable-shared \
+  --with-computed-gotos \
+  --enable-optimizations \
+  --with-lto \
+  --enable-ipv6 \
+  --with-system-expat \
+  --with-dbmliborder=gdbm:ndbm \
+  --with-system-ffi \
+  --with-system-libmpdec \
+  --enable-loadable-sqlite-extensions \
+  --without-ensurepip
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LC_CTYPE=en_US.UTF-8 xvfb-run -s "-screen 0 1920x1080x16 -ac +extension GLX" 
-a -n "$servernum" make EXTRA_CFLAGS="$CFLAGS"
+}
+
+check() {
+  # test_tk: https://bugs.python.org/issue41306
+
+  cd Python-${pkgver}
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LD_LIBRARY_PATH="${srcdir}/Python-${pkgver}":${LD_LIBRARY_PATH} \
+  LC_CTYPE=en_US.UTF-8 xvfb-run -s "-screen 0 1920x1080x16 -ac +extension GLX" 
-a -n "$servernum" \
+"${srcdir}/Python-${pkgver}/python" -m test.regrtest -v -uall -x test_tk
+}
+
+package_python() {
+  optdepends=('python-setuptools'
+  'python-pip'
+  'sqlite'
+  'mpdecimal: for decimal'
+  'xz: for lzma'
+  'tk: for tkinter')
+  provides=('python3')
+  replaces=('python3')
+
+  cd Python-${pkgver}
+
+  # Hack to avoid building again
+  sed -i 's/^all:.*$/all: build_all/' Makefile
+
+  # PGO should be done with -O3
+  CFLAGS="${CFLAGS/-O2/-O3}"
+
+  make DESTDIR="${pkgdir}" EXTRA_CFLAGS="$CFLAGS" install
+
+  # Split tests
+  rm -r 
"$pkgdir"/usr/lib/python*/{test,ctypes/test,distutils/tests,idlelib/idle_test,lib2to3/tests,sqlite3/test,tkinter/test,unittest/test}
+
+  # Why are these not done by default...
+  ln -s python3   "${pkgdir}"/usr/bin/python
+  ln -s python3-config"${pkgdir}"/usr/bin/python-config
+  ln -s idle3 "${pkgdir}"/usr/bin/idle
+  ln -s pydoc3"${pkgdir}"/usr/bin/pydoc
+  ln -s python${_pybasever}.1 

[arch-commits] Commit in python/repos (3 files)

2020-07-15 Thread Felix Yan via arch-commits
Date: Wednesday, July 15, 2020 @ 09:27:17
  Author: felixonmars
Revision: 391931

archrelease: copy trunk to testing-x86_64

Added:
  python/repos/testing-x86_64/
  python/repos/testing-x86_64/PKGBUILD
(from rev 391930, python/trunk/PKGBUILD)
  python/repos/testing-x86_64/genrebuild
(from rev 391930, python/trunk/genrebuild)

+
 PKGBUILD   |  155 +++
 genrebuild |7 ++
 2 files changed, 162 insertions(+)

Copied: python/repos/testing-x86_64/PKGBUILD (from rev 391930, 
python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-07-15 09:27:17 UTC (rev 391931)
@@ -0,0 +1,155 @@
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Jason Chu 
+
+shopt -s extglob
+
+pkgbase=python
+pkgname=(python python-tests)
+pkgver=3.8.4
+pkgrel=1
+_pybasever=${pkgver%.*}
+pkgdesc="Next generation of the python high-level scripting language"
+arch=('x86_64')
+license=('custom')
+url="https://www.python.org/;
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib' 'libnsl')
+makedepends=('tk' 'sqlite' 'valgrind' 'bluez-libs' 'mpdecimal' 'llvm' 'gdb' 
'xorg-server-xvfb')
+source=("https://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz"{,.asc})
+sha512sums=('37a36d014a8372742be9d0bd9dd3a275e100dc21b1515c145bc62425d4d157327b6e63ad99bc888c0b36c1da4c05676c40eb086e75072d1906e3210ec3043dcb'
+'SKIP')
+validpgpkeys=('0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D'  # Ned Deily (Python 
release signing key) 
+  'E3FF2839C048B25C084DEBE9B26995E310250568') # Łukasz Langa (GPG 
langa.pl) 
+
+prepare() {
+  cd Python-${pkgver}
+
+  # https://bugs.python.org/issue34587
+  sed -i -e "s|testCongestion|disabled_&|" Lib/test/test_socket.py
+
+  # FS#23997
+  sed -i -e "s|^#.* /usr/local/bin/python|#!/usr/bin/python|" Lib/cgi.py
+
+  # Speed up LTO
+  sed -i -e "s|-flto |-flto=4 |g" configure configure.ac
+
+  # Ensure that we are using the system copy of various libraries (expat, 
libffi, and libmpdec),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/_ctypes/{darwin,libffi}*
+  rm -r Modules/_decimal/libmpdec
+}
+
+build() {
+  cd Python-${pkgver}
+
+  # PGO should be done with -O3
+  # Also included the -fno-semantic-interposition optimization:
+  # https://fedoraproject.org/wiki/Changes/PythonNoSemanticInterpositionSpeedup
+  CFLAGS="${CFLAGS/-O2/-O3} -fno-semantic-interposition"
+  LDFLAGS="$LDFLAGS -fno-semantic-interposition"
+
+  # Disable bundled pip & setuptools
+  ./configure --prefix=/usr \
+  --enable-shared \
+  --with-computed-gotos \
+  --enable-optimizations \
+  --with-lto \
+  --enable-ipv6 \
+  --with-system-expat \
+  --with-dbmliborder=gdbm:ndbm \
+  --with-system-ffi \
+  --with-system-libmpdec \
+  --enable-loadable-sqlite-extensions \
+  --without-ensurepip
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LC_CTYPE=en_US.UTF-8 xvfb-run -s "-screen 0 1920x1080x16 -ac +extension GLX" 
-a -n "$servernum" make EXTRA_CFLAGS="$CFLAGS"
+}
+
+check() {
+  # test_gdb is expected to fail with LTO
+  # test_idle, test_tk, test_ttk_guionly segfaults since 3.6.5
+  # test_socket hangs since 3.8.2
+  # test_decimal fails since 3.8.2
+
+  cd Python-${pkgver}
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LD_LIBRARY_PATH="${srcdir}/Python-${pkgver}":${LD_LIBRARY_PATH} \
+  LC_CTYPE=en_US.UTF-8 xvfb-run -s "-screen 0 1920x1080x16 -ac +extension GLX" 
-a -n "$servernum" \
+"${srcdir}/Python-${pkgver}/python" -m test.regrtest -v -uall -x test_gdb 
-x test_idle -x test_tk -x test_ttk_guionly \
+  -x 
test_socket -x test_decimal
+}
+
+package_python() {
+  optdepends=('python-setuptools'
+  'python-pip'
+  'sqlite'
+  'mpdecimal: for decimal'
+  'xz: for lzma'
+  'tk: for tkinter')
+  provides=('python3')
+  replaces=('python3')
+
+  cd Python-${pkgver}
+
+  # Hack to avoid building again
+  sed -i 's/^all:.*$/all: build_all/' Makefile
+
+  # PGO should be done with -O3
+  CFLAGS="${CFLAGS/-O2/-O3}"
+
+  make DESTDIR="${pkgdir}" EXTRA_CFLAGS="$CFLAGS" install
+
+  # Split tests
+  rm -r 

[arch-commits] Commit in python/repos (3 files)

2020-05-17 Thread Felix Yan via arch-commits
Date: Sunday, May 17, 2020 @ 18:58:16
  Author: felixonmars
Revision: 385449

archrelease: copy trunk to testing-x86_64

Added:
  python/repos/testing-x86_64/
  python/repos/testing-x86_64/PKGBUILD
(from rev 385448, python/trunk/PKGBUILD)
  python/repos/testing-x86_64/genrebuild
(from rev 385448, python/trunk/genrebuild)

+
 PKGBUILD   |  155 +++
 genrebuild |7 ++
 2 files changed, 162 insertions(+)

Copied: python/repos/testing-x86_64/PKGBUILD (from rev 385448, 
python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-05-17 18:58:16 UTC (rev 385449)
@@ -0,0 +1,155 @@
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Jason Chu 
+
+shopt -s extglob
+
+pkgbase=python
+pkgname=(python python-tests)
+pkgver=3.8.3
+pkgrel=1
+_pybasever=${pkgver%.*}
+pkgdesc="Next generation of the python high-level scripting language"
+arch=('x86_64')
+license=('custom')
+url="https://www.python.org/;
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib' 'libnsl')
+makedepends=('tk' 'sqlite' 'valgrind' 'bluez-libs' 'mpdecimal' 'llvm' 'gdb' 
'xorg-server-xvfb')
+source=("https://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz"{,.asc})
+sha512sums=('3103bd8d944f3905eee3a2b52fd1f5c7dee380f9c5a99ad35a401fcba5a9117c3860ecec5cb47a92712c6549442fd2fa553a15c5657241dd09f5d00b9ed4f0f4'
+'SKIP')
+validpgpkeys=('0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D'  # Ned Deily (Python 
release signing key) 
+  'E3FF2839C048B25C084DEBE9B26995E310250568') # Łukasz Langa (GPG 
langa.pl) 
+
+prepare() {
+  cd Python-${pkgver}
+
+  # https://bugs.python.org/issue34587
+  sed -i -e "s|testCongestion|disabled_&|" Lib/test/test_socket.py
+
+  # FS#23997
+  sed -i -e "s|^#.* /usr/local/bin/python|#!/usr/bin/python|" Lib/cgi.py
+
+  # Speed up LTO
+  sed -i -e "s|-flto |-flto=4 |g" configure configure.ac
+
+  # Ensure that we are using the system copy of various libraries (expat, 
libffi, and libmpdec),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/_ctypes/{darwin,libffi}*
+  rm -r Modules/_decimal/libmpdec
+}
+
+build() {
+  cd Python-${pkgver}
+
+  # PGO should be done with -O3
+  # Also included the -fno-semantic-interposition optimization:
+  # https://fedoraproject.org/wiki/Changes/PythonNoSemanticInterpositionSpeedup
+  CFLAGS="${CFLAGS/-O2/-O3} -fno-semantic-interposition"
+  LDFLAGS="$LDFLAGS -fno-semantic-interposition"
+
+  # Disable bundled pip & setuptools
+  ./configure --prefix=/usr \
+  --enable-shared \
+  --with-computed-gotos \
+  --enable-optimizations \
+  --with-lto \
+  --enable-ipv6 \
+  --with-system-expat \
+  --with-dbmliborder=gdbm:ndbm \
+  --with-system-ffi \
+  --with-system-libmpdec \
+  --enable-loadable-sqlite-extensions \
+  --without-ensurepip
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LC_CTYPE=en_US.UTF-8 xvfb-run -s "-screen 0 1920x1080x16 -ac +extension GLX" 
-a -n "$servernum" make EXTRA_CFLAGS="$CFLAGS"
+}
+
+check() {
+  # test_gdb is expected to fail with LTO
+  # test_idle, test_tk, test_ttk_guionly segfaults since 3.6.5
+  # test_socket hangs since 3.8.2
+  # test_decimal fails since 3.8.2
+
+  cd Python-${pkgver}
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LD_LIBRARY_PATH="${srcdir}/Python-${pkgver}":${LD_LIBRARY_PATH} \
+  LC_CTYPE=en_US.UTF-8 xvfb-run -s "-screen 0 1920x1080x16 -ac +extension GLX" 
-a -n "$servernum" \
+"${srcdir}/Python-${pkgver}/python" -m test.regrtest -v -uall -x test_gdb 
-x test_idle -x test_tk -x test_ttk_guionly \
+  -x 
test_socket -x test_decimal
+}
+
+package_python() {
+  optdepends=('python-setuptools'
+  'python-pip'
+  'sqlite'
+  'mpdecimal: for decimal'
+  'xz: for lzma'
+  'tk: for tkinter')
+  provides=('python3')
+  replaces=('python3')
+
+  cd Python-${pkgver}
+
+  # Hack to avoid building again
+  sed -i 's/^all:.*$/all: build_all/' Makefile
+
+  # PGO should be done with -O3
+  CFLAGS="${CFLAGS/-O2/-O3}"
+
+  make DESTDIR="${pkgdir}" EXTRA_CFLAGS="$CFLAGS" install
+
+  # Split tests
+  rm -r 

[arch-commits] Commit in python/repos (3 files)

2019-10-23 Thread Felix Yan via arch-commits
Date: Wednesday, October 23, 2019 @ 19:27:24
  Author: felixonmars
Revision: 365413

archrelease: copy trunk to staging-x86_64

Added:
  python/repos/staging-x86_64/
  python/repos/staging-x86_64/0001-compileall-Fix-ddir-when-recursing.patch
(from rev 365412, 
python/trunk/0001-compileall-Fix-ddir-when-recursing.patch)
  python/repos/staging-x86_64/PKGBUILD
(from rev 365412, python/trunk/PKGBUILD)

---+
 0001-compileall-Fix-ddir-when-recursing.patch |   57 ++
 PKGBUILD  |  129 
 2 files changed, 186 insertions(+)

Copied: 
python/repos/staging-x86_64/0001-compileall-Fix-ddir-when-recursing.patch (from 
rev 365412, python/trunk/0001-compileall-Fix-ddir-when-recursing.patch)
===
--- staging-x86_64/0001-compileall-Fix-ddir-when-recursing.patch
(rev 0)
+++ staging-x86_64/0001-compileall-Fix-ddir-when-recursing.patch
2019-10-23 19:27:24 UTC (rev 365413)
@@ -0,0 +1,57 @@
+From 84fdbc156ed424d030686de350fbfc6c3593263f Mon Sep 17 00:00:00 2001
+Message-Id: 
<84fdbc156ed424d030686de350fbfc6c3593263f.1537028533.git.jan.steff...@gmail.com>
+From: "Jan Alexander Steffens (heftig)" 
+Date: Sat, 15 Sep 2018 18:22:06 +0200
+Subject: [PATCH] compileall: Fix ddir when recursing
+
+---
+ Lib/compileall.py | 14 +-
+ 1 file changed, 9 insertions(+), 5 deletions(-)
+
+diff --git a/Lib/compileall.py b/Lib/compileall.py
+index 72592126d7..70e246fd96 100644
+--- a/Lib/compileall.py
 b/Lib/compileall.py
+@@ -45,12 +45,16 @@ def _walk_dir(dir, ddir=None, maxlevels=10, quiet=0):
+ else:
+ dfile = None
+ if not os.path.isdir(fullname):
+-yield fullname
++yield fullname, ddir
+ elif (maxlevels > 0 and name != os.curdir and name != os.pardir and
+   os.path.isdir(fullname) and not os.path.islink(fullname)):
+ yield from _walk_dir(fullname, ddir=dfile,
+  maxlevels=maxlevels - 1, quiet=quiet)
+ 
++def _compile_one(file_ddir, *args, **kwargs):
++file, ddir = file_ddir
++return compile_file(file, ddir, *args, **kwargs)
++
+ def compile_dir(dir, maxlevels=10, ddir=None, force=False, rx=None,
+ quiet=0, legacy=False, optimize=-1, workers=1,
+ invalidation_mode=py_compile.PycInvalidationMode.TIMESTAMP):
+@@ -79,17 +83,17 @@ def compile_dir(dir, maxlevels=10, ddir=None, force=False, 
rx=None,
+ if workers is not None and workers != 1 and ProcessPoolExecutor is not 
None:
+ workers = workers or None
+ with ProcessPoolExecutor(max_workers=workers) as executor:
+-results = executor.map(partial(compile_file,
+-   ddir=ddir, force=force,
++results = executor.map(partial(_compile_one,
++   force=force,
+rx=rx, quiet=quiet,
+legacy=legacy,
+optimize=optimize,
+
invalidation_mode=invalidation_mode),
+files)
+ success = min(results, default=True)
+ else:
+-for file in files:
+-if not compile_file(file, ddir, force, rx, quiet,
++for file_ddir in files:
++if not _compile_one(file_ddir, force, rx, quiet,
+ legacy, optimize, invalidation_mode):
+ success = False
+ return success
+-- 
+2.18.0
+

Copied: python/repos/staging-x86_64/PKGBUILD (from rev 365412, 
python/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-10-23 19:27:24 UTC (rev 365413)
@@ -0,0 +1,129 @@
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Jason Chu 
+
+pkgname=python
+pkgver=3.8.0
+pkgrel=1
+_pybasever=${pkgver%.*}
+pkgdesc="Next generation of the python high-level scripting language"
+arch=('x86_64')
+license=('custom')
+url="https://www.python.org/;
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib' 'libnsl')
+makedepends=('tk' 'sqlite' 'valgrind' 'bluez-libs' 'mpdecimal' 'llvm' 'gdb' 
'xorg-server-xvfb')
+optdepends=('python-setuptools'
+'python-pip'
+'sqlite'
+'mpdecimal: for decimal'
+'xz: for lzma'
+'tk: for tkinter')
+provides=('python3')
+replaces=('python3')
+source=("https://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz"{,.asc}
+0001-compileall-Fix-ddir-when-recursing.patch)

[arch-commits] Commit in python/repos (3 files)

2018-06-29 Thread Evangelos Foutras via arch-commits
Date: Friday, June 29, 2018 @ 17:22:51
  Author: foutrelis
Revision: 327778

archrelease: copy trunk to staging-x86_64

Added:
  python/repos/staging-x86_64/
  python/repos/staging-x86_64/PKGBUILD
(from rev 32, python/trunk/PKGBUILD)
  python/repos/staging-x86_64/dont-make-libpython-readonly.patch
(from rev 32, python/trunk/dont-make-libpython-readonly.patch)

+
 PKGBUILD   |  114 +++
 dont-make-libpython-readonly.patch |   13 +++
 2 files changed, 127 insertions(+)

Copied: python/repos/staging-x86_64/PKGBUILD (from rev 32, 
python/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-06-29 17:22:51 UTC (rev 327778)
@@ -0,0 +1,114 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Jason Chu 
+
+pkgname=python
+pkgver=3.7.0
+pkgrel=2
+_pybasever=${pkgver%.*}
+pkgdesc="Next generation of the python high-level scripting language"
+arch=('x86_64')
+license=('custom')
+url="http://www.python.org/;
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib' 'libnsl')
+makedepends=('tk' 'sqlite' 'valgrind' 'bluez-libs' 'mpdecimal' 'llvm' 'gdb' 
'xorg-server-xvfb')
+optdepends=('python-setuptools'
+'python-pip'
+'sqlite'
+'mpdecimal: for decimal'
+'xz: for lzma'
+'tk: for tkinter')
+provides=('python3')
+replaces=('python3')
+source=("https://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz"{,.asc}
+dont-make-libpython-readonly.patch)
+sha512sums=('8bb11233fb67ee9ab8ed1b72f8fdc62f66e26a6beaaeb92448bce681cf065269833b1658d3ed2459127f25ba43adb0eab73cf27c59834a2a803fb529b4216739'
+'SKIP'
+
'2ef96708d5b13ae2a3d2cc62c87b4780e60ecfce914e190564492def3a11d5e56977659f41c7f9d12266e58050c766bce4e2b5d50b708eb792794fa8357920c4')
+validpgpkeys=('0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D')  # Ned Deily (Python 
release signing key) 
+
+prepare() {
+  cd Python-${pkgver}
+
+  # FS#45809
+  patch -p1 -i ../dont-make-libpython-readonly.patch
+
+  # FS#23997
+  sed -i -e "s|^#.* /usr/local/bin/python|#!/usr/bin/python|" Lib/cgi.py
+
+  # Ensure that we are using the system copy of various libraries (expat, 
libffi, and libmpdec),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/_ctypes/{darwin,libffi}*
+  rm -r Modules/_decimal/libmpdec
+}
+
+build() {
+  cd Python-${pkgver}
+
+  # Disable bundled pip & setuptools
+  ./configure --prefix=/usr \
+  --enable-shared \
+  --with-threads \
+  --with-computed-gotos \
+  --enable-optimizations \
+  --with-lto \
+  --enable-ipv6 \
+  --with-system-expat \
+  --with-dbmliborder=gdbm:ndbm \
+  --with-system-ffi \
+  --with-system-libmpdec \
+  --enable-loadable-sqlite-extensions \
+  --without-ensurepip
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LC_CTYPE=en_US.UTF-8 xvfb-run -s "-screen 0 1280x720x24 -ac +extension GLX" 
-a -n "$servernum" make EXTRA_CFLAGS="$CFLAGS"
+}
+
+check() {
+  # test_gdb is expected to fail with LTO
+  # test_idle, test_tk, test_ttk_guionly segfaults since 3.6.5
+  # test_cmd_line_script, test_compileall, test_importlib, 
test_multiprocessing_main_handling, test_py_compile, test_runpy fail in 3.7.0
+  # (All 6 are about zipfile import error)
+
+  cd Python-${pkgver}
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LD_LIBRARY_PATH="${srcdir}/Python-${pkgver}":${LD_LIBRARY_PATH} \
+  LC_CTYPE=en_US.UTF-8 xvfb-run -s "-screen 0 1280x720x24 -ac +extension GLX" 
-a -n "$servernum" \
+"${srcdir}/Python-${pkgver}/python" -m test.regrtest -v -uall -x test_gdb 
-x test_idle -x test_tk -x test_ttk_guionly \
+-x test_cmd_line_script -x test_compileall -x test_importlib -x 
test_multiprocessing_main_handling -x test_py_compile -x test_runpy
+}
+
+package() {
+  cd Python-${pkgver}
+
+  # Hack to avoid building again
+  sed -i 's/^all:.*$/all: build_all/' Makefile
+
+  make DESTDIR="${pkgdir}" EXTRA_CFLAGS="$CFLAGS" install
+
+  # Why are these not done by default...
+  ln -s python3   "${pkgdir}"/usr/bin/python
+  ln -s python3-config"${pkgdir}"/usr/bin/python-config
+  ln -s idle3 "${pkgdir}"/usr/bin/idle
+  ln -s pydoc3"${pkgdir}"/usr/bin/pydoc
+  ln 

[arch-commits] Commit in python/repos (3 files)

2018-06-27 Thread Bartłomiej Piotrowski via arch-commits
Date: Wednesday, June 27, 2018 @ 14:06:16
  Author: bpiotrowski
Revision: 327695

archrelease: copy trunk to staging-x86_64

Added:
  python/repos/staging-x86_64/
  python/repos/staging-x86_64/PKGBUILD
(from rev 327694, python/trunk/PKGBUILD)
  python/repos/staging-x86_64/dont-make-libpython-readonly.patch
(from rev 327694, python/trunk/dont-make-libpython-readonly.patch)

+
 PKGBUILD   |  112 +++
 dont-make-libpython-readonly.patch |   13 
 2 files changed, 125 insertions(+)

Copied: python/repos/staging-x86_64/PKGBUILD (from rev 327694, 
python/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-06-27 14:06:16 UTC (rev 327695)
@@ -0,0 +1,112 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Jason Chu 
+
+pkgname=python
+pkgver=3.6.6
+pkgrel=1
+_pybasever=3.6
+pkgdesc="Next generation of the python high-level scripting language"
+arch=('x86_64')
+license=('custom')
+url="http://www.python.org/;
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib' 'libnsl')
+makedepends=('tk' 'sqlite' 'valgrind' 'bluez-libs' 'mpdecimal' 'llvm' 'gdb' 
'xorg-server-xvfb')
+optdepends=('python-setuptools'
+'python-pip'
+'sqlite'
+'mpdecimal: for decimal'
+'xz: for lzma'
+'tk: for tkinter')
+provides=('python3')
+replaces=('python3')
+source=("https://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz"{,.asc}
+dont-make-libpython-readonly.patch)
+sha512sums=('c71f87c5906e770322a14cacad228655659f782207db826320449d12bf86091c3662f317e1773158dec52f8b052eaedfb4c03b561cc2a6cfcd381597fd2d2b04'
+'SKIP'
+
'2ef96708d5b13ae2a3d2cc62c87b4780e60ecfce914e190564492def3a11d5e56977659f41c7f9d12266e58050c766bce4e2b5d50b708eb792794fa8357920c4')
+validpgpkeys=('0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D')  # Ned Deily (Python 
release signing key) 
+
+prepare() {
+  cd Python-${pkgver}
+
+  # FS#45809
+  patch -p1 -i ../dont-make-libpython-readonly.patch
+
+  # FS#23997
+  sed -i -e "s|^#.* /usr/local/bin/python|#!/usr/bin/python|" Lib/cgi.py
+
+  # Ensure that we are using the system copy of various libraries (expat, 
zlib, libffi, and libmpdec),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/zlib
+  rm -r Modules/_ctypes/{darwin,libffi}*
+  rm -r Modules/_decimal/libmpdec
+}
+
+build() {
+  cd Python-${pkgver}
+
+  # Disable bundled pip & setuptools
+  ./configure --prefix=/usr \
+  --enable-shared \
+  --with-threads \
+  --with-computed-gotos \
+  --enable-optimizations \
+  --with-lto \
+  --enable-ipv6 \
+  --with-system-expat \
+  --with-dbmliborder=gdbm:ndbm \
+  --with-system-ffi \
+  --with-system-libmpdec \
+  --enable-loadable-sqlite-extensions \
+  --without-ensurepip
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LC_CTYPE=en_US.UTF-8 xvfb-run -s "-screen 0 1280x720x24 -ac +extension GLX" 
-a -n "$servernum" make EXTRA_CFLAGS="$CFLAGS"
+}
+
+check() {
+  # test_gdb is expected to fail with LTO~
+  # test_idle, test_tk, test_ttk_guionly segfaults on 3.6.5
+
+  cd Python-${pkgver}
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LD_LIBRARY_PATH="${srcdir}/Python-${pkgver}":${LD_LIBRARY_PATH} \
+  LC_CTYPE=en_US.UTF-8 xvfb-run -s "-screen 0 1280x720x24 -ac +extension GLX" 
-a -n "$servernum" \
+"${srcdir}/Python-${pkgver}/python" -m test.regrtest -v -uall -x test_gdb 
-x test_idle -x test_tk -x test_ttk_guionly
+}
+
+package() {
+  cd Python-${pkgver}
+
+  # Hack to avoid building again
+  sed -i 's/^all:.*$/all: build_all/' Makefile
+
+  make DESTDIR="${pkgdir}" EXTRA_CFLAGS="$CFLAGS" install
+
+  # Why are these not done by default...
+  ln -s python3   "${pkgdir}"/usr/bin/python
+  ln -s python3-config"${pkgdir}"/usr/bin/python-config
+  ln -s idle3 "${pkgdir}"/usr/bin/idle
+  ln -s pydoc3"${pkgdir}"/usr/bin/pydoc
+  ln -s python${_pybasever}.1 "${pkgdir}"/usr/share/man/man1/python.1
+
+  # some useful "stuff" FS#46146
+  install -dm755 "${pkgdir}"/usr/lib/python${_pybasever}/Tools/{i18n,scripts}
+  install -m755 Tools/i18n/{msgfmt,pygettext}.py 
"${pkgdir}"/usr/lib/python${_pybasever}/Tools/i18n/
+  install -m755 

[arch-commits] Commit in python/repos (3 files)

2018-04-14 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, April 14, 2018 @ 15:30:44
  Author: bpiotrowski
Revision: 321800

archrelease: copy trunk to staging-x86_64

Added:
  python/repos/staging-x86_64/
  python/repos/staging-x86_64/PKGBUILD
(from rev 321799, python/trunk/PKGBUILD)
  python/repos/staging-x86_64/dont-make-libpython-readonly.patch
(from rev 321799, python/trunk/dont-make-libpython-readonly.patch)

+
 PKGBUILD   |  112 +++
 dont-make-libpython-readonly.patch |   13 
 2 files changed, 125 insertions(+)

Copied: python/repos/staging-x86_64/PKGBUILD (from rev 321799, 
python/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-04-14 15:30:44 UTC (rev 321800)
@@ -0,0 +1,112 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Jason Chu 
+
+pkgname=python
+pkgver=3.6.5
+pkgrel=2
+_pybasever=3.6
+pkgdesc="Next generation of the python high-level scripting language"
+arch=('x86_64')
+license=('custom')
+url="http://www.python.org/;
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib' 'libnsl')
+makedepends=('tk' 'sqlite' 'valgrind' 'bluez-libs' 'mpdecimal' 'llvm' 'gdb' 
'xorg-server-xvfb')
+optdepends=('python-setuptools'
+'python-pip'
+'sqlite'
+'mpdecimal: for decimal'
+'xz: for lzma'
+'tk: for tkinter')
+provides=('python3')
+replaces=('python3')
+source=("https://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz"{,.asc}
+dont-make-libpython-readonly.patch)
+sha512sums=('6b26fcd296b9bd8e67861eff10d14db7507711ddba947288d16d6def53135c39326b7f969c04bb2b2993f924d9e7ad3f5c5282a3915760bc0885cf0a8ea5eb51'
+'SKIP'
+
'2ef96708d5b13ae2a3d2cc62c87b4780e60ecfce914e190564492def3a11d5e56977659f41c7f9d12266e58050c766bce4e2b5d50b708eb792794fa8357920c4')
+validpgpkeys=('0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D')  # Ned Deily (Python 
release signing key) 
+
+prepare() {
+  cd Python-${pkgver}
+
+  # FS#45809
+  patch -p1 -i ../dont-make-libpython-readonly.patch
+
+  # FS#23997
+  sed -i -e "s|^#.* /usr/local/bin/python|#!/usr/bin/python|" Lib/cgi.py
+
+  # Ensure that we are using the system copy of various libraries (expat, 
zlib, libffi, and libmpdec),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/zlib
+  rm -r Modules/_ctypes/{darwin,libffi}*
+  rm -r Modules/_decimal/libmpdec
+}
+
+build() {
+  cd Python-${pkgver}
+
+  # Disable bundled pip & setuptools
+  ./configure --prefix=/usr \
+  --enable-shared \
+  --with-threads \
+  --with-computed-gotos \
+  --enable-optimizations \
+  --with-lto \
+  --enable-ipv6 \
+  --with-system-expat \
+  --with-dbmliborder=gdbm:ndbm \
+  --with-system-ffi \
+  --with-system-libmpdec \
+  --enable-loadable-sqlite-extensions \
+  --without-ensurepip
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LC_CTYPE=en_US.UTF-8 xvfb-run -s "-screen 0 1280x720x24 -ac +extension GLX" 
-a -n "$servernum" make EXTRA_CFLAGS="$CFLAGS"
+}
+
+check() {
+  # test_gdb is expected to fail with LTO~
+  # test_idle, test_tk, test_ttk_guionly segfaults on 3.6.5
+
+  cd Python-${pkgver}
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LD_LIBRARY_PATH="${srcdir}/Python-${pkgver}":${LD_LIBRARY_PATH} \
+  LC_CTYPE=en_US.UTF-8 xvfb-run -s "-screen 0 1280x720x24 -ac +extension GLX" 
-a -n "$servernum" \
+"${srcdir}/Python-${pkgver}/python" -m test.regrtest -v -uall -x test_gdb 
-x test_idle -x test_tk -x test_ttk_guionly
+}
+
+package() {
+  cd Python-${pkgver}
+
+  # Hack to avoid building again
+  sed -i 's/^all:.*$/all: build_all/' Makefile
+
+  make DESTDIR="${pkgdir}" EXTRA_CFLAGS="$CFLAGS" install
+
+  # Why are these not done by default...
+  ln -s python3   "${pkgdir}"/usr/bin/python
+  ln -s python3-config"${pkgdir}"/usr/bin/python-config
+  ln -s idle3 "${pkgdir}"/usr/bin/idle
+  ln -s pydoc3"${pkgdir}"/usr/bin/pydoc
+  ln -s python${_pybasever}.1 "${pkgdir}"/usr/share/man/man1/python.1
+
+  # some useful "stuff" FS#46146
+  install -dm755 

[arch-commits] Commit in python/repos (3 files)

2018-04-12 Thread Felix Yan via arch-commits
Date: Thursday, April 12, 2018 @ 15:24:15
  Author: felixonmars
Revision: 321634

archrelease: copy trunk to testing-x86_64

Added:
  python/repos/testing-x86_64/
  python/repos/testing-x86_64/PKGBUILD
(from rev 321633, python/trunk/PKGBUILD)
  python/repos/testing-x86_64/dont-make-libpython-readonly.patch
(from rev 321633, python/trunk/dont-make-libpython-readonly.patch)

+
 PKGBUILD   |  112 +++
 dont-make-libpython-readonly.patch |   13 
 2 files changed, 125 insertions(+)

Copied: python/repos/testing-x86_64/PKGBUILD (from rev 321633, 
python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-04-12 15:24:15 UTC (rev 321634)
@@ -0,0 +1,112 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Jason Chu 
+
+pkgname=python
+pkgver=3.6.5
+pkgrel=1
+_pybasever=3.6
+pkgdesc="Next generation of the python high-level scripting language"
+arch=('x86_64')
+license=('custom')
+url="http://www.python.org/;
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
+makedepends=('tk' 'sqlite' 'valgrind' 'bluez-libs' 'mpdecimal' 'llvm' 'gdb' 
'xorg-server-xvfb')
+optdepends=('python-setuptools'
+'python-pip'
+'sqlite'
+'mpdecimal: for decimal'
+'xz: for lzma'
+'tk: for tkinter')
+provides=('python3')
+replaces=('python3')
+source=("https://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz"{,.asc}
+dont-make-libpython-readonly.patch)
+sha512sums=('6b26fcd296b9bd8e67861eff10d14db7507711ddba947288d16d6def53135c39326b7f969c04bb2b2993f924d9e7ad3f5c5282a3915760bc0885cf0a8ea5eb51'
+'SKIP'
+
'2ef96708d5b13ae2a3d2cc62c87b4780e60ecfce914e190564492def3a11d5e56977659f41c7f9d12266e58050c766bce4e2b5d50b708eb792794fa8357920c4')
+validpgpkeys=('0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D')  # Ned Deily (Python 
release signing key) 
+
+prepare() {
+  cd Python-${pkgver}
+
+  # FS#45809
+  patch -p1 -i ../dont-make-libpython-readonly.patch
+
+  # FS#23997
+  sed -i -e "s|^#.* /usr/local/bin/python|#!/usr/bin/python|" Lib/cgi.py
+
+  # Ensure that we are using the system copy of various libraries (expat, 
zlib, libffi, and libmpdec),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/zlib
+  rm -r Modules/_ctypes/{darwin,libffi}*
+  rm -r Modules/_decimal/libmpdec
+}
+
+build() {
+  cd Python-${pkgver}
+
+  # Disable bundled pip & setuptools
+  ./configure --prefix=/usr \
+  --enable-shared \
+  --with-threads \
+  --with-computed-gotos \
+  --enable-optimizations \
+  --with-lto \
+  --enable-ipv6 \
+  --with-system-expat \
+  --with-dbmliborder=gdbm:ndbm \
+  --with-system-ffi \
+  --with-system-libmpdec \
+  --enable-loadable-sqlite-extensions \
+  --without-ensurepip
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LC_CTYPE=en_US.UTF-8 xvfb-run -s "-screen 0 1280x720x24 -ac +extension GLX" 
-a -n "$servernum" make EXTRA_CFLAGS="$CFLAGS"
+}
+
+check() {
+  # test_gdb is expected to fail with LTO~
+  # test_idle, test_tk, test_ttk_guionly segfaults on 3.6.5
+
+  cd Python-${pkgver}
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LD_LIBRARY_PATH="${srcdir}/Python-${pkgver}":${LD_LIBRARY_PATH} \
+  LC_CTYPE=en_US.UTF-8 xvfb-run -s "-screen 0 1280x720x24 -ac +extension GLX" 
-a -n "$servernum" \
+"${srcdir}/Python-${pkgver}/python" -m test.regrtest -v -uall -x test_gdb 
-x test_idle -x test_tk -x test_ttk_guionly
+}
+
+package() {
+  cd Python-${pkgver}
+
+  # Hack to avoid building again
+  sed -i 's/^all:.*$/all: build_all/' Makefile
+
+  make DESTDIR="${pkgdir}" EXTRA_CFLAGS="$CFLAGS" install
+
+  # Why are these not done by default...
+  ln -s python3   "${pkgdir}"/usr/bin/python
+  ln -s python3-config"${pkgdir}"/usr/bin/python-config
+  ln -s idle3 "${pkgdir}"/usr/bin/idle
+  ln -s pydoc3"${pkgdir}"/usr/bin/pydoc
+  ln -s python${_pybasever}.1 "${pkgdir}"/usr/share/man/man1/python.1
+
+  # some useful "stuff" FS#46146
+  install -dm755 "${pkgdir}"/usr/lib/python${_pybasever}/Tools/{i18n,scripts}

[arch-commits] Commit in python/repos (3 files)

2018-01-04 Thread Felix Yan via arch-commits
Date: Friday, January 5, 2018 @ 02:39:20
  Author: felixonmars
Revision: 314059

archrelease: copy trunk to staging-x86_64

Added:
  python/repos/staging-x86_64/
  python/repos/staging-x86_64/PKGBUILD
(from rev 314058, python/trunk/PKGBUILD)
  python/repos/staging-x86_64/dont-make-libpython-readonly.patch
(from rev 314058, python/trunk/dont-make-libpython-readonly.patch)

+
 PKGBUILD   |  112 +++
 dont-make-libpython-readonly.patch |   13 
 2 files changed, 125 insertions(+)

Copied: python/repos/staging-x86_64/PKGBUILD (from rev 314058, 
python/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-01-05 02:39:20 UTC (rev 314059)
@@ -0,0 +1,112 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Jason Chu 
+
+pkgname=python
+pkgver=3.6.4
+pkgrel=2
+_pybasever=3.6
+pkgdesc="Next generation of the python high-level scripting language"
+arch=('x86_64')
+license=('custom')
+url="http://www.python.org/;
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
+makedepends=('tk' 'sqlite' 'valgrind' 'bluez-libs' 'mpdecimal' 'llvm' 'gdb' 
'xorg-server-xvfb')
+optdepends=('python-setuptools'
+'python-pip'
+'sqlite'
+'mpdecimal: for decimal'
+'xz: for lzma'
+'tk: for tkinter')
+provides=('python3')
+replaces=('python3')
+source=("https://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz"{,.asc}
+dont-make-libpython-readonly.patch)
+sha512sums=('09ba2103ac517ac4d262f00380c9aac836a53401ce252540c17fd821a3b92e1ddf32528d00772221eb3126b12cb95b62c3ac3e852f4951e6f2eb406c88c848a2'
+'SKIP'
+
'2ef96708d5b13ae2a3d2cc62c87b4780e60ecfce914e190564492def3a11d5e56977659f41c7f9d12266e58050c766bce4e2b5d50b708eb792794fa8357920c4')
+validpgpkeys=('0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D')  # Ned Deily (Python 
release signing key) 
+
+prepare() {
+  cd Python-${pkgver}
+
+  # FS#45809
+  patch -p1 -i ../dont-make-libpython-readonly.patch
+
+  # FS#23997
+  sed -i -e "s|^#.* /usr/local/bin/python|#!/usr/bin/python|" Lib/cgi.py
+
+  # Ensure that we are using the system copy of various libraries (expat, 
zlib, libffi, and libmpdec),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/zlib
+  rm -r Modules/_ctypes/{darwin,libffi}*
+  rm -r Modules/_decimal/libmpdec
+}
+
+build() {
+  cd Python-${pkgver}
+
+  # Disable bundled pip & setuptools
+  ./configure --prefix=/usr \
+  --enable-shared \
+  --with-threads \
+  --with-computed-gotos \
+  --enable-optimizations \
+  --with-lto \
+  --enable-ipv6 \
+  --with-system-expat \
+  --with-dbmliborder=gdbm:ndbm \
+  --with-system-ffi \
+  --with-system-libmpdec \
+  --enable-loadable-sqlite-extensions \
+  --without-ensurepip
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LC_CTYPE=en_US.UTF-8 xvfb-run -a -n "$servernum" make EXTRA_CFLAGS="$CFLAGS"
+}
+
+check() {
+  # test_gdb is expected to fail with LTO
+  # test_subprocess hangs on 3.6.3
+
+  cd Python-${pkgver}
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LD_LIBRARY_PATH="${srcdir}/Python-${pkgver}":${LD_LIBRARY_PATH} \
+  LC_CTYPE=en_US.UTF-8 xvfb-run -a -n "$servernum" \
+"${srcdir}/Python-${pkgver}/python" -m test.regrtest -v -uall -x test_gdb 
-x test_subprocess
+}
+
+package() {
+  cd Python-${pkgver}
+
+  # Hack to avoid building again
+  sed -i 's/^all:.*$/all: build_all/' Makefile
+
+  make DESTDIR="${pkgdir}" EXTRA_CFLAGS="$CFLAGS" install
+
+  # Why are these not done by default...
+  ln -s python3   "${pkgdir}"/usr/bin/python
+  ln -s python3-config"${pkgdir}"/usr/bin/python-config
+  ln -s idle3 "${pkgdir}"/usr/bin/idle
+  ln -s pydoc3"${pkgdir}"/usr/bin/pydoc
+  ln -s python${_pybasever}.1 "${pkgdir}"/usr/share/man/man1/python.1
+
+  # some useful "stuff" FS#46146
+  install -dm755 "${pkgdir}"/usr/lib/python${_pybasever}/Tools/{i18n,scripts}
+  install -m755 Tools/i18n/{msgfmt,pygettext}.py 
"${pkgdir}"/usr/lib/python${_pybasever}/Tools/i18n/
+  install -m755 

[arch-commits] Commit in python/repos (3 files)

2017-12-23 Thread Felix Yan via arch-commits
Date: Saturday, December 23, 2017 @ 19:13:41
  Author: felixonmars
Revision: 313571

archrelease: copy trunk to testing-x86_64

Added:
  python/repos/testing-x86_64/
  python/repos/testing-x86_64/PKGBUILD
(from rev 313570, python/trunk/PKGBUILD)
  python/repos/testing-x86_64/dont-make-libpython-readonly.patch
(from rev 313570, python/trunk/dont-make-libpython-readonly.patch)

+
 PKGBUILD   |  112 +++
 dont-make-libpython-readonly.patch |   13 
 2 files changed, 125 insertions(+)

Copied: python/repos/testing-x86_64/PKGBUILD (from rev 313570, 
python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-23 19:13:41 UTC (rev 313571)
@@ -0,0 +1,112 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Jason Chu 
+
+pkgname=python
+pkgver=3.6.4
+pkgrel=1
+_pybasever=3.6
+pkgdesc="Next generation of the python high-level scripting language"
+arch=('x86_64')
+license=('custom')
+url="http://www.python.org/;
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
+makedepends=('tk' 'sqlite' 'valgrind' 'bluez-libs' 'mpdecimal' 'llvm' 'gdb' 
'xorg-server-xvfb')
+optdepends=('python-setuptools'
+'python-pip'
+'sqlite'
+'mpdecimal: for decimal'
+'xz: for lzma'
+'tk: for tkinter')
+provides=('python3')
+replaces=('python3')
+source=("https://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz"{,.asc}
+dont-make-libpython-readonly.patch)
+sha512sums=('09ba2103ac517ac4d262f00380c9aac836a53401ce252540c17fd821a3b92e1ddf32528d00772221eb3126b12cb95b62c3ac3e852f4951e6f2eb406c88c848a2'
+'SKIP'
+
'2ef96708d5b13ae2a3d2cc62c87b4780e60ecfce914e190564492def3a11d5e56977659f41c7f9d12266e58050c766bce4e2b5d50b708eb792794fa8357920c4')
+validpgpkeys=('0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D')  # Ned Deily (Python 
release signing key) 
+
+prepare() {
+  cd Python-${pkgver}
+
+  # FS#45809
+  patch -p1 -i ../dont-make-libpython-readonly.patch
+
+  # FS#23997
+  sed -i -e "s|^#.* /usr/local/bin/python|#!/usr/bin/python|" Lib/cgi.py
+
+  # Ensure that we are using the system copy of various libraries (expat, 
zlib, libffi, and libmpdec),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/zlib
+  rm -r Modules/_ctypes/{darwin,libffi}*
+  rm -r Modules/_decimal/libmpdec
+}
+
+build() {
+  cd Python-${pkgver}
+
+  # Disable bundled pip & setuptools
+  ./configure --prefix=/usr \
+  --enable-shared \
+  --with-threads \
+  --with-computed-gotos \
+  --enable-optimizations \
+  --with-lto \
+  --enable-ipv6 \
+  --with-system-expat \
+  --with-dbmliborder=gdbm:ndbm \
+  --with-system-ffi \
+  --with-system-libmpdec \
+  --enable-loadable-sqlite-extensions \
+  --without-ensurepip
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LC_CTYPE=en_US.UTF-8 xvfb-run -a -n "$servernum" make EXTRA_CFLAGS="$CFLAGS"
+}
+
+check() {
+  # test_gdb is expected to fail with LTO
+  # test_subprocess hangs on 3.6.3
+
+  cd Python-${pkgver}
+
+  # Obtain next free server number for xvfb-run; this even works in a chroot 
environment.
+  export servernum=99
+  while ! xvfb-run -a -n "$servernum" /bin/true 2>/dev/null; do 
servernum=$((servernum+1)); done
+
+  LD_LIBRARY_PATH="${srcdir}/Python-${pkgver}":${LD_LIBRARY_PATH} \
+  LC_CTYPE=en_US.UTF-8 xvfb-run -a -n "$servernum" \
+"${srcdir}/Python-${pkgver}/python" -m test.regrtest -v -uall -x test_gdb 
-x test_subprocess
+}
+
+package() {
+  cd Python-${pkgver}
+
+  # Hack to avoid building again
+  sed -i 's/^all:.*$/all: build_all/' Makefile
+
+  make DESTDIR="${pkgdir}" EXTRA_CFLAGS="$CFLAGS" install
+
+  # Why are these not done by default...
+  ln -s python3   "${pkgdir}"/usr/bin/python
+  ln -s python3-config"${pkgdir}"/usr/bin/python-config
+  ln -s idle3 "${pkgdir}"/usr/bin/idle
+  ln -s pydoc3"${pkgdir}"/usr/bin/pydoc
+  ln -s python${_pybasever}.1 "${pkgdir}"/usr/share/man/man1/python.1
+
+  # some useful "stuff" FS#46146
+  install -dm755 "${pkgdir}"/usr/lib/python${_pybasever}/Tools/{i18n,scripts}
+  install -m755 Tools/i18n/{msgfmt,pygettext}.py 
"${pkgdir}"/usr/lib/python${_pybasever}/Tools/i18n/
+  install -m755 

[arch-commits] Commit in python/repos (3 files)

2012-04-28 Thread Allan McRae
Date: Saturday, April 28, 2012 @ 05:27:05
  Author: allan
Revision: 157410

db-move: moved python from [testing] to [extra] (i686)

Added:
  python/repos/extra-i686/PKGBUILD
(from rev 157383, python/repos/testing-i686/PKGBUILD)
Deleted:
  python/repos/extra-i686/PKGBUILD
  python/repos/testing-i686/

--+
 PKGBUILD |  152 ++---
 1 file changed, 76 insertions(+), 76 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-04-28 09:27:01 UTC (rev 157409)
+++ extra-i686/PKGBUILD 2012-04-28 09:27:05 UTC (rev 157410)
@@ -1,76 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Allan McRae al...@archlinux.org
-# Contributor: Jason Chu ja...@archlinux.org
-
-pkgname=python
-pkgver=3.2.3
-pkgrel=1
-_pybasever=3.2
-pkgdesc=Next generation of the python high-level scripting language
-arch=('i686' 'x86_64')
-license=('custom')
-url=http://www.python.org/;
-depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
-makedepends=('tk' 'sqlite' 'valgrind')
-optdepends=('tk: for tkinter' 'sqlite')
-provides=('python3')
-replaces=('python3')
-options=('!makeflags')
-source=(http://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz)
-sha1sums=('3d607dbcfdf100dd659978195ccf3ade9d221823')
-
-build() {
-  cd ${srcdir}/Python-${pkgver}
-
-  # FS#23997
-  sed -i -e s|^#.* /usr/local/bin/python|#!/usr/bin/python| Lib/cgi.py
-
-  # Ensure that we are using the system copy of various libraries (expat, zlib 
and libffi),
-  # rather than copies shipped in the tarball
-  rm -r Modules/expat
-  rm -r Modules/zlib
-  rm -r Modules/_ctypes/{darwin,libffi}*
-
-  ./configure --prefix=/usr \
-  --enable-shared \
-  --with-threads \
-  --with-computed-gotos \
-  --enable-ipv6 \
-  --with-valgrind \
-  --with-wide-unicode \
-  --with-system-expat \
-  --with-dbmliborder=gdbm:ndbm \
-  --with-system-ffi
-
-  make
-}
-
-check() {
-  cd ${srcdir}/Python-${pkgver}
-  LD_LIBRARY_PATH=${srcdir}/Python-${pkgver}:${LD_LIBRARY_PATH} \
- ${srcdir}/Python-${pkgver}/python -m test.regrtest -x test_distutils 
test_site \
- test_urllib test_uuid test_pydoc
-}
-
-package() {
-  cd ${srcdir}/Python-${pkgver}
-  make DESTDIR=${pkgdir} install maninstall
-
-  # Why are these not done by default...
-  ln -sf python3   ${pkgdir}/usr/bin/python
-  ln -sf python3-config${pkgdir}/usr/bin/python-config
-  ln -sf idle3 ${pkgdir}/usr/bin/idle
-  ln -sf pydoc3${pkgdir}/usr/bin/pydoc
-  ln -sf python${_pybasever}.1 ${pkgdir}/usr/share/man/man1/python3.1
-
-  # Fix FS#22552
-  ln -sf ../../libpython${_pybasever}mu.so \
-
${pkgdir}/usr/lib/python${_pybasever}/config-${_pybasever}mu/libpython${_pybasever}mu.so
-
-  # Clean-up reference to build directory
-  sed -i s|$srcdir/Python-${pkgver}:|| 
$pkgdir/usr/lib/python${_pybasever}/config-${_pybasever}mu/Makefile
-
-  # License
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python/repos/extra-i686/PKGBUILD (from rev 157383, 
python/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-04-28 09:27:05 UTC (rev 157410)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Jason Chu ja...@archlinux.org
+
+pkgname=python
+pkgver=3.2.3
+pkgrel=3
+_pybasever=3.2
+pkgdesc=Next generation of the python high-level scripting language
+arch=('i686' 'x86_64')
+license=('custom')
+url=http://www.python.org/;
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
+makedepends=('tk' 'sqlite' 'valgrind')
+optdepends=('tk: for tkinter' 'sqlite')
+provides=('python3')
+replaces=('python3')
+options=('!makeflags')
+source=(http://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz)
+sha1sums=('3d607dbcfdf100dd659978195ccf3ade9d221823')
+
+build() {
+  cd ${srcdir}/Python-${pkgver}
+
+  # FS#23997
+  sed -i -e s|^#.* /usr/local/bin/python|#!/usr/bin/python| Lib/cgi.py
+
+  # Ensure that we are using the system copy of various libraries (expat, zlib 
and libffi),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/zlib
+  rm -r Modules/_ctypes/{darwin,libffi}*
+
+  ./configure --prefix=/usr \
+  --enable-shared \
+  --with-threads \
+  --with-computed-gotos \
+  --enable-ipv6 \
+  --with-valgrind \
+  --with-wide-unicode \
+  --with-system-expat \
+  --with-dbmliborder=gdbm:ndbm \
+  --with-system-ffi
+
+  make
+}
+
+check() {
+  cd ${srcdir}/Python-${pkgver}
+  

[arch-commits] Commit in python/repos (3 files)

2012-04-28 Thread Allan McRae
Date: Saturday, April 28, 2012 @ 05:27:08
  Author: allan
Revision: 157411

db-move: moved python from [testing] to [extra] (x86_64)

Added:
  python/repos/extra-x86_64/PKGBUILD
(from rev 157383, python/repos/testing-x86_64/PKGBUILD)
Deleted:
  python/repos/extra-x86_64/PKGBUILD
  python/repos/testing-x86_64/

--+
 PKGBUILD |  152 ++---
 1 file changed, 76 insertions(+), 76 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-04-28 09:27:05 UTC (rev 157410)
+++ extra-x86_64/PKGBUILD   2012-04-28 09:27:08 UTC (rev 157411)
@@ -1,76 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Allan McRae al...@archlinux.org
-# Contributor: Jason Chu ja...@archlinux.org
-
-pkgname=python
-pkgver=3.2.3
-pkgrel=1
-_pybasever=3.2
-pkgdesc=Next generation of the python high-level scripting language
-arch=('i686' 'x86_64')
-license=('custom')
-url=http://www.python.org/;
-depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
-makedepends=('tk' 'sqlite' 'valgrind')
-optdepends=('tk: for tkinter' 'sqlite')
-provides=('python3')
-replaces=('python3')
-options=('!makeflags')
-source=(http://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz)
-sha1sums=('3d607dbcfdf100dd659978195ccf3ade9d221823')
-
-build() {
-  cd ${srcdir}/Python-${pkgver}
-
-  # FS#23997
-  sed -i -e s|^#.* /usr/local/bin/python|#!/usr/bin/python| Lib/cgi.py
-
-  # Ensure that we are using the system copy of various libraries (expat, zlib 
and libffi),
-  # rather than copies shipped in the tarball
-  rm -r Modules/expat
-  rm -r Modules/zlib
-  rm -r Modules/_ctypes/{darwin,libffi}*
-
-  ./configure --prefix=/usr \
-  --enable-shared \
-  --with-threads \
-  --with-computed-gotos \
-  --enable-ipv6 \
-  --with-valgrind \
-  --with-wide-unicode \
-  --with-system-expat \
-  --with-dbmliborder=gdbm:ndbm \
-  --with-system-ffi
-
-  make
-}
-
-check() {
-  cd ${srcdir}/Python-${pkgver}
-  LD_LIBRARY_PATH=${srcdir}/Python-${pkgver}:${LD_LIBRARY_PATH} \
- ${srcdir}/Python-${pkgver}/python -m test.regrtest -x test_distutils 
test_site \
- test_urllib test_uuid test_pydoc
-}
-
-package() {
-  cd ${srcdir}/Python-${pkgver}
-  make DESTDIR=${pkgdir} install maninstall
-
-  # Why are these not done by default...
-  ln -sf python3   ${pkgdir}/usr/bin/python
-  ln -sf python3-config${pkgdir}/usr/bin/python-config
-  ln -sf idle3 ${pkgdir}/usr/bin/idle
-  ln -sf pydoc3${pkgdir}/usr/bin/pydoc
-  ln -sf python${_pybasever}.1 ${pkgdir}/usr/share/man/man1/python3.1
-
-  # Fix FS#22552
-  ln -sf ../../libpython${_pybasever}mu.so \
-
${pkgdir}/usr/lib/python${_pybasever}/config-${_pybasever}mu/libpython${_pybasever}mu.so
-
-  # Clean-up reference to build directory
-  sed -i s|$srcdir/Python-${pkgver}:|| 
$pkgdir/usr/lib/python${_pybasever}/config-${_pybasever}mu/Makefile
-
-  # License
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python/repos/extra-x86_64/PKGBUILD (from rev 157383, 
python/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-04-28 09:27:08 UTC (rev 157411)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Jason Chu ja...@archlinux.org
+
+pkgname=python
+pkgver=3.2.3
+pkgrel=3
+_pybasever=3.2
+pkgdesc=Next generation of the python high-level scripting language
+arch=('i686' 'x86_64')
+license=('custom')
+url=http://www.python.org/;
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
+makedepends=('tk' 'sqlite' 'valgrind')
+optdepends=('tk: for tkinter' 'sqlite')
+provides=('python3')
+replaces=('python3')
+options=('!makeflags')
+source=(http://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz)
+sha1sums=('3d607dbcfdf100dd659978195ccf3ade9d221823')
+
+build() {
+  cd ${srcdir}/Python-${pkgver}
+
+  # FS#23997
+  sed -i -e s|^#.* /usr/local/bin/python|#!/usr/bin/python| Lib/cgi.py
+
+  # Ensure that we are using the system copy of various libraries (expat, zlib 
and libffi),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/zlib
+  rm -r Modules/_ctypes/{darwin,libffi}*
+
+  ./configure --prefix=/usr \
+  --enable-shared \
+  --with-threads \
+  --with-computed-gotos \
+  --enable-ipv6 \
+  --with-valgrind \
+  --with-wide-unicode \
+  --with-system-expat \
+  --with-dbmliborder=gdbm:ndbm \
+  --with-system-ffi
+
+  make
+}

[arch-commits] Commit in python/repos (3 files)

2012-04-26 Thread Allan McRae
Date: Thursday, April 26, 2012 @ 17:34:51
  Author: allan
Revision: 157297

db-move: moved python from [staging] to [testing] (i686)

Added:
  python/repos/testing-i686/
  python/repos/testing-i686/PKGBUILD
(from rev 157266, python/repos/staging-i686/PKGBUILD)
Deleted:
  python/repos/staging-i686/

--+
 PKGBUILD |   76 +
 1 file changed, 76 insertions(+)

Copied: python/repos/testing-i686/PKGBUILD (from rev 157266, 
python/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-04-26 21:34:51 UTC (rev 157297)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Jason Chu ja...@archlinux.org
+
+pkgname=python
+pkgver=3.2.3
+pkgrel=3
+_pybasever=3.2
+pkgdesc=Next generation of the python high-level scripting language
+arch=('i686' 'x86_64')
+license=('custom')
+url=http://www.python.org/;
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
+makedepends=('tk' 'sqlite' 'valgrind')
+optdepends=('tk: for tkinter' 'sqlite')
+provides=('python3')
+replaces=('python3')
+options=('!makeflags')
+source=(http://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz)
+sha1sums=('3d607dbcfdf100dd659978195ccf3ade9d221823')
+
+build() {
+  cd ${srcdir}/Python-${pkgver}
+
+  # FS#23997
+  sed -i -e s|^#.* /usr/local/bin/python|#!/usr/bin/python| Lib/cgi.py
+
+  # Ensure that we are using the system copy of various libraries (expat, zlib 
and libffi),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/zlib
+  rm -r Modules/_ctypes/{darwin,libffi}*
+
+  ./configure --prefix=/usr \
+  --enable-shared \
+  --with-threads \
+  --with-computed-gotos \
+  --enable-ipv6 \
+  --with-valgrind \
+  --with-wide-unicode \
+  --with-system-expat \
+  --with-dbmliborder=gdbm:ndbm \
+  --with-system-ffi
+
+  make
+}
+
+check() {
+  cd ${srcdir}/Python-${pkgver}
+  LD_LIBRARY_PATH=${srcdir}/Python-${pkgver}:${LD_LIBRARY_PATH} \
+ ${srcdir}/Python-${pkgver}/python -m test.regrtest -x test_distutils 
test_site \
+ test_urllib test_uuid test_pydoc
+}
+
+package() {
+  cd ${srcdir}/Python-${pkgver}
+  make DESTDIR=${pkgdir} install maninstall
+
+  # Why are these not done by default...
+  ln -sf python3   ${pkgdir}/usr/bin/python
+  ln -sf python3-config${pkgdir}/usr/bin/python-config
+  ln -sf idle3 ${pkgdir}/usr/bin/idle
+  ln -sf pydoc3${pkgdir}/usr/bin/pydoc
+  ln -sf python${_pybasever}.1 ${pkgdir}/usr/share/man/man1/python3.1
+
+  # Fix FS#22552
+  ln -sf ../../libpython${_pybasever}mu.so \
+
${pkgdir}/usr/lib/python${_pybasever}/config-${_pybasever}mu/libpython${_pybasever}mu.so
+
+  # Clean-up reference to build directory
+  sed -i s|$srcdir/Python-${pkgver}:|| 
$pkgdir/usr/lib/python${_pybasever}/config-${_pybasever}mu/Makefile
+
+  # License
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}



[arch-commits] Commit in python/repos (3 files)

2012-04-26 Thread Allan McRae
Date: Thursday, April 26, 2012 @ 17:34:53
  Author: allan
Revision: 157298

db-move: moved python from [staging] to [testing] (x86_64)

Added:
  python/repos/testing-x86_64/
  python/repos/testing-x86_64/PKGBUILD
(from rev 157266, python/repos/staging-x86_64/PKGBUILD)
Deleted:
  python/repos/staging-x86_64/

--+
 PKGBUILD |   76 +
 1 file changed, 76 insertions(+)

Copied: python/repos/testing-x86_64/PKGBUILD (from rev 157266, 
python/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-04-26 21:34:53 UTC (rev 157298)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Jason Chu ja...@archlinux.org
+
+pkgname=python
+pkgver=3.2.3
+pkgrel=3
+_pybasever=3.2
+pkgdesc=Next generation of the python high-level scripting language
+arch=('i686' 'x86_64')
+license=('custom')
+url=http://www.python.org/;
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
+makedepends=('tk' 'sqlite' 'valgrind')
+optdepends=('tk: for tkinter' 'sqlite')
+provides=('python3')
+replaces=('python3')
+options=('!makeflags')
+source=(http://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz)
+sha1sums=('3d607dbcfdf100dd659978195ccf3ade9d221823')
+
+build() {
+  cd ${srcdir}/Python-${pkgver}
+
+  # FS#23997
+  sed -i -e s|^#.* /usr/local/bin/python|#!/usr/bin/python| Lib/cgi.py
+
+  # Ensure that we are using the system copy of various libraries (expat, zlib 
and libffi),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/zlib
+  rm -r Modules/_ctypes/{darwin,libffi}*
+
+  ./configure --prefix=/usr \
+  --enable-shared \
+  --with-threads \
+  --with-computed-gotos \
+  --enable-ipv6 \
+  --with-valgrind \
+  --with-wide-unicode \
+  --with-system-expat \
+  --with-dbmliborder=gdbm:ndbm \
+  --with-system-ffi
+
+  make
+}
+
+check() {
+  cd ${srcdir}/Python-${pkgver}
+  LD_LIBRARY_PATH=${srcdir}/Python-${pkgver}:${LD_LIBRARY_PATH} \
+ ${srcdir}/Python-${pkgver}/python -m test.regrtest -x test_distutils 
test_site \
+ test_urllib test_uuid test_pydoc
+}
+
+package() {
+  cd ${srcdir}/Python-${pkgver}
+  make DESTDIR=${pkgdir} install maninstall
+
+  # Why are these not done by default...
+  ln -sf python3   ${pkgdir}/usr/bin/python
+  ln -sf python3-config${pkgdir}/usr/bin/python-config
+  ln -sf idle3 ${pkgdir}/usr/bin/idle
+  ln -sf pydoc3${pkgdir}/usr/bin/pydoc
+  ln -sf python${_pybasever}.1 ${pkgdir}/usr/share/man/man1/python3.1
+
+  # Fix FS#22552
+  ln -sf ../../libpython${_pybasever}mu.so \
+
${pkgdir}/usr/lib/python${_pybasever}/config-${_pybasever}mu/libpython${_pybasever}mu.so
+
+  # Clean-up reference to build directory
+  sed -i s|$srcdir/Python-${pkgver}:|| 
$pkgdir/usr/lib/python${_pybasever}/config-${_pybasever}mu/Makefile
+
+  # License
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}