From 39b7edb4b2cab5a7febbe9bc4aa95df6218e963a Mon Sep 17 00:00:00 2001 From: Dongsu Park Date: Tue, 1 Jun 2021 10:21:25 +0200 Subject: [PATCH] app-arch/torcx: fix Go import path Go import path of torcx has changed from coreos to flatcar-linux, https://github.com/kinvolk/torcx/pull/5/commits/aef371c76bb1099383256c45e93e9818e8f9d387 So we need to fix the import path also in torcx ebuilds. Otherwise build will simply fail due to wrong import paths. --- .../coreos-overlay/app-arch/torcx/torcx-9999.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk_container/src/third_party/coreos-overlay/app-arch/torcx/torcx-9999.ebuild b/sdk_container/src/third_party/coreos-overlay/app-arch/torcx/torcx-9999.ebuild index 780ccbaf58..22d8e40807 100644 --- a/sdk_container/src/third_party/coreos-overlay/app-arch/torcx/torcx-9999.ebuild +++ b/sdk_container/src/third_party/coreos-overlay/app-arch/torcx/torcx-9999.ebuild @@ -5,7 +5,7 @@ EAPI=7 CROS_WORKON_PROJECT="flatcar-linux/torcx" CROS_WORKON_LOCALNAME="torcx" CROS_WORKON_REPO="git://github.com" -COREOS_GO_PACKAGE="github.com/coreos/torcx" +COREOS_GO_PACKAGE="github.com/flatcar-linux/torcx" COREOS_GO_GO111MODULE="off" if [[ "${PV}" == 9999 ]]; then @@ -18,7 +18,7 @@ fi inherit coreos-go cros-workon systemd DESCRIPTION="torcx is a boot-time addon manager for immutable systems" -HOMEPAGE="https://github.com/coreos/torcx" +HOMEPAGE="https://github.com/flatcar-linux/torcx" LICENSE="Apache-2.0" SLOT="0"