
* Bump the package API of the `builtin` repo to `v2.0` * Move `var/spack/repos/builtin` -> `var/spack/repos/spack_repo/builtin` * Move test repos `var/spack/repos/{builtin.mock,tutorial,...}` -> `var/spack/test_repos/` * Update package dir names to v2 format (`-` -> `_` etc) * Change absolute imports `from spack.pkg.builtin.my_pkg ...` to relative imports `from ..my_pkg.package ...` Users who have a repo on top of builtin should change imports from ```python from spack.pkg.builtin.my_pkg import MyPkg ``` to ```python from spack_repo.builtin.packages.my_pkg.package import MyPkg ``` and can configure their editors with ``` PYTHONPATH=$spack/lib/spack:$spack/var/spack/repos ``` [skip-verify-checksums]
24 lines
740 B
Python
24 lines
740 B
Python
# Copyright Spack Project Developers. See COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class Gopls(GoPackage):
|
|
"""The official Go language server developed by the Go team."""
|
|
|
|
homepage = "https://golang.org/x/tools/gopls"
|
|
url = "https://github.com/golang/tools/archive/refs/tags/gopls/v0.16.2.tar.gz"
|
|
|
|
maintainers("alecbcs")
|
|
|
|
license("BSD-3-Clause", checked_by="alecbcs")
|
|
|
|
version("0.17.1", sha256="5794ebd3302ef4fd08de284834b22810dbb17b7e08efeeaa9b96d5c94eb90d6d")
|
|
version("0.16.2", sha256="be68b3159fcb8cde9ebb8b468f67f03531c58be2de33edbac69e5599f2d4a2c1")
|
|
|
|
depends_on("go@1.23.1:", type="build", when="@0.17:")
|
|
|
|
build_directory = "gopls"
|