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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0B40215808B for ; Tue, 15 Feb 2022 09:39:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EAE00E085B; Tue, 15 Feb 2022 09:39:15 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D00FFE085B for ; Tue, 15 Feb 2022 09:39:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ED119342FDB for ; Tue, 15 Feb 2022 09:39:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 669A62DB for ; Tue, 15 Feb 2022 09:39:13 +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: <1644917945.493068a48f34deb7a8cf599ae358d8330c4d27fb.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/github3/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/github3/github3-3.1.0.ebuild X-VCS-Directories: dev-python/github3/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 493068a48f34deb7a8cf599ae358d8330c4d27fb X-VCS-Branch: master Date: Tue, 15 Feb 2022 09:39:13 +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: 3601fb2d-a0fd-4214-91c3-356241da2550 X-Archives-Hash: 3aea6c30d728d569e3f2a93ccb198fe6 commit: 493068a48f34deb7a8cf599ae358d8330c4d27fb Author: Michał Górny gentoo org> AuthorDate: Tue Feb 15 09:14:40 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Feb 15 09:39:05 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=493068a4 dev-python/github3: Strip implicit pytest-xdist use Closes: https://bugs.gentoo.org/833380 Signed-off-by: Michał Górny gentoo.org> dev-python/github3/github3-3.1.0.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-python/github3/github3-3.1.0.ebuild b/dev-python/github3/github3-3.1.0.ebuild index 85f08b1503d1..6a9122cb9366 100644 --- a/dev-python/github3/github3-3.1.0.ebuild +++ b/dev-python/github3/github3-3.1.0.ebuild @@ -34,3 +34,8 @@ BDEPEND=" )" distutils_enable_tests pytest + +src_prepare() { + sed -i -e '/addopts/d' tox.ini || die + distutils-r1_src_prepare +}