Files
guru/sys-apps/fselect/fselect-0.8.0.ebuild
Rabindra Dhakal 033c101b8b sys-apps/fselect: add 0.8.0
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Rabindra Dhakal <qaidvoid@gmail.com>
2022-03-30 14:51:00 +05:45

187 lines
3.3 KiB
Bash

# Copyright 2001-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CRATES="
adler-1.0.2
ahash-0.7.6
aho-corasick-0.7.18
ansi_term-0.12.1
atty-0.2.14
autocfg-1.1.0
base64-0.13.0
bitflags-1.3.2
bitreader-0.3.5
bitstream-io-1.2.0
block-buffer-0.10.2
bstr-0.2.17
bytecount-0.6.2
byteorder-1.4.3
bzip2-0.4.3
bzip2-sys-0.1.11+1.0.8
cc-1.0.73
cfg-if-0.1.10
cfg-if-1.0.0
chrono-0.4.19
chrono-english-0.1.7
clipboard-win-4.4.1
cloudabi-0.0.3
cpufeatures-0.2.1
crc32fast-1.3.2
crypto-common-0.1.3
csv-1.1.6
csv-core-0.1.10
digest-0.10.3
directories-4.0.1
dirs-next-2.0.0
dirs-sys-0.3.6
dirs-sys-next-0.1.2
either-1.6.1
endian-type-0.1.2
env_logger-0.8.4
errno-0.2.8
errno-dragonfly-0.1.2
error-code-2.3.1
fallible_collections-0.4.4
fd-lock-3.0.3
fixedbitset-0.2.0
flate2-1.0.22
fnv-1.0.7
generic-array-0.14.5
getrandom-0.2.4
hashbrown-0.11.2
hermit-abi-0.1.19
humansize-1.1.1
humantime-2.1.0
imagesize-0.9.0
indexmap-1.8.0
io-lifetimes-0.4.4
itertools-0.8.2
itoa-0.4.8
itoa-1.0.1
kamadak-exif-0.5.4
keccak-0.1.0
lazy_static-1.4.0
libc-0.2.119
linux-raw-sys-0.0.37
lock_api-0.3.4
log-0.4.14
lscolors-0.9.0
matroska-0.10.0
memchr-1.0.2
memchr-2.4.1
memoffset-0.6.5
miniz_oxide-0.4.4
mp3-metadata-0.3.3
mp4parse-0.12.0
mutate_once-0.1.1
nibble_vec-0.1.0
nix-0.23.1
nom-3.2.1
num-integer-0.1.44
num-traits-0.2.14
num_threads-0.1.3
once_cell-1.9.0
parking_lot-0.10.2
parking_lot_core-0.7.2
petgraph-0.5.1
phf-0.10.1
phf_generator-0.10.0
phf_macros-0.10.0
phf_shared-0.10.0
pkg-config-0.3.24
ppv-lite86-0.2.16
proc-macro-hack-0.5.19
proc-macro2-1.0.36
quote-1.0.15
radix_trie-0.2.1
rand-0.8.5
rand_chacha-0.3.1
rand_core-0.6.3
redox_syscall-0.1.57
redox_syscall-0.2.10
redox_users-0.4.0
regex-1.5.4
regex-automata-0.1.10
regex-syntax-0.6.25
rustix-0.32.1
rustyline-9.1.2
ryu-1.0.9
scanlex-0.1.4
scopeguard-1.1.0
serde-1.0.136
serde_derive-1.0.136
serde_json-1.0.79
sha-1-0.10.0
sha2-0.10.2
sha3-0.10.1
siphasher-0.3.9
smallvec-1.8.0
static_assertions-1.1.0
str-buf-1.0.5
svg-0.10.0
syn-1.0.86
termcolor-1.1.2
thiserror-1.0.30
thiserror-impl-1.0.30
time-0.1.43
time-0.3.7
time-macros-0.2.3
toml-0.5.8
tree_magic-0.2.3
typenum-1.15.0
unicode-segmentation-1.9.0
unicode-width-0.1.9
unicode-xid-0.2.2
users-0.11.0
utf8parse-0.2.0
version_check-0.9.4
wana_kana-2.1.0
wasi-0.10.2+wasi-snapshot-preview1
winapi-0.3.9
winapi-i686-pc-windows-gnu-0.4.0
winapi-util-0.1.5
winapi-x86_64-pc-windows-gnu-0.4.0
windows-sys-0.30.0
windows_aarch64_msvc-0.30.0
windows_i686_gnu-0.30.0
windows_i686_msvc-0.30.0
windows_x86_64_gnu-0.30.0
windows_x86_64_msvc-0.30.0
xattr-0.2.2
zip-0.5.13
"
inherit cargo
DESCRIPTION="Find files with SQL-like queries"
HOMEPAGE="https://github.com/jhspetersson/fselect"
SRC_URI="https://github.com/jhspetersson/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
$(cargo_crate_uris ${CRATES})"
LICENSE="0BSD Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 Boost-1.0 CC0-1.0 MIT MPL-2.0 Unlicense ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+users"
QA_FLAGS_IGNORED="/usr/bin/fselect"
DOCS=( README.md docs/usage.md )
src_configure() {
local myfeatures=(
$(usev users)
)
cargo_src_configure --no-default-features
}
src_compile() {
cargo_src_compile
}
src_install() {
cargo_src_install
doman docs/*.1
einstalldocs
}