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 05A67198005 for ; Sat, 23 Mar 2013 11:53:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8D941E0429; Sat, 23 Mar 2013 11:53:25 +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 10F5BE0429 for ; Sat, 23 Mar 2013 11:53:24 +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 E8C7933D3DC for ; Sat, 23 Mar 2013 11:53:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 617DCE4073 for ; Sat, 23 Mar 2013 11:53:22 +0000 (UTC) From: "Alexey Shvetsov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexey Shvetsov" Message-ID: <1364039584.79657931c589cf1030670f45ff481578756fbbf7.alexxy@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/GromacsWrapper/ X-VCS-Repository: proj/sci X-VCS-Files: sci-chemistry/GromacsWrapper/ChangeLog sci-chemistry/GromacsWrapper/GromacsWrapper-0.3.1.ebuild sci-chemistry/GromacsWrapper/GromacsWrapper-9999.ebuild sci-chemistry/GromacsWrapper/metadata.xml X-VCS-Directories: sci-chemistry/GromacsWrapper/ X-VCS-Committer: alexxy X-VCS-Committer-Name: Alexey Shvetsov X-VCS-Revision: 79657931c589cf1030670f45ff481578756fbbf7 X-VCS-Branch: master Date: Sat, 23 Mar 2013 11:53:22 +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: 668bf0a2-c49c-4889-b1a6-d4b37111701b X-Archives-Hash: 22b0a467dcf4ad936212f176ed589f7a commit: 79657931c589cf1030670f45ff481578756fbbf7 Author: Alexey Shvetsov gentoo org> AuthorDate: Sat Mar 23 11:53:04 2013 +0000 Commit: Alexey Shvetsov gentoo org> CommitDate: Sat Mar 23 11:53:04 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=79657931 Add Gromacs Python wrapper Package-Manager: portage-2.2.0_alpha169 --- sci-chemistry/GromacsWrapper/ChangeLog | 10 +++++ .../GromacsWrapper/GromacsWrapper-0.3.1.ebuild | 35 +++++++++++++++++++ .../GromacsWrapper/GromacsWrapper-9999.ebuild | 36 ++++++++++++++++++++ sci-chemistry/GromacsWrapper/metadata.xml | 9 +++++ 4 files changed, 90 insertions(+), 0 deletions(-) diff --git a/sci-chemistry/GromacsWrapper/ChangeLog b/sci-chemistry/GromacsWrapper/ChangeLog new file mode 100644 index 0000000..d7ba1d0 --- /dev/null +++ b/sci-chemistry/GromacsWrapper/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for sci-chemistry/GromacsWrapper +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + +*GromacsWrapper-0.3.1 (23 Mar 2013) +*GromacsWrapper-9999 (23 Mar 2013) + + 23 Mar 2013; Alexey Shvetsov +GromacsWrapper-0.3.1.ebuild, + +GromacsWrapper-9999.ebuild, +metadata.xml: + Add Gromacs Python wrapper diff --git a/sci-chemistry/GromacsWrapper/GromacsWrapper-0.3.1.ebuild b/sci-chemistry/GromacsWrapper/GromacsWrapper-0.3.1.ebuild new file mode 100644 index 0000000..a49da8e --- /dev/null +++ b/sci-chemistry/GromacsWrapper/GromacsWrapper-0.3.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_5,2_6,2_7} ) + +if [[ $PV = *9999* ]]; then + scm_eclass=git-2 + EGIT_REPO_URI=" + git://github.com/orbeckst/${PN}.git + https://github.com/orbeckst/${PN}.git" + SRC_URI="" + KEYWORDS="" +else + scm_eclass=vcs-snapshot + SRC_URI="https://github.com/orbeckst/${PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +inherit eutils distutils-r1 ${scm_eclass} + +DESCRIPTION="GromacsWrapper - a python framework for Gromacs" +HOMEPAGE="http://orbeckst.github.com/GromacsWrapper/" +LICENSE="GPL-3 LGPL-3" +SLOT="0" +IUSE="" + +DEPEND=" + >=dev-python/matplotlib-0.91.3 + >=dev-python/RecSQL-0.3 + >=sci-libs/scipy-0.9 + " +RDEPEND="${DEPEND}" diff --git a/sci-chemistry/GromacsWrapper/GromacsWrapper-9999.ebuild b/sci-chemistry/GromacsWrapper/GromacsWrapper-9999.ebuild new file mode 100644 index 0000000..735a559 --- /dev/null +++ b/sci-chemistry/GromacsWrapper/GromacsWrapper-9999.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_5,2_6,2_7} ) + +if [[ $PV = *9999* ]]; then + scm_eclass=git-2 + EGIT_REPO_URI=" + git://github.com/orbeckst/${PN}.git + https://github.com/orbeckst/${PN}.git" + EGIT_BRANCH="develop" + SRC_URI="" + KEYWORDS="" +else + scm_eclass=vcs-snapshot + SRC_URI="https://github.com/orbeckst/${PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +inherit eutils distutils-r1 ${scm_eclass} + +DESCRIPTION="GromacsWrapper - a python framework for Gromacs" +HOMEPAGE="http://orbeckst.github.com/GromacsWrapper/" +LICENSE="GPL-3 LGPL-3" +SLOT="0" +IUSE="" + +DEPEND=" + >=dev-python/matplotlib-0.91.3 + >=dev-python/RecSQL-0.3 + >=sci-libs/scipy-0.9 + " +RDEPEND="${DEPEND}" diff --git a/sci-chemistry/GromacsWrapper/metadata.xml b/sci-chemistry/GromacsWrapper/metadata.xml new file mode 100644 index 0000000..fe31728 --- /dev/null +++ b/sci-chemistry/GromacsWrapper/metadata.xml @@ -0,0 +1,9 @@ + + + + sci + + alexxy@gentoo.org + Alexey Shvetsov + +