commit:     af17e687b7022a5f4727d594ef29c24b983d9dc2
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Sun May 31 09:17:22 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun May 31 09:17:22 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=af17e687

dev-python/meshpy: Version bump; Implement python_test()

Package-Manager: portage-2.2.18

 dev-python/meshpy/ChangeLog            |  7 +++++-
 dev-python/meshpy/meshpy-2014.1.ebuild | 46 ++++++++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+), 1 deletion(-)

diff --git a/dev-python/meshpy/ChangeLog b/dev-python/meshpy/ChangeLog
index 1f223ae..084d36c 100644
--- a/dev-python/meshpy/ChangeLog
+++ b/dev-python/meshpy/ChangeLog
@@ -1,7 +1,12 @@
 # ChangeLog for dev-python/meshpy
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*meshpy-2014.1 (31 May 2015)
+
+  31 May 2015; Marius Brehler <mar...@linux.sungazer.de> +meshpy-2014.1.ebuild:
+  Version bump; Implement python_test()
+
 *meshpy-2013.1.2 (14 Jun 2013)
 
   14 Jun 2013; Justin Lecher <j...@gentoo.org> -meshpy-0.91.2.ebuild,

diff --git a/dev-python/meshpy/meshpy-2014.1.ebuild 
b/dev-python/meshpy/meshpy-2014.1.ebuild
new file mode 100644
index 0000000..9727775
--- /dev/null
+++ b/dev-python/meshpy/meshpy-2014.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python{3_3,3_4} )
+
+inherit distutils-r1
+
+MY_PN="MeshPy"
+
+DESCRIPTION="Quality triangular and tetrahedral mesh generation for Python"
+HOMEPAGE="http://mathema.tician.de/software/meshpy 
http://pypi.python.org/pypi/MeshPy";
+SRC_URI="mirror://pypi/M/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+       dev-libs/boost[python,${PYTHON_USEDEP}]
+       dev-python/numpy[${PYTHON_USEDEP}]
+       dev-python/pytools[${PYTHON_USEDEP}]
+       dev-python/six[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+       dev-python/setuptools[${PYTHON_USEDEP}]
+       test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+python_prepare_all() {
+       sed 's: delay = 10: delay = 1:g' -i aksetup_helper.py || die
+       distutils-r1_python_prepare_all
+}
+
+python_compile() {
+       mkdir "${BUILD_DIR}" || die
+       echo "BOOST_PYTHON_LIBNAME = [\'boost_${EPYTHON}-mt\']">> 
"${BUILD_DIR}"/siteconf.py
+       distutils-r1_python_compile
+}
+
+python_test() {
+       py.test || die
+}

Reply via email to