# Maintainer: Felix Yan # Maintainer: Bruno Pagani # Contributor: Stéphane Gaudreault # Contributor: Stefan Husmann # Contributor: Angel 'angvp' Velasquez # Contributor: Douglas Soares de Andrade # ALARM: Kevin Mihelich # - replace make/optdepends on python{,2}-cairocffi with python{,2}-cairo (cffi has haskell dep) # - disable lto via setup.cfg pkgname=python-matplotlib pkgver=3.3.4 pkgrel=1 pkgdesc="A python plotting library, making publication quality plots" arch=(x86_64) url="https://matplotlib.org" license=(custom) depends=(freetype2 python-cycler python-dateutil python-kiwisolver python-numpy python-pillow python-pyparsing qhull) optdepends=('tk: Tk{Agg,Cairo} backends' 'python-pyqt5: Qt5{Agg,Cairo} backends' 'python-gobject: for GTK3{Agg,Cairo} backend' 'python-wxpython: WX{,Agg,Cairo} backend' 'python-cairo: {GTK3,Qt5,Tk,WX}Cairo backends' 'python-tornado: WebAgg backend' 'ffmpeg: for saving movies' 'imagemagick: for saving animated gifs' 'ghostscript: usetex dependencies' 'texlive-bin: usetex dependencies' 'texlive-latexextra: usetex usage with pdflatex' 'python-certifi: https support') makedepends=(git rsync python-setuptools tk python-pyqt5 python-gobject python-wxpython python-cairo python-certifi python-tornado ghostscript texlive-bin) # agg missing some non-upstreamed patches? checkdepends=(python-pytest-xdist python-pytest-runner xorg-server-xvfb texlive-core texlive-latexextra inkscape mencoder ffmpeg imagemagick python-pandas) source=("https://github.com/matplotlib/matplotlib/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz") sha512sums=('e29bcd17ea2b65c26c75421a319d3f21c5b0148c9e61d55d719c191c07342ed19032f97cde269647bd545ed45b5e142483e50caf29ffd421acde5b0b3bfa238b') prepare() { cd matplotlib-${pkgver} # Use system freetype and qhull, disable LTO sed -e 's|#system_freetype = False|system_freetype = True|' -e 's|#system_qhull = False|system_qhull = True|' -e 's|#enable_lto = True|enable_lto = False|' setup.cfg.template > setup.cfg } build() { cd matplotlib-${pkgver} python setup.py build } check() { cd matplotlib-${pkgver} xvfb-run -a -s "+extension GLX +extension RANDR +render -screen 0 1280x1024x24" \ python setup.py pytest --addopts="-n auto" || echo "Tests failed" # Different font rendering details } package_python-matplotlib() { cd matplotlib-${pkgver} python setup.py install --root "${pkgdir}" --prefix=/usr --optimize=1 --skip-build install -Dm644 doc/users/license.rst -t "${pkgdir}"/usr/share/licenses/${pkgname}/ # Needed since https://github.com/matplotlib/matplotlib/pull/14170 rm -r "${pkgdir}"$(python -c "import site; print(site.getsitepackages()[0])")/{matplotlib,mpl_toolkits}/tests/ }