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 560BE158020 for ; Sun, 13 Nov 2022 01:49:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9B82DE08CE; Sun, 13 Nov 2022 01:49:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 87FD5E08CE for ; Sun, 13 Nov 2022 01:49:45 +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 B5114340E37 for ; Sun, 13 Nov 2022 01:49:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 55F8B6FE for ; Sun, 13 Nov 2022 01:49:43 +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: <1668304179.bc74f68bad931feebbdde38823ee46387ce00b77.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/f2fs-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/f2fs-tools/f2fs-tools-1.15.0-r1.ebuild sys-fs/f2fs-tools/f2fs-tools-1.15.0-r2.ebuild sys-fs/f2fs-tools/f2fs-tools-9999.ebuild X-VCS-Directories: sys-fs/f2fs-tools/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: bc74f68bad931feebbdde38823ee46387ce00b77 X-VCS-Branch: master Date: Sun, 13 Nov 2022 01:49:43 +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: 3279a962-f73d-4505-bf62-022f8b17233f X-Archives-Hash: 65e372266a923796c74e5d4051dfdfb7 commit: bc74f68bad931feebbdde38823ee46387ce00b77 Author: Mike Gilbert gentoo org> AuthorDate: Sun Nov 13 01:46:55 2022 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sun Nov 13 01:49:39 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc74f68b sys-fs/f2fs-tools: remove /usr/sbin/sg_write_buffer Closes: https://bugs.gentoo.org/880899 Signed-off-by: Mike Gilbert gentoo.org> .../{f2fs-tools-1.15.0-r1.ebuild => f2fs-tools-1.15.0-r2.ebuild} | 3 +++ sys-fs/f2fs-tools/f2fs-tools-9999.ebuild | 3 +++ 2 files changed, 6 insertions(+) diff --git a/sys-fs/f2fs-tools/f2fs-tools-1.15.0-r1.ebuild b/sys-fs/f2fs-tools/f2fs-tools-1.15.0-r2.ebuild similarity index 89% rename from sys-fs/f2fs-tools/f2fs-tools-1.15.0-r1.ebuild rename to sys-fs/f2fs-tools/f2fs-tools-1.15.0-r2.ebuild index f274697e2da9..72236b8baf0b 100644 --- a/sys-fs/f2fs-tools/f2fs-tools-1.15.0-r1.ebuild +++ b/sys-fs/f2fs-tools/f2fs-tools-1.15.0-r2.ebuild @@ -39,4 +39,7 @@ src_configure() { src_install() { default find "${D}" -name "*.la" -delete || die + # Collides with sg3_utils + # https://bugs.gentoo.org/880899 + rm "${ED}/usr/sbin/sg_write_buffer" || die } diff --git a/sys-fs/f2fs-tools/f2fs-tools-9999.ebuild b/sys-fs/f2fs-tools/f2fs-tools-9999.ebuild index 45de5c193d7b..bcb10bcc1cb6 100644 --- a/sys-fs/f2fs-tools/f2fs-tools-9999.ebuild +++ b/sys-fs/f2fs-tools/f2fs-tools-9999.ebuild @@ -35,4 +35,7 @@ src_configure() { src_install() { default find "${D}" -name "*.la" -delete || die + # Collides with sg3_utils + # https://bugs.gentoo.org/880899 + rm "${ED}/usr/sbin/sg_write_buffer" || die }