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 3FE71138350 for ; Mon, 2 Mar 2020 15:16:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 57829E093B; Mon, 2 Mar 2020 15:16:46 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 3A531E093B for ; Mon, 2 Mar 2020 15:16:46 +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 13BB734F472 for ; Mon, 2 Mar 2020 15:16:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 78827162 for ; Mon, 2 Mar 2020 15:16:43 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1583162195.5f1bbb2878f1f32d4b395bf7cc46751e7b4fad02.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinxcontrib-jsmath/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sphinxcontrib-jsmath/sphinxcontrib-jsmath-1.0.1-r1.ebuild X-VCS-Directories: dev-python/sphinxcontrib-jsmath/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5f1bbb2878f1f32d4b395bf7cc46751e7b4fad02 X-VCS-Branch: master Date: Mon, 2 Mar 2020 15:16:43 +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: b73d57c8-9c2d-4ff1-bc0c-29fbec02943f X-Archives-Hash: df3985d85279d32c97df6f2ffd3ccf52 commit: 5f1bbb2878f1f32d4b395bf7cc46751e7b4fad02 Author: Michał Górny gentoo org> AuthorDate: Mon Mar 2 14:49:39 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Mar 2 15:16:35 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f1bbb28 dev-python/sphinxcontrib-jsmath: Add missing ns dep & tests Signed-off-by: Michał Górny gentoo.org> .../sphinxcontrib-jsmath-1.0.1-r1.ebuild | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/dev-python/sphinxcontrib-jsmath/sphinxcontrib-jsmath-1.0.1-r1.ebuild b/dev-python/sphinxcontrib-jsmath/sphinxcontrib-jsmath-1.0.1-r1.ebuild new file mode 100644 index 00000000000..cde57a06a40 --- /dev/null +++ b/dev-python/sphinxcontrib-jsmath/sphinxcontrib-jsmath-1.0.1-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6,7,8} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Sphinx extension which renders display math in HTML via JavaScript" +HOMEPAGE="https://www.sphinx-doc.org + https://github.com/sphinx-doc/sphinxcontrib-jsmath" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" + +RDEPEND="dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}]" +PDEPEND=" + >=dev-python/sphinx-2.0[${PYTHON_USEDEP}]" +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( ${PDEPEND} )" + +distutils_enable_tests pytest + +python_install_all() { + distutils-r1_python_install_all + find "${ED}" -name '*.pth' -delete || die +}