mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
community/python-matplotlib to 3.0.1-1
This commit is contained in:
parent
802576d0e0
commit
20b2542e69
1 changed files with 36 additions and 89 deletions
|
@ -1,5 +1,5 @@
|
|||
# $Id$
|
||||
# Maintainer: Felix Yan <felixonmars@archlinux.org>
|
||||
# Maintainer: Bruno Pagani <archange@archlinux.org>
|
||||
# Contributor: Stéphane Gaudreault <stephane@archlinux.org>
|
||||
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
|
||||
# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
|
||||
|
@ -8,112 +8,59 @@
|
|||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - replace make/optdepends on python{,2}-cairocffi with python{,2}-cairo (cffi has haskell dep)
|
||||
|
||||
pkgbase=python-matplotlib
|
||||
pkgname=('python-matplotlib' 'python2-matplotlib')
|
||||
pkgver=2.2.3
|
||||
pkgrel=2
|
||||
pkgname=python-matplotlib
|
||||
pkgver=3.0.1
|
||||
pkgrel=1
|
||||
pkgdesc="A python plotting library, making publication quality plots"
|
||||
arch=('x86_64')
|
||||
url='http://matplotlib.org'
|
||||
url="https://matplotlib.org"
|
||||
license=('custom')
|
||||
checkdepends=('python-pytest-xdist' 'python2-pytest-xdist' 'python-pytest-runner'
|
||||
'python2-pytest-runner' 'python2-mock' 'xorg-server-xvfb' 'texlive-core'
|
||||
'texlive-latexextra' 'imagemagick' 'ffmpeg' 'mencoder' 'inkscape' 'python-pandas'
|
||||
'python2-pandas' 'ttf-freefont')
|
||||
makedepends=('python2-pytz' 'python2-numpy' 'python-pytz' 'python-numpy'
|
||||
'tk' 'python-cairo' 'python2-cairo' 'python-dateutil'
|
||||
'python2-dateutil' 'python-gobject' 'python2-gobject' 'python-pyparsing'
|
||||
'python2-pyparsing' 'pygtk' 'python-six' 'ghostscript' 'texlive-bin'
|
||||
'python-tornado' 'python2-tornado' 'gtk3' 'wxpython' 'python-pyqt5' 'python2-pyqt5'
|
||||
'libxkbcommon-x11' 'python-pillow' 'python2-pillow' 'python-setuptools'
|
||||
'python2-setuptools' 'python-cycler' 'python2-cycler' 'python-kiwisolver'
|
||||
'python2-kiwisolver')
|
||||
source=("$pkgbase-$pkgver.tar.gz::https://github.com/matplotlib/matplotlib/archive/v$pkgver.tar.gz"
|
||||
depends=('freetype2' 'libpng' 'python-numpy' 'python-cycler' 'python-dateutil' 'python-kiwisolver' 'python-pyparsing')
|
||||
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'
|
||||
'python-pillow: for reading/saving jpeg/bmp/tiff files'
|
||||
'ghostscript: usetex dependencies'
|
||||
'texlive-bin: usetex dependencies')
|
||||
makedepends=('git' 'rsync' 'python-setuptools'
|
||||
'tk' 'python-pyqt5' 'python-gobject'
|
||||
'python-wxpython' 'python-cairo' 'python-tornado'
|
||||
'python-pillow' 'ghostscript' 'texlive-bin')
|
||||
# 'qhull' missing pkg-config file
|
||||
# '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')
|
||||
source=($pkgname-$pkgver.tar.gz::"https://github.com/matplotlib/matplotlib/archive/v$pkgver.tar.gz"
|
||||
setup.cfg)
|
||||
sha512sums=('d118f5d56e2f578031aba22933c0b3a4423a31a04f50f08cc1aa660186546d09692a9cf401bb5f24cb296f94fbfd8707460728d501ac2bd4a624dfa89e92949b'
|
||||
sha512sums=('1773846f4bec863d323652c9a89b5c087049f9170c8a18a2c7e1d818f8cb46f34e7fc9fc7a2a8ab70c80dbc2bcaf8428b6a9fb941e85ec7b054d2204d0a794bb'
|
||||
'f08c0b2e94599fdf2b736b8a655d862209934441d90f20ed872cfc128b8d2a6525763ab7cf64f2b3630e22a90798f4c52aa93b18087e9b48708d9bae34aada0b')
|
||||
|
||||
prepare() {
|
||||
cp -a "$srcdir"/matplotlib-$pkgver{,-py2}
|
||||
|
||||
cd "$srcdir"/matplotlib-$pkgver
|
||||
for file in $(find . -name '*.py' -print); do
|
||||
sed -i -e "s|^#!.*/usr/bin/python|#!/usr/bin/python3|" \
|
||||
-e "s|^#!.*/usr/bin/env *python|#!/usr/bin/env python3|" $file
|
||||
done
|
||||
|
||||
cd "$srcdir"/matplotlib-$pkgver-py2
|
||||
for file in $(find . -name '*.py' -print); do
|
||||
sed -i -e "s|^#!.*/usr/bin/python|#!/usr/bin/python2|" \
|
||||
-e "s|^#!.*/usr/bin/env *python|#!/usr/bin/env python2|" $file
|
||||
done
|
||||
|
||||
cp -a "$srcdir"/matplotlib-$pkgver{,-test}
|
||||
cp -a "$srcdir"/matplotlib-$pkgver-py2{,-test}
|
||||
cp -a matplotlib-$pkgver{,-test}
|
||||
|
||||
# Configure tests (FS#48175)
|
||||
cp "$srcdir/setup.cfg" "$srcdir"/matplotlib-$pkgver-test/
|
||||
cp "$srcdir/setup.cfg" "$srcdir"/matplotlib-$pkgver-py2-test/
|
||||
cp setup.cfg matplotlib-$pkgver-test/
|
||||
}
|
||||
|
||||
build() {
|
||||
# this seems to need to be present or gtk/gdk dies
|
||||
# and hangs the build checking if gtk3cairo is installed
|
||||
export XDG_RUNTIME_DIR=/tmp
|
||||
|
||||
cd "$srcdir"/matplotlib-$pkgver
|
||||
python3 setup.py build
|
||||
|
||||
cd "$srcdir"/matplotlib-$pkgver-py2
|
||||
python2 setup.py build
|
||||
cd matplotlib-$pkgver
|
||||
python setup.py build
|
||||
}
|
||||
|
||||
check() {
|
||||
# Different font rendering details
|
||||
|
||||
cd "$srcdir"/matplotlib-$pkgver-test
|
||||
cd matplotlib-$pkgver-test
|
||||
xvfb-run -a -s "+extension GLX +extension RANDR +render -screen 0 1280x1024x24" \
|
||||
python setup.py pytest --addopts="-n auto" || warning "Tests failed"
|
||||
|
||||
cd "$srcdir"/matplotlib-$pkgver-py2-test
|
||||
xvfb-run -a -s "+extension GLX +extension RANDR +render -screen 0 1280x1024x24" \
|
||||
python2 setup.py pytest --addopts="-n auto" || warning "Tests failed"
|
||||
python setup.py pytest --addopts="-n auto" || warning "Tests failed" # Different font rendering details
|
||||
}
|
||||
|
||||
package_python-matplotlib() {
|
||||
depends=('python-pytz' 'python-numpy' 'python-pyqt5' 'python-dateutil' 'python-pyparsing'
|
||||
'python-cycler' 'python-kiwisolver' 'libxkbcommon-x11')
|
||||
optdepends=('python-gobject: for GTK3Agg/GTK3Cairo backend'
|
||||
'python-cairo: for GTK3Agg/GTK3Cairo backend'
|
||||
'tk: used by the TkAgg backend'
|
||||
'ghostscript: usetex dependencies'
|
||||
'texlive-bin: usetex dependencies'
|
||||
'python-tornado: for webagg backend'
|
||||
'python-pillow: for reading/saving .jpg/bmp/tiff files')
|
||||
|
||||
cd matplotlib-$pkgver
|
||||
python3 setup.py install -O1 --skip-build --root "$pkgdir" --prefix=/usr
|
||||
|
||||
install -dm755 "$pkgdir"/usr/share/licenses/python-matplotlib
|
||||
install -m 644 doc/users/license.rst "$pkgdir"/usr/share/licenses/python-matplotlib
|
||||
}
|
||||
|
||||
package_python2-matplotlib() {
|
||||
depends=('python2-pytz' 'python2-numpy' 'python2-pyqt5' 'python2-dateutil' 'python2-pyparsing'
|
||||
'python2-cycler' 'python2-kiwisolver' 'libxkbcommon-x11' 'python2-backports.functools_lru_cache')
|
||||
optdepends=('pygtk: for GTK/GTKAgg/GTKCairo backend'
|
||||
'python2-cairo: for GTKCairo/GTK3Cairo backend'
|
||||
'tk: used by the TkAgg backend'
|
||||
'ghostscript: usetex dependencies'
|
||||
'texlive-bin: usetex dependencies'
|
||||
'python2-tornado: for webagg backend'
|
||||
'python2-gobject: for GTK3Agg/GTK3Cairo backend'
|
||||
'wxpython: for WX/WXAgg backend'
|
||||
'python2-pillow: for reading/saving .jpg/bmp/tiff files')
|
||||
|
||||
cd matplotlib-$pkgver-py2
|
||||
python2 setup.py install -O1 --skip-build --root "$pkgdir" --prefix=/usr
|
||||
|
||||
install -dm755 "$pkgdir"/usr/share/licenses/python2-matplotlib
|
||||
install -m 644 doc/users/license.rst "$pkgdir"/usr/share/licenses/python2-matplotlib
|
||||
python setup.py install --root "$pkgdir" --prefix=/usr --optimize=1 --skip-build
|
||||
install -Dm644 doc/users/license.rst -t "$pkgdir"/usr/share/licenses/${pkgname}/
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue