From 0bd3e6595dedda6b74ba572448359a8452a5bdd1 Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Tue, 14 Sep 2021 16:00:04 +0200 Subject: [PATCH] app-emulation/google-compute-engine: Use python3 explicitly --- ...180611.ebuild => google-compute-engine-20180611-r1.ebuild} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename sdk_container/src/third_party/coreos-overlay/app-emulation/google-compute-engine/{google-compute-engine-20180611.ebuild => google-compute-engine-20180611-r1.ebuild} (86%) diff --git a/sdk_container/src/third_party/coreos-overlay/app-emulation/google-compute-engine/google-compute-engine-20180611.ebuild b/sdk_container/src/third_party/coreos-overlay/app-emulation/google-compute-engine/google-compute-engine-20180611-r1.ebuild similarity index 86% rename from sdk_container/src/third_party/coreos-overlay/app-emulation/google-compute-engine/google-compute-engine-20180611.ebuild rename to sdk_container/src/third_party/coreos-overlay/app-emulation/google-compute-engine/google-compute-engine-20180611-r1.ebuild index 202b851a51..352d755515 100644 --- a/sdk_container/src/third_party/coreos-overlay/app-emulation/google-compute-engine/google-compute-engine-20180611.ebuild +++ b/sdk_container/src/third_party/coreos-overlay/app-emulation/google-compute-engine/google-compute-engine-20180611-r1.ebuild @@ -31,9 +31,9 @@ RDEPEND=" S="${WORKDIR}/compute-image-packages-${PV}" src_compile() { - (cd "${S}" && exec python setup.py build) + (cd "${S}" && exec python3 setup.py build) } src_install() { - (cd "${S}" && exec python setup.py install -O1 --skip-build --root "${D}") + (cd "${S}" && exec python3 setup.py install -O1 --skip-build --root "${D}") }