mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 09:11:38 +01:00
103 lines
3.1 KiB
Plaintext
103 lines
3.1 KiB
Plaintext
# Contributor: Isaac Dunham <ibid.ag@gmail.com>
|
|
# Maintainer: Aiden Grossman <agrossman154@yahoo.com>
|
|
pkgname=py3-matplotlib
|
|
_pyname=matplotlib
|
|
pkgver=3.6.2
|
|
pkgrel=2
|
|
pkgdesc="Python3 library for plots"
|
|
url="https://matplotlib.org"
|
|
arch="all"
|
|
license="Python-2.0"
|
|
depends="
|
|
py3-cairo
|
|
py3-certifi
|
|
py3-contourpy
|
|
py3-cycler
|
|
py3-dateutil
|
|
py3-fonttools
|
|
py3-kiwisolver
|
|
py3-numpy
|
|
py3-packaging
|
|
py3-parsing
|
|
py3-pillow
|
|
py3-tz
|
|
python3-tkinter
|
|
"
|
|
makedepends="
|
|
freetype-dev
|
|
gfortran
|
|
libpng-dev
|
|
py3-gpep517
|
|
py3-numpy-dev
|
|
py3-setuptools
|
|
py3-setuptools_scm
|
|
py3-wheel
|
|
python3-dev
|
|
qhull-dev
|
|
tk-dev
|
|
"
|
|
checkdepends="
|
|
font-opensans
|
|
py3-pytest
|
|
py3-pytest-xdist
|
|
"
|
|
source="https://github.com/matplotlib/$_pyname/archive/v$pkgver/matplotlib-v$pkgver.tar.gz
|
|
$pkgname-images-$pkgver.tar.gz::https://github.com/boomanaiden154/matplotlib-test-images/releases/download/matplotlib-$pkgver/matplotlib-images.tar.gz
|
|
freetype.patch
|
|
test.patch
|
|
"
|
|
builddir="$srcdir/$_pyname-$pkgver"
|
|
# > np.testing.assert_allclose(pos.y0, 0.1934, atol=1e-3)
|
|
# E AssertionError:
|
|
# E Not equal to tolerance rtol=1e-07, atol=0.001
|
|
# E
|
|
# E Mismatched elements: 1 / 1 (100%)
|
|
# E Max absolute difference: 0.00409801
|
|
# E Max relative difference: 0.02118928
|
|
# E x: array(0.189302)
|
|
# E y: array(0.1934)
|
|
options="!check"
|
|
|
|
replaces="py-matplotlib" # Backwards compatibility
|
|
provides="py-matplotlib=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
prepare() {
|
|
default_prepare
|
|
|
|
# Use system freetype and qhull
|
|
sed -e 's|#system_freetype = False|system_freetype = True|' -e 's|#system_qhull = False|system_qhull = True|' mplsetup.cfg.template > mplsetup.cfg
|
|
# Install tests
|
|
sed -i 's|#tests = False|tests = True|' mplsetup.cfg
|
|
# Copy images from freetype mpl images repo
|
|
cp -r ../matplotlib-images/matplotlib-$CARCH/* lib/matplotlib/tests/baseline_images/
|
|
cp -r ../matplotlib-images/mpl_toolkits-$CARCH/* lib/matplotlib/tests/baseline_images/
|
|
}
|
|
|
|
build() {
|
|
export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
|
|
gpep517 build-wheel \
|
|
--wheel-dir dist \
|
|
--output-fd 2
|
|
}
|
|
|
|
check() {
|
|
python3 -m venv --system-site-packages test-env
|
|
test-env/bin/python3 -m installer dist/*.whl
|
|
test-env/bin/python3 -m pytest -n $JOBS -v --pyargs matplotlib -m "not (nonfunctional or $CARCH)"
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer --destdir="$pkgdir" dist/*.whl
|
|
|
|
# Remove tests from installation
|
|
rm -r "$pkgdir"/usr/lib/python3*/site-packages/matplotlib/tests/
|
|
rm -r "$pkgdir"/usr/lib/python3*/site-packages/mpl_toolkits/tests/
|
|
}
|
|
|
|
sha512sums="
|
|
d962a3ca218474124584c8b8a04d6429965e8eb1c1fa2fbebbb7e236b80b5026ed29db42d212ea3d519ef23510849437352964d5e779a8cca977f0b847fe64e8 matplotlib-v3.6.2.tar.gz
|
|
e6d473024ad9ca87fe41ae7c2cc05637fae376ea35df3bb908c425932af49c4a94ce73beaf1b764eb40cb97136d6c63c960b0a1a35ee8fa689964bab5ebcc579 py3-matplotlib-images-3.6.2.tar.gz
|
|
ea21b9ac0253253b657c542e31f3c8dc3161419d7c42aa92036b98338a27b59d1cc5d7f699c8cbaf0302f63a4f730301044a8d11cdee8f9fb8027a80a12a394b freetype.patch
|
|
8506e7c37dffe84acbc0a31699d66db6b5566e2a9529ac825b6ddcd8b0f7fc6c6b8ddea4063cf5fa32d71828048239b1dbb8f7c9c721448089242f3f70826f22 test.patch
|
|
"
|