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 B7629158020 for ; Fri, 9 Dec 2022 17:41:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D4DF6E086E; Fri, 9 Dec 2022 17:41:42 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B7C3EE086E for ; Fri, 9 Dec 2022 17:41:42 +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 8D701340CB1 for ; Fri, 9 Dec 2022 17:41:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C307F5BF for ; Fri, 9 Dec 2022 17:41:39 +0000 (UTC) From: "Sergey Torokhov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergey Torokhov" Message-ID: <1670607635.c41e51a1a8ba58825a325e8140cb5f957a24751d.SergeyTorokhov@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/markdown-include/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/markdown-include/markdown-include-0.7.0.ebuild dev-python/markdown-include/markdown-include-0.8.0.ebuild X-VCS-Directories: dev-python/markdown-include/ X-VCS-Committer: SergeyTorokhov X-VCS-Committer-Name: Sergey Torokhov X-VCS-Revision: c41e51a1a8ba58825a325e8140cb5f957a24751d X-VCS-Branch: dev Date: Fri, 9 Dec 2022 17:41:39 +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: 96812259-96a3-445a-a214-aaed1f8e0d06 X-Archives-Hash: d288d48bc156f89d5db2bd8613941830 commit: c41e51a1a8ba58825a325e8140cb5f957a24751d Author: Sergey Torokhov yandex ru> AuthorDate: Fri Dec 9 17:40:35 2022 +0000 Commit: Sergey Torokhov yandex ru> CommitDate: Fri Dec 9 17:40:35 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c41e51a1 dev-python/markdown-include: fix QA setuptools warning Closes: https://bugs.gentoo.org/800161 Signed-off-by: Sergey Torokhov yandex.ru> dev-python/markdown-include/markdown-include-0.7.0.ebuild | 6 ++++++ dev-python/markdown-include/markdown-include-0.8.0.ebuild | 7 ++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/dev-python/markdown-include/markdown-include-0.7.0.ebuild b/dev-python/markdown-include/markdown-include-0.7.0.ebuild index 8216f4438..2d4dbe8d5 100644 --- a/dev-python/markdown-include/markdown-include-0.7.0.ebuild +++ b/dev-python/markdown-include/markdown-include-0.7.0.ebuild @@ -3,6 +3,7 @@ EAPI=8 +DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 @@ -16,3 +17,8 @@ KEYWORDS="~amd64 ~x86" SLOT="0" RDEPEND=">=dev-python/markdown-3.4[${PYTHON_USEDEP}]" + +src_prepare() { + sed -i "s/description-file/description_file/" setup.cfg || die + distutils-r1_src_prepare +} diff --git a/dev-python/markdown-include/markdown-include-0.8.0.ebuild b/dev-python/markdown-include/markdown-include-0.8.0.ebuild index cb920be08..99f299300 100644 --- a/dev-python/markdown-include/markdown-include-0.8.0.ebuild +++ b/dev-python/markdown-include/markdown-include-0.8.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -#DISTUTILS_USE_PEP517=setuptools +DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{8..11} ) inherit distutils-r1 @@ -17,3 +17,8 @@ KEYWORDS="~amd64 ~x86" SLOT="0" RDEPEND=">=dev-python/markdown-3.4[${PYTHON_USEDEP}]" + +src_prepare() { + sed -i "s/description-file/description_file/" setup.cfg || die + distutils-r1_src_prepare +}