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 7E9E1138334 for ; Wed, 4 Dec 2019 00:47:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82D7AE083E; Wed, 4 Dec 2019 00:47:50 +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 61940E083E for ; Wed, 4 Dec 2019 00:47:50 +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 3546734D789 for ; Wed, 4 Dec 2019 00:47:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA7868CB for ; Wed, 4 Dec 2019 00:47:47 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1575420458.298230439c1db60e8972717cf83678552764255d.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-markdown-math/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-markdown-math/python-markdown-math-0.6-r1.ebuild X-VCS-Directories: dev-python/python-markdown-math/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 298230439c1db60e8972717cf83678552764255d X-VCS-Branch: master Date: Wed, 4 Dec 2019 00:47:47 +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: 83c05d0a-1981-47a7-a7d1-95797ce5b26b X-Archives-Hash: fd311acb57a47a54e305f48e5c828caa commit: 298230439c1db60e8972717cf83678552764255d Author: Nils Freydank posteo de> AuthorDate: Mon Dec 2 18:02:15 2019 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Wed Dec 4 00:47:38 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29823043 dev-python/python-markdown-math: Add missing dep to markdown Closes: https://bugs.gentoo.org/701190 Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Nils Freydank posteo.de> Signed-off-by: Aaron Bauman gentoo.org> .../python-markdown-math-0.6-r1.ebuild | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/dev-python/python-markdown-math/python-markdown-math-0.6-r1.ebuild b/dev-python/python-markdown-math/python-markdown-math-0.6-r1.ebuild new file mode 100644 index 00000000000..58867491362 --- /dev/null +++ b/dev-python/python-markdown-math/python-markdown-math-0.6-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 ) +inherit distutils-r1 + +MY_PN="python-${PN}" + +DESCRIPTION="Math extension for Python-Markdown" +HOMEPAGE="https://github.com/mitya57/python-markdown-math" + +if [[ ${PV} == **9999 ]] + then + inherit git-r3 + EGIT_REPO_URI="https://github.com/mitya57/python-markdown-math.git" +else + SRC_URI="mirror://pypi/${MY_PN:0:1}/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +# Tests for python2.7 ran fine even with dev-python/markdown-2.6.5, +# but python3.7 is only supported from 3.x onwards. +DEPEND=" + >=dev-python/markdown-3.0.1[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] +" +RDEPEND="${DEPEND}" +BDEPEND="" + +python_test(){ + esetup.py test +}