Diff cbindgen-0.24.3 with a cbindgen-0.25.0

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

  
4
# Auto-Generated by cargo-ebuild 0.5.1
4
# Autogenerated by pycargoebuild 0.10
5 5

  
6 6
EAPI=8
7 7

  
8 8
CRATES="
9
	atty-0.2.14
10
	autocfg-1.1.0
11
	bitflags-1.3.2
12
	cfg-if-1.0.0
13
	clap-3.1.6
14
	fastrand-1.7.0
15
	hashbrown-0.11.2
16
	heck-0.4.0
17
	hermit-abi-0.1.19
18
	indexmap-1.8.0
19
	instant-0.1.12
20
	itoa-1.0.1
21
	lazy_static-1.4.0
22
	libc-0.2.121
23
	lock_api-0.4.6
24
	log-0.4.16
25
	memchr-2.4.1
26
	os_str_bytes-6.0.0
27
	parking_lot-0.11.2
28
	parking_lot_core-0.8.5
29
	proc-macro2-1.0.36
30
	quote-1.0.17
31
	redox_syscall-0.2.12
32
	remove_dir_all-0.5.3
33
	ryu-1.0.9
34
	scopeguard-1.1.0
35
	serde-1.0.136
36
	serde_derive-1.0.136
37
	serde_json-1.0.79
38
	serial_test-0.5.1
39
	serial_test_derive-0.5.1
40
	smallvec-1.8.0
41
	strsim-0.10.0
42
	syn-1.0.89
43
	tempfile-3.3.0
44
	termcolor-1.1.3
45
	textwrap-0.15.0
46
	toml-0.5.8
47
	unicode-xid-0.2.2
48
	winapi-0.3.9
49
	winapi-i686-pc-windows-gnu-0.4.0
50
	winapi-util-0.1.5
51
	winapi-x86_64-pc-windows-gnu-0.4.0
9
	atty@0.2.14
10
	autocfg@1.1.0
11
	bitflags@1.3.2
12
	cfg-if@1.0.0
13
	clap@3.2.25
14
	clap_lex@0.2.4
15
	fastrand@1.9.0
16
	hashbrown@0.12.3
17
	heck@0.4.1
18
	hermit-abi@0.1.19
19
	indexmap@1.9.3
20
	instant@0.1.12
21
	itoa@1.0.6
22
	lazy_static@1.4.0
23
	libc@0.2.144
24
	lock_api@0.4.9
25
	log@0.4.17
26
	os_str_bytes@6.5.0
27
	parking_lot@0.11.2
28
	parking_lot_core@0.8.6
29
	proc-macro2@1.0.66
30
	quote@1.0.27
31
	redox_syscall@0.2.16
32
	remove_dir_all@0.5.3
33
	ryu@1.0.13
34
	scopeguard@1.1.0
35
	serde@1.0.163
36
	serde_derive@1.0.163
37
	serde_json@1.0.96
38
	serial_test@0.5.1
39
	serial_test_derive@0.5.1
40
	smallvec@1.10.0
41
	strsim@0.10.0
42
	syn@1.0.109
43
	syn@2.0.16
44
	tempfile@3.3.0
45
	termcolor@1.2.0
46
	textwrap@0.16.0
47
	toml@0.5.11
48
	unicode-ident@1.0.8
49
	winapi-i686-pc-windows-gnu@0.4.0
50
	winapi-util@0.1.5
51
	winapi-x86_64-pc-windows-gnu@0.4.0
52
	winapi@0.3.9
52 53
"
53 54

  
54 55
inherit cargo
55 56

  
56
DESCRIPTION="A tool for generating C bindings to Rust code"
57
# Double check the homepage as the cargo_metadata crate
58
# does not provide this value so instead repository is used
57
DESCRIPTION="A tool for generating C bindings to Rust code."
59 58
HOMEPAGE="https://github.com/mozilla/cbindgen/"
60
SRC_URI="$(cargo_crate_uris)
61
	https://github.com/eqrion/cbindgen/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
59
SRC_URI="
60
	${CARGO_CRATE_URIS}
61
	https://github.com/mozilla/cbindgen/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
62
"
62 63

  
63 64
# License set may be more restrictive as OR is not respected
64 65
# use cargo-license for a more accurate license picture
65
LICENSE="Apache-2.0 BSD Boost-1.0 MIT MPL-2.0 Unlicense"
66
LICENSE="Apache-2.0 BSD Boost-1.0 MIT MPL-2.0 Unicode-DFS-2016 Unlicense"
66 67
SLOT="0"
67
KEYWORDS="amd64 ~arm arm64 ppc64 ~riscv x86"
68
KEYWORDS="amd64 ~arm arm64 ~loong ppc64 ~riscv x86"
68 69

  
69 70
RESTRICT="test"
70 71
QA_FLAGS_IGNORED="usr/bin/cbindgen"
Thank you!