Diff kube-router-1.2.2 with a kube-router-1.5.0

/usr/portage/sys-cluster/kube-router/kube-router-1.5.0.ebuild 2023-10-09 14:52:35.460368501 +0300
1
# Copyright 2020-2021 Gentoo Authors
1
# Copyright 2020-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5
inherit go-module
6 6

  
7 7
DESCRIPTION="A turnkey solution for Kubernetes networking"
8 8
HOMEPAGE="https://kube-router.io"
9 9
SRC_URI="https://github.com/cloudnativelabs/kube-router/archive/v${PV}.tar.gz -> ${P}.tar.gz"
10
SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz"
10 11

  
11 12
LICENSE="Apache-2.0 MIT BSD BSD-2 MPL-2.0 ISC LGPL-3-with-linking-exception"
12 13
SLOT="0"
......
23 24
}
24 25

  
25 26
src_test() {
26
	go test -mod=vendor -v -timeout=30s ./cmd/kube-router ./pkg/... ||
27
		die "tests failed"
27
	ego test -v -timeout=30s ./cmd/kube-router ./pkg/...
28 28
}
29 29

  
30 30
src_install() {
Thank you!