diff options
author | François Bissey <frp.bissey@gmail.com> | 2023-06-06 08:59:52 +1200 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2023-06-19 20:01:14 -0400 |
commit | 847c958dc0c87048d43d241a0b37ba5c387b41c7 (patch) | |
tree | ddf0bf24466d2af9df1ac5e513d7b42777860a87 /sci-libs/ccolamd | |
parent | sci-libs/colamd: add 3.0.3 (diff) | |
download | gentoo-847c958dc0c87048d43d241a0b37ba5c387b41c7.tar.gz gentoo-847c958dc0c87048d43d241a0b37ba5c387b41c7.tar.bz2 gentoo-847c958dc0c87048d43d241a0b37ba5c387b41c7.zip |
sci-libs/ccolamd: add 3.0.3
Signed-off-by: François Bissey <frp.bissey@gmail.com>
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
Diffstat (limited to 'sci-libs/ccolamd')
-rw-r--r-- | sci-libs/ccolamd/Manifest | 1 | ||||
-rw-r--r-- | sci-libs/ccolamd/ccolamd-3.0.3.ebuild | 39 | ||||
-rw-r--r-- | sci-libs/ccolamd/metadata.xml | 3 |
3 files changed, 43 insertions, 0 deletions
diff --git a/sci-libs/ccolamd/Manifest b/sci-libs/ccolamd/Manifest index dbe3369e605d..2fc03c4c6a01 100644 --- a/sci-libs/ccolamd/Manifest +++ b/sci-libs/ccolamd/Manifest @@ -1 +1,2 @@ +DIST SuiteSparse-7.0.0.gh.tar.gz 64884962 BLAKE2B 06c6cf54ffae188f5179e0cd45523700448d8999b44d6b1aeb3dfb99ccf34a570f6aff600988a144c68a4a2d8f41e32f7145e09349aed3bd889501ea031c8340 SHA512 50b1cd7bab6e4c063984162ed803fd13b69df7f67efe8ce7af15eace6b0ccd1669b6e57daa59511fd9531a847433cda49c1f52bfff234031af0d79e7fbd6423e DIST ccolamd-2.9.6.tar.bz2 305744 BLAKE2B 0d741ead328a1e888715672ddb617cc96a559f46f2379e1d7792b70868dd290de19b3047e3ed4dd2711084c9afc523d18ecb375aa4ee8a4a12950cee08f238b8 SHA512 cf6f210d26ddb1be454cac377a773b73b75261a74e1e3985565f57f45659b1c11b747829c5bbe99c4bc3e8b364d7b2b3c109e00f6d7e8e41afd713312ebf103c diff --git a/sci-libs/ccolamd/ccolamd-3.0.3.ebuild b/sci-libs/ccolamd/ccolamd-3.0.3.ebuild new file mode 100644 index 000000000000..e5768de9c765 --- /dev/null +++ b/sci-libs/ccolamd/ccolamd-3.0.3.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake-multilib + +Sparse_PV="7.0.0" +Sparse_P="SuiteSparse-${Sparse_PV}" +DESCRIPTION="Constrained Column approximate minimum degree ordering algorithm" +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="BSD" +SLOT="0/3" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="test" +RESTRICT="!test? ( test )" + +DEPEND=">=sci-libs/suitesparseconfig-7.0.0" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${Sparse_P}/${PN^^}" + +multilib_src_configure() { + local mycmakeargs=( + -DNSTATIC=ON + -DDEMO=$(usex test) + ) + cmake_src_configure +} + +multilib_src_test() { + # Run demo files + ./ccolamd_example > ccolamd_example.out + diff "${S}"/Demo/ccolamd_example.out ccolamd_example.out || die "failed testing ccolamd_example" + ./ccolamd_l_example > ccolamd_l_example.out + diff "${S}"/Demo/ccolamd_l_example.out ccolamd_l_example.out || die "failed testing ccolamd_l_example" +} diff --git a/sci-libs/ccolamd/metadata.xml b/sci-libs/ccolamd/metadata.xml index 412ff61d06aa..ba6e076c8fbd 100644 --- a/sci-libs/ccolamd/metadata.xml +++ b/sci-libs/ccolamd/metadata.xml @@ -10,4 +10,7 @@ algorithm, (like COLAMD), but it can also be given a set of ordering constraints. </longdescription> + <upstream> + <remote-id type="github">DrTimothyAldenDavis/SuiteSparse</remote-id> + </upstream> </pkgmetadata> |