diff options
author | William Hubbs <williamh@gentoo.org> | 2024-01-11 11:49:10 -0600 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2024-01-11 11:49:10 -0600 |
commit | 84a16b558bf7d371434fe401373d697672ba9881 (patch) | |
tree | dd827e5a4df0415bb4bbbfecf4e46de63de8be4a /eclass | |
parent | app-crypt/tpm2-openssl: drop 1.1.1-r1 (diff) | |
download | gentoo-84a16b558bf7d371434fe401373d697672ba9881.tar.gz gentoo-84a16b558bf7d371434fe401373d697672ba9881.tar.bz2 gentoo-84a16b558bf7d371434fe401373d697672ba9881.zip |
go-module.eclass: update go version in BDEPEND and add subslot
Bug: https://bugs.gentoo.org/919751
Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/go-module.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/go-module.eclass b/eclass/go-module.eclass index 701d36e012e2..5726d2f77d9a 100644 --- a/eclass/go-module.eclass +++ b/eclass/go-module.eclass @@ -1,4 +1,4 @@ -# Copyright 2019-2023 Gentoo Authors +# Copyright 2019-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: go-module.eclass @@ -71,7 +71,7 @@ _GO_MODULE_ECLASS=1 inherit multiprocessing toolchain-funcs go-env if [[ ! ${GO_OPTIONAL} ]]; then - BDEPEND=">=dev-lang/go-1.18" + BDEPEND=">=dev-lang/go-1.20:=" # Workaround for pkgcheck false positive: https://github.com/pkgcore/pkgcheck/issues/214 # MissingUnpackerDep: version ...: missing BDEPEND="app-arch/unzip" |