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 4A1C6138334 for ; Mon, 18 Jun 2018 20:57:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3EA50E0932; Mon, 18 Jun 2018 20:57:32 +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 0E9C5E0932 for ; Mon, 18 Jun 2018 20:57:31 +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 853AE335C7F for ; Mon, 18 Jun 2018 20:57:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A50B22C2 for ; Mon, 18 Jun 2018 20:57:27 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1529355311.b48847a629594c45b2a4140b2c074f318e8c728f.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pygal/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pygal/pygal-2.4.0.ebuild X-VCS-Directories: dev-python/pygal/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: b48847a629594c45b2a4140b2c074f318e8c728f X-VCS-Branch: master Date: Mon, 18 Jun 2018 20:57:27 +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-Archives-Salt: c8e9662e-65f6-439a-a2b8-37677c97d681 X-Archives-Hash: d72fe94a78d18388ce9e521a1b737480 commit: b48847a629594c45b2a4140b2c074f318e8c728f Author: Louis Sautier gentoo org> AuthorDate: Mon Jun 18 20:45:45 2018 +0000 Commit: Louis Sautier gentoo org> CommitDate: Mon Jun 18 20:55:11 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b48847a6 dev-python/pygal: fix build when pytest-runner isn't installed Closes: https://bugs.gentoo.org/658420 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-python/pygal/pygal-2.4.0.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-python/pygal/pygal-2.4.0.ebuild b/dev-python/pygal/pygal-2.4.0.ebuild index 43ff035e62b..2a15528e4bb 100644 --- a/dev-python/pygal/pygal-2.4.0.ebuild +++ b/dev-python/pygal/pygal-2.4.0.ebuild @@ -38,6 +38,8 @@ DOCS=( docs/changelog.rst README.md ) python_prepare_all() { sed -i "/sphinx.ext.intersphinx/d" docs/conf.py || die + # Not actually required unless we want to do setup.py test + sed -i "s/'pytest-runner'\(,\)\?//" setup.py || die distutils-r1_python_prepare_all }