Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/amd/
Date: Mon, 02 Mar 2020 17:21:37
Message-Id: 1583169643.03f7fea8f7acaa6f32007d375e955e29aebb94b3.mjo@gentoo
1 commit: 03f7fea8f7acaa6f32007d375e955e29aebb94b3
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 29 01:42:23 2020 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 2 17:20:43 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03f7fea8
7
8 sci-libs/amd: new version 2.4.6.
9
10 Update to EAPI=7 and fix the HOMEPAGE, SRC_URI, and LICENSE. This is
11 part of a larger SuiteSparse v5.4.0 upgrade thanks to François Bissey
12 whose sage-on-gentoo ebuilds I'm using. There's a newer release
13 (v5.7.1) of SuiteSparse, but v5.4.0 has seen more testing.
14
15 Closes: https://bugs.gentoo.org/680550
16 Package-Manager: Portage-2.3.84, Repoman-2.3.20
17 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
18
19 sci-libs/amd/Manifest | 1 +
20 sci-libs/amd/amd-2.4.6.ebuild | 27 +++++++++++++++++++++++++++
21 2 files changed, 28 insertions(+)
22
23 diff --git a/sci-libs/amd/Manifest b/sci-libs/amd/Manifest
24 index 60d2d288f61..90c50c2fda2 100644
25 --- a/sci-libs/amd/Manifest
26 +++ b/sci-libs/amd/Manifest
27 @@ -1 +1,2 @@
28 DIST amd-2.3.1.tar.bz2 339970 BLAKE2B b84b7b690deb6a1fcfdbbec403a3e5267cd4e1cf851312a56bbd48ac92a732f789365e2191f6b74f49173bc6c008ebd5f6b528a99a9abdc6a2777f3a6a7305b8 SHA512 19b8c010e0f7a5a96e60fe52904b2b548fb89dfaf9d6f99184df955a732ec3edef04acff01a82a909e030c3bf78c9eccfe0c329731edb29f4b936507e39d885e
29 +DIST amd-2.4.6.tar.bz2 343925 BLAKE2B 296579d888b61e84ec798206fbb6f89fd923f0d762e84e7a1e2e2a5fb502f4822f89a2a4b631dc42fa829e845bf3980886185650e8de28774400e0c351805061 SHA512 6960a557e6c2f82ca2e68e48ddcb502e1527235a3ca34df2f5f7f63f0f12afacedb15fefe4a39768fe7a2c70308793544b5b24b6f2be2c6b934b0c0e0e796d57
30
31 diff --git a/sci-libs/amd/amd-2.4.6.ebuild b/sci-libs/amd/amd-2.4.6.ebuild
32 new file mode 100644
33 index 00000000000..14e702a4e12
34 --- /dev/null
35 +++ b/sci-libs/amd/amd-2.4.6.ebuild
36 @@ -0,0 +1,27 @@
37 +# Copyright 1999-2020 Gentoo Authors
38 +# Distributed under the terms of the GNU General Public License v2
39 +
40 +EAPI=7
41 +
42 +inherit fortran-2
43 +
44 +DESCRIPTION="Library to order a sparse matrix prior to Cholesky factorization"
45 +HOMEPAGE="http://faculty.cse.tamu.edu/davis/suitesparse.html"
46 +SRC_URI="http://202.36.178.9/sage/${P}.tar.bz2"
47 +
48 +LICENSE="BSD"
49 +SLOT="0"
50 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
51 +IUSE="doc fortran static-libs"
52 +
53 +BDEPEND="virtual/pkgconfig
54 + doc? ( virtual/latex-base )"
55 +DEPEND=">=sci-libs/suitesparseconfig-5.4.0"
56 +REPEND="${DEPEND}"
57 +
58 +src_configure() {
59 + econf \
60 + $(use_enable fortran) \
61 + $(use_with doc) \
62 + $(use_enable static-libs static)
63 +}