Install this version:
emerge -a =dev-go/gopls-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-go/gopls-9999
Or alternatively:
emerge --autounmask-write -a =dev-go/gopls-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 2026 mva
# Distributed under the terms of the Public Domain or CC0 License
EAPI=8
inherit go-module git-r3
DESCRIPTION="official go language server"
HOMEPAGE="https://github.com/golang/tools/tree/master/gopls"
EGIT_REPO_URI="https://github.com/golang/tools"
S="${WORKDIR}/${P}/${PN}"
LICENSE="MIT"
SLOT="0"
src_unpack() {
default
git-r3_src_unpack
go-module_live_vendor
}
src_compile() {
ego build -o "${PN}"
}
src_install() {
dobin "${PN}"
}