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 0C72713888F for ; Thu, 15 Oct 2015 14:41:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 668BD21C050; Thu, 15 Oct 2015 14:41:37 +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 0A40821C04F for ; Thu, 15 Oct 2015 14:41:35 +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 1C97B340BEF for ; Thu, 15 Oct 2015 14:41:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BFA7D10B1 for ; Thu, 15 Oct 2015 14:41:31 +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: <1444920081.55c8acb08e1fee4813fe6901ad9477b7bb95d7ea.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pbr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pbr/pbr-0.11.0.ebuild X-VCS-Directories: dev-python/pbr/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 55c8acb08e1fee4813fe6901ad9477b7bb95d7ea X-VCS-Branch: master Date: Thu, 15 Oct 2015 14:41:31 +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: 439251b9-fbe4-4517-8eb9-6a0d56a8e31a X-Archives-Hash: 39101c3e280a0e823ad755d5984a5763 commit: 55c8acb08e1fee4813fe6901ad9477b7bb95d7ea Author: Justin Lecher gentoo org> AuthorDate: Thu Oct 15 13:35:20 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Oct 15 14:41:21 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55c8acb0 dev-python/pbr: Add python3.5 Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> dev-python/pbr/pbr-0.11.0.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-python/pbr/pbr-0.11.0.ebuild b/dev-python/pbr/pbr-0.11.0.ebuild index 016e3d6..5b8cc65 100644 --- a/dev-python/pbr/pbr-0.11.0.ebuild +++ b/dev-python/pbr/pbr-0.11.0.ebuild @@ -4,7 +4,7 @@ EAPI=5 -PYTHON_COMPAT=( python2_7 python3_{3,4} ) +PYTHON_COMPAT=( python2_7 python3_{3,4,5} ) inherit distutils-r1 @@ -58,6 +58,8 @@ python_prepare_all() { python_test() { # Note; removed tests pass once package is emerged, # it's the suite's design that breaks form, not the tests' intended purpose + einfo "init tests" testr init || die + einfo "Running tests" testr run || die "Testsuite failed under ${EPYTHON}" }