Files
guru/app-shells/vivid/vivid-0.7.0-r2.ebuild
Alexey Zapparov 2e25a37dc0 app-shells/vivid: fix QA_FLAGS_IGNORED
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alexey Zapparov <alexey@zapparov.com>
2021-12-26 20:16:04 +01:00

70 lines
1.3 KiB
Bash

# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CRATES="
ansi_colours-1.0.2
ansi_term-0.11.0
atty-0.2.14
bitflags-1.2.1
cc-1.0.68
cfg-if-1.0.0
clap-2.33.3
dirs-3.0.2
dirs-sys-0.3.6
getrandom-0.2.3
hermit-abi-0.1.18
lazy_static-1.4.0
libc-0.2.97
linked-hash-map-0.5.4
proc-macro2-1.0.27
quote-1.0.9
redox_syscall-0.2.8
redox_users-0.4.0
rust-embed-5.9.0
rust-embed-impl-5.9.0
rust-embed-utils-5.1.0
same-file-1.0.6
strsim-0.8.0
syn-1.0.73
term_size-0.3.2
textwrap-0.11.0
unicode-width-0.1.8
unicode-xid-0.2.2
vec_map-0.8.2
walkdir-2.3.2
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
yaml-rust-0.4.5
"
inherit cargo
DESCRIPTION="A themeable LS_COLORS generator with a rich filetype datebase"
HOMEPAGE="https://github.com/sharkdp/vivid"
SRC_URI="
https://github.com/sharkdp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
$(cargo_crate_uris)
"
LICENSE="LGPL-3+ MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
QA_FLAGS_IGNORED="usr/bin/${PN}"
src_install() {
cargo_src_install
dodoc CHANGELOG.md README.md
insinto /usr/share/vivid
doins config/filetypes.yml
insinto /usr/share/vivid/themes
doins themes/*.yml
}