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 A02C01381F3 for ; Fri, 5 Apr 2013 18:17:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 322F1E0930; Fri, 5 Apr 2013 18:17:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ADCF0E0930 for ; Fri, 5 Apr 2013 18:17:22 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AB70933DDDE for ; Fri, 5 Apr 2013 18:17:21 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2304) id 78A3A2171D; Fri, 5 Apr 2013 18:17:20 +0000 (UTC) From: "Mike Gilbert (floppym)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, floppym@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-python/encore: encore-0.3.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: encore-0.3.ebuild ChangeLog X-VCS-Directories: dev-python/encore X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130405181720.78A3A2171D@flycatcher.gentoo.org> Date: Fri, 5 Apr 2013 18:17:20 +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: 8fb44f51-39e7-4026-973e-d31f5ca92101 X-Archives-Hash: 9c094a7254681f4421f9e5d5ef46e756 floppym 13/04/05 18:17:20 Modified: encore-0.3.ebuild ChangeLog Log: Cleanup ebuild. Add missing deps for setuptools and nose. (Portage version: 2.2.0_alpha171/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4) Revision Changes Path 1.2 dev-python/encore/encore-0.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/encore/encore-0.3.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/encore/encore-0.3.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/encore/encore-0.3.ebuild?r1=1.1&r2=1.2 Index: encore-0.3.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/encore/encore-0.3.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- encore-0.3.ebuild 5 Apr 2013 14:19:00 -0000 1.1 +++ encore-0.3.ebuild 5 Apr 2013 18:17:20 -0000 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/encore/encore-0.3.ebuild,v 1.1 2013/04/05 14:19:00 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/encore/encore-0.3.ebuild,v 1.2 2013/04/05 18:17:20 floppym Exp $ EAPI=5 @@ -18,30 +18,31 @@ IUSE="doc examples test" RDEPEND="" -DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( dev-python/futures[${PYTHON_USEDEP}] )" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) + test? ( + dev-python/futures[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + )" -DOCS="dataflow.txt" - -python_prepare_all() { - # use of port 8080 is highly prone to prior use on testing - sed -e 's:self.port = 8080:self.port = 8020:' \ - -i encore/storage/tests/static_url_store_test.py || die -} +DOCS=( dataflow.txt ) python_compile_all() { - use doc && PYTHONPATH="$(ls -1d ${S}/build*/lib | head -n1)" \ - emake -C docs html + use doc && emake -C docs html } python_test() { - # as set for py2.6 in 0.2, likely due to tests coded to import only unittest - [[ "${EPYTHON:6:3}" = '2.6' ]] && return + if [[ ${EPYTHON} == python2.6 ]]; then + ewarn "Tests disabled for ${EPYTHON}" + return 0 + fi nosetests || die } python_install_all() { - find -name "*LICENSE*.txt" -delete + distutils-r1_python_install_all + use doc && dohtml -r docs/build/html/* if use examples; then 1.3 dev-python/encore/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/encore/ChangeLog?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/encore/ChangeLog?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/encore/ChangeLog?r1=1.2&r2=1.3 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/encore/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ChangeLog 5 Apr 2013 14:19:00 -0000 1.2 +++ ChangeLog 5 Apr 2013 18:17:20 -0000 1.3 @@ -1,6 +1,9 @@ # ChangeLog for dev-python/encore # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/encore/ChangeLog,v 1.2 2013/04/05 14:19:00 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/encore/ChangeLog,v 1.3 2013/04/05 18:17:20 floppym Exp $ + + 05 Apr 2013; Mike Gilbert encore-0.3.ebuild: + Cleanup ebuild. Add missing deps for setuptools and nose. *encore-0.3 (05 Apr 2013)