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,  9 Mar 2023 13:59:49 +0000 (UTC)	[thread overview]
Message-ID: <1678370379.316bf00b43b6d874e940f103fdb1ff81234ac6f4.tastytea@gentoo> (raw)

commit:     316bf00b43b6d874e940f103fdb1ff81234ac6f4
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Thu Mar  9 13:09:21 2023 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Thu Mar  9 13:59:39 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=316bf00b

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

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

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

diff --git a/dev-util/bash-language-server/Manifest b/dev-util/bash-language-server/Manifest
index 1627d37e2..637c28460 100644
--- a/dev-util/bash-language-server/Manifest
+++ b/dev-util/bash-language-server/Manifest
@@ -1,5 +1,3 @@
-DIST bash-language-server-4.6.2-deps.tar.xz 2159844 BLAKE2B 04ce2360f127ac2a4b844a72955e64d5a369032c3459b781da2b3ecb90054bad146655a0e8a179d85bce27a8fd679f0cccb5a9f7a92c4628e7a69a951b343659 SHA512 3bd451f065df79e682f0db0b738281d386f986ecca12c0031093a8ec91b96385bf4fd4496ebcc44be9ba72777f6c6375bfbb74ccf7de0f69cdde0ea5d1bf18d4
-DIST bash-language-server-4.6.2.tgz 182070 BLAKE2B 6872b7084a2893a1aaef46a4cde4ffdbfb0b949d3edac45ca9066464e523e273468a793b1aa34e14925474e6ab65f575fd0bc241d7ca977f2a2c2a340c990020 SHA512 ef599f4addd0f84324302b13441fb6eb2b115d5c43132841d01f600daaf1a9e50749cd0602be42a48aa5ff178ea3470ae4d88d82939cff1cd28ffdf007073e6e
 DIST bash-language-server-4.7.0-deps.tar.xz 2171608 BLAKE2B db40b275b7d38fc372375b40fbfa3fb5982ea51ab08085f4276e702b688add45b40ec38d66195e697e6385004452d19c4c26f2dd0fafe280f2815079cd475baf SHA512 7404b715c3fd9682bd97a6225b5c99121214bd0e8890cfc2b944e73282540b69d1760156ccdc2273907b0e11887f61b7f0e82a0ac05869bc309b59a5a61fc3d5
 DIST bash-language-server-4.7.0.tgz 182260 BLAKE2B 99d469c1e0bdcb8d3deebbf0cf1abbde8a4a84a20f436ffc2eb4e6c7e15fdce099f34af3746488b36416752384b9a6152cfe321992f2335f54fed75ced5e57d9 SHA512 24b7bc6e4d3f16d3a21887455a0ff626800625cb58432ad8a668f6e1d84248402322af471eaafd23a2fd937d9f87d5a45a31dcae1eafef41298afea6f92c6f0d
 DIST bash-language-server-4.8.2-deps.tar.xz 2194352 BLAKE2B b3d28cf15e9e7bae7bf746243057096919a3cfd741b0a36fd56a96f62e86b2bf276cfe1f3afc078ac5a32ac247f3c01356c8a2527408b8da1384488b70f9ea88 SHA512 5d1dcf059d75b664d90991466afbc2c3932c101e53c4d43865b97c62f6e29ac6009dc7753b89db97beaf874f9ff94d4ec38b7829e0840000e08477207098e90f

diff --git a/dev-util/bash-language-server/bash-language-server-4.6.2.ebuild b/dev-util/bash-language-server/bash-language-server-4.6.2.ebuild
deleted file mode 100644
index 344c04d3e..000000000
--- a/dev-util/bash-language-server/bash-language-server-4.6.2.ebuild
+++ /dev/null
@@ -1,51 +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="
-	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
-}


             reply	other threads:[~2023-03-09 13:59 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-09 13:59 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-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-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=1678370379.316bf00b43b6d874e940f103fdb1ff81234ac6f4.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