blob: 973cb37817b329dab505bfc410fb7cbf0069dfb5 (
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
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
133
|
PORTNAME= jaq
DISTVERSIONPREFIX= v
DISTVERSION= 2.3.0
PORTREVISION= 3
CATEGORIES= textproc
MAINTAINER= yuri@FreeBSD.org
COMMENT= jq clone focused on correctness, speed, and simplicity
WWW= https://github.com/01mf02/jaq
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE-MIT
BROKEN_i386= compilation fails: undefined symbol: __atomic_load_8
USES= cargo
USE_GITHUB= yes
GH_ACCOUNT= 01mf02
CARGO_BUILD_ARGS= --package=jaq
CARGO_INSTALL_PATH= jaq
CARGO_CRATES= aho-corasick-1.1.3 \
android-tzdata-0.1.1 \
android_system_properties-0.1.5 \
arbitrary-1.4.1 \
autocfg-1.5.0 \
base64-0.22.1 \
bitflags-2.9.1 \
bumpalo-3.14.0 \
cc-1.2.29 \
cfg-if-1.0.1 \
chrono-0.4.41 \
clipboard-win-5.4.0 \
codesnake-0.2.1 \
console_log-1.0.0 \
core-foundation-sys-0.8.7 \
dirs-6.0.0 \
dirs-sys-0.5.0 \
dyn-clone-1.0.19 \
env_logger-0.10.2 \
equivalent-1.0.2 \
errno-0.3.13 \
error-code-3.3.2 \
fastrand-2.3.0 \
fd-lock-4.0.4 \
foldhash-0.1.5 \
getrandom-0.2.16 \
getrandom-0.3.3 \
hashbrown-0.15.4 \
hermit-abi-0.5.2 \
hifijson-0.2.2 \
iana-time-zone-0.1.63 \
iana-time-zone-haiku-0.1.2 \
indexmap-2.10.0 \
is-terminal-0.4.16 \
itoa-1.0.15 \
js-sys-0.3.77 \
libc-0.2.174 \
libm-0.2.15 \
libmimalloc-sys-0.1.43 \
libredox-0.1.4 \
linux-raw-sys-0.9.4 \
log-0.4.27 \
memchr-2.7.5 \
memmap2-0.9.5 \
mimalloc-0.1.47 \
nix-0.27.1 \
num-traits-0.2.19 \
once_cell-1.20.3 \
option-ext-0.2.0 \
proc-macro2-1.0.95 \
quote-1.0.40 \
r-efi-5.3.0 \
redox_users-0.5.0 \
regex-lite-0.1.6 \
rustix-1.0.7 \
rustversion-1.0.21 \
rustyline-13.0.0 \
ryu-1.0.20 \
serde-1.0.219 \
serde_derive-1.0.219 \
serde_json-1.0.140 \
shlex-1.3.0 \
syn-2.0.104 \
tempfile-3.20.0 \
thiserror-2.0.12 \
thiserror-impl-2.0.12 \
typed-arena-2.0.2 \
unicode-ident-1.0.18 \
unicode-segmentation-1.12.0 \
unicode-width-0.1.14 \
urlencoding-2.1.3 \
utf8parse-0.2.2 \
wasi-0.11.1+wasi-snapshot-preview1 \
wasi-0.14.2+wasi-0.2.4 \
wasm-bindgen-0.2.100 \
wasm-bindgen-backend-0.2.100 \
wasm-bindgen-macro-0.2.100 \
wasm-bindgen-macro-support-0.2.100 \
wasm-bindgen-shared-0.2.100 \
web-sys-0.3.77 \
winapi-0.3.9 \
winapi-i686-pc-windows-gnu-0.4.0 \
winapi-x86_64-pc-windows-gnu-0.4.0 \
windows-core-0.61.2 \
windows-implement-0.60.0 \
windows-interface-0.59.1 \
windows-link-0.1.3 \
windows-result-0.3.4 \
windows-strings-0.4.2 \
windows-sys-0.59.0 \
windows-targets-0.52.6 \
windows_aarch64_gnullvm-0.52.6 \
windows_aarch64_msvc-0.52.6 \
windows_i686_gnu-0.52.6 \
windows_i686_gnullvm-0.52.6 \
windows_i686_msvc-0.52.6 \
windows_x86_64_gnu-0.52.6 \
windows_x86_64_gnullvm-0.52.6 \
windows_x86_64_msvc-0.52.6 \
wit-bindgen-rt-0.39.0 \
yansi-1.0.1
PLIST_FILES= bin/${PORTNAME}
.include <bsd.port.options.mk>
.if ${ARCH} == powerpc
LIB_DEPENDS+= libatomic.so:lang/gcc${GCC_DEFAULT}
LDFLAGS+= -L/usr/local/lib/gcc${GCC_DEFAULT} -latomic
.endif
.include <bsd.port.mk>
|