public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Roman" <davidroman96@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-util/bash-language-server/
Date: Tue, 15 Oct 2024 23:27:17 +0000 (UTC)	[thread overview]
Message-ID: <1728935200.d825fa9221bbe2f77ccc654bad62241ad1d88c7c.davidroman@gentoo> (raw)

commit:     d825fa9221bbe2f77ccc654bad62241ad1d88c7c
Author:     tea <tea+gentoo <AT> cuddleslut <DOT> fr>
AuthorDate: Mon Oct 14 19:25:55 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Oct 14 19:46:40 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d825fa92

dev-util/bash-language-server: add 5.4.2

Signed-off-by: tea <tea+gentoo <AT> cuddleslut.fr>

 dev-util/bash-language-server/Manifest             |  2 +
 .../bash-language-server-5.4.2.ebuild              | 49 ++++++++++++++++++++++
 2 files changed, 51 insertions(+)

diff --git a/dev-util/bash-language-server/Manifest b/dev-util/bash-language-server/Manifest
index f7cae8a9a..44846ac94 100644
--- a/dev-util/bash-language-server/Manifest
+++ b/dev-util/bash-language-server/Manifest
@@ -2,3 +2,5 @@ DIST bash-language-server-5.3.3-deps.tar.xz 2412816 BLAKE2B 2381e518d9fa73d85c4e
 DIST bash-language-server-5.3.3.tgz 332097 BLAKE2B d1e29039d2ffc0fb85d25747e5eafeeaeccdebf8ea808776ae0ca0050ba64c82674a42e5b8a8e1efb8717735726283b61aa58e747f61d713a212bd27706391e9 SHA512 18aa9476e7bc375ad4bc11cde57c264d2544090b91538155961445774437edee29a4470900a57d8c9a22f1341cfb6adae63734db468cf02325b97042c089f63f
 DIST bash-language-server-5.4.0-deps.tar.xz 2882336 BLAKE2B a5604bee34747e0852df3cb403aad4d31e8a7ff5e30e30b8a48be89d3bd374dfad0d5daed3f0e48719f31801fcf11305e0cd14fe786916b66540993a5eb454d9 SHA512 51d1f701f8cfe0bad20d207ecc790fca7aec927e0f04cc0971cd760595a7788da98bfe3ac67fa1c14adfdef9aee555ffa9ac4cef5a8bf85a1dba2c8198982dfe
 DIST bash-language-server-5.4.0.tgz 336941 BLAKE2B f7af5c463cdc4c306fc02df04021953c3737c0c8581a86e53b87d7571e2fb15b165cf07ddb9d2cdfb59d6516ddadab47619d5cb1d4d507b7974e5a016a77295d SHA512 60b0880639f0771be5c25bab4c0e017bb51f3d70f36960892b3270ccef2b563247d1095b84fbe8dc55e460e0573cb83cd46e216f465b852022e3ecabb3b8f971
+DIST bash-language-server-5.4.2-deps.tar.xz 2897652 BLAKE2B 241b0f3faf227717b5c3228702cd826a3b0149ccd8f744b5118327b2e428841271eae14a98d6856838e2624d9dd8cef861ccd322e9cbc693cff87e0e49ecc8a1 SHA512 9020190c9eb7d4e3a7e4dd8ddeb00d0bd26c926095977c3cbc64849d2beec861fe15c0957978b328e0987f42a9e50e9ddd5ca227f5bfaa349db5c558a41a4249
+DIST bash-language-server-5.4.2.tgz 329137 BLAKE2B 4ec4d60c443c339494588c22395d24ac943c4a08812cc45c5a0a446980b9aeac65c60eefb4e08f4207a0496119fe36a95a035a64ac010c8723a310d86b0d41a9 SHA512 dcdd88351962a3adc0e42c2f0f3dac644585a78e87dec9bb383d8853f92bf0c498280211b7fc43db76ab4fb75a25f60a2c2f88ea28d6b2f685b3db4fe81a34d1

