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 D5127139693 for ; Fri, 7 Aug 2015 19:13:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 16652E084B; Fri, 7 Aug 2015 19:13:28 +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 96270E084B for ; Fri, 7 Aug 2015 19:13:27 +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 84A66340B46 for ; Fri, 7 Aug 2015 19:13:26 +0000 (UTC) Received: by oystercatcher.gentoo.org (Postfix, from userid 2274) id 101C5122; Fri, 7 Aug 2015 19:13:23 +0000 (UTC) From: "Tim Harder (radhermit)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, radhermit@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/pkgcore: ChangeLog pkgcore-9999.ebuild X-VCS-Repository: gentoo-x86 X-VCS-Files: ChangeLog pkgcore-9999.ebuild X-VCS-Directories: sys-apps/pkgcore X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20150807191323.101C5122@oystercatcher.gentoo.org> Date: Fri, 7 Aug 2015 19:13:23 +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: 97ad05de-117f-4b5b-9b43-26ebd6397e98 X-Archives-Hash: 21026260d7edae9727774c1d069a9d23 radhermit 15/08/07 19:13:23 Modified: ChangeLog pkgcore-9999.ebuild Log: Conditionalize sphinx build dep. (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 4F064CA3) Revision Changes Path 1.195 sys-apps/pkgcore/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pkgcore/ChangeLog?rev=1.195&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pkgcore/ChangeLog?rev=1.195&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pkgcore/ChangeLog?r1=1.194&r2=1.195 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/ChangeLog,v retrieving revision 1.194 retrieving revision 1.195 diff -u -r1.194 -r1.195 --- ChangeLog 3 Aug 2015 06:07:42 -0000 1.194 +++ ChangeLog 7 Aug 2015 19:13:22 -0000 1.195 @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/pkgcore # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/ChangeLog,v 1.194 2015/08/03 06:07:42 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/ChangeLog,v 1.195 2015/08/07 19:13:22 radhermit Exp $ + + 07 Aug 2015; Tim Harder pkgcore-9999.ebuild: + Conditionalize sphinx build dep. 03 Aug 2015; Tim Harder pkgcore-9999.ebuild: Update docs build command. 1.31 sys-apps/pkgcore/pkgcore-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pkgcore/pkgcore-9999.ebuild?rev=1.31&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pkgcore/pkgcore-9999.ebuild?rev=1.31&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pkgcore/pkgcore-9999.ebuild?r1=1.30&r2=1.31 Index: pkgcore-9999.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/pkgcore-9999.ebuild,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- pkgcore-9999.ebuild 3 Aug 2015 06:07:42 -0000 1.30 +++ pkgcore-9999.ebuild 7 Aug 2015 19:13:22 -0000 1.31 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/pkgcore-9999.ebuild,v 1.30 2015/08/03 06:07:42 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/pkgcore-9999.ebuild,v 1.31 2015/08/07 19:13:22 radhermit Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) @@ -21,11 +21,16 @@ SLOT="0" IUSE="doc test" +if [[ ${PV} == *9999 ]] ; then + SPHINX="dev-python/sphinx[${PYTHON_USEDEP}]" +else + SPHINX="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" +fi RDEPEND="=dev-python/snakeoil-9999[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} + ${SPHINX} dev-python/setuptools[${PYTHON_USEDEP}] dev-python/pyparsing[${PYTHON_USEDEP}] - dev-python/sphinx[${PYTHON_USEDEP}] test? ( $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7) ) "