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 995B915808B for ; Sun, 3 Apr 2022 18:51:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C1C9FE093E; Sun, 3 Apr 2022 18:51:25 +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 32FA8E093E for ; Sun, 3 Apr 2022 18:51:25 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0D877341252 for ; Sun, 3 Apr 2022 18:51:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 703E5250 for ; Sun, 3 Apr 2022 18:51:22 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1649011861.1a9044ecdc82f45941dc2bbec3a30b4555e20233.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/megarc/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-block/megarc/megarc-1.11-r3.ebuild X-VCS-Directories: sys-block/megarc/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 1a9044ecdc82f45941dc2bbec3a30b4555e20233 X-VCS-Branch: master Date: Sun, 3 Apr 2022 18:51:22 +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: b980ce3c-5216-4102-b3a8-311913f3eab5 X-Archives-Hash: 116212f3b69a8683324a63de5249c4a9 commit: 1a9044ecdc82f45941dc2bbec3a30b4555e20233 Author: David Seifert gentoo org> AuthorDate: Sun Apr 3 18:51:01 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Apr 3 18:51:01 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a9044ec sys-block/megarc: do not require multilib profile Closes: https://bugs.gentoo.org/672324 Signed-off-by: David Seifert gentoo.org> sys-block/megarc/megarc-1.11-r3.ebuild | 24 +++++++++--------------- 1 file changed, 9 insertions(+), 15 deletions(-) diff --git a/sys-block/megarc/megarc-1.11-r3.ebuild b/sys-block/megarc/megarc-1.11-r3.ebuild index 096122d4a4f7..a352a738c3d0 100644 --- a/sys-block/megarc/megarc-1.11-r3.ebuild +++ b/sys-block/megarc/megarc-1.11-r3.ebuild @@ -1,9 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="8" - -inherit multilib +EAPI=8 MY_PN="ut_linux_megarc" MY_PV="${PV//./-}" @@ -20,6 +18,7 @@ HOMEPAGE="http://www.avagotech.com/cs/Satellite?q=megacli&pagename=AVG2%2Fsearch SRC_URI=" https://docs.broadcom.com/docs-and-downloads/raid-controllers/raid-controllers-common-files/${MY_P}.zip https://docs.broadcom.com/docs-and-downloads/raid-controllers/raid-controllers-common-files/README_FOR_${MY_P}-zip.txt" +S="${WORKDIR}" LICENSE="LSI" SLOT="0" @@ -27,23 +26,18 @@ SLOT="0" # can remove the distfiles from their mirror anytime. KEYWORDS="~amd64 ~x86" IUSE="doc" - -DEPEND="app-arch/unzip - doc? ( app-text/antiword )" -RDEPEND="" - RESTRICT="mirror bindist" -S="${WORKDIR}" +BDEPEND=" + app-arch/unzip + doc? ( app-text/antiword )" QA_PREBUILT="/opt/bin/megarc" -pkg_setup() { - use amd64 && { has_multilib_profile || die "needs multilib profile on amd64"; } -} - src_compile() { - use doc && antiword ut_linux.doc > ${PN}-manual.txt + if use doc; then + antiword ut_linux.doc > ${PN}-manual.txt || die + fi } src_install() {