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 96A83138359 for ; 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 CB9C6E08BF; Fri, 23 Oct 2020 09:25:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 AB697E0896 for ; Fri, 23 Oct 2020 09:25:04 +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 60520335DA9 for ; Fri, 23 Oct 2020 09:25:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1FBE3B5 for ; Fri, 23 Oct 2020 09:25:01 +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: <1603445088.24c0da7447257be4c9e3168a86d1202733751e63.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/dqlite/dqlite-1.6.0.ebuild X-VCS-Directories: dev-libs/dqlite/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 24c0da7447257be4c9e3168a86d1202733751e63 X-VCS-Branch: master Date: Fri, 23 Oct 2020 09:25:01 +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: 00add31d-9444-46ec-844e-6f87c1111df7 X-Archives-Hash: 2297478650dd2c03b17d07572821c788 commit: 24c0da7447257be4c9e3168a86d1202733751e63 Author: David Seifert gentoo org> AuthorDate: Fri Oct 23 09:24:48 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Oct 23 09:24:48 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24c0da74 dev-libs/dqlite: Disable building of static libraries Closes: https://bugs.gentoo.org/750809 Package-Manager: Portage-3.0.8, Repoman-3.0.2 Signed-off-by: David Seifert gentoo.org> dev-libs/dqlite/dqlite-1.6.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-libs/dqlite/dqlite-1.6.0.ebuild b/dev-libs/dqlite/dqlite-1.6.0.ebuild index b856a1d580b..4d80a538ad5 100644 --- a/dev-libs/dqlite/dqlite-1.6.0.ebuild +++ b/dev-libs/dqlite/dqlite-1.6.0.ebuild @@ -13,7 +13,6 @@ LICENSE="LGPL-3-with-linking-exception" SLOT="0" KEYWORDS="~amd64" IUSE="test" - RESTRICT="!test? ( test )" RDEPEND="dev-db/sqlite:3 @@ -31,6 +30,7 @@ src_configure() { local myeconfargs=( --disable-debug --disable-sanitize + --disable-static ) econf "${myeconfargs[@]}" @@ -38,5 +38,5 @@ src_configure() { src_install() { default - find "${D}" -name '*.la' -delete -o -name '*.a' -delete || die + find "${ED}" -name '*.la' -delete || die }