Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-visualization/veusz/
Date: Fri, 01 Jan 2021 01:56:05
Message-Id: 1609466155.8d72822aa2d6bdd55a59db5d307f995e220811a6.mgorny@gentoo
1 commit: 8d72822aa2d6bdd55a59db5d307f995e220811a6
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 1 01:53:16 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 1 01:55:55 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d72822a
7
8 sci-visualization/veusz: Remove old (py3.6)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 sci-visualization/veusz/Manifest | 1 -
13 sci-visualization/veusz/veusz-3.1.ebuild | 69 --------------------------------
14 2 files changed, 70 deletions(-)
15
16 diff --git a/sci-visualization/veusz/Manifest b/sci-visualization/veusz/Manifest
17 index 53a95b40568..67ae1eac5d4 100644
18 --- a/sci-visualization/veusz/Manifest
19 +++ b/sci-visualization/veusz/Manifest
20 @@ -1,2 +1 @@
21 -DIST veusz-3.1.tar.gz 2524607 BLAKE2B ca5c5a75e02c9461e1d81dc4d2cc09865ebd4424f072616bf0a231a1f592a5c1c5aad93f713ed9ec1d9e2ad39b877a36c236b615d904295608d7990eaf59d5fb SHA512 9b940d1cc224f4729f788abe1e29352d35e69d2f78bae7f072a783d339198a8171b0f0b0a5f5af82ef0f0693550a42409956a9cc3888aa46d110d777e81941a4
22 DIST veusz-3.2.tar.gz 2528125 BLAKE2B 614488779d1c0e5d800f2b1c86b82615676b08af46831abd6c55653471b045f0c9d28a8cb7489cbb2391fd5f21ab2d40aa6bff4fc195426f3b07b91f6d4ee8d7 SHA512 01e1a030246a3d6811493968f2f30084b2c465195af166b7bdc4009de4c488350a4fba300acee1959310b318e8dc519f090bfca528491811ca52640c33d048bc
23
24 diff --git a/sci-visualization/veusz/veusz-3.1.ebuild b/sci-visualization/veusz/veusz-3.1.ebuild
25 deleted file mode 100644
26 index 7446cbefb44..00000000000
27 --- a/sci-visualization/veusz/veusz-3.1.ebuild
28 +++ /dev/null
29 @@ -1,69 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_6 )
36 -
37 -inherit desktop distutils-r1 virtualx xdg
38 -
39 -DESCRIPTION="Qt scientific plotting package with good Postscript output"
40 -HOMEPAGE="https://veusz.github.io/"
41 -SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.tar.gz"
42 -
43 -SLOT="0"
44 -LICENSE="GPL-2"
45 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
46 -IUSE="dbus doc hdf5"
47 -RESTRICT="!test? ( test )"
48 -
49 -CDEPEND="dev-python/PyQt5[widgets,svg,printsupport,${PYTHON_USEDEP}]
50 - dev-python/numpy[${PYTHON_USEDEP}]"
51 -RDEPEND="${CDEPEND}
52 - dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] )
53 - hdf5? ( dev-python/h5py[${PYTHON_USEDEP}] )"
54 -DEPEND="${CDEPEND}
55 - dev-python/setuptools[${PYTHON_USEDEP}]
56 - dev-python/sip[${PYTHON_USEDEP}]
57 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
58 -
59 -src_prepare() {
60 - distutils-r1_src_prepare
61 - xdg_environment_reset
62 -}
63 -
64 -python_test() {
65 - distutils_install_for_testing
66 - VIRTUALX_COMMAND="${EPYTHON}" \
67 - VEUSZ_RESOURCE_DIR="${S}" \
68 - virtx tests/runselftest.py
69 -}
70 -
71 -python_install() {
72 - distutils-r1_python_install
73 - # symlink the license, bug #341653
74 - rm "${D}/$(python_get_sitedir)"/${PN}/{COPYING,AUTHORS,ChangeLog} || die
75 - mkdir -p "${D}/$(python_get_sitedir)" || die
76 - cat >> "${D}/$(python_get_sitedir)"/${PN}/COPYING <<- EOF
77 - Please visit
78 -
79 - https://www.gnu.org/licenses/gpl-2.0.html
80 -
81 - for the full license text.
82 - EOF
83 -}
84 -
85 -python_install_all() {
86 - distutils-r1_python_install_all
87 -
88 - if use doc; then
89 - dodoc Documents/manual/pdf/${PN}.pdf
90 - docinto html
91 - dodoc -r Documents/manual/html
92 - fi
93 -
94 - doicon icons/veusz.png
95 - domenu "${FILESDIR}"/veusz.desktop
96 - insinto /usr/share/mime/packages
97 - doins "${FILESDIR}"/veusz.xml
98 -}