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/pysendfile/
Date: Thu, 10 Sep 2020 09:36:39
Message-Id: 1599730590.b2cbbd58bd13ba9e5722a8b66e2235630f7cdc0c.sbraz@gentoo
1 commit: b2cbbd58bd13ba9e5722a8b66e2235630f7cdc0c
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 10 09:28:28 2020 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 10 09:36:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2cbbd58
7
8 dev-python/pysendfile: support Py3.9, drop explicit setuptools dep.
9
10 Package-Manager: Portage-3.0.6, Repoman-3.0.1
11 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
12
13 dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild | 4 +---
14 1 file changed, 1 insertion(+), 3 deletions(-)
15
16 diff --git a/dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild b/dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild
17 index 5d6541382f8..b3694e1aaa9 100644
18 --- a/dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild
19 +++ b/dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild
20 @@ -3,7 +3,7 @@
21
22 EAPI=7
23
24 -PYTHON_COMPAT=( pypy3 python3_{6,7,8} )
25 +PYTHON_COMPAT=( pypy3 python3_{6,7,8,9} )
26
27 inherit distutils-r1
28
29 @@ -16,8 +16,6 @@ IUSE=""
30 LICENSE="MIT"
31 SLOT="0"
32
33 -BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
34 -
35 python_test() {
36 "${EPYTHON}" test/test_sendfile.py || die "tests failed with ${EPYTHON}"
37 }