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 C9B3A13835B for ; Sat, 14 Nov 2020 20:22:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 07CBFE086F; Sat, 14 Nov 2020 20:22:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 E296DE086F for ; Sat, 14 Nov 2020 20:22:15 +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 BFF7A341145 for ; Sat, 14 Nov 2020 20:22:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3D314462 for ; Sat, 14 Nov 2020 20:22:09 +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: <1605385189.8f536b23e9f79a427272386b6bb0858a80573f49.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fabric/infiniband-diags/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fabric/infiniband-diags/infiniband-diags-1.6.4.ebuild X-VCS-Directories: sys-fabric/infiniband-diags/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 8f536b23e9f79a427272386b6bb0858a80573f49 X-VCS-Branch: master Date: Sat, 14 Nov 2020 20:22:09 +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: 812f5040-a4c4-4774-8e6e-8276b700798e X-Archives-Hash: 66bc8fab36d8858fc7833574629a7347 commit: 8f536b23e9f79a427272386b6bb0858a80573f49 Author: Jakov Smolic sartura hr> AuthorDate: Sat Nov 14 20:19:49 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Nov 14 20:19:49 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f536b23 sys-fabric/infiniband-diags: disable static libs Closes: https://bugs.gentoo.org/728170 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: David Seifert gentoo.org> sys-fabric/infiniband-diags/infiniband-diags-1.6.4.ebuild | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/sys-fabric/infiniband-diags/infiniband-diags-1.6.4.ebuild b/sys-fabric/infiniband-diags/infiniband-diags-1.6.4.ebuild index a3fbe0a72e2..6bda2d97ac7 100644 --- a/sys-fabric/infiniband-diags/infiniband-diags-1.6.4.ebuild +++ b/sys-fabric/infiniband-diags/infiniband-diags-1.6.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -20,3 +20,12 @@ DEPEND=" sys-fabric/opensm:${SLOT}" RDEPEND="${DEPEND}" block_other_ofed_versions + +src_configure() { + econf --disable-static +} + +src_install() { + default + find "${ED}" -name '*.la' -delete || die +}