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 6BE69138359 for ; Sun, 23 Aug 2020 17:02:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C54FE0831; Sun, 23 Aug 2020 17:02:00 +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 33477E0830 for ; Sun, 23 Aug 2020 17:02:00 +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 EDAA3335D85 for ; Sun, 23 Aug 2020 17:01:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6453733D 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: <1598202094.e807e60264c21329d8f8b8b8bb5fc04ed294895a.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/igraph/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/igraph/igraph-0.7.1-r2.ebuild X-VCS-Directories: dev-libs/igraph/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: e807e60264c21329d8f8b8b8bb5fc04ed294895a 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: d7d3e038-bbab-432f-a282-57d6cd6d52cb X-Archives-Hash: 20036ac3cbf95d042ebddbbe8630b349 commit: e807e60264c21329d8f8b8b8bb5fc04ed294895a Author: David Seifert gentoo org> AuthorDate: Sun Aug 23 17:01:34 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Aug 23 17:01:34 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e807e602 dev-libs/igraph: Remove libtool archives Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: David Seifert gentoo.org> dev-libs/igraph/igraph-0.7.1-r2.ebuild | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/dev-libs/igraph/igraph-0.7.1-r2.ebuild b/dev-libs/igraph/igraph-0.7.1-r2.ebuild index 83c2185d5b3..b920276602c 100644 --- a/dev-libs/igraph/igraph-0.7.1-r2.ebuild +++ b/dev-libs/igraph/igraph-0.7.1-r2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 inherit autotools toolchain-funcs @@ -22,8 +22,8 @@ RDEPEND=" >=sci-libs/cxsparse-3 sci-mathematics/glpk gmp? ( dev-libs/gmp:0 )" -DEPEND="${RDEPEND} - virtual/pkgconfig" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}"/${P}-unbundle.patch ) @@ -37,6 +37,7 @@ src_configure() { econf \ $(use_enable gmp) \ $(use_enable debug) \ + --disable-static \ --disable-tls \ --with-external-arpack \ --with-external-blas \ @@ -44,3 +45,10 @@ src_configure() { --with-external-f2c \ --with-external-glpk } + +src_install() { + default + + # no static archives + find "${D}" -name '*.la' -delete || die +}