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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 16CE4158094 for ; Sat, 25 Jun 2022 05:36:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53FD2E0839; Sat, 25 Jun 2022 05:36:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 36444E0839 for ; Sat, 25 Jun 2022 05:36:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DDFE2341829 for ; Sat, 25 Jun 2022 05:36:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 72BFB522 for ; Sat, 25 Jun 2022 05:36:30 +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: <1656135316.dce2020b998363f69d8ba68364754cf4ea2ec1f3.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/s6-linux-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/s6-linux-utils/s6-linux-utils-2.6.0.0.ebuild X-VCS-Directories: sys-apps/s6-linux-utils/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: dce2020b998363f69d8ba68364754cf4ea2ec1f3 X-VCS-Branch: master Date: Sat, 25 Jun 2022 05:36:30 +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: c4674a96-771e-4297-9274-7e209215f49d X-Archives-Hash: 57b146d8b54349d430a257c6346be695 commit: dce2020b998363f69d8ba68364754cf4ea2ec1f3 Author: Petr Vaněk atlas cz> AuthorDate: Thu Jun 16 13:35:21 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jun 25 05:35:16 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dce2020b sys-apps/s6-linux-utils: drop IUSE=static Signed-off-by: Petr Vaněk atlas.cz> Signed-off-by: Sam James gentoo.org> sys-apps/s6-linux-utils/s6-linux-utils-2.6.0.0.ebuild | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/sys-apps/s6-linux-utils/s6-linux-utils-2.6.0.0.ebuild b/sys-apps/s6-linux-utils/s6-linux-utils-2.6.0.0.ebuild index 7bd912ebe713..36d949ef12f9 100644 --- a/sys-apps/s6-linux-utils/s6-linux-utils-2.6.0.0.ebuild +++ b/sys-apps/s6-linux-utils/s6-linux-utils-2.6.0.0.ebuild @@ -12,12 +12,9 @@ SRC_URI="https://www.skarnet.org/software/${PN}/${P}.tar.gz" LICENSE="ISC" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~x86" -IUSE="static" -RDEPEND="!static? ( >=dev-libs/skalibs-2.12.0.0:= )" -DEPEND="${RDEPEND} - static? ( >=dev-libs/skalibs-2.12.0.0[static-libs] ) -" +RDEPEND=">=dev-libs/skalibs-2.12.0.0:=" +DEPEND="${RDEPEND}" HTML_DOCS=( doc/. ) @@ -40,8 +37,8 @@ src_configure() { --with-dynlib=/usr/$(get_libdir) --with-lib=/usr/$(get_libdir)/skalibs --with-sysdeps=/usr/$(get_libdir)/skalibs - $(use_enable static allstatic) - $(use_enable static static-libc) + --disable-allstatic + --disable-static-libc ) econf "${myconf[@]}"