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