diff options
author | Ulrich Müller <ulm@gentoo.org> | 2023-06-17 11:45:49 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2023-06-20 20:37:42 +0200 |
commit | a4ee0a6b58f4ce8ce3fac50542c508188d555c07 (patch) | |
tree | c825c1c2ff460804c7ce4b871f908bf345d434d0 /eclass/golang-vcs.eclass | |
parent | net-libs/quiche: Migrating ebuilds to "optimized" cargo.eclass API (diff) | |
download | gentoo-a4ee0a6b58f4ce8ce3fac50542c508188d555c07.tar.gz gentoo-a4ee0a6b58f4ce8ce3fac50542c508188d555c07.tar.bz2 gentoo-a4ee0a6b58f4ce8ce3fac50542c508188d555c07.zip |
golang-vcs.eclass: Don't inherit eutils
This was only needed for estack which is also inherited directly.
None of the ebuilds inheriting golang-vcs needs any eutils feature.
Closes: https://bugs.gentoo.org/908654
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass/golang-vcs.eclass')
-rw-r--r-- | eclass/golang-vcs.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/golang-vcs.eclass b/eclass/golang-vcs.eclass index 6f60b6dd3ae0..7558db4776cb 100644 --- a/eclass/golang-vcs.eclass +++ b/eclass/golang-vcs.eclass @@ -20,7 +20,7 @@ esac if [[ -z ${_GOLANG_VCS_ECLASS} ]]; then _GOLANG_VCS_ECLASS=1 -inherit estack eutils golang-base +inherit estack golang-base PROPERTIES+=" live" |