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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
|
# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
CRATES="
addr2line@0.21.0
adler@1.0.2
aes@0.8.4
ahash@0.8.10
aho-corasick@1.1.2
allocator-api2@0.2.16
ammonia@3.3.0
android-tzdata@0.1.1
android_system_properties@0.1.5
anes@0.1.6
anstream@0.6.13
anstyle-parse@0.2.3
anstyle-query@1.0.2
anstyle-wincon@3.0.2
anstyle@1.0.6
anyhow@1.0.80
apple-bundles@0.17.0
arrayref@0.3.7
arrayvec@0.7.4
ash@0.37.3+1.3.251
assert-json-diff@2.0.2
async-channel@1.9.0
async-compression@0.4.6
async-stream-impl@0.3.5
async-stream@0.3.5
async-trait@0.1.80
autocfg@1.1.0
axum-client-ip@0.4.2
axum-core@0.3.4
axum-macros@0.3.8
axum@0.6.20
backtrace@0.3.69
base64@0.13.1
base64@0.21.7
base64@0.22.1
base64ct@1.6.0
bincode@2.0.0-rc.3
bit-set@0.5.3
bit-vec@0.6.3
bit_field@0.10.2
bitflags@1.3.2
bitflags@2.4.2
blake3@1.5.0
block-buffer@0.10.4
block-padding@0.3.3
block@0.1.6
bstr@1.9.1
bumpalo@3.15.3
burn-autodiff@0.13.1
burn-candle@0.13.1
burn-common@0.13.1
burn-compute@0.13.1
burn-core@0.13.1
burn-dataset@0.13.1
burn-derive@0.13.1
burn-fusion@0.13.1
burn-jit@0.13.1
burn-ndarray@0.13.1
burn-tch@0.13.1
burn-tensor@0.13.1
burn-train@0.13.1
burn-wgpu@0.13.1
burn@0.13.1
bytemuck@1.14.3
bytemuck_derive@1.5.0
byteorder@1.5.0
bytes@1.5.0
bzip2-sys@0.1.11+1.0.8
bzip2@0.4.4
camino@1.1.6
candle-core@0.4.1
cast@0.3.0
cbc@0.1.2
cc@1.0.88
cfg-if@1.0.0
cfg_aliases@0.1.1
chrono@0.4.34
ciborium-io@0.2.2
ciborium-ll@0.2.2
ciborium@0.2.2
cipher@0.4.4
clap@4.5.1
clap_builder@4.5.1
clap_complete@4.5.1
clap_derive@4.5.0
clap_lex@0.7.0
coarsetime@0.1.34
codespan-reporting@0.11.1
codespan@0.11.1
color_quant@1.1.0
colorchoice@1.0.0
com@0.6.0
com_macros@0.6.0
com_macros_support@0.6.0
concurrent-queue@2.4.0
constant_time_eq@0.1.5
constant_time_eq@0.3.0
convert_case@0.6.0
core-foundation-sys@0.8.6
core-foundation@0.9.4
core-graphics-types@0.1.3
cpufeatures@0.2.12
crc32fast@1.4.0
criterion-plot@0.5.0
criterion@0.5.1
crossbeam-channel@0.5.11
crossbeam-deque@0.8.5
crossbeam-epoch@0.9.18
crossbeam-utils@0.8.19
crunchy@0.2.2
crypto-common@0.1.6
csv-core@0.1.11
csv@1.3.0
d3d12@0.19.0
dashmap@5.5.3
data-encoding@2.5.0
deadpool-runtime@0.1.3
deadpool@0.9.5
deranged@0.3.11
derive-new@0.6.0
des@0.8.1
difflib@0.4.0
digest@0.10.7
dirs-sys@0.4.1
dirs@5.0.1
displaydoc@0.2.4
duct@0.13.7
dunce@1.0.4
dyn-stack@0.10.0
either@1.10.0
elasticlunr-rs@3.0.2
encoding_rs@0.8.33
enum-as-inner@0.6.0
env_filter@0.1.0
env_logger@0.11.2
envy@0.4.2
equivalent@1.0.1
errno@0.3.8
event-listener@2.5.3
exr@1.72.0
fallible-iterator@0.3.0
fallible-streaming-iterator@0.1.9
faster-hex@0.9.0
fastrand@1.9.0
fastrand@2.0.1
fdeflate@0.3.4
filetime@0.2.23
find-winsdk@0.2.0
fixedbitset@0.4.2
flate2@1.0.28
fluent-bundle@0.15.2
fluent-langneg@0.13.0
fluent-syntax@0.11.0
fluent@0.16.0
flume@0.11.0
fnv@1.0.7
foreign-types-macros@0.2.3
foreign-types-shared@0.1.1
foreign-types-shared@0.3.1
foreign-types@0.3.2
foreign-types@0.5.0
form_urlencoded@1.2.1
forwarded-header-value@0.1.1
fs2@0.4.3
fsevent-sys@4.1.0
fsrs@0.6.4
futf@0.1.5
futures-channel@0.3.30
futures-core@0.3.30
futures-executor@0.3.30
futures-intrusive@0.5.0
futures-io@0.3.30
futures-lite@1.13.0
futures-macro@0.3.30
futures-sink@0.3.30
futures-task@0.3.30
futures-timer@3.0.3
futures-util@0.3.30
futures@0.3.30
gemm-c32@0.17.1
gemm-c64@0.17.1
gemm-common@0.17.1
gemm-f16@0.17.1
gemm-f32@0.17.1
gemm-f64@0.17.1
gemm@0.17.1
generic-array@0.14.7
getopts@0.2.21
getrandom@0.1.16
getrandom@0.2.14
gif@0.13.1
gimli@0.28.1
gix-features@0.36.1
gix-fs@0.8.1
gix-hash@0.13.3
gix-tempfile@11.0.1
gix-trace@0.1.7
gl_generator@0.14.0
glob@0.3.1
globset@0.4.14
glow@0.13.1
glutin_wgl_sys@0.5.0
gpu-alloc-types@0.3.0
gpu-alloc@0.6.0
gpu-allocator@0.25.0
gpu-descriptor-types@0.1.2
gpu-descriptor@0.2.4
h2@0.3.26
half@2.4.1
handlebars@5.1.0
hashbrown@0.13.2
hashbrown@0.14.3
hashlink@0.8.4
hassle-rs@0.11.0
headers-core@0.2.0
headers@0.3.9
heck@0.4.1
hermit-abi@0.3.8
hex@0.4.3
hexf-parse@0.2.1
hmac@0.12.1
home@0.5.9
html5ever@0.26.0
htmlescape@0.3.1
http-body@0.4.6
http-range-header@0.3.1
http-types@2.12.0
http@0.2.11
httparse@1.8.0
httpdate@1.0.3
humantime@2.1.0
hyper-rustls@0.24.2
hyper-tls@0.5.0
hyper@0.14.28
iana-time-zone-haiku@0.1.2
iana-time-zone@0.1.60
id_tree@1.8.0
idna@0.5.0
ignore@0.4.22
image@0.24.9
indexmap@2.2.3
indoc@2.0.4
infer@0.2.3
inflections@1.1.1
inotify-sys@0.1.5
inotify@0.9.6
inout@0.1.3
instant@0.1.12
intl-memoizer@0.5.1
intl_pluralrules@7.0.2
ipnet@2.9.0
is-terminal@0.4.12
itertools@0.10.5
itertools@0.11.0
itertools@0.12.1
itoa@1.0.10
jni-sys@0.3.0
jpeg-decoder@0.3.1
js-sys@0.3.68
junction@1.0.0
khronos-egl@6.0.0
khronos_api@3.1.0
kqueue-sys@1.0.4
kqueue@1.0.8
lazy_static@1.4.0
lebe@0.5.2
libc@0.2.153
libloading@0.7.4
libloading@0.8.1
libm@0.2.8
libredox@0.0.1
libsqlite3-sys@0.27.0
line-wrap@0.1.1
linkify@0.7.0
linux-raw-sys@0.4.13
lock_api@0.4.11
log@0.4.21
lzma-sys@0.1.20
mac@0.1.1
malloc_buf@0.0.6
maplit@1.0.2
markup5ever@0.11.0
markup5ever_rcdom@0.2.0
matchers@0.1.0
matches@0.1.10
matchit@0.7.3
matrixmultiply@0.3.8
md5@0.7.0
mdbook@0.4.37
memchr@2.7.1
memmap2@0.9.4
memoffset@0.9.0
metal@0.27.0
mime@0.3.17
mime_guess@2.0.4
minimal-lexical@0.2.1
miniz_oxide@0.7.2
mio@0.8.11
multer@2.1.0
multimap@0.8.3
naga@0.19.2
native-tls@0.2.11
ndarray-rand@0.14.0
ndarray@0.15.6
ndk-sys@0.5.0+25.2.9519653
new_debug_unreachable@1.0.4
nom@7.1.3
nonempty@0.7.0
normpath@1.2.0
notify-debouncer-mini@0.4.1
notify@6.1.1
nu-ansi-term@0.46.0
num-complex@0.4.5
num-conv@0.1.0
num-format@0.4.4
num-integer@0.1.46
num-traits@0.2.18
num_cpus@1.16.0
num_enum@0.7.2
num_enum_derive@0.7.2
objc@0.2.7
objc_exception@0.1.2
object@0.32.2
once_cell@1.19.0
oorandom@11.1.3
opener@0.6.1
openssl-macros@0.1.1
openssl-probe@0.1.5
openssl-sys@0.9.101
openssl@0.10.64
option-ext@0.2.0
os_pipe@1.1.5
overload@0.1.1
p12@0.6.3
parking@2.2.0
parking_lot@0.12.1
parking_lot_core@0.9.9
password-hash@0.4.2
password-hash@0.5.0
paste@1.0.14
pathdiff@0.2.1
pbkdf2@0.11.0
pbkdf2@0.12.2
pem@1.1.1
percent-encoding@2.3.1
pest@2.7.7
pest_derive@2.7.7
pest_generator@2.7.7
pest_meta@2.7.7
petgraph@0.6.4
phf@0.10.1
phf@0.11.2
phf_codegen@0.10.0
phf_generator@0.10.0
phf_generator@0.11.2
phf_macros@0.11.2
phf_shared@0.10.0
phf_shared@0.11.2
pin-project-internal@1.1.4
pin-project-lite@0.2.13
pin-project@1.1.4
pin-utils@0.1.0
pkg-config@0.3.30
plist@1.6.0
plotters-backend@0.3.5
plotters-svg@0.3.5
plotters@0.3.5
png@0.17.13
pollster@0.3.0
portable-atomic@1.6.0
powerfmt@0.2.0
ppv-lite86@0.2.17
precomputed-hash@0.1.1
presser@0.3.1
prettyplease@0.2.16
proc-macro-crate@3.1.0
proc-macro-hack@0.5.20+deprecated
proc-macro2@1.0.81
profiling@1.0.15
prost-build@0.12.3
prost-derive@0.12.3
prost-reflect@0.12.0
prost-types@0.12.3
prost@0.12.3
pulldown-cmark-escape@0.10.0
pulldown-cmark@0.10.0
pulldown-cmark@0.8.0
pulldown-cmark@0.9.6
pulp@0.18.8
pyo3-build-config@0.20.3
pyo3-ffi@0.20.3
pyo3-macros-backend@0.20.3
pyo3-macros@0.20.3
pyo3@0.20.3
qoi@0.4.1
quick-xml@0.31.0
quote@1.0.35
r2d2@0.8.10
r2d2_sqlite@0.23.0
rand@0.7.3
rand@0.8.5
rand_chacha@0.2.2
rand_chacha@0.3.1
rand_core@0.5.1
rand_core@0.6.4
rand_distr@0.4.3
rand_hc@0.2.0
range-alloc@0.1.3
raw-cpuid@10.7.0
raw-window-handle@0.6.1
rawpointer@0.2.1
rayon-core@1.12.1
rayon@1.10.0
rc2@0.8.1
rcgen@0.10.0
reborrow@0.5.5
redox_syscall@0.4.1
redox_users@0.4.4
regex-automata@0.1.10
regex-automata@0.4.5
regex-syntax@0.6.29
regex-syntax@0.8.2
regex@1.10.3
renderdoc-sys@1.0.0
reqwest@0.11.24
retain_mut@0.1.9
ring@0.16.20
ring@0.17.8
rmp-serde@1.1.2
rmp@0.8.12
rusqlite@0.30.0
rustc-demangle@0.1.23
rustc-hash@1.1.0
rustix@0.38.31
rustls-native-certs@0.6.3
rustls-pemfile@1.0.4
rustls-pemfile@2.1.2
rustls-pki-types@1.3.1
rustls-webpki@0.101.7
rustls-webpki@0.102.2
rustls@0.21.11
rustls@0.22.4
rustversion@1.0.14
ryu@1.0.17
safemem@0.3.3
safetensors@0.3.3
safetensors@0.4.2
same-file@1.0.6
sanitize-filename@0.5.0
schannel@0.1.23
scheduled-thread-pool@0.2.7
scoped-tls@1.0.1
scopeguard@1.2.0
sct@0.7.1
security-framework-sys@2.9.1
security-framework@2.9.2
self_cell@0.10.3
self_cell@1.0.3
semver@1.0.22
seq-macro@0.3.5
serde-aux@4.5.0
serde@1.0.197
serde_derive@1.0.197
serde_json@1.0.116
serde_path_to_error@0.1.15
serde_qs@0.8.5
serde_repr@0.1.18
serde_rusqlite@0.34.0
serde_tuple@0.5.0
serde_tuple_macros@0.5.0
serde_urlencoded@0.7.1
sha1@0.10.6
sha2@0.10.8
sharded-slab@0.1.7
shared_child@1.0.0
shlex@1.3.0
signal-hook-registry@1.4.1
signal-hook@0.3.17
simd-adler32@0.3.7
simple-file-manifest@0.11.0
siphasher@0.3.11
slab@0.4.9
slotmap@1.0.7
smallvec@1.13.1
snafu-derive@0.8.1
snafu@0.8.1
snowflake@1.3.0
socket2@0.5.6
spin@0.5.2
spin@0.9.8
spirv@0.3.0+sdk-1.3.268.0
stable_deref_trait@1.2.0
static_assertions@1.1.0
string_cache@0.8.7
string_cache_codegen@0.5.2
strsim@0.11.0
strum@0.25.0
strum@0.26.1
strum_macros@0.25.3
strum_macros@0.26.1
subtle@2.5.0
syn@1.0.109
syn@2.0.51
sync_wrapper@0.1.2
synstructure@0.13.1
sysctl@0.5.5
system-configuration-sys@0.5.0
system-configuration@0.5.1
tar@0.4.40
target-lexicon@0.12.14
tch@0.15.0
tempfile@3.10.1
tendril@0.4.3
termcolor@1.4.1
terminal_size@0.3.0
text_placeholder@0.5.0
thiserror-impl@1.0.59
thiserror@1.0.59
thread-tree@0.3.3
thread_local@1.1.8
tiff@0.9.1
time-core@0.1.2
tinystr@0.7.5
tinytemplate@1.2.1
tinyvec@1.6.0
tinyvec_macros@0.1.1
tokio-macros@2.2.0
tokio-native-tls@0.3.1
tokio-rustls@0.24.1
tokio-socks@0.5.1
tokio-stream@0.1.14
tokio-tungstenite@0.20.1
tokio-util@0.7.10
tokio@1.36.0
toml@0.5.11
toml_datetime@0.6.5
toml_edit@0.21.1
topological-sort@0.2.2
torch-sys@0.15.0
tower-http@0.4.4
tower-layer@0.3.2
tower-service@0.3.2
tower@0.4.13
tracing-appender@0.2.3
tracing-attributes@0.1.27
tracing-core@0.1.32
tracing-log@0.2.0
tracing-subscriber@0.3.18
tracing@0.1.40
try-lock@0.2.5
tugger-common@0.10.0
tugger-windows-codesign@0.10.0
tugger-windows@0.10.0
tungstenite@0.20.1
type-map@0.4.0
typenum@1.17.0
ucd-trie@0.1.6
unic-char-property@0.9.0
unic-char-range@0.9.0
unic-common@0.9.0
unic-langid-impl@0.9.4
unic-langid-macros-impl@0.9.4
unic-langid-macros@0.9.4
unic-langid@0.9.4
unic-ucd-category@0.9.0
unic-ucd-version@0.9.0
unicase@2.6.0
unicode-bidi@0.3.15
unicode-ident@1.0.12
unicode-normalization@0.1.23
unicode-segmentation@1.11.0
unicode-width@0.1.11
unicode-xid@0.2.4
unindent@0.2.3
untrusted@0.7.1
untrusted@0.9.0
ureq@2.9.6
url@2.5.0
utf-8@0.7.6
utf8parse@0.2.1
utime@0.3.1
uuid@1.8.0
valuable@0.1.0
vcpkg@0.2.15
version_check@0.9.4
waker-fn@1.1.1
walkdir@2.4.0
want@0.3.1
warp@0.3.6
wasi@0.11.0+wasi-snapshot-preview1
wasi@0.9.0+wasi-snapshot-preview1
wasix@0.12.21
wasm-bindgen-backend@0.2.91
wasm-bindgen-futures@0.4.41
wasm-bindgen-macro-support@0.2.91
wasm-bindgen-macro@0.2.91
wasm-bindgen-shared@0.2.91
wasm-bindgen@0.2.91
wasm-streams@0.4.0
web-sys@0.3.68
web-time@1.1.0
webpki-roots@0.25.4
webpki-roots@0.26.1
weezl@0.1.8
wgpu-core@0.19.4
wgpu-hal@0.19.4
wgpu-types@0.19.2
wgpu@0.19.4
which@4.4.2
which@5.0.0
widestring@1.0.2
winapi-i686-pc-windows-gnu@0.4.0
winapi-util@0.1.6
winapi-x86_64-pc-windows-gnu@0.4.0
winapi@0.3.9
windows-core@0.51.1
windows-core@0.52.0
windows-core@0.54.0
windows-result@0.1.0
windows-sys@0.48.0
windows-sys@0.52.0
windows-targets@0.48.5
windows-targets@0.52.3
windows@0.51.1
windows@0.54.0
windows_aarch64_gnullvm@0.48.5
windows_aarch64_gnullvm@0.52.3
windows_aarch64_msvc@0.48.5
windows_aarch64_msvc@0.52.3
windows_i686_gnu@0.48.5
windows_i686_gnu@0.52.3
windows_i686_msvc@0.48.5
windows_i686_msvc@0.52.3
windows_x86_64_gnu@0.48.5
windows_x86_64_gnu@0.52.3
windows_x86_64_gnullvm@0.48.5
windows_x86_64_gnullvm@0.52.3
windows_x86_64_msvc@0.48.5
windows_x86_64_msvc@0.52.3
winnow@0.5.40
winreg@0.5.1
winreg@0.50.0
wiremock@0.5.22
xattr@1.3.1
xml-rs@0.8.19
xml5ever@0.17.0
xz2@0.1.7
yasna@0.5.2
yoke-derive@0.7.3
yoke@0.7.3
zerocopy-derive@0.7.32
zerocopy@0.7.32
zerofrom-derive@0.1.3
zerofrom@0.1.3
zeroize@1.7.0
zip@0.6.6
zstd-safe@5.0.2+zstd.1.5.2
zstd-safe@7.0.0
zstd-sys@2.0.9+zstd.1.5.5
zstd@0.11.2+zstd.1.5.2
zstd@0.13.0
zune-inflate@0.2.54
"
# https://github.com/time-rs/time/issues/693
# cargo update time@0.3.34 --precise 0.3.36
CRATES+="
time-macros@0.2.18
time@0.3.36
"
declare -A GIT_CRATES=(
[linkcheck]='https://github.com/ankitects/linkcheck;184b2ca50ed39ca43da13f0b830a463861adb9ca;linkcheck-%commit%'
[percent-encoding-iri]='https://github.com/ankitects/rust-url;bb930b8d089f4d30d7d19c12e54e66191de47b88;rust-url-%commit%/percent_encoding'
)
inherit cargo desktop edo multiprocessing ninja-utils optfeature \
python-single-r1 readme.gentoo-r1 toolchain-funcs xdg
DESCRIPTION="A spaced-repetition memory training program (flash cards)"
HOMEPAGE="https://apps.ankiweb.net/"
# Don't forget to update COMMITS if PV changes.
# Update [node_modules] to the most recent commit hash until ${PV}, that
# changed yarn.lock.
# Oftentimes this file does not change between releases. This versioning
# scheme prevents unnecessary downloads of the (sizeable) node_modules
# folder.
declare -A COMMITS=(
[anki]="d678e39350a2d243242a69f4e22f5192b04398f2"
[ftl-core]="b4813a328f44c8224d2649adbdbcbef095db9a40"
[ftl-desktop]="b95608421ba2ba1cdca407933aff9ba25d567e12"
[node_modules]="b9a182d8e2f3a11b633a6d5fbb582e9e7d8a4f34"
)
SRC_URI="${CARGO_CRATE_URIS}
https://github.com/ankitects/anki/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz
https://github.com/ankitects/anki-core-i18n/archive/${COMMITS[ftl-core]}.tar.gz
-> anki-core-i18n-${COMMITS[ftl-core]}.gh.tar.gz
https://github.com/ankitects/anki-desktop-ftl/archive/${COMMITS[ftl-desktop]}.tar.gz
-> anki-desktop-ftl-${COMMITS[ftl-desktop]}.gh.tar.gz
gui? ( https://git.sr.ht/~antecrescent/gentoo-files/blob/main/app-misc/anki/anki-node_modules-${COMMITS[node_modules]}.tar.xz )
"
PATCHES=(
"${FILESDIR}"/${PV}/ninja-gentoo-setup.patch
"${FILESDIR}"/${PV}/remove-yarn.patch
"${FILESDIR}"/24.04.1/remove-mypy-protobuf.patch
"${FILESDIR}"/24.04.1/revert-cert-store-hack.patch
"${FILESDIR}"/24.04.1/rust-1.80.0.patch
"${FILESDIR}"/23.12.1/ninja-rules-for-cargo.patch
"${FILESDIR}"/23.12.1/remove-formatter-dep.patch
)
# How to get an up-to-date summary of runtime JS libs' licenses:
# ./node_modules/.bin/license-checker-rseidelsohn --production --excludePackages anki --summary
LICENSE="AGPL-3+ BSD public-domain gui? ( 0BSD CC-BY-4.0 GPL-3+ Unlicense )"
# Dependent crate licenses
LICENSE+="
Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 CC0-1.0 ISC MIT
MPL-2.0 Unicode-DFS-2016 ZLIB
"
# Manually added crate licenses
LICENSE+=" Unicode-3.0 openssl"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc +gui test"
REQUIRED_USE="gui? ( ${PYTHON_REQUIRED_USE} )"
RESTRICT="!gui? ( test ) !test? ( test )"
# Dependencies:
# Python: python/requirements.{anki,aqt}.in
# If ENABLE_QT5_COMPAT is set at runtime
# additionally depend on PyQt6[dbus,printsupport].
# Qt: qt/{aqt/{sound.py,qt/*.py},tools/build_ui.py}
# app-misc/certificates: The rust backend library is built against
# rustls-native-certs to use the native certificate store.
DEPEND="
>=app-arch/zstd-1.5.5:=
dev-db/sqlite:3
"
GUI_RDEPEND="
${PYTHON_DEPS}
dev-qt/qtsvg:6
$(python_gen_cond_dep '
dev-python/beautifulsoup4[${PYTHON_USEDEP}]
dev-python/distro[${PYTHON_USEDEP}]
dev-python/decorator[${PYTHON_USEDEP}]
dev-python/flask[${PYTHON_USEDEP}]
dev-python/flask-cors[${PYTHON_USEDEP}]
dev-python/jsonschema[${PYTHON_USEDEP}]
dev-python/markdown[${PYTHON_USEDEP}]
dev-python/protobuf-python[${PYTHON_USEDEP}]
>=dev-python/PyQt6-6.6.1[gui,network,opengl,quick,webchannel,widgets,${PYTHON_USEDEP}]
>=dev-python/PyQt6-sip-13.6.0[${PYTHON_USEDEP}]
>=dev-python/PyQt6-WebEngine-6.6.0[widgets,${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/send2trash[${PYTHON_USEDEP}]
dev-python/waitress[${PYTHON_USEDEP}]
')
"
RDEPEND="
${DEPEND}
app-misc/ca-certificates
gui? ( ${GUI_RDEPEND} )
"
BDEPEND="
>=app-arch/zstd-1.5.5:=
dev-libs/protobuf
virtual/pkgconfig
>=virtual/rust-1.75.0
doc? (
$(python_gen_cond_dep '
>=dev-python/sphinx-7.2.6[${PYTHON_USEDEP}]
dev-python/sphinx-autoapi[${PYTHON_USEDEP}]
dev-python/sphinx-rtd-theme[${PYTHON_USEDEP}]
')
)
gui? (
${PYTHON_DEPS}
app-alternatives/ninja
app-arch/unzip
>=net-libs/nodejs-20.12.1
sys-apps/yarn
$(python_gen_cond_dep '
dev-python/PyQt6[${PYTHON_USEDEP}]
dev-python/wheel[${PYTHON_USEDEP}]
')
)
test? (
${RDEPEND}
app-text/dvipng
app-text/texlive
dev-libs/openssl
dev-util/cargo-nextest
$(python_gen_cond_dep '
dev-python/mock[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
')
)
"
QA_FLAGS_IGNORED="usr/bin/anki-sync-server
usr/lib/python.*/site-packages/anki/_rsbridge.so"
pkg_setup() {
export PROTOC_BINARY="${BROOT}"/usr/bin/protoc
export LIBSQLITE3_SYS_USE_PKG_CONFIG=1
export ZSTD_SYS_USE_PKG_CONFIG=1
if use gui; then
python-single-r1_pkg_setup
export NODE_BINARY="${BROOT}"/usr/bin/node
export YARN_BINARY="${BROOT}"/usr/bin/yarn
export OFFLINE_BUILD=1
if ! use debug; then
if tc-is-lto; then
export RELEASE=2
else
export RELEASE=1
fi
fi
fi
}
src_prepare() {
default
rm -r ftl/{core,qt}-repo || die
ln -s "${WORKDIR}"/anki-core-i18n-${COMMITS[ftl-core]} ftl/core-repo || die
ln -s "${WORKDIR}"/anki-desktop-ftl-${COMMITS[ftl-desktop]} ftl/qt-repo || die
mkdir out || die
echo -e "${COMMITS[anki]:0:8}" > out/buildhash || die
if use gui; then
mv "${WORKDIR}"/node_modules out || die
# Some parts of the runner build system expect to be in a git repository
mkdir .git || die
# Creating the pseudo venv early skips pip dependency checks in src_configure.
mkdir -p out/pyenv/bin || die
ln -s "${PYTHON}" out/pyenv/bin/python || die
# TODO: ln -s "${BROOT}/usr/bin/protoc-gen-mypy" out/pyenv/bin || die
if use doc; then
ln -s "${BROOT}"/usr/bin/sphinx-apidoc out/pyenv/bin || die
ln -s "${BROOT}"/usr/bin/sphinx-build out/pyenv/bin || die
fi
# Fix hardcoded runner location
export CARGO_TARGET_DIR="${S}"/out/rust
cbuild_dir="$(CHOST=${CBUILD:-${CHOST}} cargo_target_dir)"
sed "s,rust/release,${cbuild_dir##*out/}," \
-i build/ninja_gen/src/render.rs || die
# Separate src_configure from runner build
sed '/ConfigureBuild/d' -i build/ninja_gen/src/build.rs || die
fi
}
_cbuild_cargo_build() {
CHOST=${CBUILD:-${CHOST}} cargo_src_compile "${@}"
}
src_configure() {
cargo_src_configure
if use gui; then
tc-env_build _cbuild_cargo_build -p configure
cargo_env edo "${cbuild_dir}"/configure
fi
}
src_compile() {
if use gui; then
MY_RUNNER="cargo_env edo ${cbuild_dir}/runner build -- $(get_NINJAOPTS)"
unset cbuild_dir
tc-env_build _cbuild_cargo_build -p runner
${MY_RUNNER} wheels
use doc && ${MY_RUNNER} python:sphinx
else
cargo_src_compile --package anki-sync-server
fi
}
src_test() {
ln -s "${BROOT}"/usr/bin/pytest out/pyenv/bin/pytest || die
mkdir out/bin || die
ln -s "${BROOT}"/usr/bin/cargo-nextest out/bin/cargo-nextest || die
local nextest_opts=(
cargo-verbose
failure-output=immediate
status-level=all
test-threads=$(get_makeopts_jobs)
)
# cargo-nextest respects Cargo's CARGO_TERM_COLOR variable
if [[ ! ${CARGO_TERM_COLOR} ]]; then
[[ "${NOCOLOR}" = true || "${NOCOLOR}" = yes ]] && nextest_opts+=( color=never )
fi
nextest_opts=( ${nextest_opts[@]/#/--} )
# Override hardcoded cargo-nextest options
sed -i -e "s/\(cargo nextest run\).*\\$/\1 ${nextest_opts[*]} \\$/" \
"${S}"/build/ninja_gen/src/cargo.rs || die
local runner
for runner in pytest rust_test vitest; do
${MY_RUNNER} check:${runner}
done
}
src_install() {
local DOC_CONTENTS="Users with add-ons that still rely on Anki's Qt5 GUI
can temporarily set the environment variable ENABLE_QT5_COMPAT to 1 to have
Anki install the previous compatibility code. This option has additional
runtime dependencies. Please take a look at this package's optional runtime
features for a complete listing.
\n\nENABLE_QT5_COMPAT may be removed in the future, so this is not a
long-term solution.
\n\nAnki's user manual is located online at https://docs.ankiweb.net/
\nAnki's add-on developer manual is located online at
https://addon-docs.ankiweb.net/"
readme.gentoo_create_doc
if use gui; then
pushd qt/bundle/lin > /dev/null || die
doman anki.1
doicon anki.{png,xpm}
domenu anki.desktop
insinto /usr/share/mime/packages
doins anki.xml
popd || die
use doc && dodoc -r out/python/sphinx/html
local w
for w in out/wheels/*.whl; do
unzip "${w}" -d out/wheels || die
done
python_domodule out/wheels/{anki,{,_}aqt,*.dist-info}
printf "#!/usr/bin/python3\nimport sys;from aqt import run;sys.exit(run())" > runanki || die
python_newscript runanki anki
else
cargo_src_install --path rslib/sync
fi
}
pkg_postinst() {
ver_test ${REPLACING_VERSIONS} -lt 24.06.3-r1 && local FORCE_PRINT_ELOG=1
readme.gentoo_print_elog
if use gui; then
xdg_pkg_postinst
optfeature "LaTeX in cards" "app-text/texlive[extra] app-text/dvipng"
optfeature "sound support" media-video/mpv media-video/mplayer
optfeature "recording support" "media-sound/lame[frontend] dev-python/PyQt6[multimedia]"
optfeature "faster database operations" dev-python/orjson
optfeature "compatibility with Qt5-dependent add-ons" dev-python/PyQt6[dbus,printsupport]
optfeature "Vulkan driver" "media-libs/vulkan-loader dev-qt/qtbase:6[vulkan]
dev-qt/qtdeclarative:6[vulkan] dev-qt/qtwebengine:6[vulkan]"
einfo "You can customize the LaTeX header for your cards to fit your needs:"
einfo "Notes > Manage Note Types > [select a note type] > Options"
fi
}
|