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 1EA6C138334 for ; Tue, 30 Jul 2019 05:40:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 05859E082B; Tue, 30 Jul 2019 05:40:41 +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 DA785E082B for ; Tue, 30 Jul 2019 05:40:40 +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 33CE5348F58 for ; Tue, 30 Jul 2019 05:40:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 91F8B740 for ; Tue, 30 Jul 2019 05:40:37 +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: <1564464549.c6e595bda53b127db52c02f35d7c9784cb99ff2a.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dnspython/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/dnspython/dnspython-1.16.0.ebuild X-VCS-Directories: dev-python/dnspython/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c6e595bda53b127db52c02f35d7c9784cb99ff2a X-VCS-Branch: master Date: Tue, 30 Jul 2019 05:40:37 +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: bcd8fa2b-a330-42f8-b080-1a60488a7e45 X-Archives-Hash: d12b211dfa3e55a95c8bd23c0ed41022 commit: c6e595bda53b127db52c02f35d7c9784cb99ff2a Author: Michał Górny gentoo org> AuthorDate: Tue Jul 30 05:29:09 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jul 30 05:29:09 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6e595bd dev-python/dnspython: EAPI 7 and cleanup Signed-off-by: Michał Górny gentoo.org> dev-python/dnspython/dnspython-1.16.0.ebuild | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/dev-python/dnspython/dnspython-1.16.0.ebuild b/dev-python/dnspython/dnspython-1.16.0.ebuild index 5f23e5d067a..1f8c7e41ec8 100644 --- a/dev-python/dnspython/dnspython-1.16.0.ebuild +++ b/dev-python/dnspython/dnspython-1.16.0.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) @@ -15,6 +15,7 @@ LICENSE="ISC" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris" IUSE="examples test" +RESTRICT="!test? ( test )" RDEPEND="dev-python/pycryptodome[${PYTHON_USEDEP}] >=dev-python/ecdsa-0.13[${PYTHON_USEDEP}] @@ -23,12 +24,9 @@ RDEPEND="dev-python/pycryptodome[${PYTHON_USEDEP}] !dev-python/dnspython:py3" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -# For testsuite -DISTUTILS_IN_SOURCE_BUILD=1 - python_test() { cd tests || die - "${PYTHON}" utest.py || die "tests failed under ${EPYTHON}" + "${EPYTHON}" utest.py || die "tests failed under ${EPYTHON}" einfo "Testsuite passed under ${EPYTHON}" }