diff --git a/dev-util/bash-language-server/bash-language-server-5.4.2.ebuild b/dev-util/bash-language-server/bash-language-server-5.4.2.ebuild
new file mode 100644
index 000000000..b34d5833f
--- /dev/null
+++ b/dev-util/bash-language-server/bash-language-server-5.4.2.ebuild
@@ -0,0 +1,49 @@
+# Copyright 2022-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit optfeature
+
+DESCRIPTION="A language server for Bash"
+HOMEPAGE="https://github.com/bash-lsp/bash-language-server"
+SRC_URI="
+	mirror://npm/${PN}/-/${P}.tgz
+	https://tastytea.de/files/gentoo/${P}-deps.tar.xz
+"
+S="${WORKDIR}"
+
+# NOTE: to generate the dependency tarball:
+#       npm --cache ./npm-cache install $(portageq envvar DISTDIR)/${P}.tgz
+#       tar -caf ${P}-deps.tar.xz npm-cache
+
+LICENSE="BSD-2 ISC MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND=">=net-libs/nodejs-18.19.30"
+BDEPEND=">=net-libs/nodejs-18.19.30[npm]"
+
+src_unpack() {
+	cd "${T}" || die "Could not cd to temporary directory"
+	unpack ${P}-deps.tar.xz
+}
+
+src_install() {
+	npm \
+		--offline \
+		--verbose \
+		--progress false \
+		--foreground-scripts \
+		--global \
+		--prefix "${ED}"/usr \
+		--cache "${T}"/npm-cache \
+		install "${DISTDIR}"/${P}.tgz || die "npm install failed"
+
+	cd "${ED}"/usr/$(get_libdir)/node_modules/${PN} || die "cd failed"
+	einstalldocs
+}
+
+pkg_postinst() {
+	optfeature "linting support" dev-util/shellcheck dev-util/shellcheck-bin
+}


             reply	other threads:[~2024-10-15 23:27 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-15 23:27 David Roman [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-07-13 11:42 [gentoo-commits] repo/proj/guru:master commit in: dev-util/bash-language-server/ Lucio Sauer
2025-02-18 14:01 David Roman
2024-06-12 21:51 Haelwenn Monnier
2024-06-12 21:51 Haelwenn Monnier
2024-05-20  0:18 Julien Roy
2024-05-20  0:18 Julien Roy
2024-04-27 11:10 David Roman
2024-04-25 21:49 Julien Roy
2024-04-25 21:49 Julien Roy
2024-02-11 17:50 David Roman
2024-02-11 17:50 David Roman
2023-07-26  7:43 Viorel Munteanu
2023-07-26  7:43 Viorel Munteanu
2023-07-01 18:15 Haelwenn Monnier
2023-07-01 18:15 Haelwenn Monnier
2023-06-11 11:47 Viorel Munteanu
2023-06-11 11:47 Viorel Munteanu
2023-05-25  2:21 Haelwenn Monnier
2023-04-13  7:02 Florian Schmaus
2023-04-13  7:02 Florian Schmaus
2023-04-09 10:05 Viorel Munteanu
2023-04-09 10:05 Viorel Munteanu
2023-03-31 10:16 Florian Schmaus
2023-03-31 10:16 Florian Schmaus
2023-03-10  5:48 Viorel Munteanu
2023-03-10  5:48 Viorel Munteanu
2023-03-10  5:48 Viorel Munteanu
2023-02-16 12:47 Haelwenn Monnier
2023-02-16 12:47 Haelwenn Monnier
2023-02-03 21:15 Andrew Ammerlaan
2023-02-03 21:15 Andrew Ammerlaan
2022-12-29 11:33 Florian Schmaus
2022-12-29 11:33 Florian Schmaus
2022-12-09 16:26 Ronny Gutbrod
2022-12-09  1:26 [gentoo-commits] repo/proj/guru:dev " Ronny Gutbrod
2022-12-09 16:26 ` [gentoo-commits] repo/proj/guru:master " Ronny Gutbrod
2022-12-05  9:20 Viorel Munteanu
2022-12-05  9:20 Viorel Munteanu
2022-11-26 10:54 Florian Schmaus
2022-11-26 10:54 Florian Schmaus

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=1728935200.d825fa9221bbe2f77ccc654bad62241ad1d88c7c.davidroman@gentoo \
    --to=davidroman96@gmail.com \
    --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