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 9935B138359 for ; Wed, 23 Sep 2020 06:33:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7858E0864; Wed, 23 Sep 2020 06:33:35 +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 7A105E0869 for ; Wed, 23 Sep 2020 06:33:35 +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 49191340DB2 for ; Wed, 23 Sep 2020 06:33:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F59B37F for ; Wed, 23 Sep 2020 06:33:31 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1600840735.701f78b43749d228fa4fb9de9c823d55a21ebc51.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/sandboxfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/sandboxfs/sandboxfs-0.2.0.ebuild X-VCS-Directories: sys-fs/sandboxfs/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 701f78b43749d228fa4fb9de9c823d55a21ebc51 X-VCS-Branch: master Date: Wed, 23 Sep 2020 06:33:31 +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: 08bc877f-180d-48ca-adbd-e93535fbddfe X-Archives-Hash: 32975032ec685c0a74244e45b86d88df commit: 701f78b43749d228fa4fb9de9c823d55a21ebc51 Author: Georgy Yakovlev gentoo org> AuthorDate: Wed Sep 23 05:23:22 2020 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Wed Sep 23 05:58:55 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=701f78b4 sys-fs/sandboxfs: adjust for cargo_src_configure Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Georgy Yakovlev gentoo.org> sys-fs/sandboxfs/sandboxfs-0.2.0.ebuild | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/sys-fs/sandboxfs/sandboxfs-0.2.0.ebuild b/sys-fs/sandboxfs/sandboxfs-0.2.0.ebuild index 969d88adb8c..4f84031cfe0 100644 --- a/sys-fs/sandboxfs/sandboxfs-0.2.0.ebuild +++ b/sys-fs/sandboxfs/sandboxfs-0.2.0.ebuild @@ -97,18 +97,13 @@ QA_FLAGS_IGNORED="/usr/bin/sandboxfs" S="${WORKDIR}/${PN}-${P}" src_configure() { - myfeatures=( - $(usex profile profiling '') - ) -} - -src_compile() { - cargo_src_compile ${myfeatures:+--features "${myfeatures[*]}"} + local myfeatures=( $(usex profile profiling '') ) + cargo_src_configure } src_install() { mv man _man || die - cargo_src_install ${myfeatures:+--features "${myfeatures[*]}"} + cargo_src_install doman _man/"${PN}.1" einstalldocs }