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 C9FE11388C2 for ; Wed, 9 Dec 2015 15:10:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F5C721C0A9; Wed, 9 Dec 2015 15:10:32 +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 71B5321C0AB for ; Wed, 9 Dec 2015 15:10:31 +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 1B9F933BEE9 for ; Wed, 9 Dec 2015 15:10:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CA8CEE68 for ; Wed, 9 Dec 2015 15:10:27 +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: <1449673802.dd2a2c8b547eb3aa14b25ae853adcf34c49c2ac4.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/blinker/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/blinker/blinker-1.4.ebuild X-VCS-Directories: dev-python/blinker/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: dd2a2c8b547eb3aa14b25ae853adcf34c49c2ac4 X-VCS-Branch: master Date: Wed, 9 Dec 2015 15:10: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: e00f5258-7339-4ba0-b423-f9fb783635c3 X-Archives-Hash: b469065e855da488bf6d102b2414cdf3 commit: dd2a2c8b547eb3aa14b25ae853adcf34c49c2ac4 Author: Justin Lecher gentoo org> AuthorDate: Wed Dec 9 14:56:04 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Dec 9 15:10:02 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd2a2c8b dev-python/blinker: Add python3.5 support Package-Manager: portage-2.2.26 Signed-off-by: Justin Lecher gentoo.org> dev-python/blinker/blinker-1.4.ebuild | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/dev-python/blinker/blinker-1.4.ebuild b/dev-python/blinker/blinker-1.4.ebuild index 8dd8c8d..72c4bc6 100644 --- a/dev-python/blinker/blinker-1.4.ebuild +++ b/dev-python/blinker/blinker-1.4.ebuild @@ -2,8 +2,9 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI="5" -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy ) inherit distutils-r1 @@ -19,15 +20,10 @@ IUSE="doc test" DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )" python_test() { - nosetests || die "Testing failed with ${EPYTHON}" + nosetests -v || die "Testing failed with ${EPYTHON}" } python_install_all() { + HTML_DOCS=( docs/html/. ) distutils-r1_python_install_all - if use doc; then - pushd docs/html > /dev/null - insinto /usr/share/doc/${PF}/html - doins -r [a-z]* _static - popd > /dev/null - fi }