extra/python-matplotlib to 3.8.2-1

This commit is contained in:
Kevin Mihelich 2023-12-27 14:47:23 +00:00
parent e343cf762e
commit 1cdf909ef2
2 changed files with 7 additions and 6 deletions

View file

@ -1,6 +1,6 @@
pkgbase = python-matplotlib
pkgdesc = A python plotting library, making publication quality plots
pkgver = 3.8.1
pkgver = 3.8.2
pkgrel = 1
url = https://matplotlib.org
arch = x86_64
@ -75,7 +75,7 @@ pkgbase = python-matplotlib
optdepends = texlive-fontsrecommended: usetex dependencies
optdepends = texlive-latexrecommended: usetex usage with pdflatex
optdepends = python-certifi: https support
source = git+https://github.com/matplotlib/matplotlib.git#tag=babc9d1892ea4b223ab1dd1ff3c035471500b42e?signed
source = git+https://github.com/matplotlib/matplotlib.git#tag=9f3277c36f18da50af58617db17fbf080dfb4cfb?signed
source = https://github.com/QuLogic/mpl-images/archive/v3.8.1-with-freetype-2.13.1/mpl-images-3.8.1-ft2.13.1.tar.gz
source = freetype.patch
validpgpkeys = 23CAB59E3332F94D26BEF0378D86E7FAE5EB0C10

View file

@ -10,8 +10,9 @@
# - disable lto via setup.cfg
pkgname=python-matplotlib
pkgver=3.8.1
pkgver=3.8.2
pkgrel=1
_mpl_images_ver=3.8.1
pkgdesc="A python plotting library, making publication quality plots"
arch=(x86_64)
url="https://matplotlib.org"
@ -43,10 +44,10 @@ checkdepends=(python-pytest python-pytest-xdist python-pytest-runner python-pyte
jupyter-nbconvert jupyter-nbformat python-ipykernel
python-pandas python-pikepdf python-pytz python-xarray
noto-fonts-cjk wqy-zenhei python-xcffib)
_tag=babc9d1892ea4b223ab1dd1ff3c035471500b42e # git rev-parse v${pkgver}
_tag=9f3277c36f18da50af58617db17fbf080dfb4cfb # git rev-parse v${pkgver}
_ftver=2.13.1
source=(git+https://github.com/matplotlib/matplotlib.git#tag=${_tag}?signed
https://github.com/QuLogic/mpl-images/archive/v${pkgver}-with-freetype-${_ftver}/mpl-images-${pkgver}-ft${_ftver}.tar.gz
https://github.com/QuLogic/mpl-images/archive/v${_mpl_images_ver}-with-freetype-${_ftver}/mpl-images-${_mpl_images_ver}-ft${_ftver}.tar.gz
freetype.patch)
b2sums=('SKIP'
'c9314052be89fa42c90d3f909712e78b17b5864081d4b4c894031413f995a0d64dd7b004588033cba2b7822589dbd02b8dfc194996f06678d061d4a1ddcc8ae6'
@ -69,7 +70,7 @@ prepare() {
# Use appropriate baseline images for tests
for _module in matplotlib mpl_toolkits
do
cp -r ../mpl-images-${pkgver}-with-freetype-${_ftver}/lib/${_module}/* lib/${_module}
cp -r ../mpl-images-${_mpl_images_ver}-with-freetype-${_ftver}/lib/${_module}/* lib/${_module}
done
}