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 E857B158010 for ; Wed, 4 Jan 2023 05:50:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 41C9BE07D4; Wed, 4 Jan 2023 05:50:53 +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 17F57E07D1 for ; Wed, 4 Jan 2023 05:50:53 +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 35494340E8D for ; Wed, 4 Jan 2023 05:50:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 37F22803 for ; Wed, 4 Jan 2023 05:50:49 +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: <1672811293.68b0afea5d7cf758f1b2d39763b65396a8c65f78.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/icaclient/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/icaclient/icaclient-22.12.0.12-r1.ebuild net-misc/icaclient/icaclient-22.12.0.12.ebuild X-VCS-Directories: net-misc/icaclient/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 68b0afea5d7cf758f1b2d39763b65396a8c65f78 X-VCS-Branch: master Date: Wed, 4 Jan 2023 05:50:49 +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: a6785492-5f82-460b-afde-b6fae33f91f1 X-Archives-Hash: 099ba37007b979de9dd05918d47cd58b commit: 68b0afea5d7cf758f1b2d39763b65396a8c65f78 Author: Henning Schild hennsch de> AuthorDate: Mon Jan 2 19:54:35 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jan 4 05:48:13 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68b0afea net-misc/icaclient: fix broken BDEPEND and add error handling When one wants to use "hdx" that does not really work as expected due to a typo. Also include the missing "|| die"s that have been pointed out in a previous review. Signed-off-by: Henning Schild hennsch.de> Closes: https://github.com/gentoo/gentoo/pull/28940 Signed-off-by: Sam James gentoo.org> ...client-22.12.0.12.ebuild => icaclient-22.12.0.12-r1.ebuild} | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/net-misc/icaclient/icaclient-22.12.0.12.ebuild b/net-misc/icaclient/icaclient-22.12.0.12-r1.ebuild similarity index 97% rename from net-misc/icaclient/icaclient-22.12.0.12.ebuild rename to net-misc/icaclient/icaclient-22.12.0.12-r1.ebuild index 399b2a4f22b1..c29d64d2492d 100644 --- a/net-misc/icaclient/icaclient-22.12.0.12.ebuild +++ b/net-misc/icaclient/icaclient-22.12.0.12-r1.ebuild @@ -40,7 +40,7 @@ REQUIRES_EXCLUDE="${REQUIRES_EXCLUDE} libgstreamer-0.10.so.0 " -BEPEND=" +BDEPEND=" hdx? ( >=media-plugins/hdx-realtime-media-engine-2.9.500.2802-r1 ) " @@ -121,12 +121,12 @@ src_prepare() { default rm lib/UIDialogLibWebKit.so || die - cp nls/en/module.ini . + cp nls/en/module.ini . || die if use hdx; then - "${BROOT}${ICAROOT}"/rtme/RTMEconfig -install -ignoremm - mv new_module.ini module.ini + "${BROOT}${ICAROOT}"/rtme/RTMEconfig -install -ignoremm || die + mv new_module.ini module.ini || die fi - mv module.ini config/ + mv module.ini config/ || die } src_install() {