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 AA6DF158020 for ; Tue, 25 Oct 2022 14:06:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5CC9E0C40; Tue, 25 Oct 2022 14:06:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 AD99CE0C3D for ; Tue, 25 Oct 2022 14:06:06 +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 C628D340DA4 for ; Tue, 25 Oct 2022 14:06:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 299AE62E for ; Tue, 25 Oct 2022 14:06:04 +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: <1666706686.138623fdb109cc649972afa7171a71920ae83580.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/markdown-it-py/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/markdown-it-py/markdown-it-py-2.1.0-r1.ebuild X-VCS-Directories: dev-python/markdown-it-py/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 138623fdb109cc649972afa7171a71920ae83580 X-VCS-Branch: master Date: Tue, 25 Oct 2022 14:06:04 +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: 91811a54-1f05-4ba4-9ed0-6943047a0f78 X-Archives-Hash: 599fb70e38d325c5ea9745638256c6c1 commit: 138623fdb109cc649972afa7171a71920ae83580 Author: Michał Górny gentoo org> AuthorDate: Tue Oct 25 14:04:46 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Oct 25 14:04:46 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=138623fd dev-python/markdown-it-py: Remove old Signed-off-by: Michał Górny gentoo.org> .../markdown-it-py/markdown-it-py-2.1.0-r1.ebuild | 45 ---------------------- 1 file changed, 45 deletions(-) diff --git a/dev-python/markdown-it-py/markdown-it-py-2.1.0-r1.ebuild b/dev-python/markdown-it-py/markdown-it-py-2.1.0-r1.ebuild deleted file mode 100644 index 67c9b522c408..000000000000 --- a/dev-python/markdown-it-py/markdown-it-py-2.1.0-r1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=flit -PYTHON_COMPAT=( python3_{8..11} pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="Python port of markdown-it, Markdown parser" -HOMEPAGE=" - https://pypi.org/project/markdown-it-py/ - https://github.com/executablebooks/markdown-it-py/ -" -SRC_URI=" - https://github.com/executablebooks/markdown-it-py/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86" - -RDEPEND=" - dev-python/mdurl[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/pytest-regressions[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest - -EPYTEST_DESELECT=( - # Unimportant tests needing a new dep linkify - tests/test_linkify.py::test_token_levels - tests/test_port/test_fixtures.py::test_linkify -) - -EPYTEST_IGNORE=( - # No need to benchmark - benchmarking/ -)