commit:     138ff81074a35a00c2fca84d37d34e1a5bef4876
Author:     Matthias Maier <tamiko <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 11 03:39:41 2023 +0000
Commit:     Matthias Maier <tamiko <AT> gentoo <DOT> org>
CommitDate: Tue Jul 11 03:39:41 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=138ff810

sci-libs/dealii: add 9.5.0

Signed-off-by: Matthias Maier <tamiko <AT> gentoo.org>

 sci-libs/dealii/Manifest            |   2 +
 sci-libs/dealii/dealii-9.5.0.ebuild | 168 ++++++++++++++++++++++++++++++++++++
 2 files changed, 170 insertions(+)

diff --git a/sci-libs/dealii/Manifest b/sci-libs/dealii/Manifest
index 6062fdd497e2..553c4c6190b1 100644
--- a/sci-libs/dealii/Manifest
+++ b/sci-libs/dealii/Manifest
@@ -6,3 +6,5 @@ DIST dealii-9.4.1-offline_documentation.tar.gz 392007419 
BLAKE2B 81404b02ba7dc97
 DIST dealii-9.4.1-offline_documentation.tar.gz.asc 246 BLAKE2B 
9ace22c9b174e642cd3fba94c165d816c62814f892f5f6f272efa0301613dc55251152825e726fc6cf7e89bbfb7fa3552ec58ad426a7d58a74ecb89b9072f742
 SHA512 
50b43dd34a0687395f516f4910581df71054fa8be3c98006566ea649d0af866d38c9793da548ba6bdb7a9fec452dfb6d928d336aace943522d7c3f854209b81b
 DIST dealii-9.4.1.tar.gz 30298204 BLAKE2B 
499f542c7a7f071d04048127199c7bebf5668b6e8d13fc2701dd18e28165442e58112ee9e4926e16a592bffdd5d7b7c240eea55808e5f9c021961f7e44b7da79
 SHA512 
39089aff462d3ff4244ce75f74a4cd908f8f72a81dcc3fb02ca91b3cad2442ceb78677e72cd928b36a04d352c4baa146a25fa5e14c886ca9e2bad0be0069f7b8
 DIST dealii-9.4.1.tar.gz.asc 246 BLAKE2B 
dbb1dc7b3e8a97f29287f154d11cd3db2566fdc4c7667fa57e686e2feba33f2115546408365f0e8f490ba593cb582b12489de373da3e33e8702b6e16804c7ebf
 SHA512 
eb987d34f19b59d523d79f3c2c99f5f3125b1d0c71af0eb32b77ad5959d6197b79f1971a8a79dbc52bab698335dcb6091aac88c51d845a1e07d3681c089754c7
+DIST dealii-9.5.0-offline_documentation.tar.gz 412499027 BLAKE2B 
521aa2488d84d48a624f4cbdbe9c173d0cdcee2df8d06b97b7c25ba28d4a2113a7da9fd9abd9eb64cd56b37f8edc716bd034fc3ba8823f8b1def26c34aaeeb55
 SHA512 
2e0d331f92d52b0fd909a0139157a1960a9222d46d537611f0508cdb79020a8e51ff0da6aefdf95adff732cea050b72df7dc1a8af7e93c736721970218815cfe
+DIST dealii-9.5.0.tar.gz 31524412 BLAKE2B 
0388b4c8441b1e59baba3fcb3f19c19a357c452c7b30a95a040c1ae628f56734d85aeb4ed755fc68b7bb6c28b508d857f14bb0793e23b7e207f260e0a0bf70ac
 SHA512 
33308711f9efb41030a509f25c537680e0980df95d90947641958f12ddd00c3aee542837de8ba4d100cbdb5470c001132c7526b52020e0eb219bf4b0f6c23586

diff --git a/sci-libs/dealii/dealii-9.5.0.ebuild 
b/sci-libs/dealii/dealii-9.5.0.ebuild
new file mode 100644
index 000000000000..fc798a6b87d3
--- /dev/null
+++ b/sci-libs/dealii/dealii-9.5.0.ebuild
@@ -0,0 +1,168 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# deal.II uses its own FindLAPACK.cmake file that calls into the system
+# FindLAPACK.cmake module and does additional internal setup. Do not remove
+# any of these modules:
+CMAKE_REMOVE_MODULES_LIST=""
+
+inherit cmake flag-o-matic
+
+DESCRIPTION="Solving partial differential equations with the finite element 
method"
+HOMEPAGE="https://www.dealii.org/";
+
+if [[ ${PV} = *9999* ]]; then
+       inherit git-r3
+       EGIT_REPO_URI="https://github.com/dealii/dealii.git";
+       SRC_URI=""
+else
+       
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz
+               doc? (
+                       
https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}-offline_documentation.tar.gz
+                       )"
+       KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+fi
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+IUSE="
+       adolc arborx assimp arpack cgal cpu_flags_x86_avx cpu_flags_x86_avx512f
+       cpu_flags_x86_sse2 cuda +debug doc +examples ginkgo gmsh +gsl hdf5
+       +lapack metis mpi muparser opencascade p4est petsc scalapack slepc
+       +sparse sundials symengine trilinos
+"
+
+# TODO: add slepc use flag once slepc is packaged for gentoo-science
+REQUIRED_USE="
+       arborx? ( trilinos )
+       p4est? ( mpi )
+       slepc? ( petsc )
+       trilinos? ( mpi )"
+
+RDEPEND="dev-libs/boost:=
+       app-arch/bzip2
+       sys-libs/zlib
+       dev-cpp/tbb:=
+       arborx? ( sci-libs/arborx[mpi=] )
+       adolc? ( sci-libs/adolc )
+       arpack? ( sci-libs/arpack[mpi=] )
+       assimp? ( media-libs/assimp:= )
+       cgal? ( sci-mathematics/cgal )
+       cuda? ( dev-util/nvidia-cuda-toolkit )
+       ginkgo? ( sci-libs/ginkgo )
+       gmsh? ( sci-libs/gmsh )
+       gsl? ( sci-libs/gsl:= )
+       hdf5? ( sci-libs/hdf5[mpi=] )
+       lapack? ( virtual/lapack )
+       metis? (
+               >=sci-libs/metis-5
+               mpi? ( >=sci-libs/parmetis-4 )
+       )
+       mpi? ( virtual/mpi[cxx] )
+       muparser? ( dev-cpp/muParser )
+       opencascade? ( sci-libs/opencascade:= )
+       p4est? ( sci-libs/p4est[mpi] )
+       petsc? ( sci-mathematics/petsc[mpi=] )
+       scalapack? ( sci-libs/scalapack )
+       slepc? ( sci-mathematics/slepc[mpi=] )
+       sparse? ( sci-libs/umfpack )
+       sundials? ( sci-libs/sundials:= )
+       symengine? ( >=sci-libs/symengine-0.4:= )
+       trilinos? ( sci-libs/trilinos )
+       || (
+               dev-cpp/kokkos
+               sci-libs/trilinos
+       )
+       "
+
+DEPEND="${RDEPEND}
+       virtual/pkgconfig
+       doc? ( app-doc/doxygen[dot] dev-lang/perl )"
+
+PATCHES=(
+)
+
+src_configure() {
+       # deal.II needs a custom build type:
+       local CMAKE_BUILD_TYPE=$(usex debug DebugRelease Release)
+
+       local mycmakeargs=(
+               -DDEAL_II_PACKAGE_VERSION="${PV}"
+               -DCMAKE_INSTALL_RPATH_USE_LINK_PATH=OFF
+               -DDEAL_II_ALLOW_AUTODETECTION=OFF
+               -DDEAL_II_ALLOW_BUNDLED=OFF
+               -DDEAL_II_ALLOW_PLATFORM_INTROSPECTION=OFF
+               -DDEAL_II_COMPILE_EXAMPLES=OFF
+               -DDEAL_II_DOCHTML_RELDIR="share/doc/${P}/html"
+               -DDEAL_II_DOCREADME_RELDIR="share/doc/${P}"
+               -DDEAL_II_COMPILE_EXAMPLES=OFF
+               -DDEAL_II_EXAMPLES_RELDIR="share/doc/${P}/examples"
+               -DDEAL_II_LIBRARY_RELDIR="$(get_libdir)"
+               -DDEAL_II_SHARE_RELDIR="share/${PN}"
+               -DDEAL_II_WITH_ZLIB=ON
+               -DDEAL_II_WITH_ADOLC="$(usex adolc)"
+               -DDEAL_II_WITH_ARBORX="$(usex arborx)"
+               -DDEAL_II_WITH_ASSIMP="$(usex assimp)"
+               -DDEAL_II_WITH_ARPACK="$(usex arpack)"
+               -DDEAL_II_WITH_CGAL="$(usex cgal)"
+               -DDEAL_II_WITH_CUDA="$(usex cuda)"
+               -DDEAL_II_WITH_GINKGO="$(usex ginkgo)"
+               -DDEAL_II_COMPONENT_DOCUMENTATION="$(usex doc)"
+               -DDEAL_II_COMPONENT_EXAMPLES="$(usex examples)"
+               -DDEAL_II_WITH_GMSH="$(usex gmsh)"
+               -DDEAL_II_WITH_GSL="$(usex gsl)"
+               -DDEAL_II_WITH_HDF5="$(usex hdf5)"
+               -DDEAL_II_WITH_LAPACK="$(usex lapack)"
+               -DDEAL_II_WITH_METIS="$(usex metis)"
+               -DDEAL_II_WITH_MPI="$(usex mpi)"
+               -DDEAL_II_WITH_MUPARSER="$(usex muparser)"
+               -DDEAL_II_WITH_OPENCASCADE="$(usex opencascade)"
+               -DDEAL_II_WITH_P4EST="$(usex p4est)"
+               -DDEAL_II_WITH_PETSC="$(usex petsc)"
+               -DDEAL_II_WITH_SCALAPACK="$(usex scalapack)"
+               -DDEAL_II_WITH_SLEPC="$(usex slepc)"
+               -DDEAL_II_WITH_SUNDIALS="$(usex sundials)"
+               -DDEAL_II_WITH_SYMENGINE="$(usex symengine)"
+               -DDEAL_II_WITH_UMFPACK="$(usex sparse)"
+               -DDEAL_II_WITH_TBB=ON
+               -DDEAL_II_WITH_TRILINOS="$(usex trilinos)"
+       )
+
+       use opencascade && mycmakeargs+=(
+               -DCMAKE_PREFIX_PATH="/usr/$(get_libdir)/opencascade"
+       )
+
+       # Do a little dance for purely cosmetic QA reasons. The build system
+       # does query for the highest instruction set first and skips the other
+       # variables if a "higher" variant is set
+       if use cpu_flags_x86_avx512f; then
+               mycmakeargs+=( -DDEAL_II_HAVE_AVX512=yes )
+               append-cxxflags "-mavx512f"
+       elif use cpu_flags_x86_avx; then
+               mycmakeargs+=( -DDEAL_II_HAVE_AVX=yes )
+               append-cxxflags "-mavx2"
+       elif use cpu_flags_x86_avx; then
+               mycmakeargs+=( -DDEAL_II_HAVE_SSE2=yes )
+               append-cxxflags "-msse2"
+       fi
+
+       cmake_src_configure
+}
+
+src_install() {
+       if use doc && [[ ${PV} != *9999* ]]; then
+               # copy missing images to the build directory:
+               cp -r "${WORKDIR}"/doc/doxygen/deal.II/images \
+                       "${BUILD_DIR}"/doc/doxygen/deal.II || die
+               # replace links:
+               sed -i \
+                       
's#"http://www.dealii.org/images/steps/developer/\(step-.*\)"#"images/\1"#g' \
+                       "${BUILD_DIR}"/doc/doxygen/deal.II/step_*.html || die 
"sed failed"
+       fi
+       cmake_src_install
+
+       # decompress the installed example sources:
+       use examples && docompress -x /usr/share/doc/${PF}/examples
+}

Reply via email to