Gentoo Archives: gentoo-commits

From: Aisha Tammy <gentoo@×××××.cc>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/screed/
Date: Wed, 30 Dec 2020 19:25:37
Message-Id: 1609354955.daa22b9ef0e50837ee522d59befd90c6de9a701b.epsilon-0@gentoo
1 commit: daa22b9ef0e50837ee522d59befd90c6de9a701b
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
3 AuthorDate: Wed Dec 30 18:35:10 2020 +0000
4 Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
5 CommitDate: Wed Dec 30 19:02:35 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=daa22b9e
7
8 sci-biology/screed: version bump 1.0.4
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
12 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
13
14 .../screed/{screed-0.9.ebuild => screed-1.0.4.ebuild} | 17 +++++++++++++----
15 1 file changed, 13 insertions(+), 4 deletions(-)
16
17 diff --git a/sci-biology/screed/screed-0.9.ebuild b/sci-biology/screed/screed-1.0.4.ebuild
18 similarity index 53%
19 rename from sci-biology/screed/screed-0.9.ebuild
20 rename to sci-biology/screed/screed-1.0.4.ebuild
21 index fe8f49405..eab1748f4 100644
22 --- a/sci-biology/screed/screed-0.9.ebuild
23 +++ b/sci-biology/screed/screed-1.0.4.ebuild
24 @@ -1,9 +1,9 @@
25 # Copyright 1999-2020 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 -EAPI=5
29 +EAPI=7
30
31 -PYTHON_COMPAT=( python2_7 python3_3 python3_4 python3_5 )
32 +PYTHON_COMPAT=( python3_{7,8,9} )
33
34 inherit distutils-r1
35
36 @@ -13,5 +13,14 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
37
38 SLOT="0"
39 LICENSE="BSD"
40 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
41 -IUSE=""
42 +KEYWORDS="~amd64 ~x86"
43 +
44 +distutils_enable_tests --install pytest
45 +
46 +RDEPEND="dev-python/bz2file[${PYTHON_USEDEP}]"
47 +
48 +python_prepare_all() {
49 + # do not depend on pytest-runner
50 + sed -i "/pytest-runner/d" setup.py || die
51 + distutils-r1_python_prepare_all
52 +}