Gentoo Archives: gentoo-commits

From: Andrey Grozin <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-visualization/veusz/
Date: Wed, 02 Mar 2016 07:44:50
Message-Id: 1456904004.1eddb16e37a52235fcb7bc8ae8ce2fb4b0ff1ca7.grozin@gentoo
1 commit: 1eddb16e37a52235fcb7bc8ae8ce2fb4b0ff1ca7
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 2 07:32:33 2016 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 2 07:33:24 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1eddb16e
7
8 sci-visualization/veusz: bump to 1.23.2
9
10 Bug: 575660
11
12 Package-Manager: portage-2.2.27
13
14 sci-visualization/veusz/Manifest | 1 +
15 sci-visualization/veusz/veusz-1.23.2.ebuild | 78 +++++++++++++++++++++++++++++
16 2 files changed, 79 insertions(+)
17
18 diff --git a/sci-visualization/veusz/Manifest b/sci-visualization/veusz/Manifest
19 index c75a71d..5bbbff5 100644
20 --- a/sci-visualization/veusz/Manifest
21 +++ b/sci-visualization/veusz/Manifest
22 @@ -1,2 +1,3 @@
23 DIST veusz-1.11.tar.gz 1579404 SHA256 7ded2b8788f7420ea76dd499a485473fddce1f2587e9c93e453743b194d08e94 SHA512 a22138beeef38093c9ec003731dfb1282aef93ca3d664cc5c2bd42beefc1a0450910622d0c9484b8ca406330ecd49253a5328336eac9846a2937f981844ef901 WHIRLPOOL 942428fcb36196ba0bb401670b990b24a3b4e2aa3648d23a5fad24be6d5adeef3e3d1e95bda0a969926eb466219e2089342b6fc8e7367e6bfbe0b2056b45edda
24 +DIST veusz-1.23.2.tar.gz 1844882 SHA256 f75cab64a7a86b01ecee04ae404efbecf97a77405120fcd643672061f876494a SHA512 4af8858cc5b6e33589c1f1833e2051d3af45203218f2f9866ab1d704be9cd605ec0f829bff70aa0ce7f078a35369d315f930b5bbd4ee3436330ff20e90057ca1 WHIRLPOOL 2c84f439b15606c1771d018e5a2cb36e8917a18213cc889614076181dfc9bcc58c5d4216a3c1277d6f269d7bbc9cd55b4ac0ab9a590171fa733a850b3625354b
25 DIST veusz-1.23.tar.gz 1822000 SHA256 6ba03cef320764cf8d1cc62f6ab20e52727a86faf21c45382e999f596d62c301 SHA512 4a7ec1e94338bbcc072caf7256da8185b999814e9c2cda907c7989fd5b80efda49029c801f49d4b95a8745f3b47bf0e4b16732f9524558e3466321d27d696646 WHIRLPOOL 11f246a8139c324f8ef58ce28b9108a6d416722909b28af69d154bd283409105fb6c5cc4e19ad5630f870766e2a741b68f51076f171e12974c53b180e5974b8e
26
27 diff --git a/sci-visualization/veusz/veusz-1.23.2.ebuild b/sci-visualization/veusz/veusz-1.23.2.ebuild
28 new file mode 100644
29 index 0000000..077b7ef
30 --- /dev/null
31 +++ b/sci-visualization/veusz/veusz-1.23.2.ebuild
32 @@ -0,0 +1,78 @@
33 +# Copyright 1999-2016 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +# $Id$
36 +
37 +EAPI=5
38 +
39 +PYTHON_COMPAT=( python2_7 python3_{3,4} )
40 +
41 +inherit eutils fdo-mime distutils-r1 virtualx
42 +
43 +DESCRIPTION="Qt scientific plotting package with good Postscript output"
44 +HOMEPAGE="http://home.gna.org/veusz/"
45 +SRC_URI="http://download.gna.org/${PN}/${P}.tar.gz"
46 +
47 +SLOT="0"
48 +LICENSE="GPL-2"
49 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
50 +IUSE="dbus doc emf fits hdf5 minuit vo"
51 +
52 +CDEPEND="
53 + dev-python/numpy[${PYTHON_USEDEP}]
54 + >=dev-python/PyQt4-4.11.4[X,svg,${PYTHON_USEDEP}]
55 +"
56 +RDEPEND="${CDEPEND}
57 + dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] )
58 + emf? ( dev-python/pyemf[$(python_gen_usedep 'python2*')] )
59 + fits? ( dev-python/astropy[${PYTHON_USEDEP}] )
60 + hdf5? ( dev-python/h5py[${PYTHON_USEDEP}] )
61 + minuit? ( dev-python/pyminuit[${PYTHON_USEDEP}] )
62 + vo? (
63 + dev-python/astropy[${PYTHON_USEDEP}]
64 + dev-python/sampy[$(python_gen_usedep 'python2*')]
65 + )"
66 +DEPEND="${CDEPEND}
67 + dev-python/setuptools[${PYTHON_USEDEP}]
68 + dev-python/sip[${PYTHON_USEDEP}]
69 + "
70 +
71 +python_test() {
72 + distutils_install_for_testing
73 + cd tests || die
74 + VIRTUALX_COMMAND="${EPYTHON}" \
75 + VEUSZ_RESOURCE_DIR="${S}" \
76 + virtualmake runselftest.py
77 +}
78 +
79 +python_install() {
80 + distutils-r1_python_install
81 + # symlink the license, bug #341653
82 + rm "${D}/$(python_get_sitedir)"/${PN}/{COPYING,AUTHORS,ChangeLog} || die
83 + mkdir -p "${D}/$(python_get_sitedir)" || die
84 + cat >> "${D}/$(python_get_sitedir)"/${PN}/COPYING <<- EOF
85 + Please visit
86 +
87 + https://www.gnu.org/licenses/gpl-2.0.html
88 +
89 + for the full license text.
90 + EOF
91 +}
92 +
93 +python_install_all() {
94 + distutils-r1_python_install_all
95 + use doc && dodoc Documents/manual.pdf && \
96 + dohtml -r Documents/{manimages,manual.html}
97 +
98 + doicon icons/veusz.png
99 + domenu "${FILESDIR}"/veusz.desktop
100 + insinto /usr/share/mime/packages
101 + doins "${FILESDIR}"/veusz.xml
102 +}
103 +
104 +pkg_postinst() {
105 + fdo-mime_desktop_database_update
106 +}
107 +
108 +pkg_postrm() {
109 + fdo-mime_desktop_database_update
110 +}