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 BAD8113835A for ; Thu, 25 Feb 2021 14:46:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7966E091C; Thu, 25 Feb 2021 14:46:19 +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 9EE13E091C for ; Thu, 25 Feb 2021 14:46:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 079EC340F34 for ; Thu, 25 Feb 2021 14:46:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 56C4FB9 for ; Thu, 25 Feb 2021 14:46:16 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1614264368.3b8c75ceade69987ef06ca3812834294746f608f.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/retext/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/retext/retext-7.2.0-r1.ebuild app-editors/retext/retext-7.2.0.ebuild X-VCS-Directories: app-editors/retext/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 3b8c75ceade69987ef06ca3812834294746f608f X-VCS-Branch: master Date: Thu, 25 Feb 2021 14:46: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: 6bc328a9-f874-4f4d-ac95-a632f3918e71 X-Archives-Hash: 07d7a2584ba5370d49375e5940048ef4 commit: 3b8c75ceade69987ef06ca3812834294746f608f Author: Nils Freydank posteo de> AuthorDate: Wed Feb 24 11:44:10 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Thu Feb 25 14:46:08 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b8c75ce app-editors/retext: Depend optionally on qtwebengine To avoid breakage for existing installations the deps are not made optional but moved into USE flags (bug 772197). Also there is added a missing dbus dep (bug 772197, too). Closes: https://bugs.gentoo.org/772197 Signed-off-by: Nils Freydank posteo.de> Signed-off-by: Joonas Niilola gentoo.org> .../retext/{retext-7.2.0.ebuild => retext-7.2.0-r1.ebuild} | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/app-editors/retext/retext-7.2.0.ebuild b/app-editors/retext/retext-7.2.0-r1.ebuild similarity index 87% rename from app-editors/retext/retext-7.2.0.ebuild rename to app-editors/retext/retext-7.2.0-r1.ebuild index cbf66104a1a..4da9da3b40b 100644 --- a/app-editors/retext/retext-7.2.0.ebuild +++ b/app-editors/retext/retext-7.2.0-r1.ebuild @@ -37,10 +37,10 @@ RDEPEND=" dev-python/markups[${PYTHON_USEDEP}] dev-python/pygments[${PYTHON_USEDEP}] dev-python/python-markdown-math[${PYTHON_USEDEP}] - dev-python/PyQt5[gui,network,printsupport,widgets,${PYTHON_USEDEP}] - dev-python/PyQtWebEngine[${PYTHON_USEDEP}] + dev-python/PyQt5[dbus,gui,printsupport,widgets,${PYTHON_USEDEP}] " DEPEND="${RDEPEND}" +BDEPEND="test? ( dev-python/PyQt5[testlib,${PYTHON_USEDEP}] )" src_test() { virtx distutils-r1_src_test @@ -55,11 +55,13 @@ pkg_postinst() { xdg_icon_cache_update optfeature "dictionary support" dev-python/pyenchant + # See https://bugs.gentoo.org/772197. + optfeature "rendering with webengine" dev-python/PyQtWebEngine einfo "Starting with retext-7.0.4 the markdown-math plugin is installed." einfo "Note that you can use different math delimiters, e.g. \(...\) for inline math." einfo "For more details take a look at:" - einfo "https://github.com/mitya57/python-markdown-math#math-delimiters" + einfo "https://github.com/mitya57/python-markdown-math#math-delimiters" } pkg_postrm() {