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 1053E1382C5 for ; Sat, 24 Apr 2021 13:08:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 675C2E0729; Sat, 24 Apr 2021 13:08:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 4BD76E0729 for ; Sat, 24 Apr 2021 13:08:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 77F7B3411C9 for ; Sat, 24 Apr 2021 13:08:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 16E904C3 for ; Sat, 24 Apr 2021 13:07:59 +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: <1619269666.d0dbe5bdd96740a978c86c3874430854744f4fa3.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/cxsparse/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/cxsparse/cxsparse-3.2.0.ebuild X-VCS-Directories: sci-libs/cxsparse/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: d0dbe5bdd96740a978c86c3874430854744f4fa3 X-VCS-Branch: master Date: Sat, 24 Apr 2021 13:07:59 +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: c861720c-6e39-4411-96d3-2b2e798fbb20 X-Archives-Hash: 8d2a3345bf26c5027472344bc7e046a3 commit: d0dbe5bdd96740a978c86c3874430854744f4fa3 Author: David Seifert gentoo org> AuthorDate: Sat Apr 24 13:07:46 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Apr 24 13:07:46 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0dbe5bd sci-libs/cxsparse: Remove IUSE="static-libs" Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: David Seifert gentoo.org> sci-libs/cxsparse/cxsparse-3.2.0.ebuild | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/sci-libs/cxsparse/cxsparse-3.2.0.ebuild b/sci-libs/cxsparse/cxsparse-3.2.0.ebuild index c5df715062a..fa44cb7a77c 100644 --- a/sci-libs/cxsparse/cxsparse-3.2.0.ebuild +++ b/sci-libs/cxsparse/cxsparse-3.2.0.ebuild @@ -12,21 +12,20 @@ SRC_URI="http://202.36.178.9/sage/${P}.tar.bz2" LICENSE="LGPL-2.1+" SLOT="0" KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" -IUSE="static-libs" +RDEPEND=">=sci-libs/suitesparseconfig-5.4.0[${MULTILIB_USEDEP}]" +DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig" -DEPEND=">=sci-libs/suitesparseconfig-5.4.0[${MULTILIB_USEDEP}]" -RDEPEND="${DEPEND}" -PATCHES=( "${FILESDIR}/${PN}-3.2.0-header.patch" ) +PATCHES=( "${FILESDIR}"/${PN}-3.2.0-header.patch ) multilib_src_configure() { - ECONF_SOURCE="${S}" econf $(use_enable static-libs static) + ECONF_SOURCE="${S}" econf --disable-static } multilib_src_install_all() { einstalldocs - # package provides .pc files - find "${D}" -name '*.la' -delete || die + # no static archives + find "${ED}" -name '*.la' -delete || die }