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 538461382C5 for ; Fri, 30 Mar 2018 23:46:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 358D9E0872; Fri, 30 Mar 2018 23:46:21 +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 0CB23E0872 for ; Fri, 30 Mar 2018 23:46:20 +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 8DAEC335D5C for ; Fri, 30 Mar 2018 23:46:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6247F268 for ; Fri, 30 Mar 2018 23:46:17 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1522453571.6d8f810ff4c1a2c7a288b5f6fa1b66ed091783c2.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/repoman/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/repoman/repoman-2.3.9.ebuild X-VCS-Directories: app-portage/repoman/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 6d8f810ff4c1a2c7a288b5f6fa1b66ed091783c2 X-VCS-Branch: master Date: Fri, 30 Mar 2018 23:46:17 +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-Archives-Salt: 5cb34262-585e-48a4-aa0a-bf2817280072 X-Archives-Hash: 38e714b0f0d138f9695d37f1ba81ceff commit: 6d8f810ff4c1a2c7a288b5f6fa1b66ed091783c2 Author: Zac Medico gentoo org> AuthorDate: Fri Mar 30 23:40:24 2018 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Mar 30 23:46:11 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d8f810f app-portage/repoman: fix 2.3.9 for python2.7 See: https://github.com/gentoo/portage/pull/288 Package-Manager: Portage-2.3.27, Repoman-2.3.9 app-portage/repoman/repoman-2.3.9.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app-portage/repoman/repoman-2.3.9.ebuild b/app-portage/repoman/repoman-2.3.9.ebuild index 9fa7f7dd30e..f514a38f330 100644 --- a/app-portage/repoman/repoman-2.3.9.ebuild +++ b/app-portage/repoman/repoman-2.3.9.ebuild @@ -31,6 +31,11 @@ RDEPEND=" " DEPEND="${RDEPEND}" +src_prepare() { + sed 's:FileNotFoundError:EnvironmentError:' -i pym/repoman/config.py || die + distutils-r1_src_prepare +} + python_test() { esetup.py test }