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 0EA38138335 for ; Fri, 29 Nov 2019 02:21:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F141BE086F; Fri, 29 Nov 2019 02:21:49 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 DB72BE086F for ; Fri, 29 Nov 2019 02:21:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 49A4934D551 for ; Fri, 29 Nov 2019 02:21:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C2EB28C4 for ; Fri, 29 Nov 2019 02:21:45 +0000 (UTC) From: "Mike Gilbert" 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 Gilbert" Message-ID: <1574994095.556ac4a6a07a1e8f0ace2d8056f00ebd909cf811.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/fuse-exfat/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/fuse-exfat/fuse-exfat-1.3.0.ebuild X-VCS-Directories: sys-fs/fuse-exfat/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 556ac4a6a07a1e8f0ace2d8056f00ebd909cf811 X-VCS-Branch: master Date: Fri, 29 Nov 2019 02:21:45 +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: 903d6a29-8d82-46e4-bf41-8d691f0dea92 X-Archives-Hash: a993043ef1004a16e0f334c3fdaee060 commit: 556ac4a6a07a1e8f0ace2d8056f00ebd909cf811 Author: Mike Gilbert gentoo org> AuthorDate: Fri Nov 29 02:21:35 2019 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Fri Nov 29 02:21:35 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=556ac4a6 sys-fs/fuse-exfat: add suid USE flag Closes: https://bugs.gentoo.org/691704 Package-Manager: Portage-2.3.79_p3, Repoman-2.3.18_p2 Signed-off-by: Mike Gilbert gentoo.org> sys-fs/fuse-exfat/fuse-exfat-1.3.0.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys-fs/fuse-exfat/fuse-exfat-1.3.0.ebuild b/sys-fs/fuse-exfat/fuse-exfat-1.3.0.ebuild index ae1eb6cb731..e9825ca85a4 100644 --- a/sys-fs/fuse-exfat/fuse-exfat-1.3.0.ebuild +++ b/sys-fs/fuse-exfat/fuse-exfat-1.3.0.ebuild @@ -11,6 +11,7 @@ SRC_URI="https://github.com/relan/exfat/releases/download/v${PV}/${P}.tar.gz" LICENSE="GPL-2+" SLOT="0" KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-linux" +IUSE="suid" RDEPEND="sys-fs/fuse:0" DEPEND="${RDEPEND}" @@ -18,5 +19,6 @@ BDEPEND="virtual/pkgconfig" src_install() { default + use suid && fperms u+s /usr/sbin/mount.exfat-fuse dosym mount.exfat-fuse.8 /usr/share/man/man8/mount.exfat.8 }