From 26b59d894e569f78a7129a7b5275094e0d19c5df Mon Sep 17 00:00:00 2001 From: Sam James Date: Tue, 14 Jul 2026 05:11:40 +0100 Subject: [PATCH] sys-apps/sed: fix automagic sys-apps/attr dep >=acl-2.4.0 dropped its dep on sys-apps/attr upstream, so I suspect we're going to see a bunch of these. This one comes from a gnulib module. Closes: https://bugs.gentoo.org/979209 Signed-off-by: Sam James --- sys-apps/sed/{sed-4.10.ebuild => sed-4.10-r1.ebuild} | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) rename sys-apps/sed/{sed-4.10.ebuild => sed-4.10-r1.ebuild} (92%) diff --git a/sys-apps/sed/sed-4.10.ebuild b/sys-apps/sed/sed-4.10-r1.ebuild similarity index 92% rename from sys-apps/sed/sed-4.10.ebuild rename to sys-apps/sed/sed-4.10-r1.ebuild index 0f8ba3d69ffa8..863908e58ba6e 100644 --- a/sys-apps/sed/sed-4.10.ebuild +++ b/sys-apps/sed/sed-4.10-r1.ebuild @@ -29,20 +29,23 @@ fi LICENSE="GPL-3+" SLOT="0" -IUSE="acl nls selinux static test-full" +IUSE="acl nls selinux static test-full xattr" RDEPEND=" !static? ( acl? ( virtual/acl ) nls? ( virtual/libintl ) selinux? ( sys-libs/libselinux ) + xattr? ( sys-apps/attr ) ) " -DEPEND="${RDEPEND} +DEPEND=" + ${RDEPEND} static? ( acl? ( virtual/acl[static-libs(+)] ) nls? ( virtual/libintl[static-libs(+)] ) selinux? ( sys-libs/libselinux[static-libs(+)] ) + xattr? ( sys-apps/attr[static-libs(+)] ) ) " BDEPEND=" @@ -57,6 +60,7 @@ src_configure() { --exec-prefix="${EPREFIX}" $(use_enable acl) $(use_enable nls) + $(use_enable xattr) $(use_with selinux) # rename to gsed for better BSD compatibility --program-prefix=g