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 EABB3138334 for ; Fri, 1 Feb 2019 13:20:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17896E07ED; Fri, 1 Feb 2019 13:20:22 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 E3865E07ED for ; Fri, 1 Feb 2019 13:20:20 +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 C187B335D57 for ; Fri, 1 Feb 2019 13:20:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC17E4FA for ; Fri, 1 Feb 2019 13:20:14 +0000 (UTC) From: "Virgil Dupras" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Virgil Dupras" Message-ID: <1549027189.76a26b82ace3351e51ad18e4fcab2d5a96f516a0.vdupras@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/astroid/, dev-python/astroid/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/astroid/astroid-2.1.0.ebuild dev-python/astroid/files/astroid-2.1.0-no-pytest-runner.patch X-VCS-Directories: dev-python/astroid/ dev-python/astroid/files/ X-VCS-Committer: vdupras X-VCS-Committer-Name: Virgil Dupras X-VCS-Revision: 76a26b82ace3351e51ad18e4fcab2d5a96f516a0 X-VCS-Branch: master Date: Fri, 1 Feb 2019 13:20:14 +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: 0cc49af3-9e6b-4394-8986-005d0b543682 X-Archives-Hash: 5be9b1437d769298dada4fc87f1b9cfd commit: 76a26b82ace3351e51ad18e4fcab2d5a96f516a0 Author: Virgil Dupras gentoo org> AuthorDate: Fri Feb 1 13:19:49 2019 +0000 Commit: Virgil Dupras gentoo org> CommitDate: Fri Feb 1 13:19:49 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76a26b82 dev-python/astroid: disable pytest-runner Makes build fail under network sandbox. Closes: https://bugs.gentoo.org/677042 Closes: https://bugs.gentoo.org/672628 Signed-off-by: Virgil Dupras gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-python/astroid/astroid-2.1.0.ebuild | 1 + .../astroid/files/astroid-2.1.0-no-pytest-runner.patch | 12 ++++++++++++ 2 files changed, 13 insertions(+) diff --git a/dev-python/astroid/astroid-2.1.0.ebuild b/dev-python/astroid/astroid-2.1.0.ebuild index b23580f1816..5f03bf78ac6 100644 --- a/dev-python/astroid/astroid-2.1.0.ebuild +++ b/dev-python/astroid/astroid-2.1.0.ebuild @@ -34,6 +34,7 @@ DEPEND=" PATCHES=( "${FILESDIR}/${PN}-2.1.0-fix-tests.patch" + "${FILESDIR}/${PN}-2.1.0-no-pytest-runner.patch" ) python_prepare_all() { diff --git a/dev-python/astroid/files/astroid-2.1.0-no-pytest-runner.patch b/dev-python/astroid/files/astroid-2.1.0-no-pytest-runner.patch new file mode 100644 index 00000000000..94eda172545 --- /dev/null +++ b/dev-python/astroid/files/astroid-2.1.0-no-pytest-runner.patch @@ -0,0 +1,12 @@ +diff --git a/setup.py b/setup.py +index 2ad90aac..4628a40f 100644 +--- a/setup.py ++++ b/setup.py +@@ -42,7 +42,6 @@ def install(): + install_requires = install_requires, + extras_require=extras_require, + packages=find_packages(exclude=['astroid.tests']) + ['astroid.brain'], +- setup_requires=['pytest-runner'], + test_suite='test', + tests_require=['pytest'], + )