public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
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: Thu, 25 Apr 2024 11:06:36 +0000 (UTC)	[thread overview]
Message-ID: <1714043160.c93d4a07b82c414ee25de5348a8265343690cb84.tastytea@gentoo> (raw)

commit:     c93d4a07b82c414ee25de5348a8265343690cb84
Author:     tastytea <gentoo <AT> tastytea <DOT> de>
AuthorDate: Thu Apr 25 11:06:00 2024 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Thu Apr 25 11:06:00 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c93d4a07

dev-util/bash-language-server: drop 5.0.0

Signed-off-by: tastytea <gentoo <AT> tastytea.de>

 dev-util/bash-language-server/Manifest             |  2 -
 .../bash-language-server-5.0.0.ebuild              | 49 ----------------------
 2 files changed, 51 deletions(-)

diff --git a/dev-util/bash-language-server/Manifest b/dev-util/bash-language-server/Manifest
index 5aa4630f08..d16d7c54c8 100644
--- a/dev-util/bash-language-server/Manifest
+++ b/dev-util/bash-language-server/Manifest
@@ -1,5 +1,3 @@
-DIST bash-language-server-5.0.0-deps.tar.xz 2215800 BLAKE2B 745abb2362062e5eff4ca1f3b2ca87e7d82d47540238d02ebb48368c20e58e63d5b9cef7bacec57f65bade1f1f6af07ff351fb99857bf9be7ed0ea22e6d5542c SHA512 3ab9265aeced3d241251dab4a80759a8eddeb7b833fa58923d0f743d9417a4c7b670f90d748554d97042b90e3d3d29586a976f97a3bb7d59939b128a2b2be13f
-DIST bash-language-server-5.0.0.tgz 189362 BLAKE2B 088af07ab06106624bbdf25dd414c275cb039a128d80d3cc774d41a1927a12b74dd68676d5d2dec450d70c0ea24d346aa1f879701b59b0e085e0b84a8c39ea89 SHA512 d52e4f3103b83f05c32223c7504e9d61df2f645d4d66a6f78b802cb5ded45c3e254969d2a3bd4ca92993a53b3f75361cbe8dbff73d88ca66cd3cfca7fd5b8cdb
 DIST bash-language-server-5.1.2-deps.tar.xz 2260220 BLAKE2B ebc5e7995d66e487cdb5bd7055e91d5225f0040dfd9001aa1d0d0da304790d1d9f9e80fa978ebe2df5d2c626d835aea22bb0cc21140fca131e4065965819a0b2 SHA512 109e533d7f644f2f69a8574b4d91062a88ce65cfa8df8073fe76d59cd9050fc2141f601b952d4274b4ca323d3ace0f2992d3c699eac7a3941b75fd51865f9752
 DIST bash-language-server-5.1.2.tgz 211254 BLAKE2B 81195bbc88e4a6e5037620c64489cf3d2036cedc11c709120bfa7473b931f0818942e02c8ecdef2f47e483d7ce7fc623d78f76ce48683f5eba7268a133f440e5 SHA512 85780def5556555da74151357a3eec7001d51af440c68621b362b0cef26afa54aaa78550eb433409f7f543324a24cfdc4f22d636369b6fdf1b0c66600cc321da
 DIST bash-language-server-5.2.0.tgz 326709 BLAKE2B ce6fe83417363d86ad38e3be71d5321107ffddfb1c4d23fb45a9aebf1c412dfa262b26bb90c31857a9eda84f2b50c94bcdaa45f3ba59a5a6af7e9e5b6427154e SHA512 8442c359ce5691dbcd6adfddbffa676eb79b33173c52d4a68ec635fc44792bbf8b284e817330b51d9419feb31334e78581a1927b290beb79034d4151226c5758

diff --git a/dev-util/bash-language-server/bash-language-server-5.0.0.ebuild b/dev-util/bash-language-server/bash-language-server-5.0.0.ebuild
deleted file mode 100644
index eccdc6d97b..0000000000
--- a/dev-util/bash-language-server/bash-language-server-5.0.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# 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="BSD-2 ISC MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND=">=net-libs/nodejs-18.16.19"
-BDEPEND=">=net-libs/nodejs-18.16.19[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-04-25 11:06 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-25 11: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-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-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=1714043160.c93d4a07b82c414ee25de5348a8265343690cb84.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