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 D0B4615817D for ; Mon, 17 Jun 2024 01:47:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC196E2A96; Mon, 17 Jun 2024 01:47:58 +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 CFA3EE2A93 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 08333335CB4 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 668721D25 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: <1718588809.8a1f03945e92dac18f150996edae6f9c10911b97.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/cholmod/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/cholmod/cholmod-3.0.13.ebuild sci-libs/cholmod/cholmod-3.0.14-r1.ebuild X-VCS-Directories: sci-libs/cholmod/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8a1f03945e92dac18f150996edae6f9c10911b97 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: 0a1af7bb-7d94-456f-be27-eb1b517afabf X-Archives-Hash: f8f53690720139c8c9fcc037cb22eb77 commit: 8a1f03945e92dac18f150996edae6f9c10911b97 Author: Eli Schwartz gmail com> AuthorDate: Sun Jun 16 23:15:41 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jun 17 01:46:49 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a1f0394 sci-libs/cholmod: fix missing autotools in src_prepare Fixes regression caused by introducing a gentoo patch that modifies Makefile.am, but doesn't guarantee that it is regenerated in src_configure() -- or indeed that it has the necessary dependencies. Fixes: 6c0474cc8a08172cdc244af680edba8be5ada95b Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> sci-libs/cholmod/cholmod-3.0.13.ebuild | 6 ++++-- sci-libs/cholmod/cholmod-3.0.14-r1.ebuild | 4 +++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/sci-libs/cholmod/cholmod-3.0.13.ebuild b/sci-libs/cholmod/cholmod-3.0.13.ebuild index bc2fdd2aa62d..ff0f058dd29e 100644 --- a/sci-libs/cholmod/cholmod-3.0.13.ebuild +++ b/sci-libs/cholmod/cholmod-3.0.13.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit cuda toolchain-funcs +inherit autotools cuda toolchain-funcs DESCRIPTION="Sparse Cholesky factorization and update/downdate library" HOMEPAGE="https://people.engr.tamu.edu/davis/suitesparse.html" @@ -39,6 +39,8 @@ src_prepare() { use cuda && cuda_src_prepare default + # patch is modifying Makefile.am + eautoreconf } src_configure() { diff --git a/sci-libs/cholmod/cholmod-3.0.14-r1.ebuild b/sci-libs/cholmod/cholmod-3.0.14-r1.ebuild index 669494c2ea85..39f7dc95b12b 100644 --- a/sci-libs/cholmod/cholmod-3.0.14-r1.ebuild +++ b/sci-libs/cholmod/cholmod-3.0.14-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit cuda toolchain-funcs +inherit autotools cuda toolchain-funcs DESCRIPTION="Sparse Cholesky factorization and update/downdate library" HOMEPAGE="https://people.engr.tamu.edu/davis/suitesparse.html" @@ -39,6 +39,8 @@ src_prepare() { use cuda && cuda_src_prepare default + # patch is modifying Makefile.am + eautoreconf } src_configure() {