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 5A0981382C5 for ; Thu, 4 Jun 2020 19:52:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 85D0EE089A; Thu, 4 Jun 2020 19:52:49 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 E2545E089A for ; Thu, 4 Jun 2020 19:52:48 +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 8C99734F1D6 for ; Thu, 4 Jun 2020 19:52:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7F442175 for ; Thu, 4 Jun 2020 19:52:44 +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: <1591300349.bdd379b356b2ac8cc735677271a323ff5b7bb23a.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libdivecomputer/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libdivecomputer/libdivecomputer-0.6.0-r1.ebuild dev-libs/libdivecomputer/libdivecomputer-0.6.0.ebuild dev-libs/libdivecomputer/libdivecomputer-9999.ebuild X-VCS-Directories: dev-libs/libdivecomputer/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: bdd379b356b2ac8cc735677271a323ff5b7bb23a X-VCS-Branch: master Date: Thu, 4 Jun 2020 19:52:44 +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: 340c8874-940e-4657-9ab0-cd66f9dc9a8c X-Archives-Hash: 4f4612b35ddf2066b3b328b8f9063ae8 commit: bdd379b356b2ac8cc735677271a323ff5b7bb23a Author: David Seifert gentoo org> AuthorDate: Thu Jun 4 19:52:29 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Thu Jun 4 19:52:29 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdd379b3 dev-libs/libdivecomputer: [QA] Disable static libs Closes: https://bugs.gentoo.org/726966 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: David Seifert gentoo.org> ...omputer-0.6.0.ebuild => libdivecomputer-0.6.0-r1.ebuild} | 13 +++++++++++-- dev-libs/libdivecomputer/libdivecomputer-9999.ebuild | 13 +++++++++++-- 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/dev-libs/libdivecomputer/libdivecomputer-0.6.0.ebuild b/dev-libs/libdivecomputer/libdivecomputer-0.6.0-r1.ebuild similarity index 78% rename from dev-libs/libdivecomputer/libdivecomputer-0.6.0.ebuild rename to dev-libs/libdivecomputer/libdivecomputer-0.6.0-r1.ebuild index 0facf246785..74158781a3b 100644 --- a/dev-libs/libdivecomputer/libdivecomputer-0.6.0.ebuild +++ b/dev-libs/libdivecomputer/libdivecomputer-0.6.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" @@ -29,5 +29,14 @@ src_prepare() { } src_configure() { - econf $(use_with bluetooth bluez) + econf \ + --disable-static \ + $(use_with bluetooth bluez) +} + +src_install() { + default + + # no static archives + find "${D}" -name '*.la' -delete || die } diff --git a/dev-libs/libdivecomputer/libdivecomputer-9999.ebuild b/dev-libs/libdivecomputer/libdivecomputer-9999.ebuild index 0facf246785..74158781a3b 100644 --- a/dev-libs/libdivecomputer/libdivecomputer-9999.ebuild +++ b/dev-libs/libdivecomputer/libdivecomputer-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" @@ -29,5 +29,14 @@ src_prepare() { } src_configure() { - econf $(use_with bluetooth bluez) + econf \ + --disable-static \ + $(use_with bluetooth bluez) +} + +src_install() { + default + + # no static archives + find "${D}" -name '*.la' -delete || die }