* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/fnm/
@ 2022-06-24 2:26 Alexey Zapparov
0 siblings, 0 replies; 4+ messages in thread
From: Alexey Zapparov @ 2022-06-24 2:26 UTC (permalink / raw
To: gentoo-commits
commit: bbb82916b31506b814d9bb71d8eb239ef0abf74b
Author: Alexey Zapparov <alexey <AT> zapparov <DOT> com>
AuthorDate: Fri Jun 24 02:26:04 2022 +0000
Commit: Alexey Zapparov <alexey <AT> zapparov <DOT> com>
CommitDate: Fri Jun 24 02:26:24 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bbb82916
dev-util/fnm: add 1.31.0-r1
* fix licenses
Signed-off-by: Alexey Zapparov <alexey <AT> zapparov.com>
dev-util/fnm/{fnm-1.31.0.ebuild => fnm-1.31.0-r1.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-util/fnm/fnm-1.31.0.ebuild b/dev-util/fnm/fnm-1.31.0-r1.ebuild
similarity index 99%
rename from dev-util/fnm/fnm-1.31.0.ebuild
rename to dev-util/fnm/fnm-1.31.0-r1.ebuild
index 7b6de515c..feb85e00d 100644
--- a/dev-util/fnm/fnm-1.31.0.ebuild
+++ b/dev-util/fnm/fnm-1.31.0-r1.ebuild
@@ -366,7 +366,7 @@ SRC_URI="
$(cargo_crate_uris)
"
-LICENSE="Apache-2.0 BSD GPL-3.0 ISC MIT MPL-2"
+LICENSE="Apache-2.0 BSD GPL-3 ISC MIT MPL-2.0"
SLOT="0"
KEYWORDS="~amd64"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/fnm/
@ 2022-06-25 3:06 Alexey Zapparov
0 siblings, 0 replies; 4+ messages in thread
From: Alexey Zapparov @ 2022-06-25 3:06 UTC (permalink / raw
To: gentoo-commits
commit: 82c50c41ea2f75034e015bf29986018c280905c0
Author: Alexey Zapparov <alexey <AT> zapparov <DOT> com>
AuthorDate: Sat Jun 25 03:05:28 2022 +0000
Commit: Alexey Zapparov <alexey <AT> zapparov <DOT> com>
CommitDate: Sat Jun 25 03:06:36 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=82c50c41
dev-util/fnm: fix fish completions
Resolves: https://github.com/gentoo/guru/commit/baa196d22c4fa5ecfdcae97874e697064f7f5b0a#r76946388
Signed-off-by: Alexey Zapparov <alexey <AT> zapparov.com>
dev-util/fnm/{fnm-1.31.0.ebuild => fnm-1.31.0-r1.ebuild} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-util/fnm/fnm-1.31.0.ebuild b/dev-util/fnm/fnm-1.31.0-r1.ebuild
similarity index 98%
rename from dev-util/fnm/fnm-1.31.0.ebuild
rename to dev-util/fnm/fnm-1.31.0-r1.ebuild
index 0f3e134d4..3df8ebf01 100644
--- a/dev-util/fnm/fnm-1.31.0.ebuild
+++ b/dev-util/fnm/fnm-1.31.0-r1.ebuild
@@ -404,8 +404,8 @@ src_install() {
newins fnm.zsh-completion _fnm
${D}/usr/bin/fnm completions --shell fish > fnm.fish-completion || die "Cannot generate fish completions"
- insinto /usr/share/fish/completion
- newins fnm.fish-completion fnm
+ insinto /usr/share/fish/vendor_completions.d/
+ newins fnm.fish-completion fnm.fish
dodoc CHANGELOG.md README.md
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/fnm/
@ 2022-09-08 10:24 Andrew Ammerlaan
0 siblings, 0 replies; 4+ messages in thread
From: Andrew Ammerlaan @ 2022-09-08 10:24 UTC (permalink / raw
To: gentoo-commits
commit: 9512ae99f0aaa2bed79d40c1701df6eecbec6575
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 8 10:11:04 2022 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Thu Sep 8 10:11:04 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9512ae99
dev-util/fnm: quote D variables
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
dev-util/fnm/fnm-1.31.0-r2.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-util/fnm/fnm-1.31.0-r2.ebuild b/dev-util/fnm/fnm-1.31.0-r2.ebuild
index d09158fa2..5c556f3bc 100644
--- a/dev-util/fnm/fnm-1.31.0-r2.ebuild
+++ b/dev-util/fnm/fnm-1.31.0-r2.ebuild
@@ -402,14 +402,14 @@ src_prepare() {
src_install() {
cargo_src_install
- ${D}/usr/bin/fnm completions --shell bash > fnm.bash-completion || die "Cannot generate bash completions"
+ "${D}"/usr/bin/fnm completions --shell bash > fnm.bash-completion || die "Cannot generate bash completions"
newbashcomp fnm.bash-completion fnm
- ${D}/usr/bin/fnm completions --shell zsh > fnm.zsh-completion || die "Cannot generate zsh completions"
+ "${D}"/usr/bin/fnm completions --shell zsh > fnm.zsh-completion || die "Cannot generate zsh completions"
insinto /usr/share/zsh/site-functions
newins fnm.zsh-completion _fnm
- ${D}/usr/bin/fnm completions --shell fish > fnm.fish-completion || die "Cannot generate fish completions"
+ "${D}"/usr/bin/fnm completions --shell fish > fnm.fish-completion || die "Cannot generate fish completions"
insinto /usr/share/fish/vendor_completions.d/
newins fnm.fish-completion fnm.fish
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-util/fnm/
@ 2023-04-12 4:04 Jonas Frei
0 siblings, 0 replies; 4+ messages in thread
From: Jonas Frei @ 2023-04-12 4:04 UTC (permalink / raw
To: gentoo-commits
commit: 945501cb11c369c03b08d23c0853d3d388c1a3f1
Author: Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Wed Apr 12 03:58:03 2023 +0000
Commit: Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Wed Apr 12 04:01:19 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=945501cb
dev-util/fnm: Make use of 'shell-completion' eclass
Signed-off-by: Jonas Frei <freijon <AT> pm.me>
dev-util/fnm/fnm-1.33.1.ebuild | 16 +++++++---------
1 file changed, 7 insertions(+), 9 deletions(-)
diff --git a/dev-util/fnm/fnm-1.33.1.ebuild b/dev-util/fnm/fnm-1.33.1.ebuild
index 40df75220..82e3fa532 100644
--- a/dev-util/fnm/fnm-1.33.1.ebuild
+++ b/dev-util/fnm/fnm-1.33.1.ebuild
@@ -243,7 +243,7 @@ CRATES="
zstd-sys-2.0.1+zstd.1.5.2
"
-inherit cargo bash-completion-r1 flag-o-matic
+inherit cargo flag-o-matic shell-completion
DESCRIPTION="Fast and simple Node.js version manager"
HOMEPAGE="https://github.com/Schniz/fnm"
@@ -284,16 +284,14 @@ src_prepare() {
src_install() {
cargo_src_install
- "${D}"/usr/bin/fnm completions --shell bash > fnm.bash-completion || die "Cannot generate bash completions"
- newbashcomp fnm.bash-completion fnm
+ "${D}"/usr/bin/fnm completions --shell bash > "${PN}.bash-completion" || die "Cannot generate bash completions"
+ newbashcomp "${PN}.bash-completion" "${PN}"
- "${D}"/usr/bin/fnm completions --shell zsh > fnm.zsh-completion || die "Cannot generate zsh completions"
- insinto /usr/share/zsh/site-functions
- newins fnm.zsh-completion _fnm
+ "${D}"/usr/bin/fnm completions --shell zsh > "${PN}.zsh-completion" || die "Cannot generate zsh completions"
+ newzshcomp "${PN}.zsh-completion" "_${PN}"
- "${D}"/usr/bin/fnm completions --shell fish > fnm.fish-completion || die "Cannot generate fish completions"
- insinto /usr/share/fish/vendor_completions.d/
- newins fnm.fish-completion fnm.fish
+ "${D}"/usr/bin/fnm completions --shell fish > "${PN}.fish-completion" || die "Cannot generate fish completions"
+ newfishcomp "${PN}.fish-completion" "${PN}.fish"
dodoc CHANGELOG.md README.md
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-04-12 4:04 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-12 4:04 [gentoo-commits] repo/proj/guru:dev commit in: dev-util/fnm/ Jonas Frei
-- strict thread matches above, loose matches on Subject: below --
2022-09-08 10:24 Andrew Ammerlaan
2022-06-25 3:06 Alexey Zapparov
2022-06-24 2:26 Alexey Zapparov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox