PKGBUILDs/community/python-matplotlib/PKGBUILD

72 lines
3.2 KiB
Bash
Raw Normal View History

2017-11-15 20:50:22 +00:00
# Maintainer: Felix Yan <felixonmars@archlinux.org>
2018-10-29 17:55:42 +00:00
# Maintainer: Bruno Pagani <archange@archlinux.org>
2017-11-15 20:50:22 +00:00
# Contributor: Stéphane Gaudreault <stephane@archlinux.org>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
# Contributor: Douglas Soares de Andrade <dsa@aur.archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - replace make/optdepends on python{,2}-cairocffi with python{,2}-cairo (cffi has haskell dep)
2018-10-29 17:55:42 +00:00
pkgname=python-matplotlib
2019-07-01 14:21:23 +00:00
pkgver=3.1.1
2019-11-15 01:42:58 +00:00
pkgrel=4
2017-11-15 20:50:22 +00:00
pkgdesc="A python plotting library, making publication quality plots"
2019-05-18 17:01:46 +00:00
arch=(x86_64)
2018-10-29 17:55:42 +00:00
url="https://matplotlib.org"
2019-05-18 17:01:46 +00:00
license=(custom)
depends=(freetype2 libpng python-numpy python-cycler python-dateutil python-kiwisolver python-pyparsing)
2018-10-29 17:55:42 +00:00
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')
2019-05-18 17:01:46 +00:00
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=("https://github.com/matplotlib/matplotlib/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz"
2019-11-15 01:42:58 +00:00
setup.cfg
matplotlib-python-3.8-warning.patch::"https://github.com/matplotlib/matplotlib/commit/4651a125.patch")
2019-07-01 14:21:23 +00:00
sha512sums=('157ced0cdcb17c9c82f897ee1621ea06a063491ce7393cda4c74a07a970c49385167b5cf32c1666a2933af50ccc53811cf871b6465b796a42abf4a358c76f6c0'
2019-11-15 01:42:58 +00:00
'f08c0b2e94599fdf2b736b8a655d862209934441d90f20ed872cfc128b8d2a6525763ab7cf64f2b3630e22a90798f4c52aa93b18087e9b48708d9bae34aada0b'
'443e1a8c088340c9c7d89008e770475d0935c51d84a1e7bfea56ac53f7d48fc0530c05e68b33aa07a92dd621cfc3f9b8227c65692dfeb53d72119b47236ac8fd')
2017-11-15 20:50:22 +00:00
prepare() {
2019-05-18 17:01:46 +00:00
cp -a matplotlib-${pkgver}{,-test}
2017-11-15 20:50:22 +00:00
# Configure tests (FS#48175)
2019-05-18 17:01:46 +00:00
cp setup.cfg matplotlib-${pkgver}-test/
2019-11-15 01:42:58 +00:00
cd matplotlib-$pkgver
patch -p1 -i ../matplotlib-python-3.8-warning.patch # Fix deprecation warnings with python 3.8
2017-11-15 20:50:22 +00:00
}
build() {
2019-05-18 17:01:46 +00:00
cd matplotlib-${pkgver}
2018-10-29 17:55:42 +00:00
python setup.py build
2017-11-15 20:50:22 +00:00
}
check() {
2019-05-18 17:01:46 +00:00
cd matplotlib-${pkgver}-test
2017-11-15 20:50:22 +00:00
xvfb-run -a -s "+extension GLX +extension RANDR +render -screen 0 1280x1024x24" \
2018-10-29 17:55:42 +00:00
python setup.py pytest --addopts="-n auto" || warning "Tests failed" # Different font rendering details
2017-11-15 20:50:22 +00:00
}
package_python-matplotlib() {
2019-05-18 17:01:46 +00:00
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}/
2017-11-15 20:50:22 +00:00
}