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 97FE8158090 for ; Sun, 29 May 2022 18:53:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA304E0907; Sun, 29 May 2022 18:53:13 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 C4AD8E0903 for ; Sun, 29 May 2022 18:53:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 A28EF341924 for ; Sun, 29 May 2022 18:53:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 33B9E448 for ; Sun, 29 May 2022 18:53:09 +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: <1653850378.51a04f82926f00c82f932e80b3f2081912b6eec0.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/recommonmark/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/recommonmark/recommonmark-0.7.1-r1.ebuild X-VCS-Directories: dev-python/recommonmark/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 51a04f82926f00c82f932e80b3f2081912b6eec0 X-VCS-Branch: master Date: Sun, 29 May 2022 18:53:09 +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: 977086b2-45a6-4f6b-9381-e238857fda61 X-Archives-Hash: 96a0c200b5a90b9e216d615ddffc9b93 commit: 51a04f82926f00c82f932e80b3f2081912b6eec0 Author: Arthur Zamarin gentoo org> AuthorDate: Sun May 29 18:41:35 2022 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sun May 29 18:52:58 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51a04f82 dev-python/recommonmark: EAPI=8, Use PEP517 Signed-off-by: Arthur Zamarin gentoo.org> .../recommonmark/recommonmark-0.7.1-r1.ebuild | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/dev-python/recommonmark/recommonmark-0.7.1-r1.ebuild b/dev-python/recommonmark/recommonmark-0.7.1-r1.ebuild new file mode 100644 index 000000000000..c83363e4900c --- /dev/null +++ b/dev-python/recommonmark/recommonmark-0.7.1-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="Python docutils-compatibility bridge to CommonMark" +HOMEPAGE="https://recommonmark.readthedocs.io/" +SRC_URI="https://github.com/rtfd/recommonmark/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + >=dev-python/commonmark-0.8.1[${PYTHON_USEDEP}] + >=dev-python/docutils-0.14[${PYTHON_USEDEP}] + dev-python/sphinx[${PYTHON_USEDEP}] +" + +PATCHES=( + "${FILESDIR}/${PN}-0.6.0-sphinx3-1.patch" + "${FILESDIR}/${PN}-0.6.0-sphinx3-2.patch" +) + +distutils_enable_tests pytest