From: "Ronny Gutbrod" <gentoo@tastytea.de>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-util/bash-language-server/
Date: Fri, 7 Apr 2023 13:06:37 +0000 (UTC) [thread overview]
Message-ID: <1680872720.2b9e2060e78fa45256c87aadccb30a1a61f48e12.tastytea@gentoo> (raw)
commit: 2b9e2060e78fa45256c87aadccb30a1a61f48e12
Author: tastytea <gentoo <AT> tastytea <DOT> de>
AuthorDate: Fri Apr 7 13:05:20 2023 +0000
Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Fri Apr 7 13:05:20 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2b9e2060
dev-util/bash-language-server: add 4.9.0
Signed-off-by: tastytea <gentoo <AT> tastytea.de>
dev-util/bash-language-server/Manifest | 2 +
.../bash-language-server-4.9.0.ebuild | 51 ++++++++++++++++++++++
2 files changed, 53 insertions(+)
diff --git a/dev-util/bash-language-server/Manifest b/dev-util/bash-language-server/Manifest
index 8bf8ec70e..e62f2e599 100644
--- a/dev-util/bash-language-server/Manifest
+++ b/dev-util/bash-language-server/Manifest
@@ -2,3 +2,5 @@ DIST bash-language-server-4.8.3-deps.tar.xz 2192036 BLAKE2B baff7c37f8ecbdd4e0de
DIST bash-language-server-4.8.3.tgz 186679 BLAKE2B c183c813e793c3f6754a88b4deccc839393c12aa4ae9aa5d9fa0254a5d300ebb70af7db3a47794a57b49b3467e00cb9541d6048a10b129d267ff549357ec9455 SHA512 3495eaccd38297127f1ba1ebf2069fbea701898d6236f0400b1665cf9b4e3f2a25a137aac8eb65e82f72654c56f2bc96f06009d93512e3bf65cb9b6af648c404
DIST bash-language-server-4.8.4-deps.tar.xz 2196888 BLAKE2B 754af32f1955662904c2c202b6fdd35fd92dcadf84da338b5cd74c305ef31387e19df8fa768a33ea8512e71ef37bf756b0b182a20f92c04682187e75f9acdd33 SHA512 596b2b79e1e4d6abdbee8265be982a25f25ce2f8f255a83188953f974da1492a75ba841d59c037e1e6e228523b1df1837928a27cf07fb3c356a96f5bba2be79f
DIST bash-language-server-4.8.4.tgz 187465 BLAKE2B 2eea73fca9e91825009cb0817dd59ab9da3f230512d4fefd48434036154c7558f92286f6a75fad4d7e40bc6cb24958732b020ee8a75c17bf33f4b6a7a7a845d5 SHA512 93c6f0d86e1bce97bc3efdb422c721e8aa0056c39d9b874d64d3d342675fd336a938f88344039e85dd4ca68c5a99e2a0c33ea78c5ea84546b11fa5bee0b4d42b
+DIST bash-language-server-4.9.0-deps.tar.xz 2203152 BLAKE2B fd0aaa05e6fef5e2951ffe55626bca7df4d2609c39b5145daa3cf6100c9732287a33717065db411334cad9805f147acdd29470069b4c4a41ebf2018419809108 SHA512 3c6ff2ff44321adbd805aad749ff3eacc320d276add2f5d68eea6f68c95e26cfeeac8d319d5242514fb69b572fbab64327ab4134e736b5425ffd1ef8d1a0079a
+DIST bash-language-server-4.9.0.tgz 190986 BLAKE2B 09b371d143815fc0b839c8c0d5b0e93592077b8cdd396b2f6e028e0feb133ab22fe59e4fd006324d8fb0b5b26816389528001d4210fc2b37d055cc4d8a24fab3 SHA512 acc6ff77935e156be2333b96e4348949643a7879463e7b7402b7ca3f4032934d1b510cdde469404c9d41510f14002606fe79fba54ebe25688b818030df618bdd
diff --git a/dev-util/bash-language-server/bash-language-server-4.9.0.ebuild b/dev-util/bash-language-server/bash-language-server-4.9.0.ebuild
new file mode 100644
index 000000000..344c04d3e
--- /dev/null
+++ b/dev-util/bash-language-server/bash-language-server-4.9.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2022-2023 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="
+ Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT-with-advertising
+ || ( public-domain Unlicense )
+"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="net-libs/nodejs"
+BDEPEND="net-libs/nodejs[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"
+
+ einstalldocs
+}
+
+pkg_postinst() {
+ optfeature "linting support" dev-util/shellcheck dev-util/shellcheck-bin
+}
next reply other threads:[~2023-04-07 13:06 UTC|newest]
Thread overview: 49+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-07 13:06 Ronny Gutbrod [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-17 19:01 [gentoo-commits] repo/proj/guru:dev commit in: dev-util/bash-language-server/ Saad Abdullah
2024-10-14 19:47 Ronny Gutbrod
2024-06-12 16:43 Ronny Gutbrod
2024-06-12 16:43 Ronny Gutbrod
2024-05-18 18:20 Ronny Gutbrod
2024-05-18 18:20 Ronny Gutbrod
2024-04-27 9:40 Ronny Gutbrod
2024-04-25 11:06 Ronny Gutbrod
2024-04-25 11:06 Ronny Gutbrod
2024-02-10 18:39 Ronny Gutbrod
2024-02-10 18:39 Ronny Gutbrod
2023-07-25 17:37 Ronny Gutbrod
2023-07-25 17:37 Ronny Gutbrod
2023-07-13 15:28 Ronny Gutbrod
2023-07-13 15:28 Ronny Gutbrod
2023-06-30 12:57 Ronny Gutbrod
2023-06-30 12:57 Ronny Gutbrod
2023-06-11 11:14 Ronny Gutbrod
2023-06-11 11:14 Ronny Gutbrod
2023-05-23 12:47 Ronny Gutbrod
2023-05-23 12:47 Ronny Gutbrod
2023-04-12 18:54 Ronny Gutbrod
2023-04-12 18:54 Ronny Gutbrod
2023-04-07 13:06 Ronny Gutbrod
2023-03-30 19:49 Ronny Gutbrod
2023-03-30 19:49 Ronny Gutbrod
2023-03-09 20:09 Ronny Gutbrod
2023-03-09 13:59 Ronny Gutbrod
2023-03-09 13:59 Ronny Gutbrod
2023-02-15 11:39 Ronny Gutbrod
2023-02-15 11:39 Ronny Gutbrod
2023-02-03 9:17 Ronny Gutbrod
2023-02-03 9:17 Ronny Gutbrod
2023-01-27 23:58 Ronny Gutbrod
2023-01-27 23:58 Ronny Gutbrod
2023-01-18 13:37 Ronny Gutbrod
2023-01-17 12:17 Ronny Gutbrod
2023-01-17 1:02 Ronny Gutbrod
2023-01-17 1:02 Ronny Gutbrod
2022-12-29 11:01 Ronny Gutbrod
2022-12-29 11:01 Ronny Gutbrod
2022-12-09 16:26 [gentoo-commits] repo/proj/guru:master " Ronny Gutbrod
2022-12-09 1:26 ` [gentoo-commits] repo/proj/guru:dev " Ronny Gutbrod
2022-12-09 1:26 Ronny Gutbrod
2022-12-03 17:45 Ronny Gutbrod
2022-12-03 17:45 Ronny Gutbrod
2022-11-25 21:46 Ronny Gutbrod
2022-11-25 11:24 Ronny Gutbrod
2022-09-07 2:09 Ronny Gutbrod
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=1680872720.2b9e2060e78fa45256c87aadccb30a1a61f48e12.tastytea@gentoo \
--to=gentoo@tastytea.de \
--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