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 D0A32158092 for ; Sat, 11 Sep 2021 06:55:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 31011E086B; Sat, 11 Sep 2021 06:55:58 +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 11759E086B for ; Sat, 11 Sep 2021 06:55:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2100633BF3C for ; Sat, 11 Sep 2021 06:55:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A7889A3 for ; Sat, 11 Sep 2021 06:55:55 +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: <1631343341.869f3c75e28a04d83b1cafe34966c395616d90fd.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/simpleeval/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/simpleeval/simpleeval-0.9.10.ebuild X-VCS-Directories: dev-python/simpleeval/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 869f3c75e28a04d83b1cafe34966c395616d90fd X-VCS-Branch: master Date: Sat, 11 Sep 2021 06:55:55 +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: 10e30d87-2f1e-4ed3-a760-dbb84b26f710 X-Archives-Hash: 3f2b126bafd3ccfb7b4978d2b24dc47c commit: 869f3c75e28a04d83b1cafe34966c395616d90fd Author: Arthur Zamarin gentoo org> AuthorDate: Sat Sep 11 06:55:01 2021 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat Sep 11 06:55:41 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=869f3c75 dev-python/simpleeval: fix use_2to3 Closes: https://bugs.gentoo.org/812215 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/simpleeval/simpleeval-0.9.10.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-python/simpleeval/simpleeval-0.9.10.ebuild b/dev-python/simpleeval/simpleeval-0.9.10.ebuild index 5bf3e2d9b30..8fd4af7f03e 100644 --- a/dev-python/simpleeval/simpleeval-0.9.10.ebuild +++ b/dev-python/simpleeval/simpleeval-0.9.10.ebuild @@ -15,3 +15,8 @@ SLOT="0" KEYWORDS="amd64 x86" distutils_enable_tests setup.py + +src_prepare() { + sed -e '/use_2to3/d' -i setup.py || die + distutils-r1_src_prepare +}