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 C796F1384B4 for ; Thu, 31 Dec 2015 12:55:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8016021C00C; Thu, 31 Dec 2015 12:55:11 +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 1DAA821C00C for ; Thu, 31 Dec 2015 12:55:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3814F33D3CE for ; Thu, 31 Dec 2015 12:55:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 56F2A173 for ; Thu, 31 Dec 2015 12:55:06 +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: <1451566503.a96ccb3412d0312d4e3ea55dd2d25caf63882819.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mock/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/mock/mock-1.3.0-r1.ebuild X-VCS-Directories: dev-python/mock/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: a96ccb3412d0312d4e3ea55dd2d25caf63882819 X-VCS-Branch: master Date: Thu, 31 Dec 2015 12:55:06 +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: cfd61b66-2188-474c-893f-033aebf1b993 X-Archives-Hash: 8ea6ad3d51bc942579683cc5784245b7 commit: a96ccb3412d0312d4e3ea55dd2d25caf63882819 Author: Justin Lecher gentoo org> AuthorDate: Thu Dec 31 12:22:42 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Dec 31 12:55:03 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a96ccb34 dev-python/mock: dev-python/unittest2 is required in all versions Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=570322 Package-Manager: portage-2.2.26 Signed-off-by: Justin Lecher gentoo.org> dev-python/mock/mock-1.3.0-r1.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/dev-python/mock/mock-1.3.0-r1.ebuild b/dev-python/mock/mock-1.3.0-r1.ebuild index 46dc640..5407477 100644 --- a/dev-python/mock/mock-1.3.0-r1.ebuild +++ b/dev-python/mock/mock-1.3.0-r1.ebuild @@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos" -IUSE="doc test" +IUSE="test" CDEPEND=" >=dev-python/pbr-1.3[${PYTHON_USEDEP}] @@ -25,7 +25,7 @@ DEPEND=" test? ( ${CDEPEND} dev-python/nose[${PYTHON_USEDEP}] - $(python_gen_cond_dep '>=dev-python/unittest2-1.1.0[${PYTHON_USEDEP}]' python{2_7,3_3} pypy) + >=dev-python/unittest2-1.1.0[${PYTHON_USEDEP}] )" RDEPEND=" ${CDEPEND} @@ -33,11 +33,10 @@ RDEPEND=" " python_test() { - nosetests || die "tests fail under ${EPYTHON}" + nosetests --verbose || die "tests fail under ${EPYTHON}" } python_install_all() { - use doc && local DOCS=( docs/*.txt ) - + local DOCS=( docs/. ) distutils-r1_python_install_all }