Diff golop-0.2.1 with a golop-9999

/usr/portage/app-portage/golop/golop-9999.ebuild 2023-10-09 14:52:28.848368334 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2019 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI="6"
......
7 7
if [[ ${PV} = *9999* ]]; then
8 8
	inherit golang-vcs
9 9
else
10
	KEYWORDS="~amd64 ~riscv ~x86"
10
	KEYWORDS="~amd64 ~x86"
11 11
	EGIT_COMMIT=v${PV}
12 12
	SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
13 13
	inherit golang-vcs-snapshot
14 14
fi
15
inherit golang-build
15
inherit golang-build prefix
16 16

  
17 17
DESCRIPTION="A pure Go re-implementation of genlop"
18 18
HOMEPAGE="https://github.com/klausman/golop"
......
22 22
DEPEND=""
23 23
RDEPEND=""
24 24

  
25
src_prepare() {
26
	sed -i -e 's@/var/log/emerge.log@'"${EPREFIX}"'&@g' src/github.com/klausman/golop/main.go || die
27
	default
28
}
29

  
25 30
src_install() {
26 31
	dobin ${PN}
27 32

  
Thank you!