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/ldl/
Date: Mon, 02 Mar 2020 17:21:38
Message-Id: 1583169644.d35f1c333b56f6552e3ab2dee44a0431e21c3522.mjo@gentoo
1 commit: d35f1c333b56f6552e3ab2dee44a0431e21c3522
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 29 02:25:22 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=d35f1c33
7
8 sci-libs/ldl: new version 2.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 Package-Manager: Portage-2.3.84, Repoman-2.3.20
16 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
17
18 sci-libs/ldl/Manifest | 1 +
19 sci-libs/ldl/ldl-2.2.6.ebuild | 24 ++++++++++++++++++++++++
20 2 files changed, 25 insertions(+)
21
22 diff --git a/sci-libs/ldl/Manifest b/sci-libs/ldl/Manifest
23 index 664e6b55609..e6b52388e27 100644
24 --- a/sci-libs/ldl/Manifest
25 +++ b/sci-libs/ldl/Manifest
26 @@ -1 +1,2 @@
27 DIST ldl-2.1.0.tar.bz2 336442 BLAKE2B 8516e37ac66c329397739fb5d7ee0b3a5cc1a286d780062a749901a13b30dca52e131647e66a721be1f1e2ddd022ecc7c9d6ec5da81acc9c98afa53a06978367 SHA512 ad532e3481e48b9c3587ca0cba3d58a89a2174e3a0d523dcac6d420e04aa5da1cb8517bb14556d0a593110350fdc02aea3677eec41eb74821a3a63552418d0b5
28 +DIST ldl-2.2.6.tar.bz2 342923 BLAKE2B 7acf1a82824de013fe9a7742fb2d5c44c86de96e95d1d7408106d4af420dc3655ab7533eb80592b52523245c7545bc246bf129712547ff6eba856a807c78b6ad SHA512 266c9e62c474a6a9b2d7f74aa580e313fbe4b322197236ba6fbbab6d1756348cf146c1d807ea6d8d0e5941cedc48298e8437aaf386dd6c433dcaf41a9d0b7371
29
30 diff --git a/sci-libs/ldl/ldl-2.2.6.ebuild b/sci-libs/ldl/ldl-2.2.6.ebuild
31 new file mode 100644
32 index 00000000000..6a1f2acf387
33 --- /dev/null
34 +++ b/sci-libs/ldl/ldl-2.2.6.ebuild
35 @@ -0,0 +1,24 @@
36 +# Copyright 1999-2020 Gentoo Authors
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=7
40 +
41 +DESCRIPTION="Simple but educational LDL^T matrix factorization algorithm"
42 +HOMEPAGE="http://faculty.cse.tamu.edu/davis/suitesparse.html"
43 +SRC_URI="http://202.36.178.9/sage/${P}.tar.bz2"
44 +
45 +LICENSE="LGPL-2.1+"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
48 +IUSE="doc static-libs"
49 +
50 +BDEPEND="virtual/pkgconfig
51 + doc? ( virtual/latex-base )"
52 +DEPEND="sci-libs/suitesparseconfig"
53 +RDEPEND="${DEPEND}"
54 +
55 +src_configure() {
56 + econf \
57 + $(use_with doc) \
58 + $(use_enable static-libs static)
59 +}