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 02556138334 for ; Tue, 17 Jul 2018 19:52:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BF1CEE0AB2; Tue, 17 Jul 2018 19:52:48 +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 96A11E0AB2 for ; Tue, 17 Jul 2018 19:52:48 +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 A8F22335C2B for ; Tue, 17 Jul 2018 19:52:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B6A035F for ; Tue, 17 Jul 2018 19:52:44 +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: <1531857081.e91c5248782a92501ed6be6b11e360124e5f5655.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/portage/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/portage/portage-2.3.43.ebuild sys-apps/portage/portage-9999.ebuild X-VCS-Directories: sys-apps/portage/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: e91c5248782a92501ed6be6b11e360124e5f5655 X-VCS-Branch: master Date: Tue, 17 Jul 2018 19:52:44 +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: c3c100d3-70bc-449a-973c-ccf23355d4a8 X-Archives-Hash: 75eee27f05726926319f5fb15a348391 commit: e91c5248782a92501ed6be6b11e360124e5f5655 Author: Craig Andrews gentoo org> AuthorDate: Tue Jul 17 15:29:42 2018 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Jul 17 19:51:21 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e91c5248 sys-apps/portage: Enable py3.7 Closes: https://github.com/gentoo/gentoo/pull/9263 Package-Manager: Portage-2.3.43, Repoman-2.3.10 sys-apps/portage/portage-2.3.43.ebuild | 6 +++++- sys-apps/portage/portage-9999.ebuild | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/sys-apps/portage/portage-2.3.43.ebuild b/sys-apps/portage/portage-2.3.43.ebuild index b0e8987ea11..4afb116e952 100644 --- a/sys-apps/portage/portage-2.3.43.ebuild +++ b/sys-apps/portage/portage-2.3.43.ebuild @@ -5,7 +5,7 @@ EAPI=5 PYTHON_COMPAT=( pypy - python3_4 python3_5 python3_6 + python3_4 python3_5 python3_6 python3_7 python2_7 ) PYTHON_REQ_USE='bzip2(+),threads(+)' @@ -95,6 +95,10 @@ pkg_setup() { python_prepare_all() { distutils-r1_python_prepare_all + # Apply ae8cc32ccd81 and e46dd735cd4d for python3.7 compat. + sed -e 's|\(def call_.*,*args\)):$|\1, **kwargs):|' \ + -i pym/portage/util/_eventloop/EventLoop.py || die + if use gentoo-dev; then einfo "Disabling --dynamic-deps by default for gentoo-dev..." sed -e 's:\("--dynamic-deps", \)\("y"\):\1"n":' \ diff --git a/sys-apps/portage/portage-9999.ebuild b/sys-apps/portage/portage-9999.ebuild index b02d454312c..fb6671b35c8 100644 --- a/sys-apps/portage/portage-9999.ebuild +++ b/sys-apps/portage/portage-9999.ebuild @@ -5,7 +5,7 @@ EAPI=6 PYTHON_COMPAT=( pypy - python3_4 python3_5 python3_6 + python3_4 python3_5 python3_6 python3_7 python2_7 ) PYTHON_REQ_USE='bzip2(+),threads(+)'