summaryrefslogtreecommitdiff
blob: 1455f7cf3d0928a76594536eb96506647d4b5a39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

# Auto-Generated by cargo-ebuild 0.5.4

EAPI=8

CRATES="
	aho-corasick-0.7.18
	ansi_term-0.12.1
	anyhow-1.0.56
	assert_cmd-2.0.4
	atty-0.2.14
	bitflags-1.3.2
	bstr-0.2.17
	cc-1.0.73
	cfg-if-1.0.0
	clap-2.34.0
	crossbeam-channel-0.5.4
	crossbeam-utils-0.8.8
	difflib-0.4.0
	doc-comment-0.3.3
	either-1.6.1
	env_logger-0.9.0
	emlop-0.5.0
	errno-0.2.8
	errno-dragonfly-0.1.2
	escargot-0.5.7
	hermit-abi-0.1.19
	itertools-0.10.3
	itoa-1.0.1
	kernel32-sys-0.2.2
	lazy_static-1.4.0
	libc-0.2.123
	log-0.4.16
	memchr-2.4.1
	num_threads-0.1.5
	once_cell-1.10.0
	predicates-2.1.1
	predicates-core-1.0.3
	predicates-tree-1.0.5
	proc-macro2-1.0.37
	quote-1.0.18
	regex-1.5.5
	regex-automata-0.1.10
	regex-syntax-0.6.25
	ryu-1.0.9
	serde-1.0.136
	serde_derive-1.0.136
	serde_json-1.0.79
	strsim-0.8.0
	syn-1.0.91
	sysconf-0.3.4
	termcolor-1.1.3
	termtree-0.2.4
	textwrap-0.11.0
	time-0.3.9
	time-macros-0.2.4
	unicode-width-0.1.9
	unicode-xid-0.2.2
	vec_map-0.8.2
	wait-timeout-0.2.0
	winapi-0.2.8
	winapi-0.3.9
	winapi-build-0.1.1
	winapi-i686-pc-windows-gnu-0.4.0
	winapi-util-0.1.5
	winapi-x86_64-pc-windows-gnu-0.4.0
"

inherit cargo bash-completion-r1

DESCRIPTION="A fast, accurate, ergonomic emerge.log parser"
HOMEPAGE="https://github.com/vincentdephily/emlop"
SRC_URI="$(cargo_crate_uris)"

LICENSE="GPL-3"
# Dependent crate licenses
LICENSE+="
	   MIT Unicode-DFS-2016
	   || ( Apache-2.0 Boost-1.0 )
"

SLOT="0"
KEYWORDS="~amd64"

DEPEND=">=virtual/rust-1.58.1"

# rust does not use *FLAGS from make.conf, silence portage warning
QA_FLAGS_IGNORED="usr/bin/${PN}"

src_install() {
	cargo_src_install
	dodoc README.md CHANGELOG.md
	# bash
	./target/$(usex debug debug release)/emlop complete bash > emlop || die
	dobashcomp emlop
	# zsh
	./target/$(usex debug debug release)/emlop complete zsh > _emlop || die
	insinto /usr/share/zsh/site-functions
	doins _emlop
	# fish
	./target/$(usex debug debug release)/emlop complete fish > emlop.fish || die
	insinto /usr/share/fish/vendor_completions.d
	doins emlop.fish
}