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 3C4551382C5 for ; Sun, 21 Feb 2021 23:49:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 606CDE0900; Sun, 21 Feb 2021 23:49:37 +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 B4A4CE0900 for ; Sun, 21 Feb 2021 23:49:36 +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 547A7340DBE for ; Sun, 21 Feb 2021 23:49:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BAEFB4A5 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.e5b0261c5a2f4225c909cdcb5268ff55ffebc447.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libomemo/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libomemo/libomemo-0.7.1-r1.ebuild net-libs/libomemo/libomemo-0.7.1.ebuild X-VCS-Directories: net-libs/libomemo/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: e5b0261c5a2f4225c909cdcb5268ff55ffebc447 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: 99480a1c-caed-48a9-bf0d-025c1c812222 X-Archives-Hash: 697215a95566469d8dcbdfce57f6d8d2 commit: e5b0261c5a2f4225c909cdcb5268ff55ffebc447 Author: Sebastian Pipping gentoo org> AuthorDate: Sun Feb 21 23:48:04 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=e5b0261c net-libs/libomemo: Add flag static-libs Closes: https://bugs.gentoo.org/771993 Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-3.0.14, Repoman-3.0.2 .../libomemo/{libomemo-0.7.1.ebuild => libomemo-0.7.1-r1.ebuild} | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/net-libs/libomemo/libomemo-0.7.1.ebuild b/net-libs/libomemo/libomemo-0.7.1-r1.ebuild similarity index 89% rename from net-libs/libomemo/libomemo-0.7.1.ebuild rename to net-libs/libomemo/libomemo-0.7.1-r1.ebuild index 3e2871fed15..8a2cf69b5d4 100644 --- a/net-libs/libomemo/libomemo-0.7.1.ebuild +++ b/net-libs/libomemo/libomemo-0.7.1-r1.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/gkdr/libomemo/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" +IUSE="static-libs" RDEPEND=" dev-db/sqlite @@ -43,4 +43,8 @@ src_install() { fi einstalldocs + + if ! use static-libs ; then + rm "${D}/usr/${libdir}/libomemo.a" || die + fi }