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 448CD138334 for ; Mon, 16 Dec 2019 14:38:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8CB1CE0903; Mon, 16 Dec 2019 14:38:12 +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 68B23E0905 for ; Mon, 16 Dec 2019 14:38:12 +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 685CF34D881 for ; Mon, 16 Dec 2019 14:38:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B5E4198C for ; Mon, 16 Dec 2019 14:38:07 +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: <1576507067.1e389acdf32f581d0b0f40fb91805f18d50dd19f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pydiff/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pydiff/pydiff-0.2-r1.ebuild X-VCS-Directories: dev-python/pydiff/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1e389acdf32f581d0b0f40fb91805f18d50dd19f X-VCS-Branch: master Date: Mon, 16 Dec 2019 14:38:07 +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: 44a4e0d8-29fa-4a2f-9b13-78888759da88 X-Archives-Hash: b0c137bb54d1516c05d8a08424c8164b commit: 1e389acdf32f581d0b0f40fb91805f18d50dd19f Author: Michał Górny gentoo org> AuthorDate: Mon Dec 16 14:12:06 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Dec 16 14:37:47 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e389acd dev-python/pydiff: Set DISTUTILS_USE_SETUPTOOLS Signed-off-by: Michał Górny gentoo.org> dev-python/pydiff/pydiff-0.2-r1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-python/pydiff/pydiff-0.2-r1.ebuild b/dev-python/pydiff/pydiff-0.2-r1.ebuild index ef7201dae57..cae3075b169 100644 --- a/dev-python/pydiff/pydiff-0.2-r1.ebuild +++ b/dev-python/pydiff/pydiff-0.2-r1.ebuild @@ -3,6 +3,7 @@ EAPI=7 +DISTUTILS_USE_SETUPTOOLS=no PYTHON_COMPAT=( python2_7 python3_{5,6,7,8} pypy pypy3 ) inherit distutils-r1 @@ -16,5 +17,5 @@ SLOT="0" KEYWORDS="~amd64 ~arm64 ~x86" python_test() { - "${PYTHON}" test_pydiff.py || die "Tests failed under ${EPYTHON}" + "${EPYTHON}" test_pydiff.py || die "Tests failed under ${EPYTHON}" }