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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1104A138359 for ; Sun, 23 Aug 2020 17:02:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A5ACEE0821; Sun, 23 Aug 2020 17:01:59 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8D096E0821 for ; Sun, 23 Aug 2020 17:01:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BE589340A51 for ; Sun, 23 Aug 2020 17:01:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 06086336 for ; Sun, 23 Aug 2020 17:01:54 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1598202079.386bb5e0a10b38679b51319ffd7c217ad472204b.soap@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 X-VCS-Directories: sci-libs/cholmod/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 386bb5e0a10b38679b51319ffd7c217ad472204b X-VCS-Branch: master Date: Sun, 23 Aug 2020 17:01:54 +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: 975cbf6d-9522-42ca-8762-8eb3d3efe772 X-Archives-Hash: 07b4232be8b6332aac3b66a922d97dc2 commit: 386bb5e0a10b38679b51319ffd7c217ad472204b Author: David Seifert gentoo org> AuthorDate: Sun Aug 23 17:01:19 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Aug 23 17:01:19 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=386bb5e0 sci-libs/cholmod: Remove libtool archives Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: David Seifert gentoo.org> sci-libs/cholmod/cholmod-3.0.13.ebuild | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/sci-libs/cholmod/cholmod-3.0.13.ebuild b/sci-libs/cholmod/cholmod-3.0.13.ebuild index 3baa9854bc6..bf568d5872a 100644 --- a/sci-libs/cholmod/cholmod-3.0.13.ebuild +++ b/sci-libs/cholmod/cholmod-3.0.13.ebuild @@ -12,19 +12,26 @@ SRC_URI="http://202.36.178.9/sage/${P}.tar.bz2" LICENSE="LGPL-2.1+ modify? ( GPL-2+ ) matrixops? ( GPL-2+ )" SLOT="0" KEYWORDS="amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-macos" -IUSE="cuda doc +lapack +matrixops +modify +partition static-libs" +IUSE="cuda doc +lapack +matrixops +modify +partition" BDEPEND="virtual/pkgconfig doc? ( virtual/latex-base )" DEPEND=" >=sci-libs/amd-2.4 >=sci-libs/colamd-2.9 - cuda? ( x11-drivers/nvidia-drivers dev-util/nvidia-cuda-toolkit ) + cuda? ( + x11-drivers/nvidia-drivers + dev-util/nvidia-cuda-toolkit + ) lapack? ( virtual/lapack ) partition? ( >=sci-libs/camd-2.4 >=sci-libs/ccolamd-2.9 - || ( >=sci-libs/metis-5.1.0 sci-libs/parmetis ) )" + || ( + >=sci-libs/metis-5.1.0 + sci-libs/parmetis + ) + )" RDEPEND="${DEPEND}" src_configure() { @@ -44,10 +51,10 @@ src_configure() { fi econf \ + --disable-static \ --with-blas="${blas_libs}" \ --with-lapack="${lapack_libs}" \ $(use_with doc) \ - $(use_enable static-libs static) \ $(use_with modify) \ $(use_with matrixops) \ $(use_with partition) \ @@ -55,3 +62,10 @@ src_configure() { $(use_with lapack supernodal) \ "${cudaconfargs[@]}" } + +src_install() { + default + + # no static archives + find "${D}" -name '*.la' -delete || die +}