Gentoo Archives: gentoo-commits

From: Haelwenn Monnier <contact@×××××××××.me>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: app-office/pyspread/
Date: Sun, 13 Jun 2021 08:49:14
Message-Id: 1623424990.405dc28749e5a4c4f62e4e8600d84dc872bdb2e6.lanodan@gentoo
1 commit: 405dc28749e5a4c4f62e4e8600d84dc872bdb2e6
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Sun Jun 6 02:31:59 2021 +0000
4 Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
5 CommitDate: Fri Jun 11 15:23:10 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=405dc287
7
8 app-office/pyspread: drop unmaintained live
9
10 Package-Manager: Portage-3.0.19, Repoman-3.0.3
11 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
12
13 app-office/pyspread/pyspread-9999.ebuild | 45 --------------------------------
14 1 file changed, 45 deletions(-)
15
16 diff --git a/app-office/pyspread/pyspread-9999.ebuild b/app-office/pyspread/pyspread-9999.ebuild
17 deleted file mode 100644
18 index 59d4215a3..000000000
19 --- a/app-office/pyspread/pyspread-9999.ebuild
20 +++ /dev/null
21 @@ -1,45 +0,0 @@
22 -# Copyright 2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -PYTHON_COMPAT=( python3_{7..9} )
28 -
29 -inherit xdg desktop distutils-r1
30 -
31 -DESCRIPTION="Pyspread is a non-traditional spreadsheet written in Python"
32 -HOMEPAGE="https://pyspread.gitlab.io"
33 -
34 -if [[ ${PV} == *9999* ]]; then
35 - inherit git-r3
36 - EGIT_REPO_URI="https://gitlab.com/pyspread/${PN}.git"
37 -else
38 - SRC_URI="https://gitlab.com/pyspread/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz"
39 - KEYWORDS="~amd64"
40 - S="${WORKDIR}/${PN}-v${PV}"
41 -fi
42 -
43 -LICENSE="GPL-3"
44 -SLOT="0"
45 -
46 -RDEPEND="
47 - >=dev-python/PyQt5-5.10.0[svg,${PYTHON_USEDEP}]
48 - >=dev-python/matplotlib-1.1.1[${PYTHON_USEDEP}]
49 - >=dev-python/numpy-1.1.1[${PYTHON_USEDEP}]
50 - >=dev-python/pyenchant-1.1.0[${PYTHON_USEDEP}]
51 -"
52 -
53 -python_prepare_all() {
54 - distutils-r1_python_prepare_all
55 -
56 - # Fix the provided desktop file
57 - sed -i -e '/Path/d' "${PN}.desktop" || die
58 -}
59 -
60 -python_install() {
61 - distutils-r1_python_install
62 -
63 - doicon "${PN}"/share/icons/"${PN}.ico"
64 - doicon "${PN}"/share/icons/"${PN}.svg"
65 - domenu "${PN}.desktop"
66 -}