From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CC57415817D for ; Mon, 17 Jun 2024 01:48:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2D2AEE2AA6; Mon, 17 Jun 2024 01:47:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0F90EE2AA6 for ; Mon, 17 Jun 2024 01:47:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3C10C335D64 for ; Mon, 17 Jun 2024 01:47:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D5AB1D27 for ; Mon, 17 Jun 2024 01:47:56 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1718588810.c0dc3a01309a6de0dc61f1e81ec871a34b369031.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/umfpack/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/umfpack/umfpack-5.7.9-r1.ebuild X-VCS-Directories: sci-libs/umfpack/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c0dc3a01309a6de0dc61f1e81ec871a34b369031 X-VCS-Branch: master Date: Mon, 17 Jun 2024 01:47:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1d43a23a-11ce-405f-ba14-ba7f75069fb0 X-Archives-Hash: 1ab55aa0dae97cbe4d291e9c0ef7c81d commit: c0dc3a01309a6de0dc61f1e81ec871a34b369031 Author: Eli Schwartz gmail com> AuthorDate: Sun Jun 16 23:21:55 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jun 17 01:46:50 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0dc3a01 sci-libs/umfpack: update EAPI 7 -> 8 (In the version that isn't p.masked because the entire suitesparse ecosystem cannot multilib after the version bump.) Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> sci-libs/umfpack/umfpack-5.7.9-r1.ebuild | 48 ++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/sci-libs/umfpack/umfpack-5.7.9-r1.ebuild b/sci-libs/umfpack/umfpack-5.7.9-r1.ebuild new file mode 100644 index 000000000000..ee68d7850d4e --- /dev/null +++ b/sci-libs/umfpack/umfpack-5.7.9-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit libtool toolchain-funcs + +DESCRIPTION="Unsymmetric multifrontal sparse LU factorization library" +HOMEPAGE="https://people.engr.tamu.edu/davis/suitesparse.html" +SRC_URI="http://202.36.178.9/sage/${P}.tar.bz2" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~x64-macos" +IUSE="+cholmod doc" + +BDEPEND="virtual/pkgconfig + doc? ( virtual/latex-base )" +DEPEND=" + sci-libs/amd + >=sci-libs/suitesparseconfig-5.4.0 + virtual/blas + cholmod? ( sci-libs/cholmod )" +RDEPEND="${DEPEND}" + +src_prepare() { + default + elibtoolize +} + +src_configure() { + econf \ + --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \ + $(use_with doc) \ + $(use_with cholmod) +} + +src_compile() { + use doc && export VARTEXFONTS="${T}/fonts" + default +} + +src_install() { + default + + # no static archives + find "${D}" -name '*.la' -delete || die +}