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 B6B9F158089 for ; Fri, 8 Sep 2023 18:20:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D83762BC01B; Fri, 8 Sep 2023 18:20:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 C29F92BC01B for ; Fri, 8 Sep 2023 18:20:44 +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 ECD28335C47 for ; Fri, 8 Sep 2023 18:20:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4ABF21124 for ; Fri, 8 Sep 2023 18:20:42 +0000 (UTC) From: "Steve Arnold" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Steve Arnold" Message-ID: <1694197159.9bf716876728169a1fc151ec3034761c124600ab.nerdboy@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pystache/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pystache/pystache-0.6.5.ebuild X-VCS-Directories: dev-python/pystache/ X-VCS-Committer: nerdboy X-VCS-Committer-Name: Steve Arnold X-VCS-Revision: 9bf716876728169a1fc151ec3034761c124600ab X-VCS-Branch: master Date: Fri, 8 Sep 2023 18:20:42 +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: 3018bdf5-3778-44fc-bb5c-65cae6674ff4 X-Archives-Hash: 2d7c95fc67d729f9ad0795088ba90264 commit: 9bf716876728169a1fc151ec3034761c124600ab Author: Steve Arnold gentoo org> AuthorDate: Fri Sep 8 18:19:19 2023 +0000 Commit: Steve Arnold gentoo org> CommitDate: Fri Sep 8 18:19:19 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bf71687 dev-python/pystache: refactor for upstream changes, add doc deps Signed-off-by: Steve Arnold gentoo.org> dev-python/pystache/pystache-0.6.5.ebuild | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/dev-python/pystache/pystache-0.6.5.ebuild b/dev-python/pystache/pystache-0.6.5.ebuild index c10cd9359cc2..3c70a630edb7 100644 --- a/dev-python/pystache/pystache-0.6.5.ebuild +++ b/dev-python/pystache/pystache-0.6.5.ebuild @@ -30,9 +30,23 @@ LICENSE="MIT" SLOT="0" BDEPEND=" + dev-python/setuptools-scm[${PYTHON_USEDEP}] test? ( dev-python/pyyaml[${PYTHON_USEDEP}] ) " distutils_enable_tests pytest + +distutils_enable_sphinx \ + docs/source \ + dev-python/sphinx-rtd-theme \ + dev-python/recommonmark \ + dev-python/sphinxcontrib-apidoc + +export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} + +src_prepare() { + sed -i '/sphinx_git/d' "${S}"/setup.cfg "${S}"/docs/source/conf.py + default +}