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 F2C3E139694 for ; Tue, 16 May 2017 11:45:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 37E03E0CCE; Tue, 16 May 2017 11:45:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 1454BE0CCE for ; Tue, 16 May 2017 11:45: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 08BAF33FE74 for ; Tue, 16 May 2017 11:45:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DB5B07449 for ; Tue, 16 May 2017 11:45:04 +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: <1494935089.c2d7ec3ce5e8fbcc463665eb876d079080388ece.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinx-jinja/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sphinx-jinja/sphinx-jinja-0.2.1.ebuild X-VCS-Directories: dev-python/sphinx-jinja/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: c2d7ec3ce5e8fbcc463665eb876d079080388ece X-VCS-Branch: master Date: Tue, 16 May 2017 11:45:04 +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: 019772e2-b6ef-421d-9816-535aedaba928 X-Archives-Hash: 326e4fdfd4cee88a7f2d196a756cbb4b commit: c2d7ec3ce5e8fbcc463665eb876d079080388ece Author: Manuel Rüger gentoo org> AuthorDate: Tue May 16 11:44:49 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Tue May 16 11:44:49 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2d7ec3c dev-python/sphinx-jinja: Add python3_6, fix python3, add tests Package-Manager: Portage-2.3.5, Repoman-2.3.2 dev-python/sphinx-jinja/sphinx-jinja-0.2.1.ebuild | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/dev-python/sphinx-jinja/sphinx-jinja-0.2.1.ebuild b/dev-python/sphinx-jinja/sphinx-jinja-0.2.1.ebuild index 2acd54612a6..9c388a00c4c 100644 --- a/dev-python/sphinx-jinja/sphinx-jinja-0.2.1.ebuild +++ b/dev-python/sphinx-jinja/sphinx-jinja-0.2.1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -PYTHON_COMPAT=( python2_7 python3_{4,5} ) +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) inherit distutils-r1 @@ -13,11 +13,23 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" -IUSE="" +IUSE="test" -DEPEND=" +RDEPEND=" dev-python/pbr[${PYTHON_USEDEP}] >=dev-python/sphinx-1.0[${PYTHON_USEDEP}] " -RDEPEND="${DEPEND}" +DEPEND="${RDEPEND} + test? ( dev-python/nose[${PYTHON_USEDEP}] + dev-python/sphinx-testing[${PYTHON_USEDEP}] )" + +python_prepare() { + if python_is_python3; then + sed -i -e "s/import urllib/import urllib.request as urllib/" sphinxcontrib/jinja.py || die + fi +} + +python_test() { + nosetests || die +}