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 AFD2213888F for ; Sat, 10 Oct 2015 14:25:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B76CE079B; Sat, 10 Oct 2015 14:24:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0185AE079B for ; Sat, 10 Oct 2015 14:24:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D3570340680 for ; Sat, 10 Oct 2015 14:24:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 37D0327A for ; Sat, 10 Oct 2015 14:24:54 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1444487079.90ba1563a20923d2924805c941a7d4b5a8f92942.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/lz4/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/lz4/lz4-0.7.0.ebuild X-VCS-Directories: dev-python/lz4/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 90ba1563a20923d2924805c941a7d4b5a8f92942 X-VCS-Branch: master Date: Sat, 10 Oct 2015 14:24:54 +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: 832580fa-81ad-4175-bd58-8b967b8d3a4d X-Archives-Hash: 7cfd7cf42c0cde04830d3d4092b93c11 commit: 90ba1563a20923d2924805c941a7d4b5a8f92942 Author: Justin Lecher gentoo org> AuthorDate: Sat Oct 10 14:24:39 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Oct 10 14:24:39 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90ba1563 dev-python/lz4: Fix installation without dev-python/nose installed Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=562448 Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> dev-python/lz4/lz4-0.7.0.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dev-python/lz4/lz4-0.7.0.ebuild b/dev-python/lz4/lz4-0.7.0.ebuild index 5e4d293..c706375 100644 --- a/dev-python/lz4/lz4-0.7.0.ebuild +++ b/dev-python/lz4/lz4-0.7.0.ebuild @@ -20,3 +20,10 @@ RDEPEND="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" # Tests still excluded by upstream + +python_prepare_all() { + sed \ + -e '/nose/s:setup_requires:test_requires:g' \ + -i setup.py || die + distutils-r1_python_prepare_all +}