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 A14561382C5 for ; Wed, 23 Jun 2021 04:46:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ED4B6E0830; Wed, 23 Jun 2021 04:46:42 +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 D3513E0830 for ; Wed, 23 Jun 2021 04:46:42 +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 F3C7933BF3C for ; Wed, 23 Jun 2021 04:46:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AAF057A0 for ; Wed, 23 Jun 2021 04:46:40 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1624423587.ad88687fbf4b228c9f129dd200e32dc8ddf14040.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libverto/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libverto/libverto-0.3.2.ebuild X-VCS-Directories: dev-libs/libverto/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ad88687fbf4b228c9f129dd200e32dc8ddf14040 X-VCS-Branch: master Date: Wed, 23 Jun 2021 04:46:40 +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: 79a33c93-576d-4f63-bc61-82d54ece534f X-Archives-Hash: 15afe86685f4ecb147c87d98e37d5ae6 commit: ad88687fbf4b228c9f129dd200e32dc8ddf14040 Author: Sam James gentoo org> AuthorDate: Wed Jun 23 04:46:27 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jun 23 04:46:27 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad88687f dev-libs/libverto: drop static-libs in 0.3.2 Signed-off-by: Sam James gentoo.org> dev-libs/libverto/libverto-0.3.2.ebuild | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/dev-libs/libverto/libverto-0.3.2.ebuild b/dev-libs/libverto/libverto-0.3.2.ebuild index 8e7b931f663..d6bf244ff04 100644 --- a/dev-libs/libverto/libverto-0.3.2.ebuild +++ b/dev-libs/libverto/libverto-0.3.2.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/latchset/libverto/releases/download/${PV}/${P}.tar.g LICENSE="MIT" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -IUSE="glib +libev libevent +threads static-libs" +IUSE="glib +libev libevent +threads" REQUIRED_USE="|| ( glib libev libevent )" DEPEND="glib? ( >=dev-libs/glib-2.34.3[${MULTILIB_USEDEP}] ) @@ -39,13 +39,11 @@ multilib_src_configure() { $(use_with libev) \ $(use_with libevent) \ $(use_with threads pthread) \ - $(use_enable static-libs static) + --disable-static } multilib_src_install_all() { default - if ! use static-libs ; then - find "${ED}" -name '*.la' -delete - fi + find "${ED}" -name '*.la' -delete }