aboutsummaryrefslogtreecommitdiff
path: root/devel/cargo-llvm-cov/Makefile
blob: d0d9b0523a388a7131c249982d61028994285b00 (plain) (blame)
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
PORTNAME=	cargo-llvm-cov
DISTVERSIONPREFIX=	v
DISTVERSION=	0.6.10
CATEGORIES=	devel

MAINTAINER=	yuri@FreeBSD.org
COMMENT=	Rust: Cargo subcommand to easily use LLVM source-based code coverage
WWW=		https://github.com/taiki-e/cargo-llvm-cov

LICENSE=	APACHE20 MIT
LICENSE_COMB=	dual
LICENSE_FILE_APACHE20=	${WRKSRC}/LICENSE-APACHE
LICENSE_FILE_MIT=	${WRKSRC}/LICENSE-MIT

USES=		cargo

USE_GITHUB=	yes
GH_ACCOUNT=	taiki-e

CARGO_CRATES=	aho-corasick-1.1.3 \
		anyhow-1.0.86 \
		autocfg-1.3.0 \
		bitflags-1.3.2 \
		bitflags-2.5.0 \
		bstr-1.9.1 \
		byteorder-1.5.0 \
		camino-1.1.7 \
		cargo-config2-0.1.26 \
		cfg-if-1.0.0 \
		duct-0.13.7 \
		easy-ext-1.0.2 \
		equivalent-1.0.1 \
		errno-0.3.9 \
		fastrand-2.1.0 \
		filetime-0.2.23 \
		fs-err-2.11.0 \
		glob-0.3.1 \
		hashbrown-0.14.5 \
		home-0.5.9 \
		indexmap-2.2.6 \
		is_executable-1.0.1 \
		itoa-1.0.11 \
		lcov2cobertura-1.0.3 \
		lexopt-0.3.0 \
		libc-0.2.155 \
		linux-raw-sys-0.4.14 \
		memchr-2.7.2 \
		normpath-1.2.0 \
		once_cell-1.19.0 \
		opener-0.7.1 \
		os_pipe-1.1.5 \
		proc-macro2-1.0.85 \
		quick-xml-0.31.0 \
		quote-1.0.36 \
		redox_syscall-0.4.1 \
		regex-1.10.4 \
		regex-automata-0.4.6 \
		regex-syntax-0.8.3 \
		rustc-demangle-0.1.24 \
		rustix-0.38.34 \
		rustversion-1.0.17 \
		ruzstd-0.7.0 \
		ryu-1.0.18 \
		same-file-1.0.6 \
		serde-1.0.203 \
		serde_derive-1.0.203 \
		serde_json-1.0.117 \
		serde_spanned-0.6.6 \
		shared_child-1.0.0 \
		shell-escape-0.1.5 \
		syn-2.0.66 \
		tar-0.4.40 \
		tempfile-3.10.1 \
		termcolor-1.4.1 \
		toml_datetime-0.6.6 \
		toml_edit-0.22.13 \
		unicode-ident-1.0.12 \
		walkdir-2.5.0 \
		winapi-0.3.9 \
		winapi-i686-pc-windows-gnu-0.4.0 \
		winapi-util-0.1.8 \
		winapi-x86_64-pc-windows-gnu-0.4.0 \
		windows-sys-0.52.0 \
		windows-targets-0.52.5 \
		windows_aarch64_gnullvm-0.52.5 \
		windows_aarch64_msvc-0.52.5 \
		windows_i686_gnu-0.52.5 \
		windows_i686_gnullvm-0.52.5 \
		windows_i686_msvc-0.52.5 \
		windows_x86_64_gnu-0.52.5 \
		windows_x86_64_gnullvm-0.52.5 \
		windows_x86_64_msvc-0.52.5 \
		winnow-0.6.9 \
		xattr-1.3.1

PLIST_FILES=	bin/${PORTNAME}

post-install:
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}

.include <bsd.port.mk>