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 85CA113835A for ; Mon, 8 Jun 2020 17:36:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7DE63E0938; Mon, 8 Jun 2020 17:36:44 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 68167E0936 for ; Mon, 8 Jun 2020 17:36:44 +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 0C09734E338 for ; Mon, 8 Jun 2020 17:36:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 82519262 for ; Mon, 8 Jun 2020 17:36:41 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1591637793.d4d7a800d7a77d06df1044507a30874bd292bb38.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pickleshare/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pickleshare/pickleshare-0.7.5.ebuild X-VCS-Directories: dev-python/pickleshare/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d4d7a800d7a77d06df1044507a30874bd292bb38 X-VCS-Branch: master Date: Mon, 8 Jun 2020 17:36:41 +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: 08057e2f-4e34-4862-9052-8871a440d35d X-Archives-Hash: 841ff179f6973480f7f66d0e77cb38d1 commit: d4d7a800d7a77d06df1044507a30874bd292bb38 Author: Michał Górny gentoo org> AuthorDate: Mon Jun 8 17:13:16 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jun 8 17:36:33 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4d7a800 dev-python/pickleshare: Port to py3.9 Signed-off-by: Michał Górny gentoo.org> dev-python/pickleshare/pickleshare-0.7.5.ebuild | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/dev-python/pickleshare/pickleshare-0.7.5.ebuild b/dev-python/pickleshare/pickleshare-0.7.5.ebuild index 00409430df9..b4bc30076a5 100644 --- a/dev-python/pickleshare/pickleshare-0.7.5.ebuild +++ b/dev-python/pickleshare/pickleshare-0.7.5.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 DESCRIPTION="A small 'shelve' like datastore with concurrency support" @@ -12,15 +12,8 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 x86" -IUSE="test" -RESTRICT="!test? ( test )" RDEPEND=" >=dev-python/path-py-6.2[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - test? ( dev-python/pytest[${PYTHON_USEDEP}] )" - -python_test() { - py.test || die -} +distutils_enable_tests pytest