# 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) pkgname=python-matplotlib pkgver=3.0.2 pkgrel=1 pkgdesc="A python plotting library, making publication quality plots" arch=('x86_64') url="https://matplotlib.org" license=('custom') depends=('freetype2' 'libpng' 'python-numpy' 'python-cycler' 'python-dateutil' 'python-kiwisolver' 'python-pyparsing') 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' 'python-pillow: for reading/saving jpeg/bmp/tiff files' 'ghostscript: usetex dependencies' 'texlive-bin: usetex dependencies') makedepends=('git' 'rsync' 'python-setuptools' 'tk' 'python-pyqt5' 'python-gobject' 'python-wxpython' 'python-cairo' 'python-tornado' 'python-pillow' 'ghostscript' 'texlive-bin') # 'qhull' missing pkg-config file # 'agg' missing some non-upstreamed patches? checkdepends=('python-pytest-xdist' 'python-pytest-runner' 'xorg-server-xvfb' 'texlive-core' 'texlive-latexextra' 'inkscape' 'mencoder' 'ffmpeg' 'imagemagick' 'ttf-freefont' 'python-pandas') source=($pkgname-$pkgver.tar.gz::"https://github.com/matplotlib/matplotlib/archive/v$pkgver.tar.gz" setup.cfg) sha512sums=('40db6cf6023483f3f9b3020735f87f1e53fdaeb177d2a82a5326a139222380ab67f6f007dd30f5a204877246baad0aefced6cf63b36dab32771124f55559491c' 'f08c0b2e94599fdf2b736b8a655d862209934441d90f20ed872cfc128b8d2a6525763ab7cf64f2b3630e22a90798f4c52aa93b18087e9b48708d9bae34aada0b') prepare() { cp -a matplotlib-$pkgver{,-test} # Configure tests (FS#48175) cp setup.cfg matplotlib-$pkgver-test/ } build() { cd matplotlib-$pkgver python setup.py build } check() { cd matplotlib-$pkgver-test xvfb-run -a -s "+extension GLX +extension RANDR +render -screen 0 1280x1024x24" \ python setup.py pytest --addopts="-n auto" || warning "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}/ }