From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1217045-garchives=archives.gentoo.org@lists.gentoo.org>
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 F09A0138359
	for <garchives@archives.gentoo.org>; Fri, 23 Oct 2020 09:25:05 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id E1A69E0896;
	Fri, 23 Oct 2020 09:25:04 +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 C918AE0896
	for <gentoo-commits@lists.gentoo.org>; Fri, 23 Oct 2020 09:25:04 +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 406B8335DA4
	for <gentoo-commits@lists.gentoo.org>; Fri, 23 Oct 2020 09:25:03 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E9643B3
	for <gentoo-commits@lists.gentoo.org>; Fri, 23 Oct 2020 09:25:01 +0000 (UTC)
From: "David Seifert" <soap@gentoo.org>
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" <soap@gentoo.org>
Message-ID: <1603445086.ad7d7c905147958b611ed689cd267626e98f6c78.soap@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/raft/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-libs/raft/raft-0.9.25.ebuild
X-VCS-Directories: dev-libs/raft/
X-VCS-Committer: soap
X-VCS-Committer-Name: David Seifert
X-VCS-Revision: ad7d7c905147958b611ed689cd267626e98f6c78
X-VCS-Branch: master
Date: Fri, 23 Oct 2020 09:25:01 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: af42ad43-6578-4e13-917a-8e79531b57a0
X-Archives-Hash: f53000eac436d7629da3402f14d54bcf

commit:     ad7d7c905147958b611ed689cd267626e98f6c78
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 23 09:24:46 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Oct 23 09:24:46 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad7d7c90

dev-libs/raft: Disable building of static libraries

Closes: https://bugs.gentoo.org/750806
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-libs/raft/raft-0.9.25.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/raft/raft-0.9.25.ebuild b/dev-libs/raft/raft-0.9.25.ebuild
index 8772c89edc9..e8474529d1c 100644
--- a/dev-libs/raft/raft-0.9.25.ebuild
+++ b/dev-libs/raft/raft-0.9.25.ebuild
@@ -13,7 +13,6 @@ LICENSE="LGPL-3-with-linking-exception"
 SLOT="0"
 KEYWORDS="~amd64"
 IUSE="test"
-
 RESTRICT="!test? ( test )"
 
 DEPEND="dev-libs/libuv"
@@ -36,6 +35,7 @@ src_configure() {
 		--disable-debug
 		--disable-example
 		--disable-sanitize
+		--disable-static
 
 		$(use_enable test fixture)
 	)
@@ -45,5 +45,5 @@ src_configure() {
 
 src_install() {
 	default
-	find "${D}" -name '*.la' -delete -o -name '*.a' -delete || die
+	find "${ED}" -name '*.la' -delete || die
 }