From 8f82c06a48c52fda7c0d04da010de4948c613cc0 Mon Sep 17 00:00:00 2001 From: Dongsu Park Date: Tue, 6 Jul 2021 09:55:34 +0200 Subject: [PATCH] app-admin/updateservicectl: sync with current main - 2021-07-05 Update commit to 6a4ff4ca879082c07353dd379439c437cbe27e18, to sync with the current main branch. Pulls in https://github.com/kinvolk/updateservicectl/pull/6 . Also update Go import paths to `github.com/kinvolk/updateservicectl`. Also set `COREOS_GO_GO111MODULE=on` because updateservicectl now relies on Go module. --- .../updateservicectl/updateservicectl-9999.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sdk_container/src/third_party/coreos-overlay/app-admin/updateservicectl/updateservicectl-9999.ebuild b/sdk_container/src/third_party/coreos-overlay/app-admin/updateservicectl/updateservicectl-9999.ebuild index 865d398c18..84f573052a 100644 --- a/sdk_container/src/third_party/coreos-overlay/app-admin/updateservicectl/updateservicectl-9999.ebuild +++ b/sdk_container/src/third_party/coreos-overlay/app-admin/updateservicectl/updateservicectl-9999.ebuild @@ -2,22 +2,22 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -CROS_WORKON_PROJECT="flatcar-linux/updateservicectl" +CROS_WORKON_PROJECT="kinvolk/updateservicectl" CROS_WORKON_LOCALNAME="updateservicectl" CROS_WORKON_REPO="git://github.com" -COREOS_GO_PACKAGE="github.com/coreos/updateservicectl" -COREOS_GO_GO111MODULE="off" +COREOS_GO_PACKAGE="github.com/kinvolk/updateservicectl" +COREOS_GO_GO111MODULE="on" inherit cros-workon coreos-go if [[ "${PV}" == 9999 ]]; then KEYWORDS="~amd64 ~arm64" else - CROS_WORKON_COMMIT="b0e1d578b42082b5bb5ccb1b6e6d526843df3f46" # v2.1.0 + CROS_WORKON_COMMIT="6a4ff4ca879082c07353dd379439c437cbe27e18" # main KEYWORDS="amd64 arm64" fi DESCRIPTION="CoreUpdate Management CLI" -HOMEPAGE="https://github.com/coreos/updateservicectl" +HOMEPAGE="https://github.com/kinvolk/updateservicectl" SRC_URI="" LICENSE="Apache-2.0"