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 77C71158086 for ; Thu, 7 Oct 2021 02:48:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C332E087C; Thu, 7 Oct 2021 02:48:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 43A51E087C for ; Thu, 7 Oct 2021 02:48:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 48A9B343383 for ; Thu, 7 Oct 2021 02:48:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D61A6143 for ; Thu, 7 Oct 2021 02:48:23 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1633574839.cb200416b701b9c4bcbcec2dea3db8a23f3f73f0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/docbook-xsl-ns-stylesheets/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/docbook-xsl-ns-stylesheets/docbook-xsl-ns-stylesheets-1.79.1.ebuild X-VCS-Directories: app-text/docbook-xsl-ns-stylesheets/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: cb200416b701b9c4bcbcec2dea3db8a23f3f73f0 X-VCS-Branch: master Date: Thu, 7 Oct 2021 02:48:23 +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: 02949ce5-b9fc-48f8-a6cb-30c944ffb09c X-Archives-Hash: 29d76e5c9d97090c6d14c653a0f9c689 commit: cb200416b701b9c4bcbcec2dea3db8a23f3f73f0 Author: Sam James gentoo org> AuthorDate: Thu Oct 7 02:47:19 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Oct 7 02:47:19 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb200416 app-text/docbook-xsl-ns-stylesheets: die on failed build-docbook-catalog Fail loudly if build-docbook-catalog wasn't successful; this is likely due to /run not being (bind-)mounted (in chroots/new installs). Bug: https://bugs.gentoo.org/816303 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Sam James gentoo.org> .../docbook-xsl-ns-stylesheets-1.79.1.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app-text/docbook-xsl-ns-stylesheets/docbook-xsl-ns-stylesheets-1.79.1.ebuild b/app-text/docbook-xsl-ns-stylesheets/docbook-xsl-ns-stylesheets-1.79.1.ebuild index 1755483b705..d45bb7f2656 100644 --- a/app-text/docbook-xsl-ns-stylesheets/docbook-xsl-ns-stylesheets-1.79.1.ebuild +++ b/app-text/docbook-xsl-ns-stylesheets/docbook-xsl-ns-stylesheets-1.79.1.ebuild @@ -72,9 +72,11 @@ EOF } pkg_postinst() { - build-docbook-catalog + # See bug #816303 for rationale behind die + build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" } pkg_postrm() { - build-docbook-catalog + # See bug #816303 for rationale behind die + build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?" }