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 8EFD81381F4 for ; Mon, 10 Dec 2012 14:47:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7532EE073C; Mon, 10 Dec 2012 14:47:28 +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 A898EE073B for ; Mon, 10 Dec 2012 14:47:27 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B537933DAB0 for ; Mon, 10 Dec 2012 14:47:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 3BEC0E543C for ; Mon, 10 Dec 2012 14:47:24 +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: <1354806527.1c5ad54b018856438e47f3609f8a6ebff3b80cf0.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/pybrain/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/pybrain/pybrain-9999.ebuild X-VCS-Directories: sci-biology/pybrain/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 1c5ad54b018856438e47f3609f8a6ebff3b80cf0 X-VCS-Branch: master Date: Mon, 10 Dec 2012 14:47:24 +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: fb6e7c92-1188-44b1-b068-abacb0a8e6d8 X-Archives-Hash: c599e18452f61f56af102c508b5baaf7 commit: 1c5ad54b018856438e47f3609f8a6ebff3b80cf0 Author: TheChymera mail ru> AuthorDate: Thu Dec 6 15:08:47 2012 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Dec 6 15:08:47 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=1c5ad54b Added live ebuild for pybrain --- sci-biology/pybrain/pybrain-9999.ebuild | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) diff --git a/sci-biology/pybrain/pybrain-9999.ebuild b/sci-biology/pybrain/pybrain-9999.ebuild new file mode 100644 index 0000000..c8908f4 --- /dev/null +++ b/sci-biology/pybrain/pybrain-9999.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="4" + +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.* *-jython *-pypy-*" +DISTUTILS_SRC_TEST="py.test" + +inherit eutils distutils git-2 + +DESCRIPTION="The Python Machine Learning Library" +HOMEPAGE="http://pybrain.org/" +EGIT_REPO_URI="git://github.com/pybrain/pybrain.git" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND="sci-libs/scipy" + +DEPEND="dev-python/setuptools + test? ( ${RDEPEND} )"