sci-libs/umfpack: add 6.1.0

Signed-off-by: François Bissey <frp.bissey@gmail.com>
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
This commit is contained in:
François Bissey
2023-06-06 09:43:46 +12:00
committed by Michael Orlitzky
parent b121f6f3c8
commit 257fa9c839
3 changed files with 74 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST SuiteSparse-7.0.0.gh.tar.gz 64884962 BLAKE2B 06c6cf54ffae188f5179e0cd45523700448d8999b44d6b1aeb3dfb99ccf34a570f6aff600988a144c68a4a2d8f41e32f7145e09349aed3bd889501ea031c8340 SHA512 50b1cd7bab6e4c063984162ed803fd13b69df7f67efe8ce7af15eace6b0ccd1669b6e57daa59511fd9531a847433cda49c1f52bfff234031af0d79e7fbd6423e
DIST umfpack-5.7.9.tar.bz2 772026 BLAKE2B 6d6dc1ba47b8f473884c1cb17d3eaa363d88281512e33586a0af0c2bcb7a523272bef4d8da0a29e2a5a84c8f0cd0ee6830ec10247971db63b4c319e6fa9a3c42 SHA512 5ad57467b5b7e4579f3cc9e2e7c92a0262ac2ef991a606d079b749b66e10da60aceaa4b0e741c116f8866da23c0f7c06368fe2b08d66d51383683f0dcbeddba3

View File

@@ -15,4 +15,7 @@
<flag name="cholmod">Use <pkg>sci-libs/cholmod</pkg> for matrix
ordering</flag>
</use>
<upstream>
<remote-id type="github">DrTimothyAldenDavis/SuiteSparse</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,70 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake-multilib toolchain-funcs
Sparse_PV="7.0.0"
Sparse_P="SuiteSparse-${Sparse_PV}"
DESCRIPTION="Unsymmetric multifrontal sparse LU factorization library"
HOMEPAGE="https://people.engr.tamu.edu/davis/suitesparse.html"
SRC_URI="https://github.com/DrTimothyAldenDavis/SuiteSparse/archive/refs/tags/v${Sparse_PV}.tar.gz -> ${Sparse_P}.gh.tar.gz"
LICENSE="GPL-2+"
SLOT="0/6"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="doc openmp test"
RESTRICT="!test? ( test )"
DEPEND=">=sci-libs/suitesparseconfig-${Sparse_PV}
>=sci-libs/amd-3.0.3
>=sci-libs/cholmod-4.0.3[openmp=]
virtual/blas"
RDEPEND="${DEPEND}"
BDEPEND="doc? ( virtual/latex-base )"
S="${WORKDIR}/${Sparse_P}/${PN^^}"
pkg_pretend() {
[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
}
pkg_setup() {
[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
}
multilib_src_configure() {
# Fortran is only used to compile additional demo programs that can be tested.
local mycmakeargs=(
-DNSTATIC=ON
-DNOPENMP=$(usex openmp OFF ON)
-DNFORTRAN=ON
-DDEMO=$(usex test)
)
cmake_src_configure
}
multilib_src_test() {
# Run demo files
local demofiles=(
umfpack_di_demo
umfpack_dl_demo
umfpack_zi_demo
umfpack_zl_demo
)
for i in ${demofiles}; do
./"${i}" > "${i}.out"
diff --strip-trailing-cr "${S}/Demo/${i}.out" "${i}.out" || die "failed testing ${i}"
done
}
multilib_src_install() {
if use doc; then
pushd "${S}/Doc"
rm -rf *.pdf
emake
popd
DOCS="${S}/Doc/*.pdf"
fi
cmake_src_install
}