From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3A993138359 for ; Sun, 11 Oct 2020 13:52:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 85ABDE0CCF; Sun, 11 Oct 2020 13:52:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 69370E0CCF for ; Sun, 11 Oct 2020 13:52:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5799A335D3B for ; Sun, 11 Oct 2020 13:52:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 444F6332 for ; Sun, 11 Oct 2020 13:52:24 +0000 (UTC) From: "Aisha Tammy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aisha Tammy" Message-ID: <1602412247.c28ad251802b9d193fec2fbcd10b0269474cfc57.epsilon-0@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: media-libs/mmg/ X-VCS-Repository: proj/sci X-VCS-Files: media-libs/mmg/metadata.xml media-libs/mmg/mmg-5.4.3.ebuild media-libs/mmg/mmg-5.4.3_p09102020.ebuild X-VCS-Directories: media-libs/mmg/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: c28ad251802b9d193fec2fbcd10b0269474cfc57 X-VCS-Branch: master Date: Sun, 11 Oct 2020 13:52:24 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 88723ca3-22b4-4d2c-bfdd-031624f25588 X-Archives-Hash: e993b8696f1da0892c5e1a28644b2b10 commit: c28ad251802b9d193fec2fbcd10b0269474cfc57 Author: Aisha Tammy aisha cc> AuthorDate: Sun Oct 11 10:30:47 2020 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Sun Oct 11 10:30:47 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=c28ad251 media-libs/mmg: bi-tridimensional remesher new dependency for elmerfem Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Aisha Tammy aisha.cc> media-libs/mmg/metadata.xml | 16 ++++++++++++ media-libs/mmg/mmg-5.4.3.ebuild | 40 ++++++++++++++++++++++++++++ media-libs/mmg/mmg-5.4.3_p09102020.ebuild | 43 +++++++++++++++++++++++++++++++ 3 files changed, 99 insertions(+) diff --git a/media-libs/mmg/metadata.xml b/media-libs/mmg/metadata.xml new file mode 100644 index 000000000..2b9123050 --- /dev/null +++ b/media-libs/mmg/metadata.xml @@ -0,0 +1,16 @@ + + + + + gentoo@aisha.cc + Aisha Tammy + + + sci@gentoo.org + Gentoo Science Project + + + Use SCOTCH TOOL for renumbering + Use VTK I/O + + diff --git a/media-libs/mmg/mmg-5.4.3.ebuild b/media-libs/mmg/mmg-5.4.3.ebuild new file mode 100644 index 000000000..e5fa82146 --- /dev/null +++ b/media-libs/mmg/mmg-5.4.3.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake fortran-2 +CMAKE_BUILD_TYPE=MMG +FORTRAN_NEED_OPENMP=1 + +DESCRIPTION="bidimensional and tridimensional remesher" +HOMEPAGE="https://www.mmgtools.org/" +SRC_URI="https://github.com/MmgTools/mmg/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3 LGPL-3" +KEYWORDS="~amd64" +SLOT="0" +IUSE="scotch vtk" + +DEPEND=" + scotch? ( sci-libs/scotch ) + vtk? ( sci-libs/vtk ) +" +RDEPEND="${DEPEND}" +BDEPEND=" + app-doc/doxygen +" + +src_configure() { + local mycmakeargs=( + -DUSE_VTK=$(usex vtk) + -DUSE_SCOTCH=$(usex scotch) + -DBUILD_SHARED_LIBS=ON + -DLIBMMG2D_SHARED=ON + -DLIBMMGS_SHARED=ON + -DLIBMMG3D_SHARED=ON + ) + cmake_src_configure +} + +# no tests present diff --git a/media-libs/mmg/mmg-5.4.3_p09102020.ebuild b/media-libs/mmg/mmg-5.4.3_p09102020.ebuild new file mode 100644 index 000000000..122c48c2e --- /dev/null +++ b/media-libs/mmg/mmg-5.4.3_p09102020.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake fortran-2 +CMAKE_BUILD_TYPE=MMG +FORTRAN_NEED_OPENMP=1 + +DESCRIPTION="bidimensional and tridimensional remesher" +HOMEPAGE="https://www.mmgtools.org/" + +COMMIT=d422182c8118124b15aba1b1f2e6fb38e85fd6ba +SRC_URI="https://github.com/MmgTools/mmg/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}"/${PN}-${COMMIT} + +LICENSE="GPL-3 LGPL-3" +KEYWORDS="~amd64" +SLOT="0" +IUSE="scotch vtk" + +DEPEND=" + scotch? ( sci-libs/scotch ) + vtk? ( sci-libs/vtk ) +" +RDEPEND="${DEPEND}" +BDEPEND=" + app-doc/doxygen +" + +src_configure() { + local mycmakeargs=( + -DUSE_VTK=$(usex vtk) + -DUSE_SCOTCH=$(usex scotch) + -DBUILD_SHARED_LIBS=ON + -DLIBMMG2D_SHARED=ON + -DLIBMMGS_SHARED=ON + -DLIBMMG3D_SHARED=ON + ) + cmake_src_configure +} + +# no tests present