dev-util/git-bug: update EAPI 7 -> 8

Signed-off-by: David Roman <davidroman96@gmail.com>
This commit is contained in:
David Roman
2023-10-06 22:46:10 +02:00
parent 05a11fe328
commit 62ac095083

View File

@@ -1,7 +1,7 @@
# Copyright 2020-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
EAPI=8
inherit go-module
@@ -11,10 +11,8 @@ HOMEPAGE="https://github.com/MichaelMure/git-bug"
inherit git-r3
EGIT_REPO_URI="https://github.com/MichaelMure/${PN}"
RESTRICT="network-sandbox"
LICENSE="GPL-3"
SLOT="0"
IUSE=""
KEYWORDS=""
src_unpack() {
@@ -24,8 +22,8 @@ src_unpack() {
}
src_compile() {
go generate
go build \
ego generate
ego build \
-ldflags "-s -w -X github.com/MichealMure/git-bug/commands.GitLastTag=${PV} -X github.com/MichealMure/git-bug/commands.GitExactTag=${PV}" \
-o ${PN}
}
@@ -33,3 +31,7 @@ src_compile() {
src_install() {
dobin ${PN}
}
src_test() {
CI=true ego test
}