Gentoo Archives: gentoo-commits

From: Andrey Grozin <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/nose-exclude/
Date: Sun, 01 Mar 2020 04:42:24
Message-Id: 1583037429.4655132bed49431553eaf71c251f245752270929.grozin@gentoo
1 commit: 4655132bed49431553eaf71c251f245752270929
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 1 04:37:09 2020 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 1 04:37:09 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4655132b
7
8 dev-python/nose-exclude: add python3_8
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>
12
13 .../nose-exclude/nose-exclude-0.5.0-r1.ebuild | 23 ++++++++++++++++++++++
14 1 file changed, 23 insertions(+)
15
16 diff --git a/dev-python/nose-exclude/nose-exclude-0.5.0-r1.ebuild b/dev-python/nose-exclude/nose-exclude-0.5.0-r1.ebuild
17 new file mode 100644
18 index 00000000000..b3b7db5f4d8
19 --- /dev/null
20 +++ b/dev-python/nose-exclude/nose-exclude-0.5.0-r1.ebuild
21 @@ -0,0 +1,23 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Exclude specific directories from nosetests runs"
32 +HOMEPAGE="https://github.com/kgrandis/nose-exclude"
33 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 +
35 +LICENSE="LGPL-2.1"
36 +SLOT="0"
37 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
38 +
39 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
40 +RDEPEND="dev-python/nose[${PYTHON_USEDEP}]"
41 +
42 +python_test() {
43 + esetup.py test
44 +}