PKGBUILDs/community/python-matplotlib/PKGBUILD

66 lines
2.9 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)
2020-07-20 15:31:20 +00:00
# - disable lto via setup.cfg
2017-11-15 20:50:22 +00:00
2018-10-29 17:55:42 +00:00
pkgname=python-matplotlib
2020-09-17 23:42:22 +00:00
pkgver=3.3.2
2020-08-15 01:59:52 +00:00
pkgrel=1
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)
2020-07-26 19:37:57 +00:00
depends=(freetype2 python-cycler python-dateutil python-kiwisolver python-numpy python-pillow python-pyparsing qhull)
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'
'ghostscript: usetex dependencies'
2020-03-04 13:19:16 +00:00
'texlive-bin: usetex dependencies'
'texlive-latexextra: usetex usage with pdflatex')
2019-05-18 17:01:46 +00:00
makedepends=(git rsync python-setuptools
tk python-pyqt5 python-gobject
python-wxpython python-cairo python-tornado
2020-07-26 19:37:57 +00:00
ghostscript texlive-bin)
2019-05-18 17:01:46 +00:00
# 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)
2020-08-15 01:59:52 +00:00
source=("https://github.com/matplotlib/matplotlib/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
2020-09-17 23:42:22 +00:00
sha512sums=('553469fe1f4a8608b832f71805b97582dc5df75ed7a4f2e3ff12a9a862069d62909cacd50f01891bb0f6b161e630ea887a7674e904ea1a963c62877dec2ec5cb')
2017-11-15 20:50:22 +00:00
2020-07-20 15:31:20 +00:00
prepare() {
2020-08-15 01:59:52 +00:00
cd matplotlib-$pkgver
2020-07-24 13:44:44 +00:00
# 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
2020-07-20 15:31:20 +00:00
}
2017-11-15 20:50:22 +00:00
build() {
2020-08-15 01:59:52 +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() {
2020-08-15 01:59:52 +00:00
cd matplotlib-$pkgver
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() {
2020-08-15 01:59:52 +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/
2020-03-04 13:19:16 +00:00
# Needed since https://github.com/matplotlib/matplotlib/pull/14170
2020-08-15 01:59:52 +00:00
rm -r "$pkgdir"/usr/lib/python3.8/site-packages/{matplotlib,mpl_toolkits}/tests/
2017-11-15 20:50:22 +00:00
}