~emersion/#1244261

success

58f1025Simon Ser

main: conditionally register main isolate port

Owner
~emersion
Created
4 months ago
Updated
4 months ago
Build manifest
view manifest »

Artifacts

app-release.apk 25.7 MiB (pruned after 90 days)
Build artifacts are pruned after 90 days.

Tasks

view log »
flutter view log »
configure view log »
build view log »
analyze view log »
deploy view log »
go to bottom »
go to top »
setup
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
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
[#1244261] 2024/06/06 17:26:28 Booting image archlinux (default) on port 22069
[#1244261] 2024/06/06 17:26:29 Waiting for guest to settle
[#1244261] 2024/06/06 17:26:37 Sending tasks
[#1244261] 2024/06/06 17:26:40 Sending build environment
[#1244261] 2024/06/06 17:26:40 Sending secrets
[#1244261] 2024/06/06 17:26:40 Resolving secret 77c7956b-003e-44f7-bb5c-2944b2047654
[#1244261] 2024/06/06 17:26:41 Resolving secret 6d21b97d-cd64-4490-b325-acf8b05a542f
[#1244261] 2024/06/06 17:26:42 Resolving secret 431b0b53-2af2-441b-b879-86c5913bab4d
[#1244261] 2024/06/06 17:26:43 Resolving secret 4e454305-057f-44c3-9a4e-eeb74d54545b
[#1244261] 2024/06/06 17:26:43 Resolving secret a76ea4e0-b264-4b32-b701-7cadf78b3230
[#1244261] 2024/06/06 17:26:44 Installing packages
Warning: Permanently added '[localhost]:22069' (ED25519) to the list of known hosts.
:: Synchronizing package databases...
 core downloading...
 extra downloading...
 multilib downloading...
resolving dependencies...
looking for conflicting packages...

Packages (1) archlinux-keyring-20240520-1

Total Download Size:   1.17 MiB
Total Installed Size:  1.66 MiB
Net Upgrade Size:      0.00 MiB

:: Proceed with installation? [Y/n] 
:: Retrieving packages...
 archlinux-keyring-20240520-1-any downloading...
checking keyring...
checking package integrity...
loading package files...
checking for file conflicts...
checking available disk space...
:: Processing package changes...
upgrading archlinux-keyring...
==> Appending keys from archlinux.gpg...
==> Disabling revoked keys in keyring...
  -> Disabled 1 key.
==> Updating trust database...
gpg: Note: third-party key signatures using the SHA1 algorithm are rejected
gpg: (use option "--allow-weak-key-signatures" to override)
gpg: marginals needed: 3  completes needed: 1  trust model: pgp
gpg: depth: 0  valid:   1  signed:   5  trust: 0-, 0q, 0n, 0m, 0f, 1u
gpg: depth: 1  valid:   5  signed: 100  trust: 0-, 0q, 0n, 5m, 0f, 0u
gpg: depth: 2  valid:  75  signed:  23  trust: 75-, 0q, 0n, 0m, 0f, 0u
gpg: next trustdb check due at 2024-06-29
:: Running post-transaction hooks...
(1/2) Reloading system manager configuration...
(2/2) Arming ConditionNeedsUpdate...
Warning: Permanently added '[localhost]:22069' (ED25519) to the list of known hosts.
linux: ignoring package upgrade (6.9.1.arch1-1 => 6.9.3.arch1-1)
Resolving dependencies...
Checking package conflicts...
installing core/libnghttp2 (1.62.0-1 -> 1.62.1-1)
installing core/gcc-libs (14.1.1+r1+g43b730b9134-1 -> 14.1.1+r58+gfc9fb69ad62-1)
installing core/ncurses (6.4_20230520-3 -> 6.5-3)
installing core/xz (5.6.1-3 -> 5.6.2-1)
installing core/zstd (1.5.5-1 -> 1.5.6-1)
installing core/openssl (3.3.0-1 -> 3.3.1-1)
installing core/findutils (4.9.0-3 -> 4.10.0-1)
installing core/sqlite (3.45.3-1 -> 3.46.0-1)
installing core/e2fsprogs (1.47.0-2 -> 1.47.1-4)
installing core/libcap (2.69-4 -> 2.70-1)
installing core/systemd-libs (255.6-1 -> 255.7-1)
installing core/curl (8.7.1-6 -> 8.8.0-1)
installing core/device-mapper (2.03.23-3 -> 2.03.24-1)
installing core/gcc (14.1.1+r1+g43b730b9134-1 -> 14.1.1+r58+gfc9fb69ad62-1)
installing extra/git (2.45.1-1 -> 2.45.2-1)
installing core/groff (1.23.0-5 -> 1.23.0-6)
installing core/hwdata (0.382-1 -> 0.383-1)
installing core/icu (74.2-2 -> 75.1-1)
installing core/libbpf (1.3.0-1 -> 1.4.2-1)
installing core/libedit (20230828_3.1-1 -> 20240517_3.1-1)
installing core/libxml2 (2.12.6-2 -> 2.12.7-1)
installing core/systemd (255.6-1 -> 255.7-1)
installing core/mkinitcpio (39.1-1 -> 39.2-2)
installing core/pciutils (3.12.0-1 -> 3.13.0-1)
installing core/systemd-sysvcompat (255.6-1 -> 255.7-1)

Download Size:    130.71 M
Installed Size:   508.88 M
Size Delta:       859.18 K
Downloading packages...
(1/1) gcc-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst (0)
git-2.45.2-1-x86_64.pkg.tar.zst (6713373/6713373) 100%
(2/5) gcc-libs-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst (10403822/36788419) 28%
systemd-255.7-1-x86_64.pkg.tar.zst (8404953/8404953) 100%
(3/5) icu-75.1-1-x86_64.pkg.tar.zst (7929856/11777790) 67%
git-2.45.2-1-x86_64.pkg.tar.zst.sig (119/119) 100%
(4/4) systemd-255.7-1-x86_64.pkg.tar.zst.sig (119/119) 100%
systemd-255.7-1-x86_64.pkg.tar.zst.sig (119/119) 100%
(1/3) gcc-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst (7634908/53477978) 14%
icu-75.1-1-x86_64.pkg.tar.zst (11777790/11777790) 100%
(2/5) gcc-libs-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst (16498670/36788419) 44%
groff-1.23.0-6-x86_64.pkg.tar.zst (2366470/2366470) 100%
(3/5) openssl-3.3.1-1-x86_64.pkg.tar.zst (2408430/5127714) 46%
icu-75.1-1-x86_64.pkg.tar.zst.sig (310/310) 100%
(4/4) groff-1.23.0-6-x86_64.pkg.tar.zst.sig (0)
groff-1.23.0-6-x86_64.pkg.tar.zst.sig (310/310) 100%
(1/4) gcc-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst (12107758/53477978) 22%
openssl-3.3.1-1-x86_64.pkg.tar.zst (5127714/5127714) 100%
(2/5) gcc-libs-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst (19742702/36788419) 53%
sqlite-3.46.0-1-x86_64.pkg.tar.zst (1756623/1756623) 100%
(3/5) hwdata-0.383-1-any.pkg.tar.zst (770030/1667305) 46%
hwdata-0.383-1-any.pkg.tar.zst (1667305/1667305) 100%
(4/5) sqlite-3.46.0-1-x86_64.pkg.tar.zst.sig (0)
openssl-3.3.1-1-x86_64.pkg.tar.zst.sig (119/119) 100%
(1/4) gcc-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst (14270446/53477978) 26%
sqlite-3.46.0-1-x86_64.pkg.tar.zst.sig (310/310) 100%
(2/4) gcc-libs-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst (21528540/36788419) 58%
hwdata-0.383-1-any.pkg.tar.zst.sig (310/310) 100%
(3/4) e2fsprogs-1.47.1-4-x86_64.pkg.tar.zst (0/1294820) 0%
e2fsprogs-1.47.1-4-x86_64.pkg.tar.zst (1294820/1294820) 100%
(4/5) systemd-libs-255.7-1-x86_64.pkg.tar.zst (0)
ncurses-6.5-3-x86_64.pkg.tar.zst (1184483/1184483) 100%
(5/5) ncurses-6.5-3-x86_64.pkg.tar.zst.sig (0)
e2fsprogs-1.47.1-4-x86_64.pkg.tar.zst.sig (119/119) 100%
(1/4) gcc-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst (17252334/53477978) 32%
systemd-libs-255.7-1-x86_64.pkg.tar.zst (1131925/1131925) 100%
(2/5) gcc-libs-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst (23822300/36788419) 64%
ncurses-6.5-3-x86_64.pkg.tar.zst.sig (119/119) 100%
(3/4) curl-8.8.0-1-x86_64.pkg.tar.zst (0)
systemd-libs-255.7-1-x86_64.pkg.tar.zst.sig (119/119) 100%
(4/4) libxml2-2.12.7-1-x86_64.pkg.tar.zst (0)
curl-8.8.0-1-x86_64.pkg.tar.zst (1115540/1115540) 100%
(5/5) curl-8.8.0-1-x86_64.pkg.tar.zst.sig (0)
curl-8.8.0-1-x86_64.pkg.tar.zst.sig (119/119) 100%
(1/4) gcc-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst (20021212/53477978) 37%
xz-5.6.2-1-x86_64.pkg.tar.zst (718318/718318) 100%
(2/5) gcc-libs-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst (26378204/36788419) 71%
xz-5.6.2-1-x86_64.pkg.tar.zst.sig (119/119) 100%
(3/4) libxml2-2.12.7-1-x86_64.pkg.tar.zst (0/849213) 0%
gcc-libs-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst (36788419/36788419) 100%
(4/5) zstd-1.5.6-1-x86_64.pkg.tar.zst (393216/511583) 76%
gcc-libs-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst.sig (215/215) 100%
(1/4) gcc-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst (33095644/53477978) 61%
findutils-4.10.0-1-x86_64.pkg.tar.zst (484894/484894) 100%
(2/5) libxml2-2.12.7-1-x86_64.pkg.tar.zst (0/849213) 0%
findutils-4.10.0-1-x86_64.pkg.tar.zst.sig (310/310) 100%
(3/4) libcap-2.70-1-x86_64.pkg.tar.zst (131072/717970) 18%
device-mapper-2.03.24-1-x86_64.pkg.tar.zst (283621/283621) 100%
(4/5) zstd-1.5.6-1-x86_64.pkg.tar.zst (425948/511583) 83%
zstd-1.5.6-1-x86_64.pkg.tar.zst (511583/511583) 100%
(5/5) zstd-1.5.6-1-x86_64.pkg.tar.zst.sig (0)
libcap-2.70-1-x86_64.pkg.tar.zst (717970/717970) 100%
(1/5) gcc-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst (47546332/53477978) 88%
device-mapper-2.03.24-1-x86_64.pkg.tar.zst.sig (119/119) 100%
(2/4) libxml2-2.12.7-1-x86_64.pkg.tar.zst (131072/849213) 15%
zstd-1.5.6-1-x86_64.pkg.tar.zst.sig (566/566) 100%
(3/4) libcap-2.70-1-x86_64.pkg.tar.zst.sig (0)
libcap-2.70-1-x86_64.pkg.tar.zst.sig (119/119) 100%
(4/4) pciutils-3.13.0-1-x86_64.pkg.tar.zst (0)
libxml2-2.12.7-1-x86_64.pkg.tar.zst (849213/849213) 100%
(5/5) libxml2-2.12.7-1-x86_64.pkg.tar.zst.sig (0)
libbpf-1.4.2-1-x86_64.pkg.tar.zst (260158/260158) 100%
(1/5) gcc-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst (49053660/53477978) 91%
pciutils-3.13.0-1-x86_64.pkg.tar.zst (142316/142316) 100%
(2/5) libedit-20240517_3.1-1-x86_64.pkg.tar.zst (0)
libedit-20240517_3.1-1-x86_64.pkg.tar.zst (114661/114661) 100%
(3/5) libbpf-1.4.2-1-x86_64.pkg.tar.zst.sig (0)
libxml2-2.12.7-1-x86_64.pkg.tar.zst.sig (119/119) 100%
(4/4) libedit-20240517_3.1-1-x86_64.pkg.tar.zst.sig (0)
libbpf-1.4.2-1-x86_64.pkg.tar.zst.sig (566/566) 100%
(1/4) gcc-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst (51576796/53477978) 96%
pciutils-3.13.0-1-x86_64.pkg.tar.zst.sig (310/310) 100%
(2/4) libedit-20240517_3.1-1-x86_64.pkg.tar.zst.sig (0)
libedit-20240517_3.1-1-x86_64.pkg.tar.zst.sig (566/566) 100%
(3/4) mkinitcpio-39.2-2-any.pkg.tar.zst (0)
gcc-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst (53477978/53477978) 100%
(4/4) gcc-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst.sig (0)
libnghttp2-1.62.1-1-x86_64.pkg.tar.zst (100100/100100) 100%
(1/4) mkinitcpio-39.2-2-any.pkg.tar.zst (0)
mkinitcpio-39.2-2-any.pkg.tar.zst (65665/65665) 100%
(2/4) gcc-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst.sig (0)
systemd-sysvcompat-255.7-1-x86_64.pkg.tar.zst (6171/6171) 100%
(3/4) mkinitcpio-39.2-2-any.pkg.tar.zst.sig (0)
gcc-14.1.1+r58+gfc9fb69ad62-1-x86_64.pkg.tar.zst.sig (215/215) 100%
(1/3) libnghttp2-1.62.1-1-x86_64.pkg.tar.zst.sig (0)
libnghttp2-1.62.1-1-x86_64.pkg.tar.zst.sig (119/119) 100%
(2/2) systemd-sysvcompat-255.7-1-x86_64.pkg.tar.zst.sig (0)
mkinitcpio-39.2-2-any.pkg.tar.zst.sig (119/119) 100%
(1/1) systemd-sysvcompat-255.7-1-x86_64.pkg.tar.zst.sig (119/119) 100%
systemd-sysvcompat-255.7-1-x86_64.pkg.tar.zst.sig (119/119) 100%
checking keys in keyring (0/25) 0%
checking keys in keyring (1/25) 4%
checking keys in keyring (2/25) 8%
checking keys in keyring (3/25) 12%
checking keys in keyring (4/25) 16%
checking keys in keyring (5/25) 20%
checking keys in keyring (6/25) 24%
checking keys in keyring (7/25) 28%
checking keys in keyring (8/25) 32%
checking keys in keyring (9/25) 36%
checking keys in keyring (10/25) 40%
checking keys in keyring (11/25) 44%
checking keys in keyring (12/25) 48%
checking keys in keyring (13/25) 52%
checking keys in keyring (14/25) 56%
checking keys in keyring (15/25) 60%
checking keys in keyring (16/25) 64%
checking keys in keyring (17/25) 68%
checking keys in keyring (18/25) 72%
checking keys in keyring (19/25) 76%
checking keys in keyring (20/25) 80%
checking keys in keyring (21/25) 84%
checking keys in keyring (22/25) 88%
checking keys in keyring (23/25) 92%
checking keys in keyring (24/25) 96%
checking keys in keyring (25/25) 100%
checking package integrity (0/25) 0%
checking package integrity (2/25) 26%
checking package integrity (3/25) 27%
checking package integrity (4/25) 28%
checking package integrity (6/25) 32%
checking package integrity (8/25) 34%
checking package integrity (10/25) 35%
checking package integrity (11/25) 36%
checking package integrity (12/25) 37%
checking package integrity (14/25) 76%
checking package integrity (15/25) 81%
checking package integrity (16/25) 83%
checking package integrity (17/25) 84%
checking package integrity (18/25) 92%
checking package integrity (19/25) 93%
checking package integrity (22/25) 99%
checking package integrity (25/25) 100%
loading package files (0/25) 0%
loading package files (2/25) 26%
loading package files (3/25) 27%
loading package files (4/25) 28%
loading package files (6/25) 32%
loading package files (8/25) 34%
loading package files (10/25) 35%
loading package files (11/25) 36%
loading package files (12/25) 37%
loading package files (14/25) 76%
loading package files (15/25) 81%
loading package files (16/25) 83%
loading package files (17/25) 84%
loading package files (18/25) 92%
loading package files (19/25) 93%
loading package files (22/25) 99%
loading package files (25/25) 100%
checking for file conflicts (0/25) 0%
checking for file conflicts (1/25) 4%
checking for file conflicts (2/25) 8%
checking for file conflicts (3/25) 12%
checking for file conflicts (4/25) 16%
checking for file conflicts (5/25) 20%
checking for file conflicts (6/25) 24%
checking for file conflicts (7/25) 28%
checking for file conflicts (8/25) 32%
checking for file conflicts (9/25) 36%
checking for file conflicts (10/25) 40%
checking for file conflicts (11/25) 44%
checking for file conflicts (12/25) 48%
checking for file conflicts (13/25) 52%
checking for file conflicts (14/25) 56%
checking for file conflicts (15/25) 60%
checking for file conflicts (16/25) 64%
checking for file conflicts (17/25) 68%
checking for file conflicts (18/25) 72%
checking for file conflicts (19/25) 76%
checking for file conflicts (20/25) 80%
checking for file conflicts (21/25) 84%
checking for file conflicts (22/25) 88%
checking for file conflicts (23/25) 92%
checking for file conflicts (24/25) 96%
checking for file conflicts (25/25) 100%
Running pre-transaction hooks...
(1/1) Running texinfo-remove.hook (Removing old entries from the info directory file...)
Starting transaction...
upgrading libnghttp2 (1/25) 0%
upgrading libnghttp2 (1/25) 24%
upgrading libnghttp2 (1/25) 38%
upgrading libnghttp2 (1/25) 91%
upgrading libnghttp2 (1/25) 100%
upgrading gcc-libs (2/25) 0%
upgrading gcc-libs (2/25) 8%
upgrading gcc-libs (2/25) 9%
upgrading gcc-libs (2/25) 12%
upgrading gcc-libs (2/25) 18%
upgrading gcc-libs (2/25) 56%
upgrading gcc-libs (2/25) 57%
upgrading gcc-libs (2/25) 70%
upgrading gcc-libs (2/25) 71%
upgrading gcc-libs (2/25) 75%
upgrading gcc-libs (2/25) 76%
upgrading gcc-libs (2/25) 92%
upgrading gcc-libs (2/25) 98%
upgrading gcc-libs (2/25) 99%
upgrading gcc-libs (2/25) 100%
upgrading ncurses (3/25) 0%
upgrading ncurses (3/25) 10%
upgrading ncurses (3/25) 14%
upgrading ncurses (3/25) 17%
upgrading ncurses (3/25) 19%
upgrading ncurses (3/25) 20%
upgrading ncurses (3/25) 22%
upgrading ncurses (3/25) 24%
upgrading ncurses (3/25) 27%
upgrading ncurses (3/25) 42%
upgrading ncurses (3/25) 47%
upgrading ncurses (3/25) 54%
upgrading ncurses (3/25) 63%
upgrading ncurses (3/25) 67%
upgrading ncurses (3/25) 71%
upgrading ncurses (3/25) 74%
upgrading ncurses (3/25) 75%
upgrading ncurses (3/25) 80%
upgrading ncurses (3/25) 81%
upgrading ncurses (3/25) 82%
upgrading ncurses (3/25) 83%
upgrading ncurses (3/25) 84%
upgrading ncurses (3/25) 85%
upgrading ncurses (3/25) 86%
upgrading ncurses (3/25) 87%
upgrading ncurses (3/25) 88%
upgrading ncurses (3/25) 89%
upgrading ncurses (3/25) 91%
upgrading ncurses (3/25) 92%
upgrading ncurses (3/25) 93%
upgrading ncurses (3/25) 94%
upgrading ncurses (3/25) 95%
upgrading ncurses (3/25) 96%
upgrading ncurses (3/25) 97%
upgrading ncurses (3/25) 98%
upgrading ncurses (3/25) 99%
upgrading ncurses (3/25) 100%
upgrading xz (4/25) 0%
upgrading xz (4/25) 7%
upgrading xz (4/25) 11%
upgrading xz (4/25) 13%
upgrading xz (4/25) 20%
upgrading xz (4/25) 28%
upgrading xz (4/25) 33%
upgrading xz (4/25) 34%
upgrading xz (4/25) 35%
upgrading xz (4/25) 38%
upgrading xz (4/25) 39%
upgrading xz (4/25) 43%
upgrading xz (4/25) 47%
upgrading xz (4/25) 49%
upgrading xz (4/25) 50%
upgrading xz (4/25) 53%
upgrading xz (4/25) 57%
upgrading xz (4/25) 59%
upgrading xz (4/25) 62%
upgrading xz (4/25) 65%
upgrading xz (4/25) 67%
upgrading xz (4/25) 80%
upgrading xz (4/25) 94%
upgrading xz (4/25) 100%
upgrading zstd (5/25) 0%
upgrading zstd (5/25) 9%
upgrading zstd (5/25) 27%
upgrading zstd (5/25) 31%
upgrading zstd (5/25) 43%
upgrading zstd (5/25) 97%
upgrading zstd (5/25) 100%
upgrading openssl (6/25) 0%
upgrading openssl (6/25) 2%
upgrading openssl (6/25) 8%
upgrading openssl (6/25) 9%
upgrading openssl (6/25) 10%
upgrading openssl (6/25) 11%
upgrading openssl (6/25) 12%
upgrading openssl (6/25) 13%
upgrading openssl (6/25) 14%
upgrading openssl (6/25) 15%
upgrading openssl (6/25) 46%
upgrading openssl (6/25) 53%
upgrading openssl (6/25) 54%
upgrading openssl (6/25) 56%
upgrading openssl (6/25) 58%
upgrading openssl (6/25) 59%
upgrading openssl (6/25) 60%
upgrading openssl (6/25) 61%
upgrading openssl (6/25) 62%
upgrading openssl (6/25) 63%
upgrading openssl (6/25) 64%
upgrading openssl (6/25) 65%
upgrading openssl (6/25) 66%
upgrading openssl (6/25) 68%
upgrading openssl (6/25) 69%
upgrading openssl (6/25) 70%
upgrading openssl (6/25) 71%
upgrading openssl (6/25) 73%
upgrading openssl (6/25) 74%
upgrading openssl (6/25) 75%
upgrading openssl (6/25) 76%
upgrading openssl (6/25) 77%
upgrading openssl (6/25) 78%
upgrading openssl (6/25) 79%
upgrading openssl (6/25) 80%
upgrading openssl (6/25) 81%
upgrading openssl (6/25) 83%
upgrading openssl (6/25) 84%
upgrading openssl (6/25) 85%
upgrading openssl (6/25) 86%
upgrading openssl (6/25) 87%
upgrading openssl (6/25) 88%
upgrading openssl (6/25) 90%
upgrading openssl (6/25) 91%
upgrading openssl (6/25) 93%
upgrading openssl (6/25) 95%
upgrading openssl (6/25) 97%
upgrading openssl (6/25) 99%
upgrading openssl (6/25) 100%
upgrading findutils (7/25) 0%
upgrading findutils (7/25) 13%
upgrading findutils (7/25) 21%
upgrading findutils (7/25) 47%
upgrading findutils (7/25) 52%
upgrading findutils (7/25) 57%
upgrading findutils (7/25) 60%
upgrading findutils (7/25) 65%
upgrading findutils (7/25) 69%
upgrading findutils (7/25) 74%
upgrading findutils (7/25) 79%
upgrading findutils (7/25) 82%
upgrading findutils (7/25) 85%
upgrading findutils (7/25) 89%
upgrading findutils (7/25) 93%
upgrading findutils (7/25) 100%
upgrading sqlite (8/25) 0%
upgrading sqlite (8/25) 3%
upgrading sqlite (8/25) 42%
upgrading sqlite (8/25) 48%
upgrading sqlite (8/25) 55%
upgrading sqlite (8/25) 76%
upgrading sqlite (8/25) 84%
upgrading sqlite (8/25) 85%
upgrading sqlite (8/25) 100%
upgrading e2fsprogs (9/25) 0%
upgrading e2fsprogs (9/25) 3%
upgrading e2fsprogs (9/25) 10%
upgrading e2fsprogs (9/25) 22%
upgrading e2fsprogs (9/25) 24%
upgrading e2fsprogs (9/25) 27%
upgrading e2fsprogs (9/25) 29%
upgrading e2fsprogs (9/25) 31%
upgrading e2fsprogs (9/25) 33%
upgrading e2fsprogs (9/25) 36%
upgrading e2fsprogs (9/25) 49%
upgrading e2fsprogs (9/25) 51%
upgrading e2fsprogs (9/25) 53%
upgrading e2fsprogs (9/25) 56%
upgrading e2fsprogs (9/25) 59%
upgrading e2fsprogs (9/25) 61%
upgrading e2fsprogs (9/25) 63%
upgrading e2fsprogs (9/25) 65%
upgrading e2fsprogs (9/25) 68%
upgrading e2fsprogs (9/25) 70%
upgrading e2fsprogs (9/25) 72%
upgrading e2fsprogs (9/25) 74%
upgrading e2fsprogs (9/25) 75%
upgrading e2fsprogs (9/25) 78%
upgrading e2fsprogs (9/25) 79%
upgrading e2fsprogs (9/25) 82%
upgrading e2fsprogs (9/25) 84%
upgrading e2fsprogs (9/25) 86%
upgrading e2fsprogs (9/25) 87%
upgrading e2fsprogs (9/25) 91%
upgrading e2fsprogs (9/25) 92%
upgrading e2fsprogs (9/25) 94%
upgrading e2fsprogs (9/25) 100%
upgrading libcap (10/25) 0%
upgrading libcap (10/25) 7%
upgrading libcap (10/25) 92%
upgrading libcap (10/25) 98%
upgrading libcap (10/25) 100%
upgrading systemd-libs (11/25) 0%
upgrading systemd-libs (11/25) 3%
upgrading systemd-libs (11/25) 6%
upgrading systemd-libs (11/25) 15%
upgrading systemd-libs (11/25) 23%
upgrading systemd-libs (11/25) 30%
upgrading systemd-libs (11/25) 41%
upgrading systemd-libs (11/25) 65%
upgrading systemd-libs (11/25) 70%
upgrading systemd-libs (11/25) 74%
upgrading systemd-libs (11/25) 78%
upgrading systemd-libs (11/25) 82%
upgrading systemd-libs (11/25) 86%
upgrading systemd-libs (11/25) 91%
upgrading systemd-libs (11/25) 95%
upgrading systemd-libs (11/25) 99%
upgrading systemd-libs (11/25) 100%
upgrading curl (12/25) 0%
upgrading curl (12/25) 6%
upgrading curl (12/25) 10%
upgrading curl (12/25) 13%
upgrading curl (12/25) 14%
upgrading curl (12/25) 44%
upgrading curl (12/25) 51%
upgrading curl (12/25) 58%
upgrading curl (12/25) 64%
upgrading curl (12/25) 71%
upgrading curl (12/25) 77%
upgrading curl (12/25) 84%
upgrading curl (12/25) 91%
upgrading curl (12/25) 99%
upgrading curl (12/25) 100%
upgrading device-mapper (13/25) 0%
upgrading device-mapper (13/25) 17%
upgrading device-mapper (13/25) 31%
upgrading device-mapper (13/25) 40%
upgrading device-mapper (13/25) 95%
upgrading device-mapper (13/25) 100%
upgrading gcc (14/25) 0%
upgrading gcc (14/25) 1%
upgrading gcc (14/25) 2%
upgrading gcc (14/25) 3%
upgrading gcc (14/25) 4%
upgrading gcc (14/25) 7%
upgrading gcc (14/25) 31%
upgrading gcc (14/25) 57%
upgrading gcc (14/25) 60%
upgrading gcc (14/25) 83%
upgrading gcc (14/25) 84%
upgrading gcc (14/25) 85%
upgrading gcc (14/25) 86%
upgrading gcc (14/25) 87%
upgrading gcc (14/25) 89%
upgrading gcc (14/25) 90%
upgrading gcc (14/25) 91%
upgrading gcc (14/25) 92%
upgrading gcc (14/25) 93%
upgrading gcc (14/25) 94%
upgrading gcc (14/25) 95%
upgrading gcc (14/25) 96%
upgrading gcc (14/25) 97%
upgrading gcc (14/25) 98%
upgrading gcc (14/25) 99%
upgrading gcc (14/25) 100%
upgrading git (15/25) 0%
upgrading git (15/25) 1%
upgrading git (15/25) 28%
upgrading git (15/25) 29%
upgrading git (15/25) 32%
upgrading git (15/25) 33%
upgrading git (15/25) 34%
upgrading git (15/25) 35%
upgrading git (15/25) 36%
upgrading git (15/25) 38%
upgrading git (15/25) 40%
upgrading git (15/25) 43%
upgrading git (15/25) 45%
upgrading git (15/25) 46%
upgrading git (15/25) 47%
upgrading git (15/25) 48%
upgrading git (15/25) 49%
upgrading git (15/25) 50%
upgrading git (15/25) 51%
upgrading git (15/25) 52%
upgrading git (15/25) 53%
upgrading git (15/25) 54%
upgrading git (15/25) 55%
upgrading git (15/25) 56%
upgrading git (15/25) 57%
upgrading git (15/25) 59%
upgrading git (15/25) 61%
upgrading git (15/25) 62%
upgrading git (15/25) 63%
upgrading git (15/25) 64%
upgrading git (15/25) 66%
upgrading git (15/25) 67%
upgrading git (15/25) 69%
upgrading git (15/25) 70%
upgrading git (15/25) 72%
upgrading git (15/25) 73%
upgrading git (15/25) 74%
upgrading git (15/25) 75%
upgrading git (15/25) 77%
upgrading git (15/25) 78%
upgrading git (15/25) 79%
upgrading git (15/25) 81%
upgrading git (15/25) 82%
upgrading git (15/25) 83%
upgrading git (15/25) 85%
upgrading git (15/25) 87%
upgrading git (15/25) 89%
upgrading git (15/25) 90%
upgrading git (15/25) 92%
upgrading git (15/25) 94%
upgrading git (15/25) 95%
upgrading git (15/25) 97%
upgrading git (15/25) 99%
upgrading git (15/25) 100%
upgrading groff (16/25) 0%
upgrading groff (16/25) 2%
upgrading groff (16/25) 3%
upgrading groff (16/25) 5%
upgrading groff (16/25) 6%
upgrading groff (16/25) 8%
upgrading groff (16/25) 10%
upgrading groff (16/25) 11%
upgrading groff (16/25) 12%
upgrading groff (16/25) 13%
upgrading groff (16/25) 14%
upgrading groff (16/25) 16%
upgrading groff (16/25) 17%
upgrading groff (16/25) 18%
upgrading groff (16/25) 20%
upgrading groff (16/25) 23%
upgrading groff (16/25) 24%
upgrading groff (16/25) 26%
upgrading groff (16/25) 28%
upgrading groff (16/25) 29%
upgrading groff (16/25) 36%
upgrading groff (16/25) 37%
upgrading groff (16/25) 38%
upgrading groff (16/25) 39%
upgrading groff (16/25) 40%
upgrading groff (16/25) 41%
upgrading groff (16/25) 42%
upgrading groff (16/25) 43%
upgrading groff (16/25) 44%
upgrading groff (16/25) 45%
upgrading groff (16/25) 46%
upgrading groff (16/25) 47%
upgrading groff (16/25) 48%
upgrading groff (16/25) 50%
upgrading groff (16/25) 52%
upgrading groff (16/25) 54%
upgrading groff (16/25) 56%
upgrading groff (16/25) 57%
upgrading groff (16/25) 58%
upgrading groff (16/25) 60%
upgrading groff (16/25) 61%
upgrading groff (16/25) 62%
upgrading groff (16/25) 67%
upgrading groff (16/25) 68%
upgrading groff (16/25) 69%
upgrading groff (16/25) 73%
upgrading groff (16/25) 78%
upgrading groff (16/25) 83%
upgrading groff (16/25) 88%
upgrading groff (16/25) 93%
upgrading groff (16/25) 99%
upgrading groff (16/25) 100%
upgrading hwdata (17/25) 0%
upgrading hwdata (17/25) 1%
upgrading hwdata (17/25) 11%
upgrading hwdata (17/25) 71%
upgrading hwdata (17/25) 88%
upgrading hwdata (17/25) 100%
upgrading icu (18/25) 0%
upgrading icu (18/25) 1%
upgrading icu (18/25) 2%
upgrading icu (18/25) 3%
upgrading icu (18/25) 4%
upgrading icu (18/25) 5%
upgrading icu (18/25) 6%
upgrading icu (18/25) 7%
upgrading icu (18/25) 82%
upgrading icu (18/25) 92%
upgrading icu (18/25) 93%
upgrading icu (18/25) 99%
upgrading icu (18/25) 100%
upgrading libbpf (19/25) 0%
upgrading libbpf (19/25) 12%
upgrading libbpf (19/25) 22%
upgrading libbpf (19/25) 31%
upgrading libbpf (19/25) 50%
upgrading libbpf (19/25) 100%
upgrading libedit (20/25) 0%
upgrading libedit (20/25) 50%
upgrading libedit (20/25) 82%
upgrading libedit (20/25) 100%
upgrading libxml2 (21/25) 0%
upgrading libxml2 (21/25) 4%
upgrading libxml2 (21/25) 7%
upgrading libxml2 (21/25) 9%
upgrading libxml2 (21/25) 11%
upgrading libxml2 (21/25) 15%
upgrading libxml2 (21/25) 77%
upgrading libxml2 (21/25) 81%
upgrading libxml2 (21/25) 87%
upgrading libxml2 (21/25) 88%
upgrading libxml2 (21/25) 91%
upgrading libxml2 (21/25) 99%
upgrading libxml2 (21/25) 100%
upgrading systemd (22/25) 0%
upgrading systemd (22/25) 1%
upgrading systemd (22/25) 2%
upgrading systemd (22/25) 3%
upgrading systemd (22/25) 4%
upgrading systemd (22/25) 5%
upgrading systemd (22/25) 6%
upgrading systemd (22/25) 7%
upgrading systemd (22/25) 8%
upgrading systemd (22/25) 9%
upgrading systemd (22/25) 11%
upgrading systemd (22/25) 12%
upgrading systemd (22/25) 13%
upgrading systemd (22/25) 15%
upgrading systemd (22/25) 18%
upgrading systemd (22/25) 19%
upgrading systemd (22/25) 20%
upgrading systemd (22/25) 21%
upgrading systemd (22/25) 22%
upgrading systemd (22/25) 30%
upgrading systemd (22/25) 47%
upgrading systemd (22/25) 48%
upgrading systemd (22/25) 49%
upgrading systemd (22/25) 50%
upgrading systemd (22/25) 51%
upgrading systemd (22/25) 52%
upgrading systemd (22/25) 53%
upgrading systemd (22/25) 55%
upgrading systemd (22/25) 61%
upgrading systemd (22/25) 62%
upgrading systemd (22/25) 63%
upgrading systemd (22/25) 65%
upgrading systemd (22/25) 66%
upgrading systemd (22/25) 67%
upgrading systemd (22/25) 68%
upgrading systemd (22/25) 73%
upgrading systemd (22/25) 77%
upgrading systemd (22/25) 80%
upgrading systemd (22/25) 81%
upgrading systemd (22/25) 82%
upgrading systemd (22/25) 84%
upgrading systemd (22/25) 85%
upgrading systemd (22/25) 86%
upgrading systemd (22/25) 88%
upgrading systemd (22/25) 89%
upgrading systemd (22/25) 90%
upgrading systemd (22/25) 92%
upgrading systemd (22/25) 93%
upgrading systemd (22/25) 94%
upgrading systemd (22/25) 96%
upgrading systemd (22/25) 97%
upgrading systemd (22/25) 98%
upgrading systemd (22/25) 99%
upgrading systemd (22/25) 100%
upgrading mkinitcpio (23/25) 0%
upgrading mkinitcpio (23/25) 62%
upgrading mkinitcpio (23/25) 87%
upgrading mkinitcpio (23/25) 100%
upgrading pciutils (24/25) 0%
upgrading pciutils (24/25) 40%
upgrading pciutils (24/25) 63%
upgrading pciutils (24/25) 92%
upgrading pciutils (24/25) 100%
upgrading systemd-sysvcompat (25/25) 0%
upgrading systemd-sysvcompat (25/25) 100%
Running post-transaction hooks...
(1/11) Running 20-systemd-sysusers.hook (Creating system user accounts...)
(2/11) Running 30-systemd-catalog.hook (Updating journal message catalog...)
(3/11) Running 30-systemd-daemon-reload-system.hook (Reloading system manager configuration...)
(4/11) Running 30-systemd-daemon-reload-user.hook (Reloading user manager configuration...)
(5/11) Running 30-systemd-hwdb.hook (Updating udev hardware database...)
(6/11) Running 30-systemd-sysctl.hook (Applying kernel sysctl settings...)
(7/11) Running 30-systemd-tmpfiles.hook (Creating temporary files...)
(8/11) Running 30-systemd-udev-reload.hook (Reloading device manager configuration...)
(9/11) Running 30-systemd-update.hook (Arming ConditionNeedsUpdate...)
(10/11) Running dbus-reload.hook (Reloading system bus configuration...)
(11/11) Running texinfo-install.hook (Updating the info directory file...)
Warning: Permanently added '[localhost]:22069' (ED25519) to the list of known hosts.
AUR Explicit (4): android-sdk-26.1.1-2, android-sdk-build-tools-r34.0.0-2, android-sdk-platform-tools-35.0.1-1, android-sdk-cmdline-tools-latest-13.0-2
Sync Dependency (8): libx11-1.8.9-1, libxrender-0.9.11-1, libxext-1.3.6-1, lib32-glibc-2.39+r52+gf8e4623421-1, freetype2-2.13.2-1, lib32-gcc-libs-14.1.1+r58+gfc9fb69ad62-1, fontconfig-2:2.15.0-2, libxtst-1.2.4-1
Sync Explicit (2): unzip-6.0-20, jdk17-openjdk-17.0.11.u9-1
:: (1/4) Downloaded PKGBUILD: android-sdk-cmdline-tools-latest
:: (2/4) Downloaded PKGBUILD: android-sdk
:: (3/4) Downloaded PKGBUILD: android-sdk-build-tools
:: (4/4) Downloaded PKGBUILD: android-sdk-platform-tools
  4 android-sdk                              (Build Files Exist)
  3 android-sdk-build-tools                  (Build Files Exist)
  2 android-sdk-platform-tools               (Build Files Exist)
  1 android-sdk-cmdline-tools-latest         (Build Files Exist)
==> Packages to cleanBuild?
==> [N]one [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)
==> 
  4 android-sdk                              (Build Files Exist)
  3 android-sdk-build-tools                  (Build Files Exist)
  2 android-sdk-platform-tools               (Build Files Exist)
  1 android-sdk-cmdline-tools-latest         (Build Files Exist)
==> Diffs to show?
==> [N]one [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)
==> 
==> Making package: android-sdk-cmdline-tools-latest 13.0-2 (Thu Jun  6 17:26:55 2024)
==> Retrieving sources...
  -> Downloading commandlinetools-linux-11479570_latest.zip...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
 82  149M   82  122M    0     0   121M      0  0:00:01  0:00:01 --:--:--  121M
100  149M  100  149M    0     0   124M      0  0:00:01  0:00:01 --:--:--  124M
  -> Found android-sdk-cmdline-tools-latest.sh
  -> Found android-sdk-cmdline-tools-latest.csh
  -> Found package.xml
==> WARNING: Skipping verification of source file PGP signatures.
==> Validating source files with sha1sums...
    commandlinetools-linux-11479570_latest.zip ... Passed
    android-sdk-cmdline-tools-latest.sh ... Passed
    android-sdk-cmdline-tools-latest.csh ... Passed
    package.xml ... Passed
==> Making package: android-sdk 26.1.1-2 (Thu Jun  6 17:26:57 2024)
==> Retrieving sources...
  -> Downloading sdk-tools-linux-4333796.zip...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
 76  147M   76  113M    0     0   132M      0  0:00:01 --:--:--  0:00:01  132M
100  147M  100  147M    0     0   136M      0  0:00:01  0:00:01 --:--:--  136M
  -> Found android-sdk.sh
  -> Found android-sdk.csh
  -> Found android-sdk.conf
  -> Found license.html
==> WARNING: Skipping verification of source file PGP signatures.
==> Validating source files with sha1sums...
    sdk-tools-linux-4333796.zip ... Passed
    android-sdk.sh ... Passed
    android-sdk.csh ... Passed
    android-sdk.conf ... Passed
    license.html ... Passed
==> Making package: android-sdk-build-tools r34.0.0-2 (Thu Jun  6 17:26:59 2024)
==> Retrieving sources...
  -> Downloading build-tools_r34-linux.zip...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
 19 58.3M   19 11.4M    0     0  94.3M      0 --:--:-- --:--:-- --:--:-- 94.2M
100 58.3M  100 58.3M    0     0   127M      0 --:--:-- --:--:-- --:--:--  127M
  -> Found package.xml
==> WARNING: Skipping verification of source file PGP signatures.
==> Validating source files with sha512sums...
    build-tools_r34-linux.zip ... Passed
    package.xml ... Passed
==> Making package: android-sdk-platform-tools 35.0.1-1 (Thu Jun  6 17:27:00 2024)
==> Retrieving sources...
  -> Downloading platform-tools_r35.0.1-linux.zip...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
 97 6870k   97 6671k    0     0  77.6M      0 --:--:-- --:--:-- --:--:-- 77.5M
100 6870k  100 6870k    0     0  79.3M      0 --:--:-- --:--:-- --:--:-- 78.9M
  -> Found adb.service
  -> Found license.html
  -> Found package.xml
==> WARNING: Skipping verification of source file PGP signatures.
==> Validating source files with sha1sums...
    platform-tools_r35.0.1-linux.zip ... Passed
    adb.service ... Passed
    license.html ... Passed
    package.xml ... Passed
:: (1/4) Parsing SRCINFO: android-sdk-build-tools
:: (2/4) Parsing SRCINFO: android-sdk-platform-tools
:: (3/4) Parsing SRCINFO: android-sdk-cmdline-tools-latest
:: (4/4) Parsing SRCINFO: android-sdk
resolving dependencies...
looking for conflicting packages...
warning: dependency cycle detected:
warning: harfbuzz will be installed before its freetype2 dependency

Packages (30) giflib-5.2.2-1  graphite-1:1.3.14-3  harfbuzz-8.5.0-1  hicolor-icon-theme-0.18-1  java-environment-common-3-5  java-runtime-common-3-5  jbigkit-2.1-8  lcms2-2.16-1  libjpeg-turbo-3.0.3-1  libnet-2:1.3-1  libpng-1.6.43-1  libtiff-4.6.0-5  libxau-1.0.11-2  libxcb-1.17.0-1  libxdmcp-1.1.5-1  libxfixes-6.0.1-1  libxi-1.8.1-1  nspr-4.35-2  nss-3.100-1  xcb-proto-1.17.0-2  xorgproto-2024.1-2  fontconfig-2:2.15.0-2  freetype2-2.13.2-1  jdk17-openjdk-17.0.11.u9-1  lib32-gcc-libs-14.1.1+r58+gfc9fb69ad62-1  lib32-glibc-2.39+r52+gf8e4623421-1  libx11-1.8.9-1  libxext-1.3.6-1  libxrender-0.9.11-1  libxtst-1.2.4-1

Total Download Size:   298.25 MiB
Total Installed Size:  566.07 MiB

:: Proceed with installation? [Y/n] 
:: Retrieving packages...
 jdk17-openjdk-17.0.11.u9-1-x86_64 downloading...
 lib32-gcc-libs-14.1.1+r58+gfc9fb69ad62-1-x86_64 downloading...
 lib32-glibc-2.39+r52+gf8e4623421-1-x86_64 downloading...
 libx11-1.8.9-1-x86_64 downloading...
 nss-3.100-1-x86_64 downloading...
 harfbuzz-8.5.0-1-x86_64 downloading...
 libxcb-1.17.0-1-x86_64 downloading...
 libjpeg-turbo-3.0.3-1-x86_64 downloading...
 freetype2-2.13.2-1-x86_64 downloading...
 fontconfig-2:2.15.0-2-x86_64 downloading...
 libtiff-4.6.0-5-x86_64 downloading...
 libnet-2:1.3-1-x86_64 downloading...
 libpng-1.6.43-1-x86_64 downloading...
 xorgproto-2024.1-2-any downloading...
 lcms2-2.16-1-x86_64 downloading...
 nspr-4.35-2-x86_64 downloading...
 libxi-1.8.1-1-x86_64 downloading...
 xcb-proto-1.17.0-2-any downloading...
 libxext-1.3.6-1-x86_64 downloading...
 graphite-1:1.3.14-3-x86_64 downloading...
 giflib-5.2.2-1-x86_64 downloading...
 jbigkit-2.1-8-x86_64 downloading...
 libxrender-0.9.11-1-x86_64 downloading...
 libxtst-1.2.4-1-x86_64 downloading...
 libxdmcp-1.1.5-1-x86_64 downloading...
 libxfixes-6.0.1-1-x86_64 downloading...
 hicolor-icon-theme-0.18-1-any downloading...
 libxau-1.0.11-2-x86_64 downloading...
 java-runtime-common-3-5-any downloading...
 java-environment-common-3-5-any downloading...
checking keyring...
checking package integrity...
loading package files...
checking for file conflicts...
checking available disk space...
:: Processing package changes...
installing xcb-proto...
installing xorgproto...
installing libxdmcp...
installing libxau...
installing libxcb...
installing libx11...
installing libxrender...
installing lib32-glibc...
installing libpng...
installing graphite...
Optional dependencies for graphite
    graphite-docs: Documentation
installing harfbuzz...
Optional dependencies for harfbuzz
    harfbuzz-utils: utilities
installing freetype2...
installing fontconfig...
Creating fontconfig configuration...
Rebuilding fontconfig cache...
installing lib32-gcc-libs...
installing libxext...
installing libxfixes...
installing libxi...
installing libxtst...
installing java-runtime-common...
For the complete set of Java binaries to be available in your PATH,
you need to re-login or source /etc/profile.d/jre.sh
Please note that this package does not support forcing JAVA_HOME as former package java-common did
installing nspr...
installing nss...
installing libjpeg-turbo...
Optional dependencies for libjpeg-turbo
    java-runtime>11: for TurboJPEG Java wrapper [pending]
installing jbigkit...
installing libtiff...
Optional dependencies for libtiff
    freeglut: for using tiffgt
installing lcms2...
installing libnet...
installing java-environment-common...
installing hicolor-icon-theme...
installing giflib...
installing jdk17-openjdk...
Optional dependencies for jdk17-openjdk
    java-rhino: for some JavaScript support
    alsa-lib: for basic sound support
    gtk2: for the Gtk+ 2 look and feel - desktop usage
    gtk3: for the Gtk+ 3 look and feel - desktop usage
:: Running post-transaction hooks...
(1/3) Arming ConditionNeedsUpdate...
(2/3) Updating fontconfig configuration...
(3/3) Updating fontconfig cache...
resolving dependencies...
looking for conflicting packages...

Packages (1) unzip-6.0-20

Total Download Size:   0.14 MiB
Total Installed Size:  0.30 MiB

:: Proceed with installation? [Y/n] 
:: Retrieving packages...
 unzip-6.0-20-x86_64 downloading...
checking keyring...
checking package integrity...
loading package files...
checking for file conflicts...
checking available disk space...
:: Processing package changes...
installing unzip...
:: Running post-transaction hooks...
(1/1) Arming ConditionNeedsUpdate...
==> Making package: android-sdk-build-tools r34.0.0-2 (Thu Jun  6 17:27:06 2024)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Found build-tools_r34-linux.zip
  -> Found package.xml
==> Validating source files with sha512sums...
    build-tools_r34-linux.zip ... Passed
    package.xml ... Passed
==> Removing existing $srcdir/ directory...
==> Extracting sources...
  -> Extracting build-tools_r34-linux.zip with bsdtar
==> Sources are ready.
==> Making package: android-sdk-build-tools r34.0.0-2 (Thu Jun  6 17:27:08 2024)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Entering fakeroot environment...
==> Starting package()...
==> Tidying install...
  -> Removing libtool files...
  -> Purging unwanted files...
  -> Removing static library files...
  -> Copying source files needed for debug symbols...
  -> Compressing man and info pages...
==> Checking for packaging issues...
==> Creating package "android-sdk-build-tools"...
  -> Generating .PKGINFO file...
  -> Generating .BUILDINFO file...
  -> Generating .MTREE file...
  -> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: android-sdk-build-tools r34.0.0-2 (Thu Jun  6 17:27:10 2024)
==> Cleaning up...
==> Making package: android-sdk-platform-tools 35.0.1-1 (Thu Jun  6 17:27:10 2024)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Found platform-tools_r35.0.1-linux.zip
  -> Found adb.service
  -> Found license.html
  -> Found package.xml
==> Validating source files with sha1sums...
    platform-tools_r35.0.1-linux.zip ... Passed
    adb.service ... Passed
    license.html ... Passed
    package.xml ... Passed
==> Removing existing $srcdir/ directory...
==> Extracting sources...
  -> Extracting platform-tools_r35.0.1-linux.zip with bsdtar
==> Sources are ready.
==> Making package: android-sdk-platform-tools 35.0.1-1 (Thu Jun  6 17:27:11 2024)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Entering fakeroot environment...
==> Starting package()...
==> Tidying install...
  -> Removing libtool files...
  -> Purging unwanted files...
  -> Removing static library files...
  -> Stripping unneeded symbols from binaries and libraries...
objcopy: ./opt/android-sdk/platform-tools/adb: debuglink section already exists
objcopy: ./opt/android-sdk/platform-tools/etc1tool: debuglink section already exists
objcopy: ./opt/android-sdk/platform-tools/fastboot: debuglink section already exists
objcopy: ./opt/android-sdk/platform-tools/hprof-conv: debuglink section already exists
objcopy: ./opt/android-sdk/platform-tools/lib64/libc++.so: debuglink section already exists
objcopy: ./opt/android-sdk/platform-tools/make_f2fs: debuglink section already exists
objcopy: ./opt/android-sdk/platform-tools/make_f2fs_casefold: debuglink section already exists
objcopy: ./opt/android-sdk/platform-tools/mke2fs: debuglink section already exists
objcopy: ./opt/android-sdk/platform-tools/sqlite3: debuglink section already exists
  -> Compressing man and info pages...
==> Checking for packaging issues...
==> Creating package "android-sdk-platform-tools"...
  -> Generating .PKGINFO file...
  -> Generating .BUILDINFO file...
  -> Adding install file...
  -> Generating .MTREE file...
  -> Compressing package...
==> Creating package "android-sdk-platform-tools-debug"...
  -> Generating .PKGINFO file...
  -> Generating .BUILDINFO file...
  -> Generating .MTREE file...
  -> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: android-sdk-platform-tools 35.0.1-1 (Thu Jun  6 17:27:13 2024)
==> Cleaning up...
==> Making package: android-sdk-cmdline-tools-latest 13.0-2 (Thu Jun  6 17:27:13 2024)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Found commandlinetools-linux-11479570_latest.zip
  -> Found android-sdk-cmdline-tools-latest.sh
  -> Found android-sdk-cmdline-tools-latest.csh
  -> Found package.xml
==> Validating source files with sha1sums...
    commandlinetools-linux-11479570_latest.zip ... Passed
    android-sdk-cmdline-tools-latest.sh ... Passed
    android-sdk-cmdline-tools-latest.csh ... Passed
    package.xml ... Passed
==> Removing existing $srcdir/ directory...
==> Extracting sources...
  -> Extracting commandlinetools-linux-11479570_latest.zip with bsdtar
==> Sources are ready.
==> Making package: android-sdk-cmdline-tools-latest 13.0-2 (Thu Jun  6 17:27:15 2024)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Entering fakeroot environment...
==> Starting package()...
==> Tidying install...
  -> Removing libtool files...
  -> Purging unwanted files...
  -> Removing static library files...
  -> Stripping unneeded symbols from binaries and libraries...
  -> Compressing man and info pages...
==> Checking for packaging issues...
==> Creating package "android-sdk-cmdline-tools-latest"...
  -> Generating .PKGINFO file...
  -> Generating .BUILDINFO file...
  -> Adding install file...
  -> Generating .MTREE file...
  -> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: android-sdk-cmdline-tools-latest 13.0-2 (Thu Jun  6 17:27:17 2024)
==> Cleaning up...
==> Making package: android-sdk 26.1.1-2 (Thu Jun  6 17:27:18 2024)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Found sdk-tools-linux-4333796.zip
  -> Found android-sdk.sh
  -> Found android-sdk.csh
  -> Found android-sdk.conf
  -> Found license.html
==> Validating source files with sha1sums...
    sdk-tools-linux-4333796.zip ... Passed
    android-sdk.sh ... Passed
    android-sdk.csh ... Passed
    android-sdk.conf ... Passed
    license.html ... Passed
==> Removing existing $srcdir/ directory...
==> Extracting sources...
  -> Extracting sdk-tools-linux-4333796.zip with bsdtar
==> Sources are ready.
==> Making package: android-sdk 26.1.1-2 (Thu Jun  6 17:27:20 2024)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Entering fakeroot environment...
==> Starting package()...
==> Tidying install...
  -> Removing libtool files...
  -> Purging unwanted files...
  -> Removing static library files...
  -> Stripping unneeded symbols from binaries and libraries...
  -> Compressing man and info pages...
==> Checking for packaging issues...
==> Creating package "android-sdk"...
  -> Generating .PKGINFO file...
  -> Generating .BUILDINFO file...
  -> Adding install file...
  -> Generating .MTREE file...
  -> Compressing package...
==> Creating package "android-sdk-debug"...
  -> Generating .PKGINFO file...
  -> Generating .BUILDINFO file...
  -> Generating .MTREE file...
  -> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: android-sdk 26.1.1-2 (Thu Jun  6 17:27:31 2024)
==> Cleaning up...
loading packages...
resolving dependencies...
looking for conflicting packages...

Packages (6) android-sdk-26.1.1-2  android-sdk-build-tools-r34.0.0-2  android-sdk-cmdline-tools-latest-13.0-2  android-sdk-debug-26.1.1-2  android-sdk-platform-tools-35.0.1-1  android-sdk-platform-tools-debug-35.0.1-1

Total Installed Size:  484.27 MiB

:: Proceed with installation? [Y/n] 
checking keyring...
checking package integrity...
loading package files...
checking for file conflicts...
checking available disk space...
:: Processing package changes...
installing android-sdk-build-tools...
Optional dependencies for android-sdk-build-tools
    lib32-gcc-libs [installed]
    lib32-zlib
    java-runtime [installed]
installing android-sdk-platform-tools...
You need to source /etc/profile or relogin to add the Android SDK platform tools to your path.
installing android-sdk-platform-tools-debug...
installing android-sdk-cmdline-tools-latest...
You need to source /etc/profile or relogin to add Android SDK Command-line Tools (latest) to your path.
Optional dependencies for android-sdk-cmdline-tools-latest
    android-sdk-platform-tools: adb, aapt, aidl, dexdump and dx [installed]
    android-udev: udev rules for Android devices
installing android-sdk...
You need to source /etc/profile or relogin to add the Android SDK tools to your path.
Optional dependencies for android-sdk
    android-emulator: emulator has become standalone since 25.3.0
    android-sdk-platform-tools: adb, aapt, aidl, dexdump and dx [installed]
    android-udev: udev rules for Android devices
installing android-sdk-debug...
:: Running post-transaction hooks...
(1/2) Reloading system manager configuration...
(2/2) Arming ConditionNeedsUpdate...
[#1244261] 2024/06/06 17:27:32 Cloning repositories
Cloning into 'goguma'...
+ cd goguma
+ git checkout -q 58f1025c731bedd157c9e1745e703c8b316eeeb0
+ cd goguma
+ git submodule update --init --recursive
[#1244261] 2024/06/06 17:27:33 Running task flutter
[#1244261] 2024/06/06 17:28:40 Running task configure
[#1244261] 2024/06/06 17:28:48 Running task build
[#1244261] 2024/06/06 17:33:48 Running task analyze
[#1244261] 2024/06/06 17:35:15 Running task deploy
[#1244261] 2024/06/06 17:35:22 Uploading goguma/build/app/outputs/flutter-apk/app-release.apk
[#1244261] 2024/06/06 17:35:23 https://s3.sr.ht/builds.sr.ht/artifacts/~emersion/1244261/683f8c827aae5f19/app-release.apk
flutter
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
+ git clone --depth=1 --branch=stable https://github.com/flutter/flutter.git
Cloning into 'flutter'...
+ export PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/home/build/flutter/bin
+ PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/home/build/flutter/bin
+ echo PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/home/build/flutter/bin
+ flutter precache --android
Downloading Linux x64 Dart SDK from Flutter engine edd8546116457bdf1c5bdfb13ecb9463d2bb5ed4...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0  221M    0  104k    0     0   201k      0  0:18:43 --:--:--  0:18:43  201k
  9  221M    9 20.0M    0     0  13.3M      0  0:00:16  0:00:01  0:00:15 13.3M
 28  221M   28 61.9M    0     0  24.7M      0  0:00:08  0:00:02  0:00:06 24.7M
 46  221M   46  102M    0     0  29.2M      0  0:00:07  0:00:03  0:00:04 29.2M
 63  221M   63  139M    0     0  31.0M      0  0:00:07  0:00:04  0:00:03 31.0M
 83  221M   83  183M    0     0  33.3M      0  0:00:06  0:00:05  0:00:01 36.7M
100  221M  100  221M    0     0  34.5M      0  0:00:06  0:00:06 --:--:-- 40.9M
Building flutter tool...
Resolving dependencies...
Downloading packages...
Got dependencies.
Downloading Material fonts...                                      190ms
Downloading Gradle Wrapper...                                        6ms
Downloading android-arm-profile/linux-x64 tools...                  86ms
Downloading android-arm-release/linux-x64 tools...                  76ms
Downloading android-arm64-profile/linux-x64 tools...                81ms
Downloading android-arm64-release/linux-x64 tools...                62ms
Downloading android-x64-profile/linux-x64 tools...                  65ms
Downloading android-x64-release/linux-x64 tools...                  58ms
Downloading android-x86 tools...                                 1,223ms
Downloading android-x64 tools...                                 1,299ms
Downloading android-arm tools...                                   901ms
Downloading android-arm-profile tools...                           132ms
Downloading android-arm-release tools...                            96ms
Downloading android-arm64 tools...                               2,584ms
Downloading android-arm64-profile tools...                         141ms
Downloading android-arm64-release tools...                         104ms
Downloading android-x64-profile tools...                           144ms
Downloading android-x64-release tools...                           177ms
Downloading android-x86-jit-release tools...                       185ms
Downloading package sky_engine...                                   31ms
Downloading flutter_patched_sdk tools...                            74ms
Downloading flutter_patched_sdk_product tools...                    74ms
Downloading linux-x64 tools...                                   1,946ms
Downloading linux-x64/font-subset tools...                          39ms
+ sudo chown -R build /opt/android-sdk
+ yes
+ flutter doctor --android-licenses
+ flutter doctor -v
[✓] Flutter (Channel stable, 3.22.2, on Arch Linux 6.9.1-arch1-1, locale en_US)
    • Flutter version 3.22.2 on channel stable at /home/build/flutter
    • Upstream repository https://github.com/flutter/flutter.git
    • Framework revision 761747bfc5 (21 hours ago), 2024-06-05 22:15:13 +0200
    • Engine revision edd8546116
    • Dart version 3.4.3
    • DevTools version 2.34.3

[!] Android toolchain - develop for Android devices
    • Android SDK at /opt/android-sdk
    ✗ Unable to locate Android SDK.
      Install Android Studio from: https://developer.android.com/studio/index.html
      On first launch it will assist you in installing the Android SDK components.
      (or visit https://flutter.dev/docs/get-started/install/linux#android-setup for detailed instructions).
      If the Android SDK has been installed to a custom location, please use
      `flutter config --android-sdk` to update to that location.

    ✗ No valid Android SDK platforms found in /opt/android-sdk/platforms. Directory was empty.
    • Try re-installing or updating your Android SDK,
      visit https://flutter.dev/docs/get-started/install/linux#android-setup for detailed instructions.

[✗] Chrome - develop for the web (Cannot find Chrome executable at google-chrome)
    ! Cannot find Chrome. Try setting CHROME_EXECUTABLE to a Chrome executable.

[✗] Linux toolchain - develop for Linux desktop
    ✗ clang++ is required for Linux development.
      It is likely available from your distribution (e.g.: apt install clang), or can be downloaded from https://releases.llvm.org/
    ✗ CMake is required for Linux development.
      It is likely available from your distribution (e.g.: apt install cmake), or can be downloaded from https://cmake.org/download/
    ✗ ninja is required for Linux development.
      It is likely available from your distribution (e.g.: apt install ninja-build), or can be downloaded from https://github.com/ninja-build/ninja/releases
    • pkg-config version 2.1.1
    ✗ GTK 3.0 development libraries are required for Linux development.
      They are likely available from your distribution (e.g.: apt install libgtk-3-dev)

[!] Android Studio (not installed)
    • Android Studio not found; download from https://developer.android.com/studio/index.html
      (or visit https://flutter.dev/docs/get-started/install/linux#android-setup for detailed instructions).

[✓] Connected device (1 available)
    • Linux (desktop) • linux • linux-x64 • Arch Linux 6.9.1-arch1-1

[✓] Network resources
    • All expected network resources are available.

! Doctor found issues in 4 categories.
configure
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
+ cd goguma
+ ln -s /home/build/keystore.properties android/keystore.properties
+ ln -s /home/build/keystore.jks android/keystore.jks
+ flutter pub get
Resolving dependencies...
Downloading packages...
  _flutterfire_internals 1.3.34 (1.3.36 available)
  dependency_validator 3.2.3 (4.1.0 available)
  firebase_core 2.31.1 (3.0.0 available)
  firebase_core_web 2.17.0 (2.17.1 available)
  firebase_messaging 14.9.3 (15.0.0 available)
  firebase_messaging_platform_interface 4.5.36 (4.5.38 available)
  firebase_messaging_web 3.8.6 (3.8.8 available)
  flutter_apns_only 1.6.0 (discontinued)
  flutter_plugin_android_lifecycle 2.0.19 (2.0.20 available)
  image_picker 1.1.1 (1.1.2 available)
  image_picker_android 0.8.12+1 (0.8.12+3 available)
  image_picker_ios 0.8.11+2 (0.8.12 available)
  leak_tracker 10.0.4 (10.0.5 available)
  leak_tracker_flutter_testing 3.0.3 (3.0.5 available)
  material_color_utilities 0.8.0 (0.12.0 available)
  meta 1.12.0 (1.15.0 available)
  path_provider_android 2.2.4 (2.2.5 available)
  pubspec_parse 1.2.3 (1.3.0 available)
  shared_preferences_android 2.2.2 (2.2.3 available)
  test_api 0.7.0 (0.7.2 available)
  url_launcher 6.2.6 (6.3.0 available)
  url_launcher_android 6.3.2 (6.3.3 available)
  vm_service 14.2.1 (14.2.3 available)
Got dependencies!
1 package is discontinued.
22 packages have newer versions incompatible with dependency constraints.
Try `flutter pub outdated` for more information.
+ dart run tool/gen_main.dart --firebase /home/build/google-services.json lib/main_generated.dart
build
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
+ cd goguma
++ git describe --abbrev=0
+ tag=v0.6.0
++ git rev-parse --short=12 HEAD
+ hash=58f1025c731b
+ build_name=0.6.0-dev+58f1025c731b.firebase
++ git rev-list --first-parent --count origin/master
+ build_number=1076
++ cat /home/build/sentry-dsn.txt
+ sentry_dsn=https://9298d02d8794449e85471d537831bd18@app.glitchtip.com/2381
+ flutter build apk --build-name=0.6.0-dev+58f1025c731b.firebase --build-number=1076 --target=lib/main_generated.dart --dart-define=SENTRY_DSN=https://9298d02d8794449e85471d537831bd18@app.glitchtip.com/2381 --dart-define=SENTRY_ENVIRONMENT=nightly --dart-define=SENTRY_RELEASE=0.6.0-dev+58f1025c731b.firebase

Running Gradle task 'assembleRelease'...                        
Checking the license for package NDK (Side by side) 23.1.7779620 in /opt/android-sdk/licenses
License for package NDK (Side by side) 23.1.7779620 accepted.
Preparing "Install NDK (Side by side) 23.1.7779620 (revision: 23.1.7779620)".
"Install NDK (Side by side) 23.1.7779620 (revision: 23.1.7779620)" ready.
Installing NDK (Side by side) 23.1.7779620 in /opt/android-sdk/ndk/23.1.7779620
"Install NDK (Side by side) 23.1.7779620 (revision: 23.1.7779620)" complete.
"Install NDK (Side by side) 23.1.7779620 (revision: 23.1.7779620)" finished.
Checking the license for package CMake 3.22.1 in /opt/android-sdk/licenses
License for package CMake 3.22.1 accepted.
Preparing "Install CMake 3.22.1 (revision: 3.22.1)".
"Install CMake 3.22.1 (revision: 3.22.1)" ready.
Installing CMake 3.22.1 in /opt/android-sdk/cmake/3.22.1
"Install CMake 3.22.1 (revision: 3.22.1)" complete.
"Install CMake 3.22.1 (revision: 3.22.1)" finished.
Checking the license for package Android SDK Build-Tools 30.0.3 in /opt/android-sdk/licenses
License for package Android SDK Build-Tools 30.0.3 accepted.
Preparing "Install Android SDK Build-Tools 30.0.3 (revision: 30.0.3)".
"Install Android SDK Build-Tools 30.0.3 (revision: 30.0.3)" ready.
Installing Android SDK Build-Tools 30.0.3 in /opt/android-sdk/build-tools/30.0.3
"Install Android SDK Build-Tools 30.0.3 (revision: 30.0.3)" complete.
"Install Android SDK Build-Tools 30.0.3 (revision: 30.0.3)" finished.
Checking the license for package Android SDK Platform 34 in /opt/android-sdk/licenses
License for package Android SDK Platform 34 accepted.
Preparing "Install Android SDK Platform 34 (revision: 3)".
"Install Android SDK Platform 34 (revision: 3)" ready.
Installing Android SDK Platform 34 in /opt/android-sdk/platforms/android-34
"Install Android SDK Platform 34 (revision: 3)" complete.
"Install Android SDK Platform 34 (revision: 3)" finished.
Checking the license for package Android SDK Platform 31 in /opt/android-sdk/licenses
License for package Android SDK Platform 31 accepted.
Preparing "Install Android SDK Platform 31 (revision: 1)".
"Install Android SDK Platform 31 (revision: 1)" ready.
Installing Android SDK Platform 31 in /opt/android-sdk/platforms/android-31
"Install Android SDK Platform 31 (revision: 1)" complete.
"Install Android SDK Platform 31 (revision: 1)" finished.
Checking the license for package Android SDK Platform 33 in /opt/android-sdk/licenses
License for package Android SDK Platform 33 accepted.
Preparing "Install Android SDK Platform 33 (revision: 3)".
"Install Android SDK Platform 33 (revision: 3)" ready.
Installing Android SDK Platform 33 in /opt/android-sdk/platforms/android-33
"Install Android SDK Platform 33 (revision: 3)" complete.
"Install Android SDK Platform 33 (revision: 3)" finished.
Font asset "MaterialIcons-Regular.otf" was tree-shaken, reducing it from 1645184 to 5720 bytes (99.7% reduction). Tree-shaking can be disabled by providing the --no-tree-shake-icons flag when building your app.
e: /home/build/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib/1.9.0/8ee15ef0c67dc83d874f412d84378d7f0eb50b63/kotlin-stdlib-1.9.0.jar!/META-INF/kotlin-stdlib.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1.
e: /home/build/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib/1.9.0/8ee15ef0c67dc83d874f412d84378d7f0eb50b63/kotlin-stdlib-1.9.0.jar!/META-INF/kotlin-stdlib-jdk8.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1.
e: /home/build/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib/1.9.0/8ee15ef0c67dc83d874f412d84378d7f0eb50b63/kotlin-stdlib-1.9.0.jar!/META-INF/kotlin-stdlib-jdk7.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1.
e: /home/build/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib-common/1.9.0/cd65c21cfd1eec4d44ef09f9f52b6d9f8a720636/kotlin-stdlib-common-1.9.0.jar!/META-INF/kotlin-stdlib-common.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1.
Running Gradle task 'assembleRelease'...                          298.1s
✓ Built build/app/outputs/flutter-apk/app-release.apk (26.9MB)
analyze
1
2
3
4
+ cd goguma
+ flutter analyze --no-fatal-infos
Analyzing goguma...                                             
No issues found! (ran in 85.4s)
deploy
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
+ cd goguma
++ git rev-parse origin/master
++ git rev-parse HEAD
+ '[' 58f1025c731bedd157c9e1745e703c8b316eeeb0 = 58f1025c731bedd157c9e1745e703c8b316eeeb0 ']'
++ git rev-list --first-parent --count origin/master
+ build_number=1076
+ ssh_opts='-o StrictHostKeyChecking=no'
+ ssh_host=deploy@sheeta.emersion.fr
+ scp -o StrictHostKeyChecking=no build/app/outputs/flutter-apk/app-release.apk deploy@sheeta.emersion.fr:fdroid-goguma-nightly/repo/goguma-1076.apk
Warning: Permanently added 'sheeta.emersion.fr' (ED25519) to the list of known hosts.

+ ssh -o StrictHostKeyChecking=no deploy@sheeta.emersion.fr 'cd fdroid-goguma-nightly && (ls -t repo/*.apk | tail -n +5 | xargs -r rm --) && fdroid update'
2024-06-06 19:35:17,539 WARNING: unsafe permissions on 'config.yml' (should be 0600)!
2024-06-06 19:35:17,542 WARNING: repo_icon "repo/icons/icon.png" does not exist! Check "config.yml".
2024-06-06 19:35:18,581 WARNING: Found "1715853369000.json" graphic without metadata for app "repo"!
2024-06-06 19:35:18,581 WARNING: Found "1716299612000.json" graphic without metadata for app "repo"!
2024-06-06 19:35:18,581 WARNING: Found "1716387558000.json" graphic without metadata for app "repo"!
2024-06-06 19:35:18,581 WARNING: Found "1716387817000.json" graphic without metadata for app "repo"!
2024-06-06 19:35:18,581 WARNING: Found "1716398095000.json" graphic without metadata for app "repo"!
2024-06-06 19:35:18,581 WARNING: Found "1716488133000.json" graphic without metadata for app "repo"!
2024-06-06 19:35:18,581 WARNING: Found "1716492545000.json" graphic without metadata for app "repo"!
2024-06-06 19:35:18,581 WARNING: Found "1716494916000.json" graphic without metadata for app "repo"!
2024-06-06 19:35:18,581 WARNING: Found "1716496578000.json" graphic without metadata for app "repo"!
2024-06-06 19:35:18,581 WARNING: Found "1717204256000.json" graphic without metadata for app "repo"!
2024-06-06 19:35:18,582 WARNING: Found "icon.png" graphic without metadata for app "repo"!
2024-06-06 19:35:18,582 WARNING: Found "categories.txt" graphic without metadata for app "repo"!
2024-06-06 19:35:18,582 WARNING: Found "entry.jar" graphic without metadata for app "repo"!
2024-06-06 19:35:18,582 WARNING: Found "entry.json" graphic without metadata for app "repo"!
2024-06-06 19:35:18,582 WARNING: Found "goguma-1073.apk" graphic without metadata for app "repo"!
2024-06-06 19:35:18,582 WARNING: Found "goguma-1074.apk" graphic without metadata for app "repo"!
2024-06-06 19:35:18,582 WARNING: Found "goguma-1075.apk" graphic without metadata for app "repo"!
2024-06-06 19:35:18,583 WARNING: Found "goguma-1076.apk" graphic without metadata for app "repo"!
2024-06-06 19:35:18,583 WARNING: Found "index-v1.jar" graphic without metadata for app "repo"!
2024-06-06 19:35:18,583 WARNING: Found "index-v1.json" graphic without metadata for app "repo"!
2024-06-06 19:35:18,583 WARNING: Found "index-v2.json" graphic without metadata for app "repo"!
2024-06-06 19:35:18,583 WARNING: Found "index.css" graphic without metadata for app "repo"!
2024-06-06 19:35:18,583 WARNING: Found "index.html" graphic without metadata for app "repo"!
2024-06-06 19:35:18,583 WARNING: Found "index.jar" graphic without metadata for app "repo"!
2024-06-06 19:35:18,583 WARNING: Found "index.png" graphic without metadata for app "repo"!
2024-06-06 19:35:18,583 WARNING: Found "index.xml" graphic without metadata for app "repo"!
2024-06-06 19:35:18,583 WARNING: Found "deploy.json" graphic without metadata for app "repo"!
2024-06-06 19:35:18,583 WARNING: Found "running.json" graphic without metadata for app "repo"!
2024-06-06 19:35:18,583 WARNING: Found "update.json" graphic without metadata for app "repo"!
2024-06-06 19:35:19,087 INFO: Creating signed index with this key (SHA256):
2024-06-06 19:35:19,087 INFO: AC C8 CF ED DF 58 C5 90 D0 21 FC F3 75 34 A5 4F 59 19 E0 26 D7 A8 33 3A A0 1C 1A BB 3D 34 E6 8D
2024-06-06 19:35:20,094 WARNING: repo_icon "repo/icons/icon.png" does not exist, generating placeholder.
2024-06-06 19:35:22,046 INFO: Finished
Build complete: success 4 months ago (took 8 minutes)