Gentoo Archives: gentoo-commits

From: Louis Sautier <sbraz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/openpyxl/
Date: Mon, 28 Sep 2020 20:53:09
Message-Id: 1601326306.7d0dff433bed48ea8ba441690e04916040db34e8.sbraz@gentoo
1 commit: 7d0dff433bed48ea8ba441690e04916040db34e8
2 Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
3 AuthorDate: Mon Sep 21 21:40:08 2020 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 28 20:51:46 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d0dff43
7
8 dev-python/openpyxl: remove live version
9
10 Remove live version as no one is interesting in maintaining it.
11 Bug: https://bugs.gentoo.org/737916
12
13 Package-Manager: Portage-3.0.4, Repoman-3.0.1
14 Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
15 Closes: https://github.com/gentoo/gentoo/pull/17633
16 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
17
18 dev-python/openpyxl/metadata.xml | 3 +--
19 dev-python/openpyxl/openpyxl-9999.ebuild | 35 --------------------------------
20 2 files changed, 1 insertion(+), 37 deletions(-)
21
22 diff --git a/dev-python/openpyxl/metadata.xml b/dev-python/openpyxl/metadata.xml
23 index ee52e74e72d..03e42659d9f 100644
24 --- a/dev-python/openpyxl/metadata.xml
25 +++ b/dev-python/openpyxl/metadata.xml
26 @@ -7,8 +7,7 @@
27 </maintainer>
28 <upstream>
29 <remote-id type="pypi">openpyxl</remote-id>
30 - <remote-id type="bitbucket">openpyxl/openpyxl</remote-id>
31 - <bugs-to>https://bitbucket.org/openpyxl/openpyxl/issues</bugs-to>
32 + <bugs-to>https://foss.heptapod.net/openpyxl/openpyxl/issues</bugs-to>
33 <changelog>https://openpyxl.readthedocs.io/en/stable/changes.html</changelog>
34 </upstream>
35 </pkgmetadata>
36
37 diff --git a/dev-python/openpyxl/openpyxl-9999.ebuild b/dev-python/openpyxl/openpyxl-9999.ebuild
38 deleted file mode 100644
39 index 957f018d282..00000000000
40 --- a/dev-python/openpyxl/openpyxl-9999.ebuild
41 +++ /dev/null
42 @@ -1,35 +0,0 @@
43 -# Copyright 1999-2020 Gentoo Authors
44 -# Distributed under the terms of the GNU General Public License v2
45 -
46 -EAPI=7
47 -
48 -PYTHON_COMPAT=( python3_{6,7} )
49 -
50 -inherit distutils-r1 mercurial
51 -
52 -DESCRIPTION="Pure python reader and writer of Excel OpenXML files"
53 -HOMEPAGE="https://openpyxl.readthedocs.io/en/stable/"
54 -SRC_URI=""
55 -EHG_REPO_URI="https://bitbucket.org/openpyxl/openpyxl"
56 -
57 -LICENSE="MIT"
58 -SLOT="0"
59 -KEYWORDS=""
60 -IUSE="test"
61 -RESTRICT="!test? ( test )"
62 -
63 -RDEPEND="
64 - dev-python/jdcal[${PYTHON_USEDEP}]
65 - dev-python/et_xmlfile[${PYTHON_USEDEP}]
66 -"
67 -DEPEND="
68 - test? (
69 - ${RDEPEND}
70 - dev-python/pytest[${PYTHON_USEDEP}]
71 - dev-python/lxml[${PYTHON_USEDEP}]
72 - dev-python/pillow[${PYTHON_USEDEP}]
73 - )"
74 -
75 -python_test() {
76 - pytest || die "Testing failed with ${EPYTHON}"
77 -}