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 26BAE138334 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 55EDCE083D; Wed, 4 Dec 2019 00:47:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 3A00BE083D for ; Wed, 4 Dec 2019 00:47:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 272FE34D788 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 CDE0A8CC 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.48e7b4612ba20cbe2e8b6a793a0518b5eedfa681.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.ebuild X-VCS-Directories: dev-python/python-markdown-math/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 48e7b4612ba20cbe2e8b6a793a0518b5eedfa681 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: ec73faa9-cd2a-46a5-bb50-353bbc6eae0c X-Archives-Hash: ea306976747580a9fdd5ce61e46be5d9 commit: 48e7b4612ba20cbe2e8b6a793a0518b5eedfa681 Author: Nils Freydank posteo de> AuthorDate: Mon Dec 2 18:02:16 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=48e7b461 dev-python/python-markdown-math: Remove broken version Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Nils Freydank posteo.de> Closes: https://github.com/gentoo/gentoo/pull/13828 Signed-off-by: Aaron Bauman gentoo.org> .../python-markdown-math-0.6.ebuild | 34 ---------------------- 1 file changed, 34 deletions(-) diff --git a/dev-python/python-markdown-math/python-markdown-math-0.6.ebuild b/dev-python/python-markdown-math/python-markdown-math-0.6.ebuild deleted file mode 100644 index d018e35912c..00000000000 --- a/dev-python/python-markdown-math/python-markdown-math-0.6.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# 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" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND}" -BDEPEND="" - -python_test(){ - esetup.py test -}