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 5183E138334 for ; Sat, 25 May 2019 06:24:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81EF5E07DF; Sat, 25 May 2019 06:24:02 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 6994EE07DF for ; Sat, 25 May 2019 06:24:02 +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 12B0F344FB4 for ; Sat, 25 May 2019 06:24:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AE56C449 for ; Sat, 25 May 2019 06:23:59 +0000 (UTC) From: "Benda XU" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" Message-ID: <1558765380.8fe851db214d659a65487cfba4f7f9e8eb816c40.heroxbd@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/fuse/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/fuse/fuse-2.9.9.ebuild sys-fs/fuse/fuse-3.4.1.ebuild sys-fs/fuse/fuse-3.4.2.ebuild sys-fs/fuse/fuse-3.5.0.ebuild X-VCS-Directories: sys-fs/fuse/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: 8fe851db214d659a65487cfba4f7f9e8eb816c40 X-VCS-Branch: master Date: Sat, 25 May 2019 06:23:59 +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: 86eb5208-31dd-43b8-86c6-35184f279621 X-Archives-Hash: 6920629c4ac2068992a9612ee5db327d commit: 8fe851db214d659a65487cfba4f7f9e8eb816c40 Author: Benda Xu gentoo org> AuthorDate: Mon May 20 14:19:57 2019 +0000 Commit: Benda XU gentoo org> CommitDate: Sat May 25 06:23:00 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fe851db sys-fs/fuse: remove installed /dev directory on Prefix. In Gentoo Prefix, the /dev is not in the EPREFIX directory. Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Benda Xu gentoo.org> sys-fs/fuse/fuse-2.9.9.ebuild | 2 +- sys-fs/fuse/fuse-3.4.1.ebuild | 4 ++-- sys-fs/fuse/fuse-3.4.2.ebuild | 2 +- sys-fs/fuse/fuse-3.5.0.ebuild | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/sys-fs/fuse/fuse-2.9.9.ebuild b/sys-fs/fuse/fuse-2.9.9.ebuild index e36b63cd938..c2933b58a93 100644 --- a/sys-fs/fuse/fuse-2.9.9.ebuild +++ b/sys-fs/fuse/fuse-2.9.9.ebuild @@ -67,5 +67,5 @@ src_install() { rm -r "${ED}"/{etc,$(get_udevdir)} || die # handled by the device manager - rm -r "${ED}"/dev || die + rm -r "${D}"/dev || die } diff --git a/sys-fs/fuse/fuse-3.4.1.ebuild b/sys-fs/fuse/fuse-3.4.1.ebuild index dddc7c71995..f4468b46143 100644 --- a/sys-fs/fuse/fuse-3.4.1.ebuild +++ b/sys-fs/fuse/fuse-3.4.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -65,7 +65,7 @@ multilib_src_install_all() { rm -r "${ED%/}"/{etc,$(get_udevdir)} || die # handled by the device manager - rm -r "${ED%/}"/dev || die + rm -r "${D%/}"/dev || die # manually install man pages to respect compression rm -r "${ED%/}"/usr/share/man || die diff --git a/sys-fs/fuse/fuse-3.4.2.ebuild b/sys-fs/fuse/fuse-3.4.2.ebuild index 80ef8742517..36c655c869a 100644 --- a/sys-fs/fuse/fuse-3.4.2.ebuild +++ b/sys-fs/fuse/fuse-3.4.2.ebuild @@ -65,7 +65,7 @@ multilib_src_install_all() { rm -r "${ED}"/{etc,$(get_udevdir)} || die # handled by the device manager - rm -r "${ED}"/dev || die + rm -r "${D}"/dev || die # manually install man pages to respect compression rm -r "${ED}"/usr/share/man || die diff --git a/sys-fs/fuse/fuse-3.5.0.ebuild b/sys-fs/fuse/fuse-3.5.0.ebuild index 80ef8742517..36c655c869a 100644 --- a/sys-fs/fuse/fuse-3.5.0.ebuild +++ b/sys-fs/fuse/fuse-3.5.0.ebuild @@ -65,7 +65,7 @@ multilib_src_install_all() { rm -r "${ED}"/{etc,$(get_udevdir)} || die # handled by the device manager - rm -r "${ED}"/dev || die + rm -r "${D}"/dev || die # manually install man pages to respect compression rm -r "${ED}"/usr/share/man || die