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 2CE72158094 for ; Wed, 22 Jun 2022 05:40:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 700AAE077C; Wed, 22 Jun 2022 05:40:49 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 507DFE077C for ; Wed, 22 Jun 2022 05:40:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 smtp.gentoo.org (Postfix) with ESMTPS id 2F7413417A2 for ; Wed, 22 Jun 2022 05:40:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AC3A650E for ; Wed, 22 Jun 2022 05:40:46 +0000 (UTC) From: "Denis Reva" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Denis Reva" Message-ID: <1655876432.d6249f0ce683649ef165f347f27cf472aad9def8.RarogCmex@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/dwarfs-bin/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-fs/dwarfs-bin/dwarfs-bin-0.6.1.ebuild X-VCS-Directories: sys-fs/dwarfs-bin/ X-VCS-Committer: RarogCmex X-VCS-Committer-Name: Denis Reva X-VCS-Revision: d6249f0ce683649ef165f347f27cf472aad9def8 X-VCS-Branch: dev Date: Wed, 22 Jun 2022 05:40:46 +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: bcf56d3f-35c4-4163-a102-ee88377f5967 X-Archives-Hash: 21eeb3ef2261766c46ac29f0539d76e8 commit: d6249f0ce683649ef165f347f27cf472aad9def8 Author: Denis Reva gmail com> AuthorDate: Wed Jun 22 05:40:32 2022 +0000 Commit: Denis Reva gmail com> CommitDate: Wed Jun 22 05:40:32 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d6249f0c sys-fs/dwarfs-bin: added missing ||die statements Not bumpung revision of ebuild because it's not breaking change. Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Denis Reva gmail.com> sys-fs/dwarfs-bin/dwarfs-bin-0.6.1.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys-fs/dwarfs-bin/dwarfs-bin-0.6.1.ebuild b/sys-fs/dwarfs-bin/dwarfs-bin-0.6.1.ebuild index 93f3c27f3..b09176c7f 100644 --- a/sys-fs/dwarfs-bin/dwarfs-bin-0.6.1.ebuild +++ b/sys-fs/dwarfs-bin/dwarfs-bin-0.6.1.ebuild @@ -28,15 +28,15 @@ QA_PREBUILT=" src_prepare() { default einfo "Removing legacy fuse2-related stuff..." - rm sbin/dwarfs2 sbin/mount.dwarfs2 + rm sbin/dwarfs2 sbin/mount.dwarfs2 || die einfo "Done. Correcting man paths..." - mkdir -p usr/ - mv share/ usr/ + mkdir -p usr/ || die + mv share/ usr/ || die einfo "Done." } src_install(){ - mv "${S}"/* "${D}"/ + mv "${S}"/* "${D}"/ || die } pkg_postinst(){