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 4E535158018 for ; Sat, 2 Oct 2021 22:32:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8DB28E0878; Sat, 2 Oct 2021 22:32:33 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 75B35E0878 for ; Sat, 2 Oct 2021 22:32:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5E1A0342EE4 for ; Sat, 2 Oct 2021 22:32:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9C353108 for ; Sat, 2 Oct 2021 22:32: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: <1633213942.5e9c66b7858eef397c69239cac8ea87b2af8c837.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/strace/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/strace/strace-5.12-r1.ebuild dev-util/strace/strace-5.12.ebuild dev-util/strace/strace-5.14-r1.ebuild dev-util/strace/strace-5.14.ebuild dev-util/strace/strace-9999.ebuild X-VCS-Directories: dev-util/strace/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5e9c66b7858eef397c69239cac8ea87b2af8c837 X-VCS-Branch: master Date: Sat, 2 Oct 2021 22:32: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: eaaee7db-a4cf-4cdd-8b52-8ae98c5d96e1 X-Archives-Hash: bf26d6dcbc8980f14705d90fe0dfe5d5 commit: 5e9c66b7858eef397c69239cac8ea87b2af8c837 Author: Sam James gentoo org> AuthorDate: Sat Oct 2 22:32:10 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Oct 2 22:32:22 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e9c66b7 dev-util/strace: fix automagic dependency on libselinux Closes: https://bugs.gentoo.org/794745 Signed-off-by: Sam James gentoo.org> dev-util/strace/{strace-5.12.ebuild => strace-5.12-r1.ebuild} | 6 ++++-- dev-util/strace/{strace-5.14.ebuild => strace-5.14-r1.ebuild} | 4 +++- dev-util/strace/strace-9999.ebuild | 4 +++- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/dev-util/strace/strace-5.12.ebuild b/dev-util/strace/strace-5.12-r1.ebuild similarity index 93% rename from dev-util/strace/strace-5.12.ebuild rename to dev-util/strace/strace-5.12-r1.ebuild index d71516e9a04..98210d8944b 100644 --- a/dev-util/strace/strace-5.12.ebuild +++ b/dev-util/strace/strace-5.12-r1.ebuild @@ -7,7 +7,7 @@ inherit autotools flag-o-matic toolchain-funcs if [[ ${PV} == "9999" ]] ; then EGIT_REPO_URI="https://github.com/strace/strace.git" - inherit git-r3 autotools + inherit git-r3 else SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.xz" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" @@ -18,7 +18,7 @@ HOMEPAGE="https://strace.io/" LICENSE="BSD" SLOT="0" -IUSE="aio perl static unwind elfutils" +IUSE="aio perl selinux static unwind elfutils" REQUIRED_USE="?? ( unwind elfutils )" @@ -28,6 +28,7 @@ BDEPEND=" LIB_DEPEND=" unwind? ( sys-libs/libunwind[static-libs(+)] ) elfutils? ( dev-libs/elfutils[static-libs(+)] ) + selinux? ( sys-libs/libselinux[static-libs(+)] ) " # strace only uses the header from libaio to decode structs DEPEND=" @@ -82,6 +83,7 @@ src_configure() { $(use_enable static) $(use_with unwind libunwind) $(use_with elfutils libdw) + $(use_with selinux libselinux) ) econf "${myeconfargs[@]}" } diff --git a/dev-util/strace/strace-5.14.ebuild b/dev-util/strace/strace-5.14-r1.ebuild similarity index 94% rename from dev-util/strace/strace-5.14.ebuild rename to dev-util/strace/strace-5.14-r1.ebuild index f6a7e5f5503..035be39c835 100644 --- a/dev-util/strace/strace-5.14.ebuild +++ b/dev-util/strace/strace-5.14-r1.ebuild @@ -18,7 +18,7 @@ HOMEPAGE="https://strace.io/" LICENSE="BSD" SLOT="0" -IUSE="aio perl static unwind elfutils" +IUSE="aio perl selinux static unwind elfutils" REQUIRED_USE="?? ( unwind elfutils )" @@ -28,6 +28,7 @@ BDEPEND=" LIB_DEPEND=" unwind? ( sys-libs/libunwind[static-libs(+)] ) elfutils? ( dev-libs/elfutils[static-libs(+)] ) + selinux? ( sys-libs/libselinux[static-libs(+)] ) " # strace only uses the header from libaio to decode structs DEPEND=" @@ -82,6 +83,7 @@ src_configure() { $(use_enable static) $(use_with unwind libunwind) $(use_with elfutils libdw) + $(use_with selinux libselinux) ) econf "${myeconfargs[@]}" } diff --git a/dev-util/strace/strace-9999.ebuild b/dev-util/strace/strace-9999.ebuild index f6a7e5f5503..035be39c835 100644 --- a/dev-util/strace/strace-9999.ebuild +++ b/dev-util/strace/strace-9999.ebuild @@ -18,7 +18,7 @@ HOMEPAGE="https://strace.io/" LICENSE="BSD" SLOT="0" -IUSE="aio perl static unwind elfutils" +IUSE="aio perl selinux static unwind elfutils" REQUIRED_USE="?? ( unwind elfutils )" @@ -28,6 +28,7 @@ BDEPEND=" LIB_DEPEND=" unwind? ( sys-libs/libunwind[static-libs(+)] ) elfutils? ( dev-libs/elfutils[static-libs(+)] ) + selinux? ( sys-libs/libselinux[static-libs(+)] ) " # strace only uses the header from libaio to decode structs DEPEND=" @@ -82,6 +83,7 @@ src_configure() { $(use_enable static) $(use_with unwind libunwind) $(use_with elfutils libdw) + $(use_with selinux libselinux) ) econf "${myeconfargs[@]}" }