blob: ff91a65cb00952660cb3add1592bd61ba1266e66 (
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
PORTNAME= bupstash
DISTVERSIONPREFIX= v
DISTVERSION= 0.11.0
PORTREVISION= 4
CATEGORIES= sysutils
MAINTAINER= felix@userspace.com.au
COMMENT= Easy and efficient encrypted backups
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
LIB_DEPENDS= libsodium.so:security/libsodium
USES= cargo
USE_GITHUB= yes
GH_ACCOUNT= andrewchambers
CARGO_CRATES= ahash-0.7.6 \
aho-corasick-0.7.18 \
anyhow-1.0.56 \
arrayref-0.3.6 \
arrayvec-0.7.2 \
atty-0.2.14 \
autocfg-1.1.0 \
bitflags-1.3.2 \
blake3-1.3.1 \
block-buffer-0.10.2 \
bstr-0.2.17 \
cc-1.0.73 \
cfg-if-0.1.10 \
cfg-if-1.0.0 \
chrono-0.4.19 \
codemap-0.1.3 \
codemap-diagnostic-0.1.1 \
console-0.15.0 \
constant_time_eq-0.1.5 \
crossbeam-channel-0.5.3 \
crossbeam-utils-0.8.8 \
crypto-common-0.1.3 \
digest-0.10.3 \
either-1.6.1 \
encode_unicode-0.3.6 \
fallible-iterator-0.2.0 \
fallible-streaming-iterator-0.1.9 \
fastrand-1.7.0 \
filetime-0.2.15 \
fnv-1.0.7 \
generic-array-0.14.5 \
getopts-0.2.21 \
getrandom-0.2.5 \
globset-0.4.8 \
hashbrown-0.11.2 \
hashlink-0.7.0 \
hermit-abi-0.1.19 \
humantime-2.1.0 \
indicatif-0.16.2 \
instant-0.1.12 \
itertools-0.10.3 \
itoa-1.0.1 \
jobserver-0.1.24 \
lazy_static-1.4.0 \
libc-0.2.120 \
libsqlite3-sys-0.22.2 \
lock_api-0.4.6 \
log-0.4.14 \
lz4-1.23.3 \
lz4-sys-1.9.3 \
memchr-2.4.1 \
memoffset-0.6.5 \
nix-0.23.1 \
num-integer-0.1.44 \
num-traits-0.2.14 \
number_prefix-0.4.0 \
once_cell-1.10.0 \
openat-0.1.21 \
parking_lot-0.11.2 \
parking_lot_core-0.8.5 \
path-clean-0.1.0 \
pkg-config-0.3.24 \
ppv-lite86-0.2.16 \
proc-macro2-1.0.36 \
quote-1.0.15 \
rand-0.8.5 \
rand_chacha-0.3.1 \
rand_core-0.6.3 \
rangemap-0.1.14 \
redox_syscall-0.2.11 \
regex-1.5.5 \
regex-syntax-0.6.25 \
remove_dir_all-0.5.3 \
rusqlite-0.25.4 \
ryu-1.0.9 \
same-file-1.0.6 \
scopeguard-1.1.0 \
serde-1.0.136 \
serde_bare-0.4.0 \
serde_derive-1.0.136 \
serde_json-1.0.79 \
serial_test-0.5.1 \
serial_test_derive-0.5.1 \
shlex-0.1.1 \
smallvec-1.8.0 \
subtle-2.4.1 \
syn-1.0.88 \
tar-0.4.38 \
tempfile-3.3.0 \
termcolor-1.1.3 \
terminal_size-0.1.17 \
thiserror-1.0.30 \
thiserror-impl-1.0.30 \
time-0.1.43 \
typenum-1.15.0 \
unicode-width-0.1.9 \
unicode-xid-0.2.2 \
vcpkg-0.2.15 \
version_check-0.9.4 \
walkdir-2.3.2 \
wasi-0.10.2+wasi-snapshot-preview1 \
winapi-0.3.9 \
winapi-i686-pc-windows-gnu-0.4.0 \
winapi-util-0.1.5 \
winapi-x86_64-pc-windows-gnu-0.4.0 \
xattr-0.2.2 \
zstd-safe-4.1.4+zstd.1.5.2 \
zstd-sys-1.6.3+zstd.1.5.2
CARGO_FEATURES= --no-default-features
PLIST_FILES= bin/bupstash
.include <bsd.port.mk>
|