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 40C4813888F for ; Wed, 14 Oct 2015 13:51:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E426121C009; Wed, 14 Oct 2015 13:51:07 +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 8370F21C009 for ; Wed, 14 Oct 2015 13:51:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6F35A340928 for ; Wed, 14 Oct 2015 13:51:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6EAA5922 for ; Wed, 14 Oct 2015 13:51:03 +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: <1444830657.373963fd562dbdc17f5647ea170ac1590eb93a76.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinx/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sphinx/sphinx-1.3.1-r1.ebuild dev-python/sphinx/sphinx-1.3.1.ebuild X-VCS-Directories: dev-python/sphinx/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 373963fd562dbdc17f5647ea170ac1590eb93a76 X-VCS-Branch: master Date: Wed, 14 Oct 2015 13:51:03 +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: ecbf6b59-9054-43a9-aec1-8216c1e9867c X-Archives-Hash: 6045795bb74631c947d0fa55007e8c97 commit: 373963fd562dbdc17f5647ea170ac1590eb93a76 Author: Justin Lecher gentoo org> AuthorDate: Wed Oct 14 13:50:57 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Oct 14 13:50:57 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=373963fd dev-python/sphinx: Move dev-python/sphinx_rtd_theme from PDEPEND to RDEPEND Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=561776 Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> .../sphinx/{sphinx-1.3.1.ebuild => sphinx-1.3.1-r1.ebuild} | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-python/sphinx/sphinx-1.3.1.ebuild b/dev-python/sphinx/sphinx-1.3.1-r1.ebuild similarity index 96% rename from dev-python/sphinx/sphinx-1.3.1.ebuild rename to dev-python/sphinx/sphinx-1.3.1-r1.ebuild index 7e9c73e..b241fdd 100644 --- a/dev-python/sphinx/sphinx-1.3.1.ebuild +++ b/dev-python/sphinx/sphinx-1.3.1-r1.ebuild @@ -21,24 +21,24 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~s IUSE="doc latex test" RDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] + =dev-python/alabaster-0.7*[${PYTHON_USEDEP}] >=dev-python/docutils-0.11[${PYTHON_USEDEP}] >=dev-python/jinja-2.3[${PYTHON_USEDEP}] >=dev-python/pygments-2.0.1-r1[${PYTHON_USEDEP}] >=dev-python/six-1.4[${PYTHON_USEDEP}] >=dev-python/Babel-1.3[${PYTHON_USEDEP}] - =dev-python/alabaster-0.7*[${PYTHON_USEDEP}] >=dev-python/snowballstemmer-1.1[${PYTHON_USEDEP}] + dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] latex? ( dev-texlive/texlive-latexextra app-text/dvipng )" -DEPEND="${DEPEND} +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/nose[${PYTHON_USEDEP}] $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7 pypy) )" -PDEPEND="dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]" S="${WORKDIR}/${MY_P}" @@ -60,7 +60,7 @@ python_compile_all() { } python_test() { - mkdir -p "${BUILD_DIR}/sphinx_tempdir" + mkdir -p "${BUILD_DIR}/sphinx_tempdir" || die export SPHINX_TEST_TEMPDIR="${BUILD_DIR}/sphinx_tempdir" cp -r -l tests "${BUILD_DIR}"/ || die