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 410101384B4 for ; Thu, 3 Dec 2015 14:35:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C911E088C; Thu, 3 Dec 2015 14:35:50 +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 D9A76E088C for ; Thu, 3 Dec 2015 14:35:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6B8D7340B0B for ; Thu, 3 Dec 2015 14:35:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 64097C7D for ; Thu, 3 Dec 2015 14:35:45 +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: <1449153157.543f2ded7017202ede749b7716fcedd54b1af584.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinxcontrib-programoutput/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sphinxcontrib-programoutput/metadata.xml dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild X-VCS-Directories: dev-python/sphinxcontrib-programoutput/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 543f2ded7017202ede749b7716fcedd54b1af584 X-VCS-Branch: master Date: Thu, 3 Dec 2015 14:35:45 +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: 196f2b4a-a3c4-4be6-9712-45b130731f63 X-Archives-Hash: 7f9c8cb14cb037f5f607c4a6d3a98226 commit: 543f2ded7017202ede749b7716fcedd54b1af584 Author: Justin Lecher gentoo org> AuthorDate: Thu Dec 3 14:32:37 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Dec 3 14:32:37 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=543f2ded dev-python/sphinxcontrib-programoutput: Add python3.5 support Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=567456 Package-Manager: portage-2.2.25 Signed-off-by: Justin Lecher gentoo.org> dev-python/sphinxcontrib-programoutput/metadata.xml | 10 +++++----- .../sphinxcontrib-programoutput-0.8.ebuild | 7 ++++--- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/dev-python/sphinxcontrib-programoutput/metadata.xml b/dev-python/sphinxcontrib-programoutput/metadata.xml index 16650ea..e3954e3 100644 --- a/dev-python/sphinxcontrib-programoutput/metadata.xml +++ b/dev-python/sphinxcontrib-programoutput/metadata.xml @@ -1,13 +1,13 @@ -python - + python + A Sphinx extension to literally insert the output of arbitrary commands into documents, helping you to keep your command examples up to date. - - sphinxcontrib-programoutput - + + sphinxcontrib-programoutput + diff --git a/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild b/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild index 96543ce..a8280b6 100644 --- a/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild +++ b/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.8.ebuild @@ -3,7 +3,8 @@ # $Id$ EAPI=5 -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy ) inherit distutils-r1 @@ -30,10 +31,10 @@ python_compile_all() { } python_test() { - py.test || die + py.test -v -v || die } python_install_all() { - use doc && local HTML_DOCS=( doc/_build/html ) + use doc && local HTML_DOCS=( doc/_build/html/. ) distutils-r1_python_install_all }