From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 784DF138359 for ; Thu, 10 Sep 2020 09:36:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 97480E0920; Thu, 10 Sep 2020 09:36:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 79F02E0920 for ; Thu, 10 Sep 2020 09:36:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E50AC340CA7 for ; Thu, 10 Sep 2020 09:36:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5AEA3354 for ; Thu, 10 Sep 2020 09:36:35 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1599730590.b2cbbd58bd13ba9e5722a8b66e2235630f7cdc0c.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pysendfile/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild X-VCS-Directories: dev-python/pysendfile/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: b2cbbd58bd13ba9e5722a8b66e2235630f7cdc0c X-VCS-Branch: master Date: Thu, 10 Sep 2020 09:36:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: baf17d53-88ef-4a35-91cc-9d79f4bedcf6 X-Archives-Hash: af8ada1899f697e4dda178f0c5b6f417 commit: b2cbbd58bd13ba9e5722a8b66e2235630f7cdc0c Author: Louis Sautier gentoo org> AuthorDate: Thu Sep 10 09:28:28 2020 +0000 Commit: Louis Sautier gentoo org> CommitDate: Thu Sep 10 09:36:30 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2cbbd58 dev-python/pysendfile: support Py3.9, drop explicit setuptools dep. Package-Manager: Portage-3.0.6, Repoman-3.0.1 Signed-off-by: Louis Sautier gentoo.org> dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild b/dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild index 5d6541382f8..b3694e1aaa9 100644 --- a/dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild +++ b/dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( pypy3 python3_{6,7,8} ) +PYTHON_COMPAT=( pypy3 python3_{6,7,8,9} ) inherit distutils-r1 @@ -16,8 +16,6 @@ IUSE="" LICENSE="MIT" SLOT="0" -BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - python_test() { "${EPYTHON}" test/test_sendfile.py || die "tests failed with ${EPYTHON}" }