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 0F3A4138350 for ; Thu, 23 Apr 2020 17:50:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 09B7BE09B6; Thu, 23 Apr 2020 17:50:50 +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 EA2B6E09B6 for ; Thu, 23 Apr 2020 17:50:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 BF34334F287 for ; Thu, 23 Apr 2020 17:50:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0AAAC1EF for ; Thu, 23 Apr 2020 17:50:46 +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: <1587664242.79486c88f6819eb1f0ba8b83c3f93c7a1946461d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/minimock/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/minimock/minimock-1.2.8-r1.ebuild X-VCS-Directories: dev-python/minimock/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 79486c88f6819eb1f0ba8b83c3f93c7a1946461d X-VCS-Branch: master Date: Thu, 23 Apr 2020 17:50:46 +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: e9f19a44-72d4-4837-b75a-43bd84bf60b0 X-Archives-Hash: a2368c6002314e580fdbf06301bf79ca commit: 79486c88f6819eb1f0ba8b83c3f93c7a1946461d Author: Michał Górny gentoo org> AuthorDate: Thu Apr 23 17:45:26 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Apr 23 17:50:42 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79486c88 dev-python/minimock: Enable py3.{7,8} Signed-off-by: Michał Górny gentoo.org> dev-python/minimock/minimock-1.2.8-r1.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/dev-python/minimock/minimock-1.2.8-r1.ebuild b/dev-python/minimock/minimock-1.2.8-r1.ebuild index f955df25ddb..6d973164842 100644 --- a/dev-python/minimock/minimock-1.2.8-r1.ebuild +++ b/dev-python/minimock/minimock-1.2.8-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -PYTHON_COMPAT=( python3_6 ) +EAPI=7 +PYTHON_COMPAT=( python3_{6,7,8} ) inherit distutils-r1 @@ -12,15 +12,14 @@ MY_P="${MY_PN}-${PV}" DESCRIPTION="The simplest possible mock library" HOMEPAGE="https://pypi.org/project/MiniMock/" SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" LICENSE="MIT" SLOT="0" KEYWORDS="amd64 arm ppc x86" -S="${WORKDIR}/${MY_P}" - DOCS=( docs/changelog.rst docs/index.rst ) python_test() { - "${PYTHON}" -m doctest minimock.py || die "Tests fail with ${EPYTHON}" + "${PYTHON}" -m doctest -v minimock.py || die "Tests fail with ${EPYTHON}" }