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 37403138AD0 for ; Fri, 23 Jan 2015 11:48:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 73BE3E088A; Fri, 23 Jan 2015 11:48:29 +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 966E9E0891 for ; Fri, 23 Jan 2015 11:48:28 +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 B6A9B34069A for ; Fri, 23 Jan 2015 11:48:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74D1610320 for ; Fri, 23 Jan 2015 11:48:26 +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: <1421792121.ec52b3493b46fe3e2e0af384ed370af95628328a.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/matlab_wrapper/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/matlab_wrapper/ChangeLog dev-python/matlab_wrapper/matlab_wrapper-0.9.6.ebuild dev-python/matlab_wrapper/matlab_wrapper-9999.ebuild dev-python/matlab_wrapper/metadata.xml X-VCS-Directories: dev-python/matlab_wrapper/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: ec52b3493b46fe3e2e0af384ed370af95628328a X-VCS-Branch: master Date: Fri, 23 Jan 2015 11:48:26 +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: e9de0e52-25ef-471b-9f4d-1ef6cd17cf2d X-Archives-Hash: 68a920bc34a2528fb2d5570cbe1c4e05 commit: ec52b3493b46fe3e2e0af384ed370af95628328a Author: Marius Brehler linux sungazer de> AuthorDate: Tue Jan 20 22:15:21 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Tue Jan 20 22:15:21 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=ec52b349 dev-python/matlab_wrapper: Add to overlay --- dev-python/matlab_wrapper/ChangeLog | 9 ++++++++ .../matlab_wrapper/matlab_wrapper-0.9.6.ebuild | 1 + .../matlab_wrapper/matlab_wrapper-9999.ebuild | 25 ++++++++++++++++++++++ dev-python/matlab_wrapper/metadata.xml | 16 ++++++++++++++ 4 files changed, 51 insertions(+) diff --git a/dev-python/matlab_wrapper/ChangeLog b/dev-python/matlab_wrapper/ChangeLog new file mode 100644 index 0000000..4787534 --- /dev/null +++ b/dev-python/matlab_wrapper/ChangeLog @@ -0,0 +1,9 @@ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + +*matlab_wrapper-9999 (20 Jan 2015) +*matlab_wrapper-0.9.6 (20 Jan 2015) + + 20 Jan 2015; Marius Brehler +metadata.xml, + +matlab_wrapper-9999.ebuild, +matlab_wrapper-0.9.6.ebuild: + Initial commit. diff --git a/dev-python/matlab_wrapper/matlab_wrapper-0.9.6.ebuild b/dev-python/matlab_wrapper/matlab_wrapper-0.9.6.ebuild new file mode 120000 index 0000000..09a5074 --- /dev/null +++ b/dev-python/matlab_wrapper/matlab_wrapper-0.9.6.ebuild @@ -0,0 +1 @@ +matlab_wrapper-9999.ebuild \ No newline at end of file diff --git a/dev-python/matlab_wrapper/matlab_wrapper-9999.ebuild b/dev-python/matlab_wrapper/matlab_wrapper-9999.ebuild new file mode 100644 index 0000000..39ce305 --- /dev/null +++ b/dev-python/matlab_wrapper/matlab_wrapper-9999.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="MATLAB wrapper for Python" +HOMEPAGE="https://github.com/mrkrd/matlab_wrapper" + +if [ ${PV} == "9999" ] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/mrkrd/matlab_wrapper.git git://github.com/mrkrd/matlab_wrapper.git" +else + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND}" diff --git a/dev-python/matlab_wrapper/metadata.xml b/dev-python/matlab_wrapper/metadata.xml new file mode 100644 index 0000000..f24eccb --- /dev/null +++ b/dev-python/matlab_wrapper/metadata.xml @@ -0,0 +1,16 @@ + + + + sci + + marbre@linux.sungazer.de + Marius Brehler + + + matlab_wrapper allows you to use MATLAB in a convenient way in + Python. You can call MATLAB functions and access workspace + variables directly from your Python scripts and interactive + shell. MATLAB session is started in the background and appears + as a regular Python module. + +