From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 90EC1139694 for ; Tue, 16 May 2017 13:03:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD601E0CD0; Tue, 16 May 2017 13:03:14 +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 A9DC2E0CD0 for ; Tue, 16 May 2017 13:03:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 99032341693 for ; Tue, 16 May 2017 13:03:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 619B57454 for ; Tue, 16 May 2017 13:03:12 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1494939756.e0579b1f255f4048aa8b63fc7ca0eb4c2aa67031.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/hiro/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/hiro/hiro-0.2.ebuild X-VCS-Directories: dev-python/hiro/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: e0579b1f255f4048aa8b63fc7ca0eb4c2aa67031 X-VCS-Branch: master Date: Tue, 16 May 2017 13:03:12 +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: a490218a-b6f6-4b41-b2a0-49bbc0310b8a X-Archives-Hash: 06b26b0b98985327612693d0a0f86d6f commit: e0579b1f255f4048aa8b63fc7ca0eb4c2aa67031 Author: Manuel Rüger gentoo org> AuthorDate: Tue May 16 12:54:33 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Tue May 16 13:02:36 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0579b1f dev-python/hiro: Add python3_6 Package-Manager: Portage-2.3.5, Repoman-2.3.2 dev-python/hiro/hiro-0.2.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/dev-python/hiro/hiro-0.2.ebuild b/dev-python/hiro/hiro-0.2.ebuild index 7a46d0e5d23..ec92685fd8a 100644 --- a/dev-python/hiro/hiro-0.2.ebuild +++ b/dev-python/hiro/hiro-0.2.ebuild @@ -3,7 +3,7 @@ EAPI=6 -PYTHON_COMPAT=( python{2_7,3_4,3_5} ) +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) inherit distutils-r1 DESCRIPTION="Time manipulation utilities for python" @@ -13,11 +13,10 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="amd64 x86" +IUSE="test" -RDEPEND=" - dev-python/mock[${PYTHON_USEDEP}] +RDEPEND="dev-python/mock[${PYTHON_USEDEP}] dev-python/six[${PYTHON_USEDEP}]" -DEPEND=" - ${RDEPEND} +DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}]"