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 7A3C013835A for ; Sun, 24 Jan 2021 21:48:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9939E079E; Sun, 24 Jan 2021 21:48:31 +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 C485BE079E for ; Sun, 24 Jan 2021 21:48:31 +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 020F934116A for ; Sun, 24 Jan 2021 21:48:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2D8D32C5 for ; Sun, 24 Jan 2021 21:48:28 +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: <1611524903.979e2097c894f86231f982e8bc4e4a83ef502cba.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/markdown2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/markdown2/Manifest dev-python/markdown2/markdown2-2.3.10.ebuild X-VCS-Directories: dev-python/markdown2/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 979e2097c894f86231f982e8bc4e4a83ef502cba X-VCS-Branch: master Date: Sun, 24 Jan 2021 21:48:28 +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: de133d24-7fad-4760-8787-9a062290c8e2 X-Archives-Hash: 1935866506f05fd6238df6439e696682 commit: 979e2097c894f86231f982e8bc4e4a83ef502cba Author: Michał Górny gentoo org> AuthorDate: Sun Jan 24 20:59:14 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jan 24 21:48:23 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=979e2097 dev-python/markdown2: Remove old Bug: https://bugs.gentoo.org/766624 Signed-off-by: Michał Górny gentoo.org> dev-python/markdown2/Manifest | 1 - dev-python/markdown2/markdown2-2.3.10.ebuild | 30 ---------------------------- 2 files changed, 31 deletions(-) diff --git a/dev-python/markdown2/Manifest b/dev-python/markdown2/Manifest index fda95f93306..dd06515cb2d 100644 --- a/dev-python/markdown2/Manifest +++ b/dev-python/markdown2/Manifest @@ -1,2 +1 @@ -DIST markdown2-2.3.10.tar.gz 102543 BLAKE2B 78c20c0b183c90d2f7e0a3e92660619761f1cd754bf3f142e5d6e29736242fb847e1ab4e4aa316378a8943912bd3a0270c0f26cfe74cf224969974ad1632cf77 SHA512 0d695cae9e131930ef67b0f389e0c14b062ddd009e441ec8b70553e4a71d7f4a0ec63f9e039624059c3fe09ad37480e3ddafcf31ffa1b031be26490c6b6b89c4 DIST markdown2-2.4.0.tar.gz 96596 BLAKE2B 23fa2b05e7f26bd76b38b2c7f4fb5b3b36694b0e30ab3f168b64754f62d7d2742c5e0bfbed774a198527ad226bfe411e0ba11ddf6d0b2002670e5937750070a2 SHA512 ed523116e01121e471ee1a8ea9e8dde42a04c4c7c5170c56eed852268881f18b7b5062c43f1548fad3a84e2fbddc19c26fbf88084f6affdd11fd4d493a480cdf diff --git a/dev-python/markdown2/markdown2-2.3.10.ebuild b/dev-python/markdown2/markdown2-2.3.10.ebuild deleted file mode 100644 index 9739546f9a3..00000000000 --- a/dev-python/markdown2/markdown2-2.3.10.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( pypy3 python3_{6..9} ) - -inherit distutils-r1 - -DESCRIPTION="Python Markdown language reimplementation" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" -HOMEPAGE="https://github.com/trentm/python-markdown2" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ppc sparc x86 ~amd64-linux ~x86-linux" - -RDEPEND="dev-python/pygments[${PYTHON_USEDEP}]" - -distutils_enable_tests unittest - -src_test() { - cd test || die - distutils-r1_src_test -} - -python_test() { - "${EPYTHON}" -m unittest test_markdown2.py -v || - die "Tests fail with ${EPYTHON}" -}