Date: Wednesday, October 24, 2018 @ 12:53:54 Author: archange Revision: 398817
Split out python2-matplotlib (3.0+ is py3 only) Added: python2-matplotlib/ python2-matplotlib/repos/ python2-matplotlib/trunk/ python2-matplotlib/trunk/PKGBUILD python2-matplotlib/trunk/setup.cfg -----------+ PKGBUILD | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ setup.cfg | 3 ++ 2 files changed, 80 insertions(+) Added: python2-matplotlib/trunk/PKGBUILD =================================================================== --- python2-matplotlib/trunk/PKGBUILD (rev 0) +++ python2-matplotlib/trunk/PKGBUILD 2018-10-24 12:53:54 UTC (rev 398817) @@ -0,0 +1,77 @@ +# Maintainer: Felix Yan <[email protected]> +# Contributor: Stéphane Gaudreault <[email protected]> +# Contributor: Stefan Husmann <[email protected]> +# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> +# Contributor: Douglas Soares de Andrade <[email protected]> + +pkgname=python2-matplotlib +pkgver=2.2.3 +pkgrel=2 +pkgdesc="A python plotting library, making publication quality plots" +arch=('x86_64') +url='http://matplotlib.org' +license=('custom') +depends=('python2-pytz' 'python2-numpy' 'python2-pyqt5' 'python2-dateutil' 'python2-pyparsing' + 'python2-cycler' 'python2-kiwisolver' 'python2-backports.functools_lru_cache') +optdepends=('pygtk: for GTK/GTKAgg/GTKCairo backend' + 'python2-cairo: for GTKCairo/GTK3Cairo backend' + 'python2-cairocffi: for GTKCairo/GTK3Cairo backend (alternative to python2-cairo)' + 'tk: used by the TkAgg backend' + 'ghostscript: usetex dependencies' + 'texlive-bin: usetex dependencies' + 'python2-tornado: for webagg backend' + 'python2-gobject: for GTK3Agg/GTK3Cairo backend' + 'wxpython: for WX/WXAgg backend' + 'python2-pillow: for reading/saving .jpg/bmp/tiff files') +checkdepends=('python2-pytest-xdist' + 'python2-pytest-runner' 'python2-mock' 'xorg-server-xvfb' 'texlive-core' + 'texlive-latexextra' 'imagemagick' 'ffmpeg' 'mencoder' 'inkscape' + 'python2-pandas' 'ttf-freefont') +makedepends=('tk' 'python2-cairocffi' + 'python2-gobject' + 'pygtk' 'ghostscript' 'texlive-bin' + 'python2-tornado' 'gtk3' 'wxpython' + 'python2-pillow' + 'python2-setuptools') +source=("$pkgbase-$pkgver.tar.gz::https://github.com/matplotlib/matplotlib/archive/v$pkgver.tar.gz" + setup.cfg) +sha512sums=('d118f5d56e2f578031aba22933c0b3a4423a31a04f50f08cc1aa660186546d09692a9cf401bb5f24cb296f94fbfd8707460728d501ac2bd4a624dfa89e92949b' + 'f08c0b2e94599fdf2b736b8a655d862209934441d90f20ed872cfc128b8d2a6525763ab7cf64f2b3630e22a90798f4c52aa93b18087e9b48708d9bae34aada0b') + +prepare() { + cd "$srcdir"/matplotlib-$pkgver + for file in $(find . -name '*.py' -print); do + sed -i -e "s|^#!.*/usr/bin/python|#!/usr/bin/python2|" \ + -e "s|^#!.*/usr/bin/env *python|#!/usr/bin/env python2|" $file + done + + cp -a "$srcdir"/matplotlib-$pkgver{,-test} + + # Configure tests (FS#48175) + cp "$srcdir/setup.cfg" "$srcdir"/matplotlib-$pkgver-test/ +} + +build() { + # this seems to need to be present or gtk/gdk dies + # and hangs the build checking if gtk3cairo is installed + export XDG_RUNTIME_DIR=/tmp + + cd "$srcdir"/matplotlib-$pkgver + python2 setup.py build +} + +check() { + # Different font rendering details + + cd "$srcdir"/matplotlib-$pkgver-test + xvfb-run -a -s "+extension GLX +extension RANDR +render -screen 0 1280x1024x24" \ + python2 setup.py pytest --addopts="-n auto" || warning "Tests failed" +} + +package() { + cd matplotlib-$pkgver + python2 setup.py install -O1 --skip-build --root "$pkgdir" --prefix=/usr + + install -dm755 "$pkgdir"/usr/share/licenses/python2-matplotlib + install -m 644 doc/users/license.rst "$pkgdir"/usr/share/licenses/python2-matplotlib +} Added: python2-matplotlib/trunk/setup.cfg =================================================================== --- python2-matplotlib/trunk/setup.cfg (rev 0) +++ python2-matplotlib/trunk/setup.cfg 2018-10-24 12:53:54 UTC (rev 398817) @@ -0,0 +1,3 @@ +[packages] +tests = True +toolkits_tests = True
