PKGBUILDs/community/python-matplotlib/PKGBUILD

94 lines
4.7 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
2022-10-29 20:55:33 +00:00
pkgver=3.6.1
2022-05-07 18:22:46 +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)
2021-11-16 22:05:28 +00:00
depends=(freetype2 python-cycler python-dateutil python-fonttools python-kiwisolver python-numpy
python-packaging python-pillow python-pyparsing qhull)
2018-10-29 17:55:42 +00:00
optdepends=('tk: Tk{Agg,Cairo} backends'
2021-03-26 12:45:44 +00:00
'pyside2: alternative for Qt5{Agg,Cairo} backends'
2021-11-16 22:05:28 +00:00
'pyside6: alternative for Qt6{Agg,Cairo} backends'
2018-10-29 17:55:42 +00:00
'python-pyqt5: Qt5{Agg,Cairo} backends'
2021-11-16 22:05:28 +00:00
'python-pyqt6: Qt6{Agg,Cairo} backends'
'python-gobject: for GTK{3,4}{Agg,Cairo} backend'
'python-wxpython: WX{Agg,Cairo} backend'
'python-cairo: {GTK{3,4},Qt{5,6},Tk,WX}Cairo backends'
2018-10-29 17:55:42 +00:00
'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'
2020-12-02 19:31:56 +00:00
'texlive-latexextra: usetex usage with pdflatex'
'python-certifi: https support')
2021-11-16 22:05:28 +00:00
makedepends=(git python-setuptools-scm-git-archive python-certifi)
checkdepends=(python-pytest python-pytest-xdist python-pytest-runner python-pytest-rerunfailures xorg-server-xvfb
texlive-bin texlive-core texlive-latexextra texlive-pictures ghostscript inkscape ffmpeg imagemagick
gtk4 python-cairo python-gobject python-pyqt5 pyside2 python-pyqt6 pyside6 python-tornado python-wxpython tk
jupyter-nbconvert jupyter-nbformat python-ipykernel python-pandas python-pikepdf python-pytz)
2022-10-29 20:55:33 +00:00
_tag=2aad0d94ff80a81cd2e735b46f11f4f4b5e3e59d # git rev-parse v${pkgver}
2022-05-07 18:22:46 +00:00
_ftver=2.12.1
2021-11-16 22:05:28 +00:00
source=(git+https://github.com/matplotlib/matplotlib.git#tag=${_tag}?signed
2022-01-22 21:23:07 +00:00
https://github.com/QuLogic/mpl-images/archive/v${pkgver}-with-freetype-${_ftver}/mpl-images-${pkgver}-ft${_ftver}.tar.gz
2022-10-29 20:55:33 +00:00
freetype.patch
matplotlib-pyside-6.4.patch::https://github.com/matplotlib/matplotlib/commit/c744161b.patch)
2021-12-13 00:25:26 +00:00
b2sums=('SKIP'
2022-10-29 20:55:33 +00:00
'b2980e8812bd2ede44e448f70ada23ec3c313fd9d1024daa71320468857546818bbc9461a9f9e511de7c7883d8d810271acc13db6fb36a56f82d60b2ed1ada5e'
'b821f938cace434932a43b15b42b93d0f8eaffea4e28fbf1d5a7263ec947c26252bafccaea60c1a1cb2fad4c71280ca2cf62527994f270af2467a242287470bb'
'f85435d7925a3b8300eff92f995d0a43f7bc9db3c078a76a8a6a0eb01be830bf6a72011bb149a12561abf562420c9403094e062be5d2d19623381d5ee717b254')
2021-03-27 16:31:11 +00:00
validpgpkeys=(23CAB59E3332F94D26BEF0378D86E7FAE5EB0C10) # Elliott Sales de Andrade <quantum.analyst@gmail.com>
2017-11-15 20:50:22 +00:00
2020-07-20 15:31:20 +00:00
prepare() {
2021-03-27 16:31:11 +00:00
cd matplotlib
2021-11-16 22:05:28 +00:00
# Fix SCM detected version
rm -r .git
echo "Version: ${pkgver}" > PKG-INFO
# Use system freetype and qhull, disable LTO
2021-11-16 22:51:12 +00:00
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|' mplsetup.cfg.template > mplsetup.cfg
2021-11-16 22:05:28 +00:00
patch -p1 < ../freetype.patch # From Fedora/upstream
2022-10-29 20:55:33 +00:00
# Fix tests with PySide 6.4
patch -p1 < ../matplotlib-pyside-6.4.patch
2021-11-16 22:05:28 +00:00
# Install tests for check()
sed -i 's|#tests = False|tests = True|' mplsetup.cfg
# Use appropriate baseline images for tests
for _module in matplotlib mpl_toolkits
do
2022-01-22 21:23:07 +00:00
cp -r ../mpl-images-${pkgver}-with-freetype-${_ftver}/${_module}/* lib/${_module}/tests/baseline_images/
2021-11-16 22:05:28 +00:00
done
2020-07-20 15:31:20 +00:00
}
2017-11-15 20:50:22 +00:00
build() {
2021-03-27 16:31:11 +00:00
cd matplotlib
2018-10-29 17:55:42 +00:00
python setup.py build
2017-11-15 20:50:22 +00:00
}
check() {
2021-03-27 16:31:11 +00:00
cd matplotlib
2021-11-16 22:05:28 +00:00
python -m venv --system-site-packages test-env
test-env/bin/python setup.py install --skip-build
2022-05-07 18:22:46 +00:00
# test_ipynb: https://github.com/matplotlib/matplotlib/issues/21654 fixed but `ModuleNotFoundError: No module named 'matplotlib'`
# test_cross_Qt_imports https://github.com/matplotlib/matplotlib/issues/23004
2021-11-16 22:05:28 +00:00
xvfb-run -a -s "-screen 0 640x480x24" \
2022-05-07 18:22:46 +00:00
test-env/bin/python -m pytest -ra -n auto -v --color=yes --pyargs matplotlib mpl_toolkits.tests -k 'not test_ipynb and not test_cross_Qt_imports'
2017-11-15 20:50:22 +00:00
}
2021-11-16 22:05:28 +00:00
package() {
2021-03-27 16:31:11 +00:00
cd matplotlib
2020-11-12 20:03:40 +00:00
python setup.py install --root "${pkgdir}" --prefix=/usr --optimize=1 --skip-build
2021-11-16 22:05:28 +00:00
install -Dm644 doc/users/project/license.rst -t "${pkgdir}"/usr/share/licenses/${pkgname}/
# Remove tests
2020-11-12 20:03:40 +00:00
rm -r "${pkgdir}"$(python -c "import site; print(site.getsitepackages()[0])")/{matplotlib,mpl_toolkits}/tests/
2017-11-15 20:50:22 +00:00
}