public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Florian Schmaus" <flow@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-util/bash-language-server/
Date: Fri, 31 Mar 2023 10:16:15 +0000 (UTC)	[thread overview]
Message-ID: <1680194919.1879f3fda7d7fc2e3087e62c725ee0eb2d1e187f.flow@gentoo> (raw)

commit:     1879f3fda7d7fc2e3087e62c725ee0eb2d1e187f
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Thu Mar 30 11:07:08 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Thu Mar 30 16:48:39 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1879f3fd

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

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

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

diff --git a/dev-util/bash-language-server/Manifest b/dev-util/bash-language-server/Manifest
index ff0999e8d..8bf8ec70e 100644
--- a/dev-util/bash-language-server/Manifest
+++ b/dev-util/bash-language-server/Manifest
@@ -1,5 +1,3 @@
-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.3-deps.tar.xz 2192036 BLAKE2B baff7c37f8ecbdd4e0de1feed11e75790b64b2be6cd89fc490f843cdcf53942ab90a76d8a2bffd384fe3836ec82d511573ba970e21e2d1d7148fd1e465421401 SHA512 cd50420e191113194b2422c85c49416bce6b38ccb05095bd974419494526ceb86c1bc94548fec0cc5d5ca05d84dc557ae2c938b78d5d8b526f40d2ab04e9251f
 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

diff --git a/dev-util/bash-language-server/bash-language-server-4.7.0.ebuild b/dev-util/bash-language-server/bash-language-server-4.7.0.ebuild
deleted file mode 100644
index 344c04d3e..000000000
--- a/dev-util/bash-language-server/bash-language-server-4.7.0.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-31 10:16 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-31 10:16 Florian Schmaus [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-15 23:27 [gentoo-commits] repo/proj/guru:master commit in: dev-util/bash-language-server/ 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-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=1680194919.1879f3fda7d7fc2e3087e62c725ee0eb2d1e187f.flow@gentoo \
    --to=flow@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