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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1647B1581D3 for ; Wed, 15 May 2024 16:24:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5459DE2A7D; Wed, 15 May 2024 16:24:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 36BBAE2A7D for ; Wed, 15 May 2024 16:24:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6B35933D3C2 for ; Wed, 15 May 2024 16:24:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0095B1A80 for ; Wed, 15 May 2024 16:24:24 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1715790199.348ae74444332bb7683ab5e64bddabaa936aef15.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/rclone/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/rclone/rclone-1.66.0-r1.ebuild net-misc/rclone/rclone-1.66.0.ebuild X-VCS-Directories: net-misc/rclone/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 348ae74444332bb7683ab5e64bddabaa936aef15 X-VCS-Branch: master Date: Wed, 15 May 2024 16:24:24 +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: 7a794615-7f42-4713-b7ca-9d1cb7a42644 X-Archives-Hash: f70b0ef636b5af55c7696e99e121664f commit: 348ae74444332bb7683ab5e64bddabaa936aef15 Author: Maciej Barć gentoo org> AuthorDate: Wed May 15 16:22:11 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Wed May 15 16:23:19 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=348ae744 net-misc/rclone: add mount helper symlink See also: https://rclone.org/commands/rclone_mount/#rclone-as-unix-mount-helper Closes: https://bugs.gentoo.org/919808 Signed-off-by: Maciej Barć gentoo.org> net-misc/rclone/{rclone-1.66.0.ebuild => rclone-1.66.0-r1.ebuild} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net-misc/rclone/rclone-1.66.0.ebuild b/net-misc/rclone/rclone-1.66.0-r1.ebuild similarity index 93% rename from net-misc/rclone/rclone-1.66.0.ebuild rename to net-misc/rclone/rclone-1.66.0-r1.ebuild index 87da0231b062..b59ebe324c66 100644 --- a/net-misc/rclone/rclone-1.66.0.ebuild +++ b/net-misc/rclone/rclone-1.66.0-r1.ebuild @@ -55,11 +55,13 @@ src_test() { src_install() { exeinto /usr/bin doexe "${PN}" - doman "${PN}.1" + dosym -r "/usr/bin/${PN}" /usr/bin/mount.rclone + dosym -r "/usr/bin/${PN}" /usr/bin/rclonefs newbashcomp "${PN}.bash" "${PN}" insinto /usr/share/zsh/site-functions newins "${PN}.zsh" "_${PN}" + doman "${PN}.1" einstalldocs }