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 D5DAB58973 for ; Thu, 4 Feb 2016 14:21:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8368E0853; Thu, 4 Feb 2016 14:21:33 +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 7A6C9E0851 for ; Thu, 4 Feb 2016 14:21:33 +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 4CD80340A42 for ; Thu, 4 Feb 2016 14:21:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DEE9E11D for ; Thu, 4 Feb 2016 14:21:29 +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: <1454595687.537ad06e17cfab70952140d48d61a605218b08b9.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/theano/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/theano/theano-0.6.0.ebuild X-VCS-Directories: dev-python/theano/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 537ad06e17cfab70952140d48d61a605218b08b9 X-VCS-Branch: master Date: Thu, 4 Feb 2016 14:21:29 +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: d1378f39-15e2-484d-babb-4c98d8188065 X-Archives-Hash: 1b5afa860215af4c971fe95cdc9a8987 commit: 537ad06e17cfab70952140d48d61a605218b08b9 Author: Justin Lecher gentoo org> AuthorDate: Thu Feb 4 12:34:57 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Feb 4 14:21:27 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=537ad06e dev-python/theano: Sort global scope and make tests verbose Package-Manager: portage-2.2.27 Signed-off-by: Justin Lecher gentoo.org> dev-python/theano/theano-0.6.0.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/dev-python/theano/theano-0.6.0.ebuild b/dev-python/theano/theano-0.6.0.ebuild index 1483766..23aedb6 100644 --- a/dev-python/theano/theano-0.6.0.ebuild +++ b/dev-python/theano/theano-0.6.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -13,13 +13,12 @@ MYP=${MYPN}-$(replace_version_separator 3 '') DESCRIPTION="Python library to define and optimize multi-dimensional arrays mathematical expressions" HOMEPAGE="https://github.com/Theano/Theano" -LICENSE="BSD" - SRC_URI="mirror://pypi/${MYPN:0:1}/${MYPN}/${MYP}.tar.gz" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" SLOT="0" +LICENSE="BSD" IUSE="test" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" RDEPEND="sci-libs/scipy[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} @@ -29,5 +28,5 @@ DEPEND="${RDEPEND} S="${WORKDIR}/${MYP}" python_test() { - nosetests || die + nosetests --verbosity=3 || die }