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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9E8CB158042 for ; Sat, 19 Oct 2024 00:05:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 022EFE0871; Sat, 19 Oct 2024 00:05:41 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 61625E0872 for ; Sat, 19 Oct 2024 00:05:40 +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 A8AAD343086 for ; Sat, 19 Oct 2024 00:05:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CEFA51FBE for ; Sat, 19 Oct 2024 00:05:36 +0000 (UTC) From: "David Roman" 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 Roman" Message-ID: <1729194044.d0acf2a4acd211751cdc6b9861e919ac2a0359be.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/textual/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/textual/textual-0.83.0.ebuild X-VCS-Directories: dev-python/textual/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: d0acf2a4acd211751cdc6b9861e919ac2a0359be X-VCS-Branch: master Date: Sat, 19 Oct 2024 00:05:36 +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: be71b5f6-ed78-4fbc-95a2-4329c926dd0d X-Archives-Hash: cf02a220313a2d3e48c79b630032a5e9 commit: d0acf2a4acd211751cdc6b9861e919ac2a0359be Author: Takuya Wakazono gmail com> AuthorDate: Thu Oct 17 19:40:44 2024 +0000 Commit: David Roman gmail com> CommitDate: Thu Oct 17 19:40:44 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d0acf2a4 dev-python/textual: remove USE=doc USE=doc depends on dev-python/tree-sitter-languages, which is currently masked. Signed-off-by: Takuya Wakazono gmail.com> dev-python/textual/textual-0.83.0.ebuild | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/dev-python/textual/textual-0.83.0.ebuild b/dev-python/textual/textual-0.83.0.ebuild index 326fdec70..9b9f9bdba 100644 --- a/dev-python/textual/textual-0.83.0.ebuild +++ b/dev-python/textual/textual-0.83.0.ebuild @@ -16,7 +16,7 @@ DOCS_DEPEND=" " DOCS_INITIALIZE_GIT=1 -inherit distutils-r1 docs optfeature +inherit distutils-r1 optfeature #docs DESCRIPTION="Modern Text User Interface framework" HOMEPAGE="https://github.com/Textualize/textual https://pypi.org/project/textual/" @@ -40,10 +40,9 @@ BDEPEND=" dev-python/griffe[${PYTHON_USEDEP}] dev-python/platformdirs[${PYTHON_USEDEP}] ) - doc? ( - dev-python/tree-sitter-languages[${PYTHON_USEDEP}] - ) " +# currently masked +#BDEPEND+="doc? ( dev-python/tree-sitter-languages[${PYTHON_USEDEP}] ) DEPEND="${RDEPEND}" # PATCHES=( @@ -61,11 +60,11 @@ distutils_enable_tests pytest python_compile_all() { echo "INHERIT: mkdocs-offline.yml" > "${S}/mkdocs.yml" grep -v "\- \"*[Bb]log" "${S}/mkdocs-nav.yml" >> "${S}/mkdocs.yml" - docs_compile + #docs_compile rm "${S}/mkdocs.yml" } pkg_postinst() { optfeature "bindings for python" dev-python/tree-sitter - optfeature "support for all languages" dev-python/tree-sitter-languages + #optfeature "support for all languages" dev-python/tree-sitter-languages }