summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2024-07-09 21:22:38 +0100
committerJames Le Cuirot <chewi@gentoo.org>2024-07-16 10:13:30 +0100
commitf29b80d18d526a13af59af83e524902f8176bfdb (patch)
treef0634b185a2f4e5df6e2714cc5b081c8d048a654 /eclass/golang-vcs.eclass
parentdev-libs/gom: update HOMEPAGE (diff)
downloadgentoo-f29b80d18d526a13af59af83e524902f8176bfdb.tar.gz
gentoo-f29b80d18d526a13af59af83e524902f8176bfdb.tar.bz2
gentoo-f29b80d18d526a13af59af83e524902f8176bfdb.zip
golang-vcs.eclass: Drop support for EAPI 6
All such usage has gone. Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'eclass/golang-vcs.eclass')
-rw-r--r--eclass/golang-vcs.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/golang-vcs.eclass b/eclass/golang-vcs.eclass
index 6f7a837bc15f..dee040505d23 100644
--- a/eclass/golang-vcs.eclass
+++ b/eclass/golang-vcs.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-vcs.eclass
# @MAINTAINER:
# William Hubbs <williamh@gentoo.org>
-# @SUPPORTED_EAPIS: 6 7
+# @SUPPORTED_EAPIS: 7
# @PROVIDES: golang-base
# @BLURB: Eclass for fetching and unpacking go repositories.
# @DEPRECATED: go-module.eclass
@@ -13,7 +13,7 @@
# of software written in the Go programming language.
case ${EAPI} in
- 6|7) ;;
+ 7) ;;
*) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
esac