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, 9 Dec 2022 01:26:08 +0000 (UTC) [thread overview] Message-ID: <1670549102.1a726a2e3f2bacadf71b0bef22fa264f65300d96.tastytea@gentoo> (raw) commit: 1a726a2e3f2bacadf71b0bef22fa264f65300d96 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de> AuthorDate: Fri Dec 9 01:25:02 2022 +0000 Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de> CommitDate: Fri Dec 9 01:25:02 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1a726a2e dev-util/bash-language-server: add 4.0.1 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de> dev-util/bash-language-server/Manifest | 2 + .../bash-language-server-4.0.1.ebuild | 51 ++++++++++++++++++++++ 2 files changed, 53 insertions(+) diff --git a/dev-util/bash-language-server/Manifest b/dev-util/bash-language-server/Manifest index 81700cced..59ed96410 100644 --- a/dev-util/bash-language-server/Manifest +++ b/dev-util/bash-language-server/Manifest @@ -2,3 +2,5 @@ DIST bash-language-server-3.2.1-deps.tar.xz 3465976 BLAKE2B 9b2b2b4e9f4dad02869d DIST bash-language-server-3.2.1.tgz 141222 BLAKE2B f984dd50bc1e8c5643109cb42b635240db671770413db6ce47eacbb716f09a37a147743b15681a7e6cb5af0714e950f99f3b42ebf8735b9890fac2979475337a SHA512 e1ee2ec4956e733567f25bfd8b82ff5ccb66aa44735c583f9acf85a4c58331038c63637a50ecded40b13e72fbe0a73031efbe1dab15c1ce454532f304403cffe DIST bash-language-server-3.3.1-deps.tar.xz 3557556 BLAKE2B 4c231bcb7d21951d5244e883fce825c955f81dba6711a4ddc372d0d457165d659fcf5bd04d723256335e33dca9635abbf20a0a2fdc9094307c20d1c35c987d08 SHA512 d0e9369f5f6eef94897859ce78811bf4b1b80a857ee73e6e75a367bea0aff485a68a4c39cb731e8650fa47081beab159e883e6646bbdd39b31e4b4a8a5c6808f DIST bash-language-server-3.3.1.tgz 142732 BLAKE2B 40d60cf875c0c60c49a3600c6b3488c95c16cb1088f07d3a35c46ab78fd077db5de71ddd321b7b8cb2d03867fb2a8ffa8f4e2179f0dd1d1d469cfebf979b3e4e SHA512 f774eceab41310ff2bbc66775cf4b2d74e4633842ceb2bc8b8252f4620c8c7480c2c57a6b1c0a4bf2aeb8a10c43249a36f44f74da459c855e0a1993911af1b97 +DIST bash-language-server-4.0.1-deps.tar.xz 2160812 BLAKE2B bbf8f1d88c4be377c650bd379d557a67fdfcf560149b639f402c7682152c12ea00fa19f127574d26f6cf72ceee160894ccc35ca119fe9c8fde7cafe4725d5e9c SHA512 f87219c7df50d0062e8babbef100ce4a547c9b3d390daedbc37571e06ca0d8586d6c2e67f4cd369f4eb20932d641ffa78365742ba5cda628213b67832f8214c4 +DIST bash-language-server-4.0.1.tgz 151418 BLAKE2B 93989871476092a7e7fd244fb9237811f84c1eb80dbd25138292006c160991a85c49df1f91d85460b5ec78ee689a58c87956b3c1f8c61e77a6fda1404ed1d7ad SHA512 c40b384edaa55e7395e81aa33397c64761601524a32f218bbf3dc51095deddddaf11a336a4e8022dfa07ca843720852d64a6442f4d9d367f26aff21f8698fbe2 diff --git a/dev-util/bash-language-server/bash-language-server-4.0.1.ebuild b/dev-util/bash-language-server/bash-language-server-4.0.1.ebuild new file mode 100644 index 000000000..f1b458f5b --- /dev/null +++ b/dev-util/bash-language-server/bash-language-server-4.0.1.ebuild @@ -0,0 +1,51 @@ +# Copyright 2022 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 +}
WARNING: multiple messages have this Message-ID (diff)
From: "Ronny Gutbrod" <gentoo@tastytea.de> To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-util/bash-language-server/ Date: Fri, 9 Dec 2022 16:26:06 +0000 (UTC) [thread overview] Message-ID: <1670549102.1a726a2e3f2bacadf71b0bef22fa264f65300d96.tastytea@gentoo> (raw) Message-ID: <20221209162606.AZonpObEIBMQZPyt9ZnUrPbNAsAw8KnA5jrlHyfg_No@z> (raw) commit: 1a726a2e3f2bacadf71b0bef22fa264f65300d96 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de> AuthorDate: Fri Dec 9 01:25:02 2022 +0000 Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de> CommitDate: Fri Dec 9 01:25:02 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1a726a2e dev-util/bash-language-server: add 4.0.1 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de> dev-util/bash-language-server/Manifest | 2 + .../bash-language-server-4.0.1.ebuild | 51 ++++++++++++++++++++++ 2 files changed, 53 insertions(+) diff --git a/dev-util/bash-language-server/Manifest b/dev-util/bash-language-server/Manifest index 81700cced..59ed96410 100644 --- a/dev-util/bash-language-server/Manifest +++ b/dev-util/bash-language-server/Manifest @@ -2,3 +2,5 @@ DIST bash-language-server-3.2.1-deps.tar.xz 3465976 BLAKE2B 9b2b2b4e9f4dad02869d DIST bash-language-server-3.2.1.tgz 141222 BLAKE2B f984dd50bc1e8c5643109cb42b635240db671770413db6ce47eacbb716f09a37a147743b15681a7e6cb5af0714e950f99f3b42ebf8735b9890fac2979475337a SHA512 e1ee2ec4956e733567f25bfd8b82ff5ccb66aa44735c583f9acf85a4c58331038c63637a50ecded40b13e72fbe0a73031efbe1dab15c1ce454532f304403cffe DIST bash-language-server-3.3.1-deps.tar.xz 3557556 BLAKE2B 4c231bcb7d21951d5244e883fce825c955f81dba6711a4ddc372d0d457165d659fcf5bd04d723256335e33dca9635abbf20a0a2fdc9094307c20d1c35c987d08 SHA512 d0e9369f5f6eef94897859ce78811bf4b1b80a857ee73e6e75a367bea0aff485a68a4c39cb731e8650fa47081beab159e883e6646bbdd39b31e4b4a8a5c6808f DIST bash-language-server-3.3.1.tgz 142732 BLAKE2B 40d60cf875c0c60c49a3600c6b3488c95c16cb1088f07d3a35c46ab78fd077db5de71ddd321b7b8cb2d03867fb2a8ffa8f4e2179f0dd1d1d469cfebf979b3e4e SHA512 f774eceab41310ff2bbc66775cf4b2d74e4633842ceb2bc8b8252f4620c8c7480c2c57a6b1c0a4bf2aeb8a10c43249a36f44f74da459c855e0a1993911af1b97 +DIST bash-language-server-4.0.1-deps.tar.xz 2160812 BLAKE2B bbf8f1d88c4be377c650bd379d557a67fdfcf560149b639f402c7682152c12ea00fa19f127574d26f6cf72ceee160894ccc35ca119fe9c8fde7cafe4725d5e9c SHA512 f87219c7df50d0062e8babbef100ce4a547c9b3d390daedbc37571e06ca0d8586d6c2e67f4cd369f4eb20932d641ffa78365742ba5cda628213b67832f8214c4 +DIST bash-language-server-4.0.1.tgz 151418 BLAKE2B 93989871476092a7e7fd244fb9237811f84c1eb80dbd25138292006c160991a85c49df1f91d85460b5ec78ee689a58c87956b3c1f8c61e77a6fda1404ed1d7ad SHA512 c40b384edaa55e7395e81aa33397c64761601524a32f218bbf3dc51095deddddaf11a336a4e8022dfa07ca843720852d64a6442f4d9d367f26aff21f8698fbe2 diff --git a/dev-util/bash-language-server/bash-language-server-4.0.1.ebuild b/dev-util/bash-language-server/bash-language-server-4.0.1.ebuild new file mode 100644 index 000000000..f1b458f5b --- /dev/null +++ b/dev-util/bash-language-server/bash-language-server-4.0.1.ebuild @@ -0,0 +1,51 @@ +# Copyright 2022 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:[~2022-12-09 1:26 UTC|newest] Thread overview: 50+ messages / expand[flat|nested] mbox.gz Atom feed top 2022-12-09 1:26 Ronny Gutbrod [this message] 2022-12-09 16:26 ` [gentoo-commits] repo/proj/guru:master commit in: dev-util/bash-language-server/ Ronny Gutbrod -- strict thread matches above, loose matches on Subject: below -- 2025-02-17 19:01 [gentoo-commits] repo/proj/guru:dev " 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-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-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=1670549102.1a726a2e3f2bacadf71b0bef22fa264f65300d96.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: linkBe 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