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 E825115800F for ; Wed, 1 Feb 2023 19:18:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 31253E0A80; Wed, 1 Feb 2023 19:18:05 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F0730E0A80 for ; Wed, 1 Feb 2023 19:18:04 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 30FEF340AB3 for ; Wed, 1 Feb 2023 19:18:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 98F48771 for ; Wed, 1 Feb 2023 19:18:02 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1675279075.5f41a654c60e16f05d6bc8ca94c8ce01efbdbdcb.arthurzam@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.8-r1.ebuild X-VCS-Directories: dev-python/python-markdown-math/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 5f41a654c60e16f05d6bc8ca94c8ce01efbdbdcb X-VCS-Branch: master Date: Wed, 1 Feb 2023 19:18:02 +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: 5e30ddd8-ad0b-4abf-8947-16c52c614dc8 X-Archives-Hash: 4b207fa8aa6584751319c8947bd0f8d6 commit: 5f41a654c60e16f05d6bc8ca94c8ce01efbdbdcb Author: Sergey Torokhov yandex ru> AuthorDate: Tue Jan 24 21:25:50 2023 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Wed Feb 1 19:17:55 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f41a654 dev-python/python-markdown-math: 0.8-r1, bump EAPI8, add Python3.11 Switch to unittest Signed-off-by: Sergey Torokhov yandex.ru> Closes: https://github.com/gentoo/gentoo/pull/29253 Signed-off-by: Arthur Zamarin gentoo.org> .../python-markdown-math-0.8-r1.ebuild | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/dev-python/python-markdown-math/python-markdown-math-0.8-r1.ebuild b/dev-python/python-markdown-math/python-markdown-math-0.8-r1.ebuild new file mode 100644 index 000000000000..d38d5ee35c83 --- /dev/null +++ b/dev-python/python-markdown-math/python-markdown-math-0.8-r1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} pypy3 ) +inherit distutils-r1 + +DESCRIPTION="Math extension for Python-Markdown" +HOMEPAGE=" + https://github.com/mitya57/python-markdown-math/ + https://pypi.org/project/python-markdown-math/ +" +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" + +RDEPEND=" + >=dev-python/markdown-3.3.7[${PYTHON_USEDEP}] +" + +distutils_enable_tests unittest