Diff cargo-license-0.4.2 with a cargo-license-0.5.1

/usr/portage/dev-util/cargo-license/cargo-license-0.5.1.ebuild 2023-10-09 14:52:30.948368387 +0300
1
# Copyright 2019-2021 Gentoo Authors
1
# Copyright 2019-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6 6
CRATES="
7
	ansi_term-0.11.0
8 7
	ansi_term-0.12.1
9
	anyhow-1.0.44
8
	anyhow-1.0.36
10 9
	atty-0.2.14
11
	bitflags-1.3.2
12
	bstr-0.2.17
13
	camino-1.0.5
10
	autocfg-1.1.0
11
	bitflags-1.2.1
12
	bstr-0.2.14
13
	byteorder-1.3.4
14
	camino-1.1.1
14 15
	cargo-platform-0.1.2
15
	cargo_metadata-0.14.0
16
	clap-2.33.3
17
	csv-1.1.6
16
	cargo_metadata-0.15.0
17
	clap-3.2.16
18
	clap_derive-3.2.15
19
	clap_lex-0.2.4
20
	csv-1.1.5
18 21
	csv-core-0.1.10
19 22
	getopts-0.2.21
20
	heck-0.3.3
21
	hermit-abi-0.1.19
22
	itoa-0.4.8
23
	hashbrown-0.12.3
24
	heck-0.4.0
25
	hermit-abi-0.1.17
26
	indexmap-1.9.1
27
	itoa-0.4.7
28
	itoa-1.0.3
23 29
	lazy_static-1.4.0
24
	libc-0.2.103
25
	memchr-2.4.1
30
	libc-0.2.81
31
	memchr-2.3.4
32
	once_cell-1.13.0
33
	os_str_bytes-6.2.0
26 34
	proc-macro-error-1.0.4
27 35
	proc-macro-error-attr-1.0.4
28
	proc-macro2-1.0.29
29
	quote-1.0.10
30
	regex-automata-0.1.10
36
	proc-macro2-1.0.43
37
	quote-1.0.21
38
	regex-automata-0.1.9
31 39
	ryu-1.0.5
32
	semver-1.0.4
33
	serde-1.0.130
34
	serde_derive-1.0.130
35
	serde_json-1.0.68
36
	strsim-0.8.0
37
	structopt-0.3.23
38
	structopt-derive-0.4.16
39
	syn-1.0.80
40
	textwrap-0.11.0
40
	semver-1.0.13
41
	serde-1.0.143
42
	serde_derive-1.0.143
43
	serde_json-1.0.83
44
	strsim-0.10.0
45
	syn-1.0.99
46
	termcolor-1.1.3
47
	textwrap-0.15.0
41 48
	toml-0.5.8
42
	unicode-segmentation-1.8.0
43
	unicode-width-0.1.9
44
	unicode-xid-0.2.2
45
	vec_map-0.8.2
46
	version_check-0.9.3
49
	unicode-ident-1.0.3
50
	unicode-width-0.1.8
51
	version_check-0.9.2
47 52
	winapi-0.3.9
48 53
	winapi-i686-pc-windows-gnu-0.4.0
54
	winapi-util-0.1.5
49 55
	winapi-x86_64-pc-windows-gnu-0.4.0
56
	cargo-license-0.5.1
50 57
"
51 58

  
52 59
inherit cargo
53 60

  
54 61
DESCRIPTION="Cargo subcommand to see license of dependencies"
55 62
HOMEPAGE="https://github.com/onur/cargo-license"
56
SRC_URI="https://github.com/onur/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
57
	$(cargo_crate_uris)"
63
SRC_URI="$(cargo_crate_uris ${CRATES})"
58 64

  
59
LICENSE="Apache-2.0 Boost-1.0 MIT Unlicense"
65
LICENSE="Apache-2.0 Boost-1.0 MIT Unicode-DFS-2016 Unlicense"
60 66
SLOT="0"
61 67
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
62 68

  
Thank you!