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 F3380158094 for ; Wed, 22 Jun 2022 17:39:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2160FE0991; Wed, 22 Jun 2022 17:39:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 06912E0991 for ; Wed, 22 Jun 2022 17:39:18 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 11902341A9A for ; Wed, 22 Jun 2022 17:39:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7A020517 for ; Wed, 22 Jun 2022 17:39:14 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1655876432.d6249f0ce683649ef165f347f27cf472aad9def8.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master 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: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: d6249f0ce683649ef165f347f27cf472aad9def8 X-VCS-Branch: master Date: Wed, 22 Jun 2022 17:39:14 +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: 7d2bf2f2-3cac-4317-9f02-f600d609d477 X-Archives-Hash: eb235e512ae1cd1e1ac3260430d63bdb commit: d6249f0ce683649ef165f347f27cf472aad9def8 Author: Denis Reva gmail com> AuthorDate: Wed Jun 22 05:40:32 2022 +0000 Commit: Andrew Ammerlaan gentoo org> 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(){