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 4016913835A for ; Tue, 4 May 2021 22:57:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9AFF4E088D; Tue, 4 May 2021 22:57:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7D0FDE088D for ; Tue, 4 May 2021 22:57:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8C2C9340D77 for ; Tue, 4 May 2021 22:57:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 40DAB743 for ; Tue, 4 May 2021 22:57:16 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1620169006.46228c2ee31b278182016969395b3797fc19ee28.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-office/libreoffice/libreoffice-7.1.9999.ebuild app-office/libreoffice/libreoffice-9999.ebuild X-VCS-Directories: app-office/libreoffice/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 46228c2ee31b278182016969395b3797fc19ee28 X-VCS-Branch: master Date: Tue, 4 May 2021 22:57:16 +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: 3c8e44a1-426c-4e4c-bc1d-c0b0bdf781ec X-Archives-Hash: 01df0d257b7ddc177c1ce07ea7442eaa commit: 46228c2ee31b278182016969395b3797fc19ee28 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue May 4 22:17:29 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue May 4 22:56:46 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46228c2e app-office/libreoffice: Bad news for x86 and IUSE="base,java" Bug: https://bugs.gentoo.org/785640 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> app-office/libreoffice/libreoffice-7.1.9999.ebuild | 14 ++++++++++---- app-office/libreoffice/libreoffice-9999.ebuild | 14 ++++++++++---- 2 files changed, 20 insertions(+), 8 deletions(-) diff --git a/app-office/libreoffice/libreoffice-7.1.9999.ebuild b/app-office/libreoffice/libreoffice-7.1.9999.ebuild index cf695c2bff7..41b1282d902 100644 --- a/app-office/libreoffice/libreoffice-7.1.9999.ebuild +++ b/app-office/libreoffice/libreoffice-7.1.9999.ebuild @@ -307,10 +307,16 @@ _check_reqs() { } pkg_pretend() { - use base || - ewarn "If you plan to use Base application you must enable USE base." - use java || - ewarn "Without USE java, several wizards are not going to be available." + if use x86; then + elog "Unfortunately for packaging reasons on x86, various Java-based wizards," + elog "most notably Report Builder in LibreOffice Base, will not be available." + elog "See also: https://bugs.gentoo.org/785640" + else + use base || + ewarn "If you plan to use Base application you must enable USE base." + use java || + ewarn "Without USE java, several wizards are not going to be available." + fi [[ ${MERGE_TYPE} != binary ]] && _check_reqs pkg_pretend } diff --git a/app-office/libreoffice/libreoffice-9999.ebuild b/app-office/libreoffice/libreoffice-9999.ebuild index a38aba75536..c9f16a41c2a 100644 --- a/app-office/libreoffice/libreoffice-9999.ebuild +++ b/app-office/libreoffice/libreoffice-9999.ebuild @@ -307,10 +307,16 @@ _check_reqs() { } pkg_pretend() { - use base || - ewarn "If you plan to use Base application you must enable USE base." - use java || - ewarn "Without USE java, several wizards are not going to be available." + if use x86; then + elog "Unfortunately for packaging reasons on x86, various Java-based wizards," + elog "most notably Report Builder in LibreOffice Base, will not be available." + elog "See also: https://bugs.gentoo.org/785640" + else + use base || + ewarn "If you plan to use Base application you must enable USE base." + use java || + ewarn "Without USE java, several wizards are not going to be available." + fi [[ ${MERGE_TYPE} != binary ]] && _check_reqs pkg_pretend }