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 36AF11387B1 for ; Wed, 4 Dec 2013 16:23:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BDA6CE0B52; Wed, 4 Dec 2013 16:22:55 +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 3FAF2E0B52 for ; Wed, 4 Dec 2013 16:22:55 +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 07F7D33F414 for ; Wed, 4 Dec 2013 16:22:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 89E09110007 for ; Wed, 4 Dec 2013 16:22:51 +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: <1386173592.2b2b0911e462b932d97529ca3b0203d6e6a3b47e.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-mathematics/dolfin/ X-VCS-Repository: proj/sci X-VCS-Files: sci-mathematics/dolfin/ChangeLog sci-mathematics/dolfin/dolfin-0.9.9.ebuild sci-mathematics/dolfin/metadata.xml X-VCS-Directories: sci-mathematics/dolfin/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 2b2b0911e462b932d97529ca3b0203d6e6a3b47e X-VCS-Branch: master Date: Wed, 4 Dec 2013 16:22:51 +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: 96e466cf-a069-4738-a60d-578ce86644b5 X-Archives-Hash: 88ffcbfd2fe6f1bf498bd0ec87d493f2 commit: 2b2b0911e462b932d97529ca3b0203d6e6a3b47e Author: Justin Lecher gentoo org> AuthorDate: Wed Dec 4 16:13:12 2013 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Dec 4 16:13:12 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=2b2b0911 sci-mathematics/dolfin: Bump EAPI to 5; Bump to python-single-r1 eclass Package-Manager: portage-2.2.7 --- sci-mathematics/dolfin/ChangeLog | 6 +++++- sci-mathematics/dolfin/dolfin-0.9.9.ebuild | 24 ++++++++++++++---------- sci-mathematics/dolfin/metadata.xml | 18 +++++++++--------- 3 files changed, 28 insertions(+), 20 deletions(-) diff --git a/sci-mathematics/dolfin/ChangeLog b/sci-mathematics/dolfin/ChangeLog index b1909e5..980a24a 100644 --- a/sci-mathematics/dolfin/ChangeLog +++ b/sci-mathematics/dolfin/ChangeLog @@ -1,7 +1,11 @@ # ChangeLog for sci-mathematics/dolfin -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 04 Dec 2013; Justin Lecher dolfin-0.9.9.ebuild, + metadata.xml: + Bump EAPI to 5; Bump to python-single-r1 eclass + 22 May 2012; Justin Lecher dolfin-0.9.9.ebuild, metadata.xml: Add missing eutils.eclass, bump to EAPI=4 diff --git a/sci-mathematics/dolfin/dolfin-0.9.9.ebuild b/sci-mathematics/dolfin/dolfin-0.9.9.ebuild index 249fcbc..0fef0f9 100644 --- a/sci-mathematics/dolfin/dolfin-0.9.9.ebuild +++ b/sci-mathematics/dolfin/dolfin-0.9.9.ebuild @@ -1,12 +1,12 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ -EAPI=4 +EAPI=5 -PYTHON_DEPEND="python? 2" +PYTHON_COMPAT=( python{2_6,2_7} ) -inherit cmake-utils eutils python +inherit cmake-utils eutils python-single-r1 DESCRIPTION="C++/Python interface of FEniCS" HOMEPAGE="https://launchpad.net/dolfin/" @@ -18,21 +18,25 @@ KEYWORDS="~amd64" IUSE="cgal cholmod gmp mpi parmetis python scotch umfpack zlib" # scotch and parmetis require mpi; wait for EAPI 4 +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + DEPEND=" dev-libs/boost dev-libs/libxml2:2 sci-libs/armadillo sci-mathematics/ufc python? ( - dev-python/ufl - dev-python/ffc - dev-python/fiat - dev-python/instant - dev-python/viper )" + ${PYTHON_DEPS} + dev-python/ufl[${PYTHON_USEDEP}] + dev-python/ffc[${PYTHON_USEDEP}] + dev-python/fiat[${PYTHON_USEDEP}] + dev-python/instant[${PYTHON_USEDEP}] + dev-python/viper[${PYTHON_USEDEP}] + )" RDEPEND="${DEPEND}" pkg_setup() { - use python && python_set_active_version 2 + use python && python-single-r1_pkg_setup } src_prepare() { diff --git a/sci-mathematics/dolfin/metadata.xml b/sci-mathematics/dolfin/metadata.xml index 964c3ee..9c1b5e5 100644 --- a/sci-mathematics/dolfin/metadata.xml +++ b/sci-mathematics/dolfin/metadata.xml @@ -1,15 +1,15 @@ - sci-mathematics - + sci-mathematics + DOLFIN is the C++/Python interface of FEniCS, providing a consistent PSE (Problem Solving Environment) for ordinary and partial differential equations. - - Adds support for geometric algorithms with sci-mathematics/cgal - Adds support for sparse Cholesky factorization with sci-libs/cholmod - Adds support for parallel graph partitioning with sci-libs/parmetis - Adds support for graph partitioning with sci-libs/scotch - Adds support for sparse solving with sci-libs/umfpack - + + Adds support for geometric algorithms with sci-mathematics/cgal + Adds support for sparse Cholesky factorization with sci-libs/cholmod + Adds support for parallel graph partitioning with sci-libs/parmetis + Adds support for graph partitioning with sci-libs/scotch + Adds support for sparse solving with sci-libs/umfpack +