public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Zac Medico" <zmedico@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-go/gopls/
Date: Tue, 26 Jul 2022 00:36:07 +0000 (UTC)	[thread overview]
Message-ID: <1658795743.5f2f170c880d6c5d92cfe1cb90c38868134df438.zmedico@gentoo> (raw)

commit:     5f2f170c880d6c5d92cfe1cb90c38868134df438
Author:     Randall T. Vasquez <ran.dall <AT> icloud <DOT> com>
AuthorDate: Mon Jul 25 17:59:34 2022 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Tue Jul 26 00:35:43 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f2f170c

dev-go/gopls: bump to 0.9.1

Closes: https://github.com/gentoo/gentoo/pull/26594
Signed-off-by: Randall T. Vasquez <ran.dall <AT> icloud.com>
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>

 dev-go/gopls/Manifest           |  2 ++
 dev-go/gopls/gopls-0.9.1.ebuild | 40 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 42 insertions(+)

diff --git a/dev-go/gopls/Manifest b/dev-go/gopls/Manifest
index b77a96f75755..41c38480f9f7 100644
--- a/dev-go/gopls/Manifest
+++ b/dev-go/gopls/Manifest
@@ -2,3 +2,5 @@ DIST gopls-0.8.3-deps.tar.xz 22577604 BLAKE2B 762d0eabc16771439fbd0d8cd2018e201a
 DIST gopls-0.8.3.tar.gz 3036967 BLAKE2B feb8ee9dae8eed6ebccddaa8425db20a2e6964af3a537e6cfe9e1bf71dc62a6301516b7114e4e33470f82afa27041bc20c7362a1cd5840da0168ce43bc356023 SHA512 b5be84e3ce79f98f2109ca421cfa913a5031518a068d673b6eec8ec5f61a7bd204ae6e7e11af7f4bf94a6f60107d4268359ed3b2751b3df5a98e685de78147b8
 DIST gopls-0.9.0-deps.tar.xz 21748784 BLAKE2B dfbe63c2c830548e2c7ed02563d59e0e0c09e3b05da570532d16f9f6b8c9fe4be2c43d6266de69e19b91bbc4f43ff20d768e45b24739e5f6c5e3d0da03ada834 SHA512 60ac489b49812e62cd9758acb6a44adfa8091322684770cbc8fdf048764eda52f9e93bfb4247700cf9480c71e8e16254e9a74102d6ae60a51e647ede5bd5d928
 DIST gopls-0.9.0.tar.gz 3101189 BLAKE2B 11b24db6dca208212444df1e25d65700dd814344bbcf66a9a4d08d5a16f18f5040195dfc27628b3020628d3ad79e9d890e218016b66a473cdbab0b415daf6bd3 SHA512 c0dc0fdffec517115acf8e7ce3de1d5357d467f2ea23e070ea800a43a137be67094e69f5f366613dcbb771379818789c2105b2b59f53c04762146876d12f74ea
+DIST gopls-0.9.1-deps.tar.xz 21987952 BLAKE2B 3279c9bb5223460ea4881ad2d4061a7eaf973682af26f8af3f6a19436310bd7037ec4e31594e019b2cf17e51784945d89808bd9fccaebbf654b4865383fddef2 SHA512 d29177bab21a27c67ea664f7b1264b5a9ce889d597fa150a9c008a10b0609186fccaae3a0cf6330cf0e88e0fb98c010546be7364486696d0ccebbaf9e5256043
+DIST gopls-0.9.1.tar.gz 3101075 BLAKE2B a9e05f28868f733c9ef60bbdf3c6b54f2507eae6b23d18a85d7fd0df69ff3c5fe2806a280a918763aa6e34db7e4d6ca4e3160c7c280e5e9d95511a3ad3846ee6 SHA512 f5a3863dacc5639e1773ee70608d0c22228e348d00cda5303044ad13c6be0d212b64f3866d541459e8e188461bd84e4b2270d5e40baa105f9f0c749db86df9ab

diff --git a/dev-go/gopls/gopls-0.9.1.ebuild b/dev-go/gopls/gopls-0.9.1.ebuild
new file mode 100644
index 000000000000..5952c14f68b0
--- /dev/null
+++ b/dev-go/gopls/gopls-0.9.1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit go-module
+
+ARCHIVE_URI="https://github.com/golang/tools/archive/refs/tags/gopls/v${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+DESCRIPTION="\"Go please\" is the official Go language server"
+HOMEPAGE="https://github.com/golang/tools/blob/master/gopls/README.md"
+SLOT="0"
+LICENSE="BSD"
+BDEPEND=">=dev-lang/go-1.18"
+SRC_URI="
+	${ARCHIVE_URI}
+	https://dev.gentoo.org/~zmedico/dist/${P}-deps.tar.xz
+"
+# TODO: fix test failure with deps tarball
+RESTRICT+=" test"
+
+S=${WORKDIR}/tools-gopls-v${PV}/${PN}
+
+src_prepare() {
+	default
+	rm internal/regtest/misc/vendor_test.go || die
+}
+
+src_compile() {
+	GOBIN="${S}/bin" CGO_ENABLED=0 go install ./...
+	[[ -x bin/${PN} ]] || die "${PN} build failed"
+}
+
+src_test() {
+	go test -work "./..." || die
+}
+
+src_install() {
+	dobin bin/${PN}
+	dodoc -r doc README.md
+}


             reply	other threads:[~2022-07-26  0:36 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-26  0:36 Zac Medico [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-06 23:16 [gentoo-commits] repo/gentoo:master commit in: dev-go/gopls/ Jakov Smolić
2025-03-06 23:16 Jakov Smolić
2025-03-06  1:25 Zac Medico
2024-12-22 21:20 Zac Medico
2024-12-14 20:36 Zac Medico
2024-04-19 15:32 Arthur Zamarin
2024-04-19 15:32 Arthur Zamarin
2024-01-06  5:56 Zac Medico
2024-01-06  5:56 Zac Medico
2024-01-06  5:56 Zac Medico
2023-09-10 15:52 Sam James
2023-09-10 15:52 Sam James
2022-10-18  3:03 Zac Medico
2022-10-18  3:00 Zac Medico
2022-10-10 23:40 Sam James
2022-08-27  0:01 Zac Medico
2022-08-27  0:01 Zac Medico
2022-07-10 20:50 Zac Medico
2022-06-22  7:05 Michał Górny
2022-05-16  2:33 Zac Medico
2022-05-16  2:33 Zac Medico
2022-04-13  3:05 Zac Medico
2022-03-18  4:16 Zac Medico
2022-03-16  4:02 Zac Medico
2021-06-29  8:24 Zac Medico

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1658795743.5f2f170c880d6c5d92cfe1cb90c38868134df438.zmedico@gentoo \
    --to=zmedico@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox