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/btf/
Date: Mon, 02 Mar 2020 17:21:38
Message-Id: 1583169644.59962c6ad8cb2deb5a3d88473dc774c23994b106.mjo@gentoo
1 commit: 59962c6ad8cb2deb5a3d88473dc774c23994b106
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 29 02:18:20 2020 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 2 17:20:44 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59962c6a
7
8 sci-libs/btf: new version 1.2.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/682036
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/btf/Manifest | 1 +
20 sci-libs/btf/btf-1.2.6.ebuild | 22 ++++++++++++++++++++++
21 2 files changed, 23 insertions(+)
22
23 diff --git a/sci-libs/btf/Manifest b/sci-libs/btf/Manifest
24 index 3628755196f..e9709fe3011 100644
25 --- a/sci-libs/btf/Manifest
26 +++ b/sci-libs/btf/Manifest
27 @@ -1 +1,2 @@
28 DIST btf-1.2.0.tar.bz2 290915 BLAKE2B b9bd3781bfd4fc4924ffb7ee52dc517a6f2ee169daca2a254510d4fddbc9a312fb40de4cadb9ac119c1dee6e3042e9c349ca805f509a958613472f1e423a7bea SHA512 4c2dcd5abf7a72485267a666e679545a5bfa8a20dfbf75a939c92547bdf960d40b6ae93cad23ac44f791e515a13f26c1dae446d3ba6e89b3d1f87d91d4dba50c
29 +DIST btf-1.2.6.tar.bz2 285699 BLAKE2B 4addeea7b9abe87281f826a67a8a372118579f498057c888008ac93da1cdbfcf8554af6e843d92a07989ff0b24f537588f933fcc33c97317f47536980e551531 SHA512 39c08ec9bf2a85915aeed040dc02c42c10adf5034c3797910dc7cb6942ac6e2ccea47cea4ab0c37e8ed3eb8eac8d2ce946d281c9ec643cccd282af7be5276960
30
31 diff --git a/sci-libs/btf/btf-1.2.6.ebuild b/sci-libs/btf/btf-1.2.6.ebuild
32 new file mode 100644
33 index 00000000000..085477593c5
34 --- /dev/null
35 +++ b/sci-libs/btf/btf-1.2.6.ebuild
36 @@ -0,0 +1,22 @@
37 +# Copyright 1999-2020 Gentoo Authors
38 +# Distributed under the terms of the GNU General Public License v2
39 +
40 +EAPI=7
41 +
42 +DESCRIPTION="Algorithm for matrix permutation into block triangular form"
43 +HOMEPAGE="http://faculty.cse.tamu.edu/davis/suitesparse.html"
44 +SRC_URI="http://202.36.178.9/sage/${P}.tar.bz2"
45 +
46 +LICENSE="LGPL-2.1+"
47 +SLOT="0"
48 +
49 +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
50 +IUSE="static-libs"
51 +
52 +BDEPEND="virtual/pkgconfig"
53 +DEPEND="sci-libs/suitesparseconfig"
54 +RDEPEND="${DEPEND}"
55 +
56 +src_configure() {
57 + econf $(use_enable static-libs static)
58 +}