From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (unknown [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 D74B01580DC for ; Wed, 26 Jun 2024 09:05:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9B2362BC0EB; Wed, 26 Jun 2024 09:05:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 C99852BC0EB for ; Wed, 26 Jun 2024 09:05:38 +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 E79FD340C15 for ; Wed, 26 Jun 2024 09:05:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 09CE21D58 for ; Wed, 26 Jun 2024 09:05:35 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1719392630.1e91fddc4027880e60dc29faf64fa6b83a875fc7.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/doc8/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/doc8/doc8-1.1.1-r1.ebuild X-VCS-Directories: dev-python/doc8/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1e91fddc4027880e60dc29faf64fa6b83a875fc7 X-VCS-Branch: master Date: Wed, 26 Jun 2024 09:05:35 +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: 378a674a-a6b0-4ae5-9e71-c19dd6bee9c0 X-Archives-Hash: b0c9dd7544e300e193a5c871c2ebdd9c commit: 1e91fddc4027880e60dc29faf64fa6b83a875fc7 Author: Eli Schwartz gmail com> AuthorDate: Wed Jun 26 04:19:19 2024 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jun 26 09:03:50 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e91fddc dev-python/doc8: fix overdependency on tomli Since 1.0.0, it has supported using the stdlib tomllib when available: https://github.com/PyCQA/doc8/commit/a3638de1337484b26da99dc5ea4287341b9ad9f6 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> dev-python/doc8/doc8-1.1.1-r1.ebuild | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/dev-python/doc8/doc8-1.1.1-r1.ebuild b/dev-python/doc8/doc8-1.1.1-r1.ebuild new file mode 100644 index 000000000000..5cab3caa8c81 --- /dev/null +++ b/dev-python/doc8/doc8-1.1.1-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Style checker for Sphinx (or other) RST documentation" +HOMEPAGE=" + https://pypi.org/project/doc8/ + https://github.com/PyCQA/doc8/ +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +RDEPEND=" + =dev-python/restructuredtext-lint-0.7[${PYTHON_USEDEP}] + dev-python/stevedore[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/tomli[${PYTHON_USEDEP}] + ' 3.10) +" +# setuptools_scm_git_archive is not actually needed here +BDEPEND=" + dev-python/setuptools-scm[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest