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 08606138A1A for ; Thu, 19 Feb 2015 18:00:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3B0A0E0962; Thu, 19 Feb 2015 18:00:25 +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 105FEE0961 for ; Thu, 19 Feb 2015 18:00:23 +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 E0B243407E8 for ; Thu, 19 Feb 2015 18:00:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 043AE121AD for ; Thu, 19 Feb 2015 18:00:21 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <1424221853.793710fde6c3d193a249b5ab6a943a1c596b6abe.ottxor@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/cnrun/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/cnrun/ChangeLog sci-biology/cnrun/cnrun-2.0.2.ebuild sci-biology/cnrun/metadata.xml X-VCS-Directories: sci-biology/cnrun/ X-VCS-Committer: ottxor X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: 793710fde6c3d193a249b5ab6a943a1c596b6abe X-VCS-Branch: master Date: Thu, 19 Feb 2015 18:00:21 +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: 81838b8b-1d37-4242-a002-aa618abe86fb X-Archives-Hash: 1d2a3b934724ca60cf30b6f6b7e816de commit: 793710fde6c3d193a249b5ab6a943a1c596b6abe Author: Andrei Zavada gmail com> AuthorDate: Wed Feb 18 01:10:53 2015 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Wed Feb 18 01:10:53 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=793710fd initial ebuild for sci-biology/cnrun CNrun is a neuronal network simulator, with these features: * a conductance- and rate-based Hodgkin-Huxley neurons, a Rall and Alpha-Beta synapses; * a 6-5 Runge-Kutta integration method: slow but precise, adjustable; * Poisson, Van der Pol, Colpitts oscillators and interface for external stimulation sources; * NeuroML network topology import/export; * logging state variables, spikes; * implemented as a Lua module, for scripting model behaviour (e.g., to enable plastic processes regulated by model state); * interaction (topology push/pull, async connections) with other cnrun models running elsewhere on a network, with interactions (planned). --- sci-biology/cnrun/ChangeLog | 6 ++++++ sci-biology/cnrun/cnrun-2.0.2.ebuild | 23 +++++++++++++++++++++++ sci-biology/cnrun/metadata.xml | 29 +++++++++++++++++++++++++++++ 3 files changed, 58 insertions(+) diff --git a/sci-biology/cnrun/ChangeLog b/sci-biology/cnrun/ChangeLog new file mode 100644 index 0000000..34e6696 --- /dev/null +++ b/sci-biology/cnrun/ChangeLog @@ -0,0 +1,6 @@ +# ChangeLog for sci-biology/cnrun +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + + 18 Jan 2015; Andrei Zavada cnrun-2.0.2.ebuild: + Initial packaging for gentoo. diff --git a/sci-biology/cnrun/cnrun-2.0.2.ebuild b/sci-biology/cnrun/cnrun-2.0.2.ebuild new file mode 100644 index 0000000..dd02af2 --- /dev/null +++ b/sci-biology/cnrun/cnrun-2.0.2.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="5" + +DESCRIPTION="A NeuroML-enabled, neuronal network simulator w/ conductance- and rate-based HH neurons" +HOMEPAGE="http://johnhommer.com/academic/code/cnrun" +SRC_URI="http://johnhommer.com/academic/code/cnrun/source/${P}.tar.xz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-libs/libxml2 + dev-lang/lua + sci-libs/gsl" + +DEPEND="${RDEPEND}" + +src_configure() { + econf --bindir="${EPREFIX}"/bin +} diff --git a/sci-biology/cnrun/metadata.xml b/sci-biology/cnrun/metadata.xml new file mode 100644 index 0000000..48dcd97 --- /dev/null +++ b/sci-biology/cnrun/metadata.xml @@ -0,0 +1,29 @@ + + + + sci-biology + + johnhommer@gmail.com + Andrei Zavada + + + CNrun is a neuronal network simulator, with these features: + + * a conductance- and rate-based Hodgkin-Huxley neurons, a Rall and + Alpha-Beta synapses; + * a 6-5 Runge-Kutta integration method: slow but precise, adjustable; + * Poisson, Van der Pol, Colpitts oscillators and interface for + external stimulation sources; + * NeuroML network topology import/export; + * logging state variables, spikes; + * implemented as a Lua module, for scripting model behaviour (e.g., + to enable plastic processes regulated by model state); + * interaction (topology push/pull, async connections) with other + cnrun models running elsewhere on a network, with interactions + (planned). + + Note that there is no `cnrun' executable, which existed in cnrun-1.*. + Instead, you write a script for your simulation in Lua, and execute + it as detailed in /usr/share/lua-cnrun/examples/example1.lua. + +