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 EC7BD158086 for ; Mon, 6 Dec 2021 22:45:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23C7A2BC004; Mon, 6 Dec 2021 22:45:59 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DBD252BC004 for ; Mon, 6 Dec 2021 22:45:58 +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 AB501343384 for ; Mon, 6 Dec 2021 22:45:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4DE3910C for ; Mon, 6 Dec 2021 22:45:56 +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: <1638830743.9110a9e30beca811f3e1cba5e232bb803e11407b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/mupdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/mupdf/metadata.xml app-text/mupdf/mupdf-1.19.0.ebuild X-VCS-Directories: app-text/mupdf/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9110a9e30beca811f3e1cba5e232bb803e11407b X-VCS-Branch: master Date: Mon, 6 Dec 2021 22:45:56 +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: fdb54f31-459c-4eb7-882e-27c4729a0557 X-Archives-Hash: 6f7860e1ab51988936e5922437cba5e4 commit: 9110a9e30beca811f3e1cba5e232bb803e11407b Author: Philipp Rösner protonmail com> AuthorDate: Mon Dec 6 00:26:07 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Dec 6 22:45:43 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9110a9e3 app-text/mupdf: Added messages to die calls As pointed out in PR #23174 calls to die didn't have meaningful error messages attached. Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Philipp Roesner protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/23193 Signed-off-by: Sam James gentoo.org> app-text/mupdf/metadata.xml | 9 ++++++++- app-text/mupdf/mupdf-1.19.0.ebuild | 8 ++++---- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/app-text/mupdf/metadata.xml b/app-text/mupdf/metadata.xml index 115e9d64a669..5d2f87cc3174 100644 --- a/app-text/mupdf/metadata.xml +++ b/app-text/mupdf/metadata.xml @@ -1,5 +1,12 @@ - + + rndxelement@protonmail.com + Philipp Rösner + + + proxy-maint@gentoo.org + Proxy Maintainers + diff --git a/app-text/mupdf/mupdf-1.19.0.ebuild b/app-text/mupdf/mupdf-1.19.0.ebuild index 88ff8063033b..9d1dae31213a 100644 --- a/app-text/mupdf/mupdf-1.19.0.ebuild +++ b/app-text/mupdf/mupdf-1.19.0.ebuild @@ -67,7 +67,7 @@ src_prepare() { -e "1iAR = $(tc-getAR)" \ -e "1iverbose = yes" \ -e "1ibuild = debug" \ - -i Makerules || die + -i Makerules || die "Failed adding build variables to Makerules in src_prepare()" } _emake() { @@ -122,14 +122,14 @@ src_install() { domenu platform/debian/${PN}.desktop doicon platform/debian/${PN}.xpm else - rm docs/man/${PN}.1 || die + rm docs/man/${PN}.1 || die "Failed to remove man page in src_install()" fi sed -i \ -e "1iprefix = ${ED}/usr" \ -e "1ilibdir = ${ED}/usr/$(get_libdir)" \ -e "1idocdir = ${ED}/usr/share/doc/${PF}" \ - -i Makerules || die + -i Makerules || die "Failed adding liprefix, lilibdir and lidocdir to Makerules in src_install()" _emake install @@ -144,7 +144,7 @@ src_install() { fi # Respect libdir (bug #734898) - sed -i -e "s:/lib:/$(get_libdir):" platform/debian/${PN}.pc || die + sed -i -e "s:/lib:/$(get_libdir):" platform/debian/${PN}.pc || die "Failed to sed pkgconfig file to respect libdir in src_install()" insinto /usr/$(get_libdir)/pkgconfig doins platform/debian/${PN}.pc