Files
guru/app-shells/zoxide/zoxide-0.9.1.ebuild
Leonardo Hernández Hernández e23ff39c51 app-shells/zoxide: add 0.9.1
Signed-off-by: Leonardo Hernández Hernández <leohdz172@proton.me>
2023-05-08 19:20:01 -06:00

165 lines
3.2 KiB
Bash

# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# Autogenerated by pycargoebuild 0.6.3
EAPI=8
CRATES="
Inflector-0.11.4
aliasable-0.1.3
anstream-0.3.2
anstyle-1.0.0
anstyle-parse-0.2.0
anstyle-query-1.0.0
anstyle-wincon-1.0.1
anyhow-1.0.71
askama-0.12.0
askama_derive-0.12.1
askama_escape-0.10.3
assert_cmd-2.0.11
bincode-1.3.3
bitflags-1.3.2
bstr-1.4.0
cc-1.0.79
cfg-if-1.0.0
clap-4.2.7
clap_builder-4.2.7
clap_complete-4.2.1
clap_complete_fig-4.2.0
clap_derive-4.2.0
clap_lex-0.4.1
color-print-0.3.4
color-print-proc-macro-0.3.4
colorchoice-1.0.0
difflib-0.4.0
dirs-5.0.1
dirs-sys-0.4.1
doc-comment-0.3.3
dunce-1.0.4
either-1.8.1
errno-0.3.1
errno-dragonfly-0.1.2
fastrand-1.9.0
getrandom-0.2.9
glob-0.3.1
heck-0.4.1
hermit-abi-0.3.1
instant-0.1.12
io-lifetimes-1.0.10
is-terminal-0.4.7
itertools-0.10.5
libc-0.2.143
linux-raw-sys-0.3.7
memchr-2.5.0
mime-0.3.17
mime_guess-2.0.4
minimal-lexical-0.2.1
nix-0.26.2
nom-7.1.3
once_cell-1.17.1
option-ext-0.2.0
ouroboros-0.15.6
ouroboros_macro-0.15.6
ppv-lite86-0.2.17
predicates-3.0.3
predicates-core-1.0.6
predicates-tree-1.0.9
proc-macro-error-1.0.4
proc-macro-error-attr-1.0.4
proc-macro2-1.0.56
quote-1.0.26
rand-0.8.5
rand_chacha-0.3.1
rand_core-0.6.4
redox_syscall-0.2.16
redox_syscall-0.3.5
redox_users-0.4.3
regex-automata-0.1.10
rstest-0.17.0
rstest_macros-0.17.0
rstest_reuse-0.5.0
rustc_version-0.4.0
rustix-0.37.19
semver-1.0.17
serde-1.0.162
serde_derive-1.0.162
static_assertions-1.1.0
strsim-0.10.0
syn-1.0.109
syn-2.0.15
tempfile-3.5.0
termtree-0.4.1
thiserror-1.0.40
thiserror-impl-1.0.40
unicase-2.6.0
unicode-ident-1.0.8
utf8parse-0.2.1
version_check-0.9.4
wait-timeout-0.2.0
wasi-0.11.0+wasi-snapshot-preview1
which-4.4.0
windows-sys-0.45.0
windows-sys-0.48.0
windows-targets-0.42.2
windows-targets-0.48.0
windows_aarch64_gnullvm-0.42.2
windows_aarch64_gnullvm-0.48.0
windows_aarch64_msvc-0.42.2
windows_aarch64_msvc-0.48.0
windows_i686_gnu-0.42.2
windows_i686_gnu-0.48.0
windows_i686_msvc-0.42.2
windows_i686_msvc-0.48.0
windows_x86_64_gnu-0.42.2
windows_x86_64_gnu-0.48.0
windows_x86_64_gnullvm-0.42.2
windows_x86_64_gnullvm-0.48.0
windows_x86_64_msvc-0.42.2
windows_x86_64_msvc-0.48.0
"
inherit cargo bash-completion-r1
DESCRIPTION="A smarter cd command for your terminal"
HOMEPAGE="https://github.com/ajeetdsouza/zoxide"
SRC_URI="
https://github.com/ajeetdsouza/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
$(cargo_crate_uris)
"
LICENSE="MIT"
# Dependent crate licenses
LICENSE+="
BSD-2 BSD MIT MPL-2.0 Unicode-DFS-2016
|| ( Apache-2.0 CC0-1.0 MIT-0 )
"
SLOT="0"
KEYWORDS="~amd64"
QA_FLAGS_IGNORED="usr/bin/zoxide"
src_prepare() {
sed -i 's:strip = true:strip = false:g' Cargo.toml || die
default
}
src_install() {
cargo_src_install
doman man/man1/*
dodoc README.md CHANGELOG.md
newbashcomp contrib/completions/"${PN}".bash "${PN}"
insinto /usr/share/zsh/site-functions
doins contrib/completions/_"${PN}"
insinto /usr/share/fish/vendor_completions.d
doins contrib/completions/"${PN}".fish
insinto /usr/share/"${PN}"
doins init.fish
doins zoxide.plugin.zsh
}