Diff peco-0.5.10 with a peco-9999

/usr/portage/app-shells/peco/peco-9999.ebuild 2023-10-09 14:52:28.856368334 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
inherit go-module
6
EGIT_REPO_URI="https://github.com/peco/${PN}.git"
7

  
8
inherit git-r3 go-module
7 9

  
8 10
DESCRIPTION="Simplistic interactive filtering tool"
9 11
HOMEPAGE="https://github.com/peco/peco"
10
SRC_URI="https://github.com/peco/peco/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz
11
	https://github.com/SpiderX/portage-overlay/raw/deps/${P}-deps.tar.xz"
12
SRC_URI=""
12 13

  
13 14
LICENSE="Apache-2.0 BSD BSD-2 MIT"
14 15
SLOT="0"
15
KEYWORDS="~amd64"
16
KEYWORDS=""
16 17

  
17 18
DOCS=( {Changes,README.md} )
18 19

  
20
src_unpack() {
21
	git-r3_src_unpack
22
	go-module_live_vendor
23
}
24

  
19 25
src_compile() {
20 26
	ego build ./cmd/...
21 27
}
Thank you!