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 4A572138C9D for ; Wed, 3 Jun 2015 10:21:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 642F4E0884; Wed, 3 Jun 2015 10:21:40 +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 6AB80E087A for ; Wed, 3 Jun 2015 10:21:39 +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 C08D8340CD3 for ; Wed, 3 Jun 2015 10:21:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2EE01A28 for ; Wed, 3 Jun 2015 10:21:36 +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: <1433063842.af17e687b7022a5f4727d594ef29c24b983d9dc2.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/meshpy/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/meshpy/ChangeLog dev-python/meshpy/meshpy-2014.1.ebuild X-VCS-Directories: dev-python/meshpy/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: af17e687b7022a5f4727d594ef29c24b983d9dc2 X-VCS-Branch: master Date: Wed, 3 Jun 2015 10:21:36 +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: 984f51d6-0774-447d-af25-bc8c63e016c6 X-Archives-Hash: bf7abb0c770f43905ce100d4ee1f5d9b commit: af17e687b7022a5f4727d594ef29c24b983d9dc2 Author: Marius Brehler linux sungazer de> AuthorDate: Sun May 31 09:17:22 2015 +0000 Commit: Justin Lecher gentoo 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 +meshpy-2014.1.ebuild: + Version bump; Implement python_test() + *meshpy-2013.1.2 (14 Jun 2013) 14 Jun 2013; Justin Lecher -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 +}