diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2020-02-28 21:18:20 -0500 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2020-03-02 12:20:44 -0500 |
commit | 59962c6ad8cb2deb5a3d88473dc774c23994b106 (patch) | |
tree | a5b9c9ef152e4c7c4613b5060687b6d554c0c2dc /sci-libs | |
parent | sci-libs/camd: new version 2.4.6. (diff) | |
download | gentoo-59962c6ad8cb2deb5a3d88473dc774c23994b106.tar.gz gentoo-59962c6ad8cb2deb5a3d88473dc774c23994b106.tar.bz2 gentoo-59962c6ad8cb2deb5a3d88473dc774c23994b106.zip |
sci-libs/btf: new version 1.2.6.
Update to EAPI=7 and fix the HOMEPAGE, SRC_URI, and LICENSE. This is
part of a larger SuiteSparse v5.4.0 upgrade thanks to François Bissey
whose sage-on-gentoo ebuilds I'm using. There's a newer release
(v5.7.1) of SuiteSparse, but v5.4.0 has seen more testing.
Closes: https://bugs.gentoo.org/682036
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/btf/Manifest | 1 | ||||
-rw-r--r-- | sci-libs/btf/btf-1.2.6.ebuild | 22 |
2 files changed, 23 insertions, 0 deletions
diff --git a/sci-libs/btf/Manifest b/sci-libs/btf/Manifest index 3628755196fb..e9709fe3011b 100644 --- a/sci-libs/btf/Manifest +++ b/sci-libs/btf/Manifest @@ -1 +1,2 @@ DIST btf-1.2.0.tar.bz2 290915 BLAKE2B b9bd3781bfd4fc4924ffb7ee52dc517a6f2ee169daca2a254510d4fddbc9a312fb40de4cadb9ac119c1dee6e3042e9c349ca805f509a958613472f1e423a7bea SHA512 4c2dcd5abf7a72485267a666e679545a5bfa8a20dfbf75a939c92547bdf960d40b6ae93cad23ac44f791e515a13f26c1dae446d3ba6e89b3d1f87d91d4dba50c +DIST btf-1.2.6.tar.bz2 285699 BLAKE2B 4addeea7b9abe87281f826a67a8a372118579f498057c888008ac93da1cdbfcf8554af6e843d92a07989ff0b24f537588f933fcc33c97317f47536980e551531 SHA512 39c08ec9bf2a85915aeed040dc02c42c10adf5034c3797910dc7cb6942ac6e2ccea47cea4ab0c37e8ed3eb8eac8d2ce946d281c9ec643cccd282af7be5276960 diff --git a/sci-libs/btf/btf-1.2.6.ebuild b/sci-libs/btf/btf-1.2.6.ebuild new file mode 100644 index 000000000000..085477593c5c --- /dev/null +++ b/sci-libs/btf/btf-1.2.6.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Algorithm for matrix permutation into block triangular form" +HOMEPAGE="http://faculty.cse.tamu.edu/davis/suitesparse.html" +SRC_URI="http://202.36.178.9/sage/${P}.tar.bz2" + +LICENSE="LGPL-2.1+" +SLOT="0" + +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos" +IUSE="static-libs" + +BDEPEND="virtual/pkgconfig" +DEPEND="sci-libs/suitesparseconfig" +RDEPEND="${DEPEND}" + +src_configure() { + econf $(use_enable static-libs static) +} |