mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-07 23:53:51 +02:00
python-matplotlib: rebuild for Python 3.5
Switch to python3-* pkgs. Convert python3.4-* pkg into dummy pkg.
This commit is contained in:
parent
58defbfad1
commit
9a750b2be4
3 changed files with 26 additions and 21 deletions
|
@ -1,19 +1,19 @@
|
||||||
By default, this package supports only non-interactive graphics output.
|
By default, this package supports only non-interactive graphics output.
|
||||||
For interactive graphics, install:
|
For interactive graphics, install:
|
||||||
|
|
||||||
- gtk+3 gir-freedesktop python3.4-gobject python3.4-cairocffi
|
- gtk+3 gir-freedesktop python3-gobject python3-cairocffi
|
||||||
(for GTK3Agg/GTK3Cairo backend)
|
(for GTK3Agg/GTK3Cairo backend)
|
||||||
- python3.4-PyQt4|python3.4-pyside (for Qt4Agg backend)
|
- python3-PyQt4|python3-pyside (for Qt4Agg backend)
|
||||||
- python3.4-PyQt5 (for Qt5Agg backend)
|
- python3-PyQt5 (for Qt5Agg backend)
|
||||||
- python3.4-tkinter (for TkAgg backend)
|
- python3-tkinter (for TkAgg backend)
|
||||||
- python3.4-tornado (for webagg backend)
|
- python3-tornado (for webagg backend)
|
||||||
|
|
||||||
To change the backend, you have two ways:
|
To change the backend, you have two ways:
|
||||||
|
|
||||||
- /etc/matplotlibrc (system-wide)
|
- /etc/matplotlibrc (system-wide)
|
||||||
- $HOME/.config/matplotlib/matplotlibrc (per-user basis)
|
- $HOME/.config/matplotlib/matplotlibrc (per-user basis)
|
||||||
|
|
||||||
Natively, matplotlib only supports PNG images. Install python3.4-Pillow
|
Natively, matplotlib only supports PNG images. Install python3-Pillow
|
||||||
to support more file formats.
|
to support more file formats.
|
||||||
|
|
||||||
Matplotlib’s LaTeX support requires a working LaTeX installation and
|
Matplotlib’s LaTeX support requires a working LaTeX installation and
|
|
@ -1,19 +1,18 @@
|
||||||
# Template file for 'python-matplotlib'
|
# Template file for 'python-matplotlib'
|
||||||
pkgname=python-matplotlib
|
pkgname=python-matplotlib
|
||||||
version=1.5.3
|
version=1.5.3
|
||||||
revision=2
|
revision=3
|
||||||
wrksrc="matplotlib-${version}"
|
wrksrc="matplotlib-${version}"
|
||||||
build_style=python-module
|
build_style=python-module
|
||||||
python_versions="2.7 3.4"
|
hostmakedepends="pkg-config python-setuptools python3-setuptools"
|
||||||
hostmakedepends="pkg-config python-setuptools python3.4-setuptools"
|
|
||||||
# XXX: use internal copy of agg, highly patched
|
# XXX: use internal copy of agg, highly patched
|
||||||
makedepends="
|
makedepends="
|
||||||
python-devel python3.4-devel python-numpy python3.4-numpy
|
python-devel python3-devel python-numpy python3-numpy
|
||||||
python-cycler python3.4-cycler python-dateutil python3.4-dateutil python-pytz
|
python-cycler python3-cycler python-dateutil python3-dateutil python-pytz
|
||||||
python3.4-pytz python-tornado python3.4-tornado python-parsing
|
python3-pytz python-tornado python3-tornado python-parsing
|
||||||
python3.4-parsing python-PyQt4-devel python-PyQt5-devel python-pyside
|
python3-parsing python-PyQt4-devel python-PyQt5-devel python-pyside
|
||||||
python3.4-pyside python-cairocffi python3.4-cairocffi python-gobject-devel
|
python3-pyside python-cairocffi python3-cairocffi python-gobject-devel
|
||||||
pygtk-devel gtk+3-devel tk-devel python-tkinter python3.4-tkinter wxPython-devel
|
pygtk-devel gtk+3-devel tk-devel python-tkinter python3-tkinter wxPython-devel
|
||||||
freetype-devel libpng-devel libqhull-devel"
|
freetype-devel libpng-devel libqhull-devel"
|
||||||
depends="python-matplotlib-data>=${version}_${revision} python-numpy python-cycler
|
depends="python-matplotlib-data>=${version}_${revision} python-numpy python-cycler
|
||||||
python-dateutil python-parsing python-pytz"
|
python-dateutil python-parsing python-pytz"
|
||||||
|
@ -56,13 +55,18 @@ python-matplotlib-data_package() {
|
||||||
rm -f ${PKGDESTDIR}/usr/share/matplotlib/mpl-data/matplotlibrc
|
rm -f ${PKGDESTDIR}/usr/share/matplotlib/mpl-data/matplotlibrc
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
python3.4-matplotlib_package() {
|
python3-matplotlib_package() {
|
||||||
depends="python-matplotlib-data>=${version}_${revision} python3.4-numpy
|
replaces="python3.4-matplotlib>=0"
|
||||||
python3.4-cycler python3.4-dateutil python3.4-parsing python3.4-pytz"
|
depends="python-matplotlib-data>=${version}_${revision} python3-numpy
|
||||||
short_desc="${short_desc/Python2/Python3.4}"
|
python3-cycler python3-dateutil python3-parsing python3-pytz"
|
||||||
pycompile_version="3.4"
|
short_desc="${short_desc/Python2/Python3}"
|
||||||
pycompile_module="matplotlib mpl_toolkits pylab.py"
|
pycompile_module="matplotlib mpl_toolkits pylab.py"
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove usr/lib/python3.4
|
vmove usr/lib/python3*
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
python3.4-matplotlib_package() {
|
||||||
|
build_style=meta
|
||||||
|
short_desc="${short_desc/Python2/Python3.4} (transitional dummy package)"
|
||||||
|
depends="python3-matplotlib>=${version}_${revision}"
|
||||||
|
}
|
||||||
|
|
1
srcpkgs/python3-matplotlib
Symbolic link
1
srcpkgs/python3-matplotlib
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
python-matplotlib
|
Loading…
Add table
Reference in a new issue