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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B92EC158042 for ; Wed, 8 Sep 2021 12:24:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BEF1EE091F; Wed, 8 Sep 2021 12:24:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4F3CFE091F for ; Wed, 8 Sep 2021 12:24:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E618C342AC3 for ; Wed, 8 Sep 2021 12:24:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 01FA13B for ; Wed, 8 Sep 2021 12:24:11 +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: <1631103841.fcdc1dbc5e9bb72ec325cb099750a43af81ea077.SergeyTorokhov@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/md-environ/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/md-environ/md-environ-0.1.0.ebuild X-VCS-Directories: dev-python/md-environ/ X-VCS-Committer: SergeyTorokhov X-VCS-Committer-Name: Sergey Torokhov X-VCS-Revision: fcdc1dbc5e9bb72ec325cb099750a43af81ea077 X-VCS-Branch: dev Date: Wed, 8 Sep 2021 12:24:11 +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: 628c42b5-d8bd-4a5c-b3a4-c71ef086c517 X-Archives-Hash: 6573af363b0bcc81f8bd9157228a5455 commit: fcdc1dbc5e9bb72ec325cb099750a43af81ea077 Author: Sergey Torokhov yandex ru> AuthorDate: Wed Sep 8 11:50:56 2021 +0000 Commit: Sergey Torokhov yandex ru> CommitDate: Wed Sep 8 12:24:01 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fcdc1dbc dev-python/md-environ: Fix QA Notice setuptools warning Closes: https://bugs.gentoo.org/812092 Signed-off-by: Sergey Torokhov yandex.ru> dev-python/md-environ/md-environ-0.1.0.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-python/md-environ/md-environ-0.1.0.ebuild b/dev-python/md-environ/md-environ-0.1.0.ebuild index dd516a00c..8ec0f936a 100644 --- a/dev-python/md-environ/md-environ-0.1.0.ebuild +++ b/dev-python/md-environ/md-environ-0.1.0.ebuild @@ -16,3 +16,9 @@ KEYWORDS="~amd64 ~x86" SLOT="0" RDEPEND="dev-python/markdown[${PYTHON_USEDEP}]" + +src_prepare() { + # Fix QA Notice: setuptools warning + sed -i "s/description-file/description_file/" setup.cfg || die + eapply_user +}