community/python-matplotlib to 3.2.0-1

This commit is contained in:
Kevin Mihelich 2020-03-04 13:19:16 +00:00
parent b22925ae96
commit d17c210c5f

View file

@ -9,7 +9,7 @@
# - replace make/optdepends on python{,2}-cairocffi with python{,2}-cairo (cffi has haskell dep)
pkgname=python-matplotlib
pkgver=3.1.3
pkgver=3.2.0
pkgrel=1
pkgdesc="A python plotting library, making publication quality plots"
arch=(x86_64)
@ -26,7 +26,8 @@ optdepends=('tk: Tk{Agg,Cairo} backends'
'imagemagick: for saving animated gifs'
'python-pillow: for reading/saving jpeg/bmp/tiff files'
'ghostscript: usetex dependencies'
'texlive-bin: usetex dependencies')
'texlive-bin: usetex dependencies'
'texlive-latexextra: usetex usage with pdflatex')
makedepends=(git rsync python-setuptools
tk python-pyqt5 python-gobject
python-wxpython python-cairo python-tornado
@ -37,7 +38,7 @@ 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")
sha512sums=('d233a18449eac4c42ecc485d0df0c15e1e306f3945e5476b11b715d6bc190ca6f1c22e7d4b16d6c93c8a569e1c43b68b583339f0921f237a9920c7369854a09e')
sha512sums=('bbc800b3f6c2d4d1161f7b6cc6c72c637abe9d70adfc17bb02d6e21022c957e485d6da02209163460c9bb96eaf544e09c8eba9f80ac30ec95348b6dff3d32ebb')
build() {
cd matplotlib-${pkgver}
@ -54,4 +55,6 @@ 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}"/usr/lib/python3.8/site-packages/{matplotlib,mpl_toolkits}/tests/
}