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 B6CD0138334 for ; Mon, 16 Dec 2019 14:38:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8FCB0E0907; Mon, 16 Dec 2019 14:38:12 +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 688F0E0903 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 7D01D34D8A7 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 DB9FA990 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: <1576507069.0c453986bafc57717c6a9c8e1de01350af2ea5b4.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/entrypoints/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/entrypoints/entrypoints-0.3-r1.ebuild X-VCS-Directories: dev-python/entrypoints/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0c453986bafc57717c6a9c8e1de01350af2ea5b4 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: 18bbafae-4b7f-4624-a984-cdef80968d9c X-Archives-Hash: bd3fc09b2e65853b95a2a3498c74efb8 commit: 0c453986bafc57717c6a9c8e1de01350af2ea5b4 Author: Michał Górny gentoo org> AuthorDate: Mon Dec 16 14:17:08 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Dec 16 14:37:49 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c453986 dev-python/entrypoints: Set DISTUTILS_USE_SETUPTOOLS Signed-off-by: Michał Górny gentoo.org> dev-python/entrypoints/entrypoints-0.3-r1.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dev-python/entrypoints/entrypoints-0.3-r1.ebuild b/dev-python/entrypoints/entrypoints-0.3-r1.ebuild index da55a0a7699..2f28407b7f5 100644 --- a/dev-python/entrypoints/entrypoints-0.3-r1.ebuild +++ b/dev-python/entrypoints/entrypoints-0.3-r1.ebuild @@ -3,6 +3,7 @@ EAPI=7 +DISTUTILS_USE_SETUPTOOLS=no PYTHON_COMPAT=( pypy{,3} python{2_7,3_{5,6,7,8}} ) inherit distutils-r1 @@ -15,9 +16,9 @@ LICENSE="BSD" SLOT="0" KEYWORDS="amd64 ~arm arm64 ~ia64 ~sparc ~x86" IUSE="test" +RESTRICT="!test? ( test )" DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] $(python_gen_cond_dep '>=dev-python/configparser-3.5.0[${PYTHON_USEDEP}]' 'python2*') test? ( dev-python/pytest[${PYTHON_USEDEP}] @@ -25,8 +26,6 @@ DEPEND=" ) " -RESTRICT="!test? ( test )" - PATCHES=( "${FILESDIR}/${PN}"-0.2.1-init.py.patch )