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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 287E9158011 for ; Thu, 14 Jul 2022 11:44:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51764E0C9A; Thu, 14 Jul 2022 11:44:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9FCC0E0C9A for ; Thu, 14 Jul 2022 11:44:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 357E5341167 for ; Thu, 14 Jul 2022 11:44:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 83295448 for ; Thu, 14 Jul 2022 11:44:28 +0000 (UTC) From: "Duje Mihanović" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Duje Mihanović" Message-ID: <1657799016.cf6fffceaaa3e559358340a267940a403fe88824.duje.mihanovic@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-util/pmbootstrap/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-util/pmbootstrap/pmbootstrap-1.45.0.ebuild X-VCS-Directories: dev-util/pmbootstrap/ X-VCS-Committer: duje.mihanovic X-VCS-Committer-Name: Duje Mihanović X-VCS-Revision: cf6fffceaaa3e559358340a267940a403fe88824 X-VCS-Branch: dev Date: Thu, 14 Jul 2022 11:44:28 +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: 29b58ce4-aa6d-40c6-8fed-ae9ce2074217 X-Archives-Hash: 3bdfffc137a27970d5a6d880a9f188db commit: cf6fffceaaa3e559358340a267940a403fe88824 Author: Duje Mihanović skole hr> AuthorDate: Thu Jul 14 11:43:36 2022 +0000 Commit: Duje Mihanović skole hr> CommitDate: Thu Jul 14 11:43:36 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cf6fffce dev-util/pmbootstrap: migrate to python-single-r1 Signed-off-by: Duje Mihanović skole.hr> dev-util/pmbootstrap/pmbootstrap-1.45.0.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-util/pmbootstrap/pmbootstrap-1.45.0.ebuild b/dev-util/pmbootstrap/pmbootstrap-1.45.0.ebuild index 970e1ce66..2dc8bba6f 100644 --- a/dev-util/pmbootstrap/pmbootstrap-1.45.0.ebuild +++ b/dev-util/pmbootstrap/pmbootstrap-1.45.0.ebuild @@ -4,6 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{8,9,10} ) +DISTUTILS_SINGLE_IMPL=1 inherit distutils-r1 linux-info DESCRIPTION="Helper tool for developing and building postmarketOS" @@ -31,3 +32,8 @@ pkg_pretend() { die fi } + +# Without this, emerge errors with an "EPYTHON not set" error. +pkg_setup() { + python-single-r1_pkg_setup +}