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 32A24139694 for ; Tue, 16 May 2017 11:10:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E371CE0CCB; Tue, 16 May 2017 11:10:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C0CE3E0CCB for ; Tue, 16 May 2017 11:10:32 +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 2DB433416A5 for ; Tue, 16 May 2017 11:10:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 910207449 for ; Tue, 16 May 2017 11:10:29 +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: <1494933010.3c87337c02b8d0ca6c35d079005c50f7d707b554.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jsonref/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jsonref/jsonref-0.1.ebuild X-VCS-Directories: dev-python/jsonref/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 3c87337c02b8d0ca6c35d079005c50f7d707b554 X-VCS-Branch: master Date: Tue, 16 May 2017 11:10:29 +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: 27d434f6-6cab-4641-9408-231c8170c2e5 X-Archives-Hash: fa5e4c1ec4c279652931ea5ca539a688 commit: 3c87337c02b8d0ca6c35d079005c50f7d707b554 Author: Manuel Rüger gentoo org> AuthorDate: Tue May 16 11:10:10 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Tue May 16 11:10:10 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c87337c dev-python/jsonref: Add python3_6, add tests Package-Manager: Portage-2.3.5, Repoman-2.3.2 dev-python/jsonref/jsonref-0.1.ebuild | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/dev-python/jsonref/jsonref-0.1.ebuild b/dev-python/jsonref/jsonref-0.1.ebuild index 47c7cf272c5..b065699eaea 100644 --- a/dev-python/jsonref/jsonref-0.1.ebuild +++ b/dev-python/jsonref/jsonref-0.1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 -PYTHON_COMPAT=( python2_7 python3_{4,5} pypy) +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy) inherit eutils distutils-r1 @@ -13,7 +13,10 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" -IUSE="" +IUSE="test" -DEPEND="" -RDEPEND="${DEPEND}" +DEPEND="test? ( dev-python/pytest[${PYTHON_USEDEP}] )" + +python_test() { + py.test tests.py || die +}