From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6F88259CA9 for ; Sat, 26 Mar 2016 19:55:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9DB3E087A; Sat, 26 Mar 2016 19:55:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 65EB0E087A for ; Sat, 26 Mar 2016 19:55:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 02BD9340B65 for ; Sat, 26 Mar 2016 19:55:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EBC94201 for ; Sat, 26 Mar 2016 19:55:17 +0000 (UTC) From: "Tiziano Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tiziano Müller" Message-ID: <1459022110.a1e81d64b20c2ed00ad41abe8d507a6e4a4c1ea1.dev-zero@gentoo> Subject: [gentoo-commits] dev/dev-zero:master commit in: dev-python/guessit/ X-VCS-Repository: dev/dev-zero X-VCS-Files: dev-python/guessit/guessit-1.0.3.ebuild X-VCS-Directories: dev-python/guessit/ X-VCS-Committer: dev-zero X-VCS-Committer-Name: Tiziano Müller X-VCS-Revision: a1e81d64b20c2ed00ad41abe8d507a6e4a4c1ea1 X-VCS-Branch: master Date: Sat, 26 Mar 2016 19:55:17 +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: d9fd4892-db93-4d6c-93df-7d3fe00f8f40 X-Archives-Hash: 8840dae0fbca36c7992d27d55f4d2d8c commit: a1e81d64b20c2ed00ad41abe8d507a6e4a4c1ea1 Author: Tiziano Müller gentoo org> AuthorDate: Sat Mar 26 19:55:10 2016 +0000 Commit: Tiziano Müller gentoo org> CommitDate: Sat Mar 26 19:55:10 2016 +0000 URL: https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=a1e81d64 dev-python/guessit: remove requirement for pytest-runner dev-python/guessit/guessit-1.0.3.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-python/guessit/guessit-1.0.3.ebuild b/dev-python/guessit/guessit-1.0.3.ebuild index 0bc5611..a4728ee 100644 --- a/dev-python/guessit/guessit-1.0.3.ebuild +++ b/dev-python/guessit/guessit-1.0.3.ebuild @@ -36,6 +36,9 @@ python_prepare_all() { rm guessit/test/test_benchmark.py || die sed -i -e "s|'pytest-benchmark', ||" setup.py || die + # remove the pytest-runner requirement for normal installation + sed -i -e '/setup_requires/d' setup.py || die + distutils-r1_python_prepare_all }