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 5B833158086 for ; Thu, 7 Oct 2021 07:12:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 984CEE0875; Thu, 7 Oct 2021 07:12:11 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7F50AE0875 for ; Thu, 7 Oct 2021 07:12:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6D9403433DC for ; Thu, 7 Oct 2021 07:12:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B53FBD0 for ; Thu, 7 Oct 2021 07:12:08 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1633590690.c8cf2a059e64957bbeba36813ffbd887523f91f1.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/pax-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/pax-utils/pax-utils-1.3.1.ebuild app-misc/pax-utils/pax-utils-1.3.2.ebuild app-misc/pax-utils/pax-utils-1.3.3.ebuild X-VCS-Directories: app-misc/pax-utils/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: c8cf2a059e64957bbeba36813ffbd887523f91f1 X-VCS-Branch: master Date: Thu, 7 Oct 2021 07:12:08 +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: 6cc505ff-0789-45e2-ac6e-07613e9145e7 X-Archives-Hash: 48e06ecc5385358b0256714efa8ef39a commit: c8cf2a059e64957bbeba36813ffbd887523f91f1 Author: Mike Frysinger gentoo org> AuthorDate: Thu Oct 7 07:08:36 2021 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Thu Oct 7 07:11:30 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8cf2a05 app-misc/pax-utils: drop old linux-headers dep This was needed when the seccomp filters were generated on the fly via libseccomp, but we precompile & ship the filters ahead of time now, so don't need up-to-date kernel headers when building via the ebuild. Signed-off-by: Mike Frysinger gentoo.org> app-misc/pax-utils/pax-utils-1.3.1.ebuild | 6 +----- app-misc/pax-utils/pax-utils-1.3.2.ebuild | 6 +----- app-misc/pax-utils/pax-utils-1.3.3.ebuild | 6 +----- 3 files changed, 3 insertions(+), 15 deletions(-) diff --git a/app-misc/pax-utils/pax-utils-1.3.1.ebuild b/app-misc/pax-utils/pax-utils-1.3.1.ebuild index 343870e9abe..0811930618d 100644 --- a/app-misc/pax-utils/pax-utils-1.3.1.ebuild +++ b/app-misc/pax-utils/pax-utils-1.3.1.ebuild @@ -26,11 +26,7 @@ RDEPEND="caps? ( >=sys-libs/libcap-2.24 ) ') ) " -# >=linux-headers-5.8 to pick linux headers with faccessat2, bug #768624 -DEPEND=" - ${RDEPEND} - kernel_linux? ( !prefix-guest? ( >=sys-kernel/linux-headers-5.8 ) ) -" +DEPEND="${RDEPEND}" BDEPEND=" caps? ( virtual/pkgconfig ) " diff --git a/app-misc/pax-utils/pax-utils-1.3.2.ebuild b/app-misc/pax-utils/pax-utils-1.3.2.ebuild index f99948a5de3..8e96fbe04f6 100644 --- a/app-misc/pax-utils/pax-utils-1.3.2.ebuild +++ b/app-misc/pax-utils/pax-utils-1.3.2.ebuild @@ -26,11 +26,7 @@ RDEPEND="caps? ( >=sys-libs/libcap-2.24 ) ') ) " -# >=linux-headers-5.8 to pick linux headers with faccessat2, bug #768624 -DEPEND=" - ${RDEPEND} - kernel_linux? ( !prefix-guest? ( >=sys-kernel/linux-headers-5.8 ) ) -" +DEPEND="${RDEPEND}" BDEPEND=" caps? ( virtual/pkgconfig ) " diff --git a/app-misc/pax-utils/pax-utils-1.3.3.ebuild b/app-misc/pax-utils/pax-utils-1.3.3.ebuild index 097d367f740..ba45fad2cd4 100644 --- a/app-misc/pax-utils/pax-utils-1.3.3.ebuild +++ b/app-misc/pax-utils/pax-utils-1.3.3.ebuild @@ -29,11 +29,7 @@ RDEPEND="caps? ( >=sys-libs/libcap-2.24 ) ') ) " -# >=linux-headers-5.8 to pick linux headers with faccessat2, bug #768624 -DEPEND=" - ${RDEPEND} - kernel_linux? ( !prefix-guest? ( >=sys-kernel/linux-headers-5.8 ) ) -" +DEPEND="${RDEPEND}" BDEPEND=" caps? ( virtual/pkgconfig ) "