diff options
author | 2024-07-09 21:23:45 +0100 | |
---|---|---|
committer | 2024-07-16 10:13:35 +0100 | |
commit | cbd596b7eb8b3ff070313a1311454b6b041021a9 (patch) | |
tree | 9b7333714d966a82dda5d7f861006445291ce709 /eclass | |
parent | golang-vcs-snapshot.eclass: Drop support for EAPI 6 (diff) | |
download | gentoo-cbd596b7eb8b3ff070313a1311454b6b041021a9.tar.gz gentoo-cbd596b7eb8b3ff070313a1311454b6b041021a9.tar.bz2 gentoo-cbd596b7eb8b3ff070313a1311454b6b041021a9.zip |
golang-build.eclass: Drop support for EAPI 6
All such usage has gone.
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/golang-build.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/golang-build.eclass b/eclass/golang-build.eclass index 235313bd70f5..b5218ce36572 100644 --- a/eclass/golang-build.eclass +++ b/eclass/golang-build.eclass @@ -1,10 +1,10 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: golang-build.eclass # @MAINTAINER: # William Hubbs <williamh@gentoo.org> -# @SUPPORTED_EAPIS: 6 7 +# @SUPPORTED_EAPIS: 7 # @PROVIDES: golang-base # @BLURB: Eclass for compiling go packages. # @DEPRECATED: go-module.eclass @@ -13,7 +13,7 @@ # functions for software written in the Go programming language. case ${EAPI} in - 6|7) ;; + 7) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |