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 36F9A1382C5 for ; Sun, 21 Feb 2021 23:49:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8B3D5E0905; Sun, 21 Feb 2021 23:49:41 +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 6F11EE0905 for ; Sun, 21 Feb 2021 23:49:41 +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 F0B58340FAF for ; Sun, 21 Feb 2021 23:49:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A5C7A2A9 for ; Sun, 21 Feb 2021 23:49:33 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1613951358.77abbd1a8db9bed76d7b561abe9a1b49a69f32ed.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libaxc/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libaxc/libaxc-0.3.4-r1.ebuild net-libs/libaxc/libaxc-0.3.4.ebuild X-VCS-Directories: net-libs/libaxc/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 77abbd1a8db9bed76d7b561abe9a1b49a69f32ed X-VCS-Branch: master Date: Sun, 21 Feb 2021 23:49:33 +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: b7508e57-9d63-41cf-aae8-07121aed971a X-Archives-Hash: ea0ae745e81c24b0d22063db462c5f42 commit: 77abbd1a8db9bed76d7b561abe9a1b49a69f32ed Author: Sebastian Pipping gentoo org> AuthorDate: Sun Feb 21 23:45:22 2021 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Sun Feb 21 23:49:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77abbd1a net-libs/libaxc: Add flag static-libs Closes: https://bugs.gentoo.org/771990 Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-3.0.14, Repoman-3.0.2 net-libs/libaxc/{libaxc-0.3.4.ebuild => libaxc-0.3.4-r1.ebuild} | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/net-libs/libaxc/libaxc-0.3.4.ebuild b/net-libs/libaxc/libaxc-0.3.4-r1.ebuild similarity index 91% rename from net-libs/libaxc/libaxc-0.3.4.ebuild rename to net-libs/libaxc/libaxc-0.3.4-r1.ebuild index 307fc994eff..118c26c25d8 100644 --- a/net-libs/libaxc/libaxc-0.3.4.ebuild +++ b/net-libs/libaxc/libaxc-0.3.4-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/gkdr/axc/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" # not GPL-3+ SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" +IUSE="static-libs" RDEPEND=" dev-db/sqlite @@ -51,4 +51,8 @@ src_install() { fi einstalldocs + + if ! use static-libs ; then + rm "${D}/usr/${libdir}/libaxc.a" || die + fi }