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 CAFA8139694 for ; Tue, 16 May 2017 12:22:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 07EBDE0CFD; Tue, 16 May 2017 12:22:09 +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 D6921E0CFD for ; Tue, 16 May 2017 12:22:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 B2FDF3416C4 for ; Tue, 16 May 2017 12:22:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 24CC67454 for ; Tue, 16 May 2017 12:22:06 +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: <1494937180.4589fde5d47b16d0f86f5c7f0b18c8a5defd6dfa.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyaes/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyaes/pyaes-1.6.0.ebuild X-VCS-Directories: dev-python/pyaes/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 4589fde5d47b16d0f86f5c7f0b18c8a5defd6dfa X-VCS-Branch: master Date: Tue, 16 May 2017 12:22: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: 84e63e10-c7f0-4a69-adb9-85eb5fcc7edf X-Archives-Hash: 3c75c58b0a169632769fd9258ab281e6 commit: 4589fde5d47b16d0f86f5c7f0b18c8a5defd6dfa Author: Manuel Rüger gentoo org> AuthorDate: Tue May 16 12:19:40 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Tue May 16 12:19:40 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4589fde5 dev-python/pyaes: Add python3_6, add tests Package-Manager: Portage-2.3.5, Repoman-2.3.2 dev-python/pyaes/pyaes-1.6.0.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-python/pyaes/pyaes-1.6.0.ebuild b/dev-python/pyaes/pyaes-1.6.0.ebuild index 39724be2a32..839a967746d 100644 --- a/dev-python/pyaes/pyaes-1.6.0.ebuild +++ b/dev-python/pyaes/pyaes-1.6.0.ebuild @@ -3,7 +3,7 @@ EAPI=6 -PYTHON_COMPAT=( python2_7 python3_{4,5} ) +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) inherit distutils-r1 @@ -16,4 +16,8 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -DEPENDS="dev-python/setuptools" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + ${EPYTHON} tests/test-{aes,blockfeeder,util}.py || die +}