sci-visualization/veusz: bump to 2.2.2

Package-Manager: Portage-2.3.19, Repoman-2.3.6
This commit is contained in:
Andrey Grozin
2018-04-23 03:51:02 +07:00
parent 4a840b79c1
commit e888bc4633
2 changed files with 80 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST veusz-2.1.1.tar.gz 2440253 BLAKE2B 1bfbe3bf6a026fbbd4acf5d722a1d2282331d71548650606c474c81399e8f0e8dcef643e0ab61a3eff62e111392a0668e1ae3d0bb2a76d7abc1f57e10a6e0506 SHA512 894dd12ea89671d71bd1abb2367c19d76c599c59edd302c29e5f99bbd1798fea8cb1489ca3446e8f88fedaf287fb48ee63617f928c77e4bd366a4f00a878b994
DIST veusz-2.2.2.tar.gz 2451495 BLAKE2B 1d6672b932092c9645faaf0f081026963c99fdecb7844270fd674ee30e6257377e2e468cd4590efcaacb255035dfa2dfc61c1db6b4aff72366b374859e2e8601 SHA512 1851a4da9566498bc2eda65a2417e021e7089c0b73cad600c021be9f5561e66a084f92ad18a18d1bd0c0e5eae742500b9e8b313e10e7948ee6a434b40f430b49

View File

@@ -0,0 +1,79 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
inherit eutils distutils-r1 virtualx xdg-utils gnome2-utils
DESCRIPTION="Qt scientific plotting package with good Postscript output"
HOMEPAGE="https://veusz.github.io/"
SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="dbus doc emf fits hdf5 minuit"
CDEPEND="dev-python/PyQt5[widgets,svg,printsupport,${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]"
RDEPEND="${CDEPEND}
dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] )
emf? ( dev-python/pyemf[$(python_gen_usedep 'python2*')] )
fits? ( dev-python/astropy[${PYTHON_USEDEP}] )
hdf5? ( dev-python/h5py[${PYTHON_USEDEP}] )
minuit? ( || ( dev-python/iminuit[${PYTHON_USEDEP}] dev-python/pyminuit[${PYTHON_USEDEP}] ) )"
DEPEND="${CDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/sip[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
python_test() {
distutils_install_for_testing
cd tests || die
VIRTUALX_COMMAND="${EPYTHON}" \
VEUSZ_RESOURCE_DIR="${S}" \
virtualmake runselftest.py
}
python_install() {
distutils-r1_python_install
# symlink the license, bug #341653
rm "${D}/$(python_get_sitedir)"/${PN}/{COPYING,AUTHORS,ChangeLog} || die
mkdir -p "${D}/$(python_get_sitedir)" || die
cat >> "${D}/$(python_get_sitedir)"/${PN}/COPYING <<- EOF
Please visit
https://www.gnu.org/licenses/gpl-2.0.html
for the full license text.
EOF
}
python_install_all() {
distutils-r1_python_install_all
if use doc; then
dodoc Documents/manual/pdf/${PN}.pdf
docinto html
dodoc -r Documents/manual/html
fi
doicon icons/veusz.png
domenu "${FILESDIR}"/veusz.desktop
insinto /usr/share/mime/packages
doins "${FILESDIR}"/veusz.xml
}
pkg_postinst() {
xdg_desktop_database_update
xdg_mimeinfo_database_update
gnome2_icon_cache_update
}
pkg_postrm() {
xdg_desktop_database_update
xdg_mimeinfo_database_update
gnome2_icon_cache_update
}