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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 74DEF15800D for ; Fri, 7 Jul 2023 19:00:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F333E0794; Fri, 7 Jul 2023 19:00:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 75F55E0794 for ; Fri, 7 Jul 2023 19:00:10 +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 71191340E22 for ; Fri, 7 Jul 2023 19:00:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CB7D6AC3 for ; Fri, 7 Jul 2023 19:00:07 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1688756187.9d381821a0d9521e0a181bdd0dc7f9ac682e5020.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/sigil/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/sigil/metadata.xml app-text/sigil/sigil-1.9.30.ebuild X-VCS-Directories: app-text/sigil/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 9d381821a0d9521e0a181bdd0dc7f9ac682e5020 X-VCS-Branch: master Date: Fri, 7 Jul 2023 19:00:07 +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: fc1dfbcc-4887-447a-bb3d-eb8860bbe2a0 X-Archives-Hash: 99383551406b1361575e40a697591a5e commit: 9d381821a0d9521e0a181bdd0dc7f9ac682e5020 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Jul 7 18:56:27 2023 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri Jul 7 18:56:27 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d381821 app-text/sigil: remove IUSE="system-mathjax" It currently depends on mathjax3, which might take sometime to bump the current mathjax ebuild (consumers using v2 instead of v3 and such). For now I'll remove the useflag, and readd it in the future when ::gentoo's mathjax is v3. Closes: https://bugs.gentoo.org/907716 Signed-off-by: Arthur Zamarin gentoo.org> app-text/sigil/metadata.xml | 1 - app-text/sigil/sigil-1.9.30.ebuild | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/app-text/sigil/metadata.xml b/app-text/sigil/metadata.xml index 16a802d7daa4..4daa9a331609 100644 --- a/app-text/sigil/metadata.xml +++ b/app-text/sigil/metadata.xml @@ -7,7 +7,6 @@ Installed needed Python packages for using Sigil plugins - Use the system-wide dev-libs/mathjax instead of bundled Sigil-Ebook/Sigil diff --git a/app-text/sigil/sigil-1.9.30.ebuild b/app-text/sigil/sigil-1.9.30.ebuild index 621537704a6e..681e2613d8dd 100644 --- a/app-text/sigil/sigil-1.9.30.ebuild +++ b/app-text/sigil/sigil-1.9.30.ebuild @@ -16,7 +16,7 @@ S="${WORKDIR}/${P^}" LICENSE="GPL-3+ Apache-2.0" SLOT="0" KEYWORDS="amd64" -IUSE="+plugins system-mathjax" +IUSE="+plugins" REQUIRED_USE="${PYTHON_REQUIRED_USE}" RDEPEND=" @@ -41,7 +41,6 @@ RDEPEND=" dev-python/html5lib[${PYTHON_USEDEP}] dev-python/pillow[${PYTHON_USEDEP}] dev-python/regex[${PYTHON_USEDEP}]') ) - system-mathjax? ( dev-libs/mathjax ) " DEPEND="${RDEPEND}" BDEPEND=" @@ -63,7 +62,7 @@ src_configure() { -DUSE_SYSTEM_LIBS=1 -DUSE_QT6=0 ) - use system-mathjax && mycmakeargs+=( -DMATHJAX_DIR="${EPREFIX}"/usr/share/mathjax ) + # use system-mathjax && mycmakeargs+=( -DMATHJAX3_DIR="${EPREFIX}"/usr/share/mathjax ) cmake_src_configure }