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 13CFF1382C5 for ; Thu, 4 Mar 2021 06:46:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E6B3E084A; Thu, 4 Mar 2021 06:46:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 0AE49E077F for ; Thu, 4 Mar 2021 06:46:11 +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 94D6333BDCC for ; Thu, 4 Mar 2021 06:46:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03C6B573 for ; Thu, 4 Mar 2021 06:46:08 +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: <1614840252.1d9116c78de94c92d639f205389d0b193f83c4fb.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/roman/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/roman/roman-3.3.ebuild X-VCS-Directories: dev-python/roman/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1d9116c78de94c92d639f205389d0b193f83c4fb X-VCS-Branch: master Date: Thu, 4 Mar 2021 06:46:08 +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: 73a13f25-7e95-4b09-8520-b73621207d30 X-Archives-Hash: 794879321896e3e9753b45aff9f68d90 commit: 1d9116c78de94c92d639f205389d0b193f83c4fb Author: Sam James gentoo org> AuthorDate: Thu Mar 4 06:44:12 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Mar 4 06:44:12 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d9116c7 dev-python/roman: fix MisplacedEclassVar We should set variables before inheriting eclasses in case they take action at source-time. Signed-off-by: Sam James gentoo.org> dev-python/roman/roman-3.3.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dev-python/roman/roman-3.3.ebuild b/dev-python/roman/roman-3.3.ebuild index 4bef23d6851..97c8ad4615f 100644 --- a/dev-python/roman/roman-3.3.ebuild +++ b/dev-python/roman/roman-3.3.ebuild @@ -4,9 +4,8 @@ EAPI=7 PYTHON_COMPAT=( python3_{7..9} ) - -inherit distutils-r1 DISTUTILS_USE_SETUPTOOLS=rdepend +inherit distutils-r1 DESCRIPTION="An Integer to Roman numerals converter" HOMEPAGE="https://pypi.org/project/roman/"