aboutsummaryrefslogtreecommitdiff
path: root/devel/interactive_rebase_tool/Makefile
blob: 8e1b2c7fbfa830354ebceb229b8fb260840d0688 (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
102
103
104
105
106
107
PORTNAME=	interactive_rebase_tool
DISTVERSION=	2.1.0
PORTREVISION=	4
CATEGORIES=	devel

MAINTAINER=	petteri.valkonen@iki.fi
COMMENT=	Improved sequence editor for Git

LICENSE=	GPLv3+

LIB_DEPENDS=	libgit2.so:devel/libgit2

USES=		cargo
USE_GITHUB=	yes
GH_ACCOUNT=	MitMaro
GH_PROJECT=	git-interactive-rebase-tool

CARGO_CRATES=	ansi_term-0.11.0 \
		anyhow-1.0.40 \
		arrayvec-0.4.12 \
		atty-0.2.14 \
		autocfg-1.0.1 \
		bitflags-1.2.1 \
		cc-1.0.66 \
		cfg-if-0.1.10 \
		cfg-if-1.0.0 \
		chrono-0.4.19 \
		clap-2.33.3 \
		concat-idents-1.1.2 \
		crossterm-0.19.0 \
		crossterm_winapi-0.7.0 \
		form_urlencoded-1.0.0 \
		getrandom-0.2.2 \
		git2-0.13.20 \
		hermit-abi-0.1.18 \
		idna-0.2.0 \
		instant-0.1.9 \
		itoa-0.4.7 \
		jobserver-0.1.21 \
		lazy_static-1.4.0 \
		libc-0.2.82 \
		libgit2-sys-0.12.21+1.1.0 \
		libz-sys-1.1.2 \
		lock_api-0.4.2 \
		log-0.4.14 \
		matches-0.1.8 \
		mio-0.7.7 \
		miow-0.3.6 \
		nodrop-0.1.14 \
		ntapi-0.3.6 \
		num-format-0.4.0 \
		num-integer-0.1.44 \
		num-traits-0.2.14 \
		parking_lot-0.11.1 \
		parking_lot_core-0.8.2 \
		percent-encoding-2.1.0 \
		pkg-config-0.3.19 \
		ppv-lite86-0.2.10 \
		proc-macro2-1.0.24 \
		quote-1.0.8 \
		rand-0.8.3 \
		rand_chacha-0.3.0 \
		rand_core-0.6.1 \
		rand_hc-0.3.0 \
		redox_syscall-0.1.57 \
		redox_syscall-0.2.4 \
		remove_dir_all-0.5.3 \
		rstest-0.6.4 \
		rustc_version-0.2.3 \
		scopeguard-1.1.0 \
		semver-0.9.0 \
		semver-parser-0.7.0 \
		serial_test-0.5.1 \
		serial_test_derive-0.5.1 \
		signal-hook-0.1.17 \
		signal-hook-registry-1.3.0 \
		smallvec-1.6.1 \
		socket2-0.3.19 \
		strsim-0.8.0 \
		syn-1.0.60 \
		tempfile-3.2.0 \
		textwrap-0.11.0 \
		time-0.1.43 \
		tinyvec-1.1.1 \
		tinyvec_macros-0.1.0 \
		unicode-bidi-0.3.4 \
		unicode-normalization-0.1.16 \
		unicode-segmentation-1.7.1 \
		unicode-width-0.1.8 \
		unicode-xid-0.2.1 \
		url-2.2.0 \
		vcpkg-0.2.11 \
		vec_map-0.8.2 \
		wasi-0.10.1+wasi-snapshot-preview1 \
		winapi-0.3.9 \
		winapi-i686-pc-windows-gnu-0.4.0 \
		winapi-x86_64-pc-windows-gnu-0.4.0 \
		xi-unicode-0.3.0

PLIST_FILES=	bin/interactive-rebase-tool \
		man/man1/interactive-rebase-tool.1.gz

post-install:
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/interactive-rebase-tool
	${INSTALL_MAN} ${WRKSRC}/src/interactive-rebase-tool.1 ${STAGEDIR}${MAN1PREFIX}/man/man1

.include <bsd.port.mk>