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 D6827138359 for ; Sat, 29 Aug 2020 07:42:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1850DE0973; Sat, 29 Aug 2020 07:42:21 +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 F3CE6E0973 for ; Sat, 29 Aug 2020 07:42:20 +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 9662B340BC1 for ; Sat, 29 Aug 2020 07:42:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0ABB52D2 for ; Sat, 29 Aug 2020 07:42:17 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1598686934.4a3c4191cbe4add54c3fade995214706a5de3fb8.slyfox@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.2.6.ebuild X-VCS-Directories: app-misc/pax-utils/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 4a3c4191cbe4add54c3fade995214706a5de3fb8 X-VCS-Branch: master Date: Sat, 29 Aug 2020 07:42:17 +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: d7343b9f-df72-4437-96fb-71e2e0a41e53 X-Archives-Hash: c95a7fc3b15cb117720248682d6579fd commit: 4a3c4191cbe4add54c3fade995214706a5de3fb8 Author: Sergei Trofimovich gentoo org> AuthorDate: Sat Aug 29 07:41:59 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sat Aug 29 07:42:14 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a3c4191 app-misc/pax-utils: move linux-headers dep to DEPEND Reported-by: Arfrever Frehtes Taifersar Arahesis Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Sergei Trofimovich gentoo.org> app-misc/pax-utils/pax-utils-1.2.6.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/app-misc/pax-utils/pax-utils-1.2.6.ebuild b/app-misc/pax-utils/pax-utils-1.2.6.ebuild index 389066a0892..e085328a835 100644 --- a/app-misc/pax-utils/pax-utils-1.2.6.ebuild +++ b/app-misc/pax-utils/pax-utils-1.2.6.ebuild @@ -24,12 +24,15 @@ RDEPEND="caps? ( >=sys-libs/libcap-2.24 ) dev-python/pyelftools[${PYTHON_MULTI_USEDEP}] ') ) - seccomp? ( sys-libs/libseccomp )" -DEPEND="${RDEPEND}" + seccomp? ( sys-libs/libseccomp ) +" # >=linux-headers-4.11 to pick linux headers with statx, bug #737094 +DEPEND=" + ${RDEPEND} + kernel_linux? ( >=sys-kernel/linux-headers-4.11 ) +" BDEPEND=" caps? ( virtual/pkgconfig ) - kernel_linux? ( >=sys-kernel/linux-headers-4.11 ) seccomp? ( virtual/pkgconfig ) " REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"