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
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240 |
+ cd slidge-whatsapp
+ for PYTHONVER in 3.11
+ docker buildx build . --target wheel -o ./dist-mess/ --platform linux/amd64 --build-arg PYTHONVER=3.11
#0 building with "agitated_bose" instance using docker-container driver
#1 [internal] booting buildkit
#1 pulling image moby/buildkit:buildx-stable-1
#1 pulling image moby/buildkit:buildx-stable-1 3.6s done
#1 creating container buildx_buildkit_agitated_bose0
#1 creating container buildx_buildkit_agitated_bose0 0.2s done
#1 DONE 3.9s
#2 [internal] load build definition from Dockerfile
#2 transferring dockerfile: 2.73kB done
#2 DONE 0.0s
#3 [internal] load metadata for docker.io/library/python:3.11-bookworm
#3 ...
#4 [auth] library/python:pull token for registry-1.docker.io
#4 DONE 0.0s
#3 [internal] load metadata for docker.io/library/python:3.11-bookworm
#3 DONE 1.2s
#5 [internal] load .dockerignore
#5 transferring context: 2B done
#5 DONE 0.0s
#6 [internal] load build context
#6 transferring context: 414.54kB 0.0s done
#6 DONE 0.0s
#7 [builder 1/14] FROM docker.io/library/python:3.11-bookworm@sha256:70f1eb2927a8ef72840254b17024d3a8aa8c3c9715a625d426a2861b5899bc62
#7 resolve docker.io/library/python:3.11-bookworm@sha256:70f1eb2927a8ef72840254b17024d3a8aa8c3c9715a625d426a2861b5899bc62 done
#7 sha256:5fef6e32ff7c712f4aac6e6c9394c4f4b38b7727339ea5ae4f1a6ae39b4c307c 250B / 250B 0.1s done
#7 sha256:07804c5f35263a6839ae79b6c74207d1207bb7cb044f995e4c32b1a7b26bae9c 0B / 24.30MB 0.2s
#7 sha256:754cb1613bc3f359d0e47d82d0194c8bea9734874f004180d414d13d6cdcb8aa 0B / 6.16MB 0.2s
#7 sha256:ad1c7cfc347f5c86fc2678b58f6a8fb6c6003471405760532fc3240b9eb1b343 0B / 211.27MB 0.2s
#7 sha256:7aadc5092c3b7a865666b14bef3d4d038282b19b124542f1a158c98ea8c1ed1b 0B / 64.39MB 0.2s
#7 sha256:07804c5f35263a6839ae79b6c74207d1207bb7cb044f995e4c32b1a7b26bae9c 24.30MB / 24.30MB 0.3s done
#7 sha256:754cb1613bc3f359d0e47d82d0194c8bea9734874f004180d414d13d6cdcb8aa 6.16MB / 6.16MB 0.4s done
#7 sha256:7aadc5092c3b7a865666b14bef3d4d038282b19b124542f1a158c98ea8c1ed1b 16.78MB / 64.39MB 0.3s
#7 sha256:da802df85c965baeca9d39869f9e2cbb3dc844d4627f413bfbb2f2c3d6055988 4.24MB / 24.05MB 0.2s
#7 sha256:ad1c7cfc347f5c86fc2678b58f6a8fb6c6003471405760532fc3240b9eb1b343 29.36MB / 211.27MB 0.6s
#7 sha256:7aadc5092c3b7a865666b14bef3d4d038282b19b124542f1a158c98ea8c1ed1b 36.70MB / 64.39MB 0.5s
#7 sha256:7d98d813d54f6207a57721008a4081378343ad8f1b2db66c121406019171805b 5.24MB / 49.56MB 0.2s
#7 sha256:7aadc5092c3b7a865666b14bef3d4d038282b19b124542f1a158c98ea8c1ed1b 58.72MB / 64.39MB 0.6s
#7 sha256:da802df85c965baeca9d39869f9e2cbb3dc844d4627f413bfbb2f2c3d6055988 24.05MB / 24.05MB 0.3s done
#7 sha256:7d98d813d54f6207a57721008a4081378343ad8f1b2db66c121406019171805b 22.02MB / 49.56MB 0.3s
#7 sha256:ad1c7cfc347f5c86fc2678b58f6a8fb6c6003471405760532fc3240b9eb1b343 50.33MB / 211.27MB 0.8s
#7 sha256:7d98d813d54f6207a57721008a4081378343ad8f1b2db66c121406019171805b 40.89MB / 49.56MB 0.5s
#7 sha256:ad1c7cfc347f5c86fc2678b58f6a8fb6c6003471405760532fc3240b9eb1b343 94.37MB / 211.27MB 1.1s
#7 sha256:7aadc5092c3b7a865666b14bef3d4d038282b19b124542f1a158c98ea8c1ed1b 64.39MB / 64.39MB 0.7s done
#7 sha256:7d98d813d54f6207a57721008a4081378343ad8f1b2db66c121406019171805b 49.56MB / 49.56MB 0.5s done
#7 extracting sha256:7d98d813d54f6207a57721008a4081378343ad8f1b2db66c121406019171805b
#7 sha256:ad1c7cfc347f5c86fc2678b58f6a8fb6c6003471405760532fc3240b9eb1b343 131.68MB / 211.27MB 1.2s
#7 sha256:ad1c7cfc347f5c86fc2678b58f6a8fb6c6003471405760532fc3240b9eb1b343 162.53MB / 211.27MB 1.4s
#7 sha256:ad1c7cfc347f5c86fc2678b58f6a8fb6c6003471405760532fc3240b9eb1b343 198.18MB / 211.27MB 1.5s
#7 sha256:ad1c7cfc347f5c86fc2678b58f6a8fb6c6003471405760532fc3240b9eb1b343 211.27MB / 211.27MB 1.7s
#7 sha256:ad1c7cfc347f5c86fc2678b58f6a8fb6c6003471405760532fc3240b9eb1b343 211.27MB / 211.27MB 1.8s done
#7 extracting sha256:7d98d813d54f6207a57721008a4081378343ad8f1b2db66c121406019171805b 1.3s done
#7 DONE 2.3s
#7 [builder 1/14] FROM docker.io/library/python:3.11-bookworm@sha256:70f1eb2927a8ef72840254b17024d3a8aa8c3c9715a625d426a2861b5899bc62
#7 extracting sha256:da802df85c965baeca9d39869f9e2cbb3dc844d4627f413bfbb2f2c3d6055988
#7 extracting sha256:da802df85c965baeca9d39869f9e2cbb3dc844d4627f413bfbb2f2c3d6055988 0.3s done
#7 DONE 2.6s
#7 [builder 1/14] FROM docker.io/library/python:3.11-bookworm@sha256:70f1eb2927a8ef72840254b17024d3a8aa8c3c9715a625d426a2861b5899bc62
#7 extracting sha256:7aadc5092c3b7a865666b14bef3d4d038282b19b124542f1a158c98ea8c1ed1b
#7 extracting sha256:7aadc5092c3b7a865666b14bef3d4d038282b19b124542f1a158c98ea8c1ed1b 1.3s done
#7 DONE 3.9s
#7 [builder 1/14] FROM docker.io/library/python:3.11-bookworm@sha256:70f1eb2927a8ef72840254b17024d3a8aa8c3c9715a625d426a2861b5899bc62
#7 extracting sha256:ad1c7cfc347f5c86fc2678b58f6a8fb6c6003471405760532fc3240b9eb1b343
#7 extracting sha256:ad1c7cfc347f5c86fc2678b58f6a8fb6c6003471405760532fc3240b9eb1b343 3.5s done
#7 DONE 7.4s
#7 [builder 1/14] FROM docker.io/library/python:3.11-bookworm@sha256:70f1eb2927a8ef72840254b17024d3a8aa8c3c9715a625d426a2861b5899bc62
#7 extracting sha256:754cb1613bc3f359d0e47d82d0194c8bea9734874f004180d414d13d6cdcb8aa 0.1s done
#7 DONE 7.6s
#7 [builder 1/14] FROM docker.io/library/python:3.11-bookworm@sha256:70f1eb2927a8ef72840254b17024d3a8aa8c3c9715a625d426a2861b5899bc62
#7 extracting sha256:07804c5f35263a6839ae79b6c74207d1207bb7cb044f995e4c32b1a7b26bae9c
#7 extracting sha256:07804c5f35263a6839ae79b6c74207d1207bb7cb044f995e4c32b1a7b26bae9c 0.6s done
#7 DONE 8.1s
#7 [builder 1/14] FROM docker.io/library/python:3.11-bookworm@sha256:70f1eb2927a8ef72840254b17024d3a8aa8c3c9715a625d426a2861b5899bc62
#7 extracting sha256:5fef6e32ff7c712f4aac6e6c9394c4f4b38b7727339ea5ae4f1a6ae39b4c307c done
#7 DONE 8.1s
#8 [builder 2/14] RUN echo "deb http://deb.debian.org/debian bookworm-backports main" >> /etc/apt/sources.list && apt-get update -y && apt-get install -y --no-install-recommends build-essential ca-certificates cargo curl git gcc g++ libffi-dev libssl-dev pkg-config python3-dev rustc && apt-get install -y golang -t bookworm-backports
#8 0.069 Get:1 http://deb.debian.org/debian bookworm-backports InRelease [59.0 kB]
#8 0.077 Get:2 http://deb.debian.org/debian bookworm InRelease [151 kB]
#8 0.078 Get:3 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
#8 0.081 Get:4 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
#8 0.157 Get:5 http://deb.debian.org/debian bookworm-backports/main amd64 Packages [254 kB]
#8 0.203 Get:6 http://deb.debian.org/debian bookworm/main amd64 Packages [8787 kB]
#8 0.249 Get:7 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [2468 B]
#8 0.282 Get:8 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [190 kB]
#8 0.798 Fetched 9546 kB in 1s (12.9 MB/s)
#8 0.798 Reading package lists...
#8 1.132 Reading package lists...
#8 1.482 Building dependency tree...
#8 1.558 Reading state information...
#8 1.626 ca-certificates is already the newest version (20230311).
#8 1.626 curl is already the newest version (7.88.1-10+deb12u7).
#8 1.626 git is already the newest version (1:2.39.5-0+deb12u1).
#8 1.626 gcc is already the newest version (4:12.2.0-3).
#8 1.626 g++ is already the newest version (4:12.2.0-3).
#8 1.626 libffi-dev is already the newest version (3.4.4-1).
#8 1.626 libssl-dev is already the newest version (3.0.14-1~deb12u2).
#8 1.626 pkg-config is already the newest version (1.8.1-1).
#8 1.626 pkg-config set to manually installed.
#8 1.626 The following additional packages will be installed:
#8 1.626 libgit2-1.5 libhttp-parser2.9 libjs-jquery libjs-sphinxdoc libjs-underscore
#8 1.626 libllvm14 libmbedcrypto7 libmbedtls14 libmbedx509-1 libpython3-dev
#8 1.627 libpython3.11 libpython3.11-dev libstd-rust-1.63 libstd-rust-dev libz3-4
#8 1.627 python3.11-dev
#8 1.627 Suggested packages:
#8 1.627 cargo-doc lld-14 clang-14
#8 1.627 Recommended packages:
#8 1.627 javascript-common llvm-14
#8 1.713 The following NEW packages will be installed:
#8 1.714 build-essential cargo libgit2-1.5 libhttp-parser2.9 libjs-jquery
#8 1.714 libjs-sphinxdoc libjs-underscore libllvm14 libmbedcrypto7 libmbedtls14
#8 1.714 libmbedx509-1 libpython3-dev libpython3.11 libpython3.11-dev
#8 1.714 libstd-rust-1.63 libstd-rust-dev libz3-4 python3-dev python3.11-dev rustc
#8 1.732 0 upgraded, 20 newly installed, 0 to remove and 1 not upgraded.
#8 1.732 Need to get 96.7 MB of archives.
#8 1.732 After this operation, 459 MB of additional disk space will be used.
#8 1.732 Get:1 http://deb.debian.org/debian bookworm/main amd64 build-essential amd64 12.9 [7704 B]
#8 1.735 Get:2 http://deb.debian.org/debian bookworm/main amd64 libhttp-parser2.9 amd64 2.9.4-5 [22.0 kB]
#8 1.736 Get:3 http://deb.debian.org/debian bookworm/main amd64 libmbedcrypto7 amd64 2.28.3-1 [277 kB]
#8 1.741 Get:4 http://deb.debian.org/debian bookworm/main amd64 libmbedx509-1 amd64 2.28.3-1 [128 kB]
#8 1.742 Get:5 http://deb.debian.org/debian bookworm/main amd64 libmbedtls14 amd64 2.28.3-1 [163 kB]
#8 1.744 Get:6 http://deb.debian.org/debian bookworm/main amd64 libgit2-1.5 amd64 1.5.1+ds-1+deb12u1 [502 kB]
#8 1.748 Get:7 http://deb.debian.org/debian bookworm/main amd64 libz3-4 amd64 4.8.12-3.1 [7216 kB]
#8 1.788 Get:8 http://deb.debian.org/debian bookworm/main amd64 libllvm14 amd64 1:14.0.6-12 [21.8 MB]
#8 1.870 Get:9 http://deb.debian.org/debian bookworm/main amd64 libstd-rust-1.63 amd64 1.63.0+dfsg1-2 [18.7 MB]
#8 1.939 Get:10 http://deb.debian.org/debian bookworm/main amd64 libstd-rust-dev amd64 1.63.0+dfsg1-2 [33.9 MB]
#8 2.063 Get:11 http://deb.debian.org/debian bookworm/main amd64 rustc amd64 1.63.0+dfsg1-2 [2613 kB]
#8 2.074 Get:12 http://deb.debian.org/debian bookworm/main amd64 cargo amd64 0.66.0+ds1-1 [3419 kB]
#8 2.085 Get:13 http://deb.debian.org/debian bookworm/main amd64 libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [326 kB]
#8 2.087 Get:14 http://deb.debian.org/debian bookworm/main amd64 libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [116 kB]
#8 2.088 Get:15 http://deb.debian.org/debian bookworm/main amd64 libjs-sphinxdoc all 5.3.0-4 [130 kB]
#8 2.089 Get:16 http://deb.debian.org/debian-security bookworm-security/main amd64 libpython3.11 amd64 3.11.2-6+deb12u3 [1988 kB]
#8 2.092 Get:17 http://deb.debian.org/debian-security bookworm-security/main amd64 libpython3.11-dev amd64 3.11.2-6+deb12u3 [4734 kB]
#8 2.103 Get:18 http://deb.debian.org/debian bookworm/main amd64 libpython3-dev amd64 3.11.2-1+b1 [9572 B]
#8 2.103 Get:19 http://deb.debian.org/debian-security bookworm-security/main amd64 python3.11-dev amd64 3.11.2-6+deb12u3 [616 kB]
#8 2.104 Get:20 http://deb.debian.org/debian bookworm/main amd64 python3-dev amd64 3.11.2-1+b1 [26.2 kB]
#8 2.197 debconf: delaying package configuration, since apt-utils is not installed
#8 2.221 Fetched 96.7 MB in 0s (250 MB/s)
#8 2.236 Selecting previously unselected package build-essential.
#8 2.236 (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 23969 files and directories currently installed.)
#8 2.254 Preparing to unpack .../00-build-essential_12.9_amd64.deb ...
#8 2.256 Unpacking build-essential (12.9) ...
#8 2.271 Selecting previously unselected package libhttp-parser2.9:amd64.
#8 2.275 Preparing to unpack .../01-libhttp-parser2.9_2.9.4-5_amd64.deb ...
#8 2.277 Unpacking libhttp-parser2.9:amd64 (2.9.4-5) ...
#8 2.293 Selecting previously unselected package libmbedcrypto7:amd64.
#8 2.296 Preparing to unpack .../02-libmbedcrypto7_2.28.3-1_amd64.deb ...
#8 2.297 Unpacking libmbedcrypto7:amd64 (2.28.3-1) ...
#8 2.323 Selecting previously unselected package libmbedx509-1:amd64.
#8 2.327 Preparing to unpack .../03-libmbedx509-1_2.28.3-1_amd64.deb ...
#8 2.328 Unpacking libmbedx509-1:amd64 (2.28.3-1) ...
#8 2.345 Selecting previously unselected package libmbedtls14:amd64.
#8 2.349 Preparing to unpack .../04-libmbedtls14_2.28.3-1_amd64.deb ...
#8 2.350 Unpacking libmbedtls14:amd64 (2.28.3-1) ...
#8 2.370 Selecting previously unselected package libgit2-1.5:amd64.
#8 2.374 Preparing to unpack .../05-libgit2-1.5_1.5.1+ds-1+deb12u1_amd64.deb ...
#8 2.375 Unpacking libgit2-1.5:amd64 (1.5.1+ds-1+deb12u1) ...
#8 2.413 Selecting previously unselected package libz3-4:amd64.
#8 2.417 Preparing to unpack .../06-libz3-4_4.8.12-3.1_amd64.deb ...
#8 2.418 Unpacking libz3-4:amd64 (4.8.12-3.1) ...
#8 2.740 Selecting previously unselected package libllvm14:amd64.
#8 2.742 Preparing to unpack .../07-libllvm14_1%3a14.0.6-12_amd64.deb ...
#8 2.743 Unpacking libllvm14:amd64 (1:14.0.6-12) ...
#8 3.486 Selecting previously unselected package libstd-rust-1.63:amd64.
#8 3.491 Preparing to unpack .../08-libstd-rust-1.63_1.63.0+dfsg1-2_amd64.deb ...
#8 3.492 Unpacking libstd-rust-1.63:amd64 (1.63.0+dfsg1-2) ...
#8 4.115 Selecting previously unselected package libstd-rust-dev:amd64.
#8 4.120 Preparing to unpack .../09-libstd-rust-dev_1.63.0+dfsg1-2_amd64.deb ...
#8 4.121 Unpacking libstd-rust-dev:amd64 (1.63.0+dfsg1-2) ...
#8 5.556 Selecting previously unselected package rustc.
#8 5.560 Preparing to unpack .../10-rustc_1.63.0+dfsg1-2_amd64.deb ...
#8 5.561 Unpacking rustc (1.63.0+dfsg1-2) ...
#8 5.666 Selecting previously unselected package cargo.
#8 5.670 Preparing to unpack .../11-cargo_0.66.0+ds1-1_amd64.deb ...
#8 5.671 Unpacking cargo (0.66.0+ds1-1) ...
#8 5.847 Selecting previously unselected package libjs-jquery.
#8 5.847 Preparing to unpack .../12-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ...
#8 5.853 Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
#8 5.877 Selecting previously unselected package libjs-underscore.
#8 5.880 Preparing to unpack .../13-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ...
#8 5.881 Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ...
#8 5.898 Selecting previously unselected package libjs-sphinxdoc.
#8 5.900 Preparing to unpack .../14-libjs-sphinxdoc_5.3.0-4_all.deb ...
#8 5.901 Unpacking libjs-sphinxdoc (5.3.0-4) ...
#8 5.923 Selecting previously unselected package libpython3.11:amd64.
#8 5.924 Preparing to unpack .../15-libpython3.11_3.11.2-6+deb12u3_amd64.deb ...
#8 5.925 Unpacking libpython3.11:amd64 (3.11.2-6+deb12u3) ...
#8 6.025 Selecting previously unselected package libpython3.11-dev:amd64.
#8 6.028 Preparing to unpack .../16-libpython3.11-dev_3.11.2-6+deb12u3_amd64.deb ...
#8 6.029 Unpacking libpython3.11-dev:amd64 (3.11.2-6+deb12u3) ...
#8 6.258 Selecting previously unselected package libpython3-dev:amd64.
#8 6.262 Preparing to unpack .../17-libpython3-dev_3.11.2-1+b1_amd64.deb ...
#8 6.263 Unpacking libpython3-dev:amd64 (3.11.2-1+b1) ...
#8 6.277 Selecting previously unselected package python3.11-dev.
#8 6.279 Preparing to unpack .../18-python3.11-dev_3.11.2-6+deb12u3_amd64.deb ...
#8 6.280 Unpacking python3.11-dev (3.11.2-6+deb12u3) ...
#8 6.299 Selecting previously unselected package python3-dev.
#8 6.301 Preparing to unpack .../19-python3-dev_3.11.2-1+b1_amd64.deb ...
#8 6.302 Unpacking python3-dev (3.11.2-1+b1) ...
#8 6.324 Setting up libpython3.11:amd64 (3.11.2-6+deb12u3) ...
#8 6.326 Setting up libz3-4:amd64 (4.8.12-3.1) ...
#8 6.328 Setting up libmbedcrypto7:amd64 (2.28.3-1) ...
#8 6.331 Setting up libpython3.11-dev:amd64 (3.11.2-6+deb12u3) ...
#8 6.333 Setting up libllvm14:amd64 (1:14.0.6-12) ...
#8 6.335 Setting up build-essential (12.9) ...
#8 6.337 Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
#8 6.342 Setting up libhttp-parser2.9:amd64 (2.9.4-5) ...
#8 6.344 Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ...
#8 6.346 Setting up libpython3-dev:amd64 (3.11.2-1+b1) ...
#8 6.348 Setting up libmbedx509-1:amd64 (2.28.3-1) ...
#8 6.350 Setting up libmbedtls14:amd64 (2.28.3-1) ...
#8 6.353 Setting up libstd-rust-1.63:amd64 (1.63.0+dfsg1-2) ...
#8 6.355 Setting up python3.11-dev (3.11.2-6+deb12u3) ...
#8 6.357 Setting up libstd-rust-dev:amd64 (1.63.0+dfsg1-2) ...
#8 6.359 Setting up libjs-sphinxdoc (5.3.0-4) ...
#8 6.361 Setting up rustc (1.63.0+dfsg1-2) ...
#8 6.363 Setting up libgit2-1.5:amd64 (1.5.1+ds-1+deb12u1) ...
#8 6.364 Setting up cargo (0.66.0+ds1-1) ...
#8 6.366 Setting up python3-dev (3.11.2-1+b1) ...
#8 6.369 Processing triggers for libc-bin (2.36-9+deb12u8) ...
#8 6.416 Reading package lists...
#8 6.714 Building dependency tree...
#8 6.805 Reading state information...
#8 6.871 The following additional packages will be installed:
#8 6.871 golang-1.22 golang-1.22-doc golang-1.22-go golang-1.22-src golang-doc
#8 6.871 golang-go golang-src
#8 6.872 Suggested packages:
#8 6.872 bzr | brz
#8 6.883 The following NEW packages will be installed:
#8 6.883 golang golang-1.22 golang-1.22-doc golang-1.22-go golang-1.22-src golang-doc
#8 6.884 golang-go golang-src
#8 6.900 0 upgraded, 8 newly installed, 0 to remove and 16 not upgraded.
#8 6.900 Need to get 43.8 MB of archives.
#8 6.900 After this operation, 228 MB of additional disk space will be used.
#8 6.900 Get:1 http://deb.debian.org/debian bookworm-backports/main amd64 golang-1.22-doc all 1.22.7-1~bpo12+1 [105 kB]
#8 6.906 Get:2 http://deb.debian.org/debian bookworm-backports/main amd64 golang-1.22-src all 1.22.7-1~bpo12+1 [18.8 MB]
#8 7.189 Get:3 http://deb.debian.org/debian bookworm-backports/main amd64 golang-1.22-go amd64 1.22.7-1~bpo12+1 [24.7 MB]
#8 7.263 Get:4 http://deb.debian.org/debian bookworm-backports/main amd64 golang-1.22 all 1.22.7-1~bpo12+1 [15.4 kB]
#8 7.263 Get:5 http://deb.debian.org/debian bookworm-backports/main amd64 golang-src all 2:1.22~3~bpo12+1 [5112 B]
#8 7.263 Get:6 http://deb.debian.org/debian bookworm-backports/main amd64 golang-go amd64 2:1.22~3~bpo12+1 [44.3 kB]
#8 7.263 Get:7 http://deb.debian.org/debian bookworm-backports/main amd64 golang-doc all 2:1.22~3~bpo12+1 [5128 B]
#8 7.263 Get:8 http://deb.debian.org/debian bookworm-backports/main amd64 golang amd64 2:1.22~3~bpo12+1 [5068 B]
#8 7.349 debconf: delaying package configuration, since apt-utils is not installed
#8 7.369 Fetched 43.8 MB in 0s (116 MB/s)
#8 7.380 Selecting previously unselected package golang-1.22-doc.
#8 7.380 (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 24451 files and directories currently installed.)
#8 7.390 Preparing to unpack .../0-golang-1.22-doc_1.22.7-1~bpo12+1_all.deb ...
#8 7.391 Unpacking golang-1.22-doc (1.22.7-1~bpo12+1) ...
#8 7.425 Selecting previously unselected package golang-1.22-src.
#8 7.427 Preparing to unpack .../1-golang-1.22-src_1.22.7-1~bpo12+1_all.deb ...
#8 7.428 Unpacking golang-1.22-src (1.22.7-1~bpo12+1) ...
#8 9.549 Selecting previously unselected package golang-1.22-go.
#8 9.555 Preparing to unpack .../2-golang-1.22-go_1.22.7-1~bpo12+1_amd64.deb ...
#8 9.556 Unpacking golang-1.22-go (1.22.7-1~bpo12+1) ...
#8 10.36 Selecting previously unselected package golang-1.22.
#8 10.37 Preparing to unpack .../3-golang-1.22_1.22.7-1~bpo12+1_all.deb ...
#8 10.37 Unpacking golang-1.22 (1.22.7-1~bpo12+1) ...
#8 10.38 Selecting previously unselected package golang-src.
#8 10.39 Preparing to unpack .../4-golang-src_2%3a1.22~3~bpo12+1_all.deb ...
#8 10.39 Unpacking golang-src (2:1.22~3~bpo12+1) ...
#8 10.40 Selecting previously unselected package golang-go:amd64.
#8 10.41 Preparing to unpack .../5-golang-go_2%3a1.22~3~bpo12+1_amd64.deb ...
#8 10.41 Unpacking golang-go:amd64 (2:1.22~3~bpo12+1) ...
#8 10.43 Selecting previously unselected package golang-doc.
#8 10.44 Preparing to unpack .../6-golang-doc_2%3a1.22~3~bpo12+1_all.deb ...
#8 10.44 Unpacking golang-doc (2:1.22~3~bpo12+1) ...
#8 10.45 Selecting previously unselected package golang:amd64.
#8 10.46 Preparing to unpack .../7-golang_2%3a1.22~3~bpo12+1_amd64.deb ...
#8 10.46 Unpacking golang:amd64 (2:1.22~3~bpo12+1) ...
#8 10.48 Setting up golang-1.22-doc (1.22.7-1~bpo12+1) ...
#8 10.48 Setting up golang-1.22-src (1.22.7-1~bpo12+1) ...
#8 10.48 Setting up golang-src (2:1.22~3~bpo12+1) ...
#8 10.49 Setting up golang-1.22-go (1.22.7-1~bpo12+1) ...
#8 10.49 Setting up golang-1.22 (1.22.7-1~bpo12+1) ...
#8 10.49 Setting up golang-go:amd64 (2:1.22~3~bpo12+1) ...
#8 10.49 Setting up golang-doc (2:1.22~3~bpo12+1) ...
#8 10.49 Setting up golang:amd64 (2:1.22~3~bpo12+1) ...
#8 DONE 10.8s
#9 [builder 3/14] RUN pip install poetry
#9 1.410 Collecting poetry
#9 1.439 Downloading poetry-1.8.4-py3-none-any.whl.metadata (6.9 kB)
#9 1.471 Collecting build<2.0.0,>=1.0.3 (from poetry)
#9 1.474 Downloading build-1.2.2.post1-py3-none-any.whl.metadata (6.5 kB)
#9 1.493 Collecting cachecontrol<0.15.0,>=0.14.0 (from cachecontrol[filecache]<0.15.0,>=0.14.0->poetry)
#9 1.497 Downloading cachecontrol-0.14.1-py3-none-any.whl.metadata (3.1 kB)
#9 1.517 Collecting cleo<3.0.0,>=2.1.0 (from poetry)
#9 1.521 Downloading cleo-2.1.0-py3-none-any.whl.metadata (12 kB)
#9 1.535 Collecting crashtest<0.5.0,>=0.4.1 (from poetry)
#9 1.538 Downloading crashtest-0.4.1-py3-none-any.whl.metadata (1.1 kB)
#9 1.620 Collecting dulwich<0.22.0,>=0.21.2 (from poetry)
#9 1.625 Downloading dulwich-0.21.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.3 kB)
#9 1.641 Collecting fastjsonschema<3.0.0,>=2.18.0 (from poetry)
#9 1.645 Downloading fastjsonschema-2.20.0-py3-none-any.whl.metadata (2.1 kB)
#9 1.662 Collecting installer<0.8.0,>=0.7.0 (from poetry)
#9 1.666 Downloading installer-0.7.0-py3-none-any.whl.metadata (936 bytes)
#9 1.706 Collecting keyring<25.0.0,>=24.0.0 (from poetry)
#9 1.709 Downloading keyring-24.3.1-py3-none-any.whl.metadata (20 kB)
#9 1.742 Collecting packaging>=23.1 (from poetry)
#9 1.746 Downloading packaging-24.1-py3-none-any.whl.metadata (3.2 kB)
#9 1.765 Collecting pexpect<5.0.0,>=4.7.0 (from poetry)
#9 1.769 Downloading pexpect-4.9.0-py2.py3-none-any.whl.metadata (2.5 kB)
#9 1.795 Collecting pkginfo<2.0,>=1.10 (from poetry)
#9 1.799 Downloading pkginfo-1.11.2-py3-none-any.whl.metadata (11 kB)
#9 1.836 Collecting platformdirs<5,>=3.0.0 (from poetry)
#9 1.840 Downloading platformdirs-4.3.6-py3-none-any.whl.metadata (11 kB)
#9 1.879 Collecting poetry-core==1.9.1 (from poetry)
#9 1.883 Downloading poetry_core-1.9.1-py3-none-any.whl.metadata (3.5 kB)
#9 1.906 Collecting poetry-plugin-export<2.0.0,>=1.6.0 (from poetry)
#9 1.910 Downloading poetry_plugin_export-1.8.0-py3-none-any.whl.metadata (2.8 kB)
#9 1.924 Collecting pyproject-hooks<2.0.0,>=1.0.0 (from poetry)
#9 1.928 Downloading pyproject_hooks-1.2.0-py3-none-any.whl.metadata (1.3 kB)
#9 1.957 Collecting requests<3.0,>=2.26 (from poetry)
#9 1.961 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB)
#9 1.976 Collecting requests-toolbelt<2.0.0,>=1.0.0 (from poetry)
#9 1.979 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl.metadata (14 kB)
#9 1.997 Collecting shellingham<2.0,>=1.5 (from poetry)
#9 2.002 Downloading shellingham-1.5.4-py2.py3-none-any.whl.metadata (3.5 kB)
#9 2.028 Collecting tomlkit<1.0.0,>=0.11.4 (from poetry)
#9 2.032 Downloading tomlkit-0.13.2-py3-none-any.whl.metadata (2.7 kB)
#9 2.056 Collecting trove-classifiers>=2022.5.19 (from poetry)
#9 2.060 Downloading trove_classifiers-2024.10.21.16-py3-none-any.whl.metadata (2.2 kB)
#9 2.161 Collecting virtualenv<21.0.0,>=20.26.6 (from poetry)
#9 2.166 Downloading virtualenv-20.27.1-py3-none-any.whl.metadata (4.5 kB)
#9 2.316 Collecting msgpack<2.0.0,>=0.5.2 (from cachecontrol<0.15.0,>=0.14.0->cachecontrol[filecache]<0.15.0,>=0.14.0->poetry)
#9 2.320 Downloading msgpack-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.4 kB)
#9 2.358 Collecting filelock>=3.8.0 (from cachecontrol[filecache]<0.15.0,>=0.14.0->poetry)
#9 2.362 Downloading filelock-3.16.1-py3-none-any.whl.metadata (2.9 kB)
#9 2.771 Collecting rapidfuzz<4.0.0,>=3.0.0 (from cleo<3.0.0,>=2.1.0->poetry)
#9 2.777 Downloading rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (11 kB)
#9 2.813 Collecting urllib3>=1.25 (from dulwich<0.22.0,>=0.21.2->poetry)
#9 2.817 Downloading urllib3-2.2.3-py3-none-any.whl.metadata (6.5 kB)
#9 2.847 Collecting jaraco.classes (from keyring<25.0.0,>=24.0.0->poetry)
#9 2.851 Downloading jaraco.classes-3.4.0-py3-none-any.whl.metadata (2.6 kB)
#9 2.890 Collecting importlib-metadata>=4.11.4 (from keyring<25.0.0,>=24.0.0->poetry)
#9 2.894 Downloading importlib_metadata-8.5.0-py3-none-any.whl.metadata (4.8 kB)
#9 2.908 Collecting SecretStorage>=3.2 (from keyring<25.0.0,>=24.0.0->poetry)
#9 2.912 Downloading SecretStorage-3.3.3-py3-none-any.whl.metadata (4.0 kB)
#9 2.928 Collecting jeepney>=0.4.2 (from keyring<25.0.0,>=24.0.0->poetry)
#9 2.931 Downloading jeepney-0.8.0-py3-none-any.whl.metadata (1.3 kB)
#9 2.948 Collecting ptyprocess>=0.5 (from pexpect<5.0.0,>=4.7.0->poetry)
#9 2.952 Downloading ptyprocess-0.7.0-py2.py3-none-any.whl.metadata (1.3 kB)
#9 3.073 Collecting charset-normalizer<4,>=2 (from requests<3.0,>=2.26->poetry)
#9 3.077 Downloading charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (34 kB)
#9 3.095 Collecting idna<4,>=2.5 (from requests<3.0,>=2.26->poetry)
#9 3.098 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB)
#9 3.129 Collecting certifi>=2017.4.17 (from requests<3.0,>=2.26->poetry)
#9 3.133 Downloading certifi-2024.8.30-py3-none-any.whl.metadata (2.2 kB)
#9 3.178 Collecting distlib<1,>=0.3.7 (from virtualenv<21.0.0,>=20.26.6->poetry)
#9 3.181 Downloading distlib-0.3.9-py2.py3-none-any.whl.metadata (5.2 kB)
#9 3.245 Collecting zipp>=3.20 (from importlib-metadata>=4.11.4->keyring<25.0.0,>=24.0.0->poetry)
#9 3.248 Downloading zipp-3.20.2-py3-none-any.whl.metadata (3.7 kB)
#9 3.396 Collecting cryptography>=2.0 (from SecretStorage>=3.2->keyring<25.0.0,>=24.0.0->poetry)
#9 3.400 Downloading cryptography-43.0.3-cp39-abi3-manylinux_2_28_x86_64.whl.metadata (5.4 kB)
#9 3.435 Collecting more-itertools (from jaraco.classes->keyring<25.0.0,>=24.0.0->poetry)
#9 3.439 Downloading more_itertools-10.5.0-py3-none-any.whl.metadata (36 kB)
#9 3.585 Collecting cffi>=1.12 (from cryptography>=2.0->SecretStorage>=3.2->keyring<25.0.0,>=24.0.0->poetry)
#9 3.588 Downloading cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB)
#9 3.626 Collecting pycparser (from cffi>=1.12->cryptography>=2.0->SecretStorage>=3.2->keyring<25.0.0,>=24.0.0->poetry)
#9 3.629 Downloading pycparser-2.22-py3-none-any.whl.metadata (943 bytes)
#9 3.644 Downloading poetry-1.8.4-py3-none-any.whl (249 kB)
#9 3.650 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 249.9/249.9 kB 61.6 MB/s eta 0:00:00
#9 3.656 Downloading poetry_core-1.9.1-py3-none-any.whl (309 kB)
#9 3.661 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 309.5/309.5 kB 103.9 MB/s eta 0:00:00
#9 3.664 Downloading build-1.2.2.post1-py3-none-any.whl (22 kB)
#9 3.669 Downloading cachecontrol-0.14.1-py3-none-any.whl (22 kB)
#9 3.674 Downloading cleo-2.1.0-py3-none-any.whl (78 kB)
#9 3.678 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.7/78.7 kB 34.2 MB/s eta 0:00:00
#9 3.681 Downloading crashtest-0.4.1-py3-none-any.whl (7.6 kB)
#9 3.686 Downloading dulwich-0.21.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516 kB)
#9 3.692 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 516.4/516.4 kB 124.2 MB/s eta 0:00:00
#9 3.695 Downloading fastjsonschema-2.20.0-py3-none-any.whl (23 kB)
#9 3.700 Downloading installer-0.7.0-py3-none-any.whl (453 kB)
#9 3.706 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 453.8/453.8 kB 121.8 MB/s eta 0:00:00
#9 3.709 Downloading keyring-24.3.1-py3-none-any.whl (38 kB)
#9 3.715 Downloading packaging-24.1-py3-none-any.whl (53 kB)
#9 3.718 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 54.0/54.0 kB 21.9 MB/s eta 0:00:00
#9 3.722 Downloading pexpect-4.9.0-py2.py3-none-any.whl (63 kB)
#9 3.725 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 63.8/63.8 kB 32.4 MB/s eta 0:00:00
#9 3.730 Downloading pkginfo-1.11.2-py3-none-any.whl (31 kB)
#9 3.734 Downloading platformdirs-4.3.6-py3-none-any.whl (18 kB)
#9 3.739 Downloading poetry_plugin_export-1.8.0-py3-none-any.whl (10 kB)
#9 3.744 Downloading pyproject_hooks-1.2.0-py3-none-any.whl (10 kB)
#9 3.748 Downloading requests-2.32.3-py3-none-any.whl (64 kB)
#9 3.751 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 64.9/64.9 kB 32.8 MB/s eta 0:00:00
#9 3.755 Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB)
#9 3.758 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 54.5/54.5 kB 27.7 MB/s eta 0:00:00
#9 3.762 Downloading shellingham-1.5.4-py2.py3-none-any.whl (9.8 kB)
#9 3.767 Downloading tomlkit-0.13.2-py3-none-any.whl (37 kB)
#9 3.771 Downloading trove_classifiers-2024.10.21.16-py3-none-any.whl (13 kB)
#9 3.776 Downloading virtualenv-20.27.1-py3-none-any.whl (3.1 MB)
#9 3.797 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.1/3.1 MB 190.5 MB/s eta 0:00:00
#9 3.800 Downloading certifi-2024.8.30-py3-none-any.whl (167 kB)
#9 3.804 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 167.3/167.3 kB 58.7 MB/s eta 0:00:00
#9 3.809 Downloading charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (142 kB)
#9 3.812 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 142.6/142.6 kB 66.0 MB/s eta 0:00:00
#9 3.816 Downloading distlib-0.3.9-py2.py3-none-any.whl (468 kB)
#9 3.821 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 469.0/469.0 kB 125.0 MB/s eta 0:00:00
#9 3.824 Downloading filelock-3.16.1-py3-none-any.whl (16 kB)
#9 3.829 Downloading idna-3.10-py3-none-any.whl (70 kB)
#9 3.832 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 70.4/70.4 kB 37.9 MB/s eta 0:00:00
#9 3.835 Downloading importlib_metadata-8.5.0-py3-none-any.whl (26 kB)
#9 3.841 Downloading jeepney-0.8.0-py3-none-any.whl (48 kB)
#9 3.844 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 48.4/48.4 kB 23.2 MB/s eta 0:00:00
#9 3.847 Downloading msgpack-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (403 kB)
#9 3.852 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 403.7/403.7 kB 117.3 MB/s eta 0:00:00
#9 3.856 Downloading ptyprocess-0.7.0-py2.py3-none-any.whl (13 kB)
#9 3.862 Downloading rapidfuzz-3.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB)
#9 3.882 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.1/3.1 MB 182.0 MB/s eta 0:00:00
#9 3.886 Downloading SecretStorage-3.3.3-py3-none-any.whl (15 kB)
#9 3.891 Downloading urllib3-2.2.3-py3-none-any.whl (126 kB)
#9 3.895 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 126.3/126.3 kB 57.1 MB/s eta 0:00:00
#9 3.899 Downloading jaraco.classes-3.4.0-py3-none-any.whl (6.8 kB)
#9 3.904 Downloading cryptography-43.0.3-cp39-abi3-manylinux_2_28_x86_64.whl (4.0 MB)
#9 3.936 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.0/4.0 MB 165.6 MB/s eta 0:00:00
#9 3.940 Downloading zipp-3.20.2-py3-none-any.whl (9.2 kB)
#9 3.945 Downloading more_itertools-10.5.0-py3-none-any.whl (60 kB)
#9 3.948 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.0/61.0 kB 27.9 MB/s eta 0:00:00
#9 3.951 Downloading cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (467 kB)
#9 3.957 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 467.2/467.2 kB 108.6 MB/s eta 0:00:00
#9 3.960 Downloading pycparser-2.22-py3-none-any.whl (117 kB)
#9 3.964 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 117.6/117.6 kB 54.4 MB/s eta 0:00:00
#9 4.138 Installing collected packages: trove-classifiers, ptyprocess, fastjsonschema, distlib, zipp, urllib3, tomlkit, shellingham, rapidfuzz, pyproject-hooks, pycparser, poetry-core, platformdirs, pkginfo, pexpect, packaging, msgpack, more-itertools, jeepney, installer, idna, filelock, crashtest, charset-normalizer, certifi, virtualenv, requests, jaraco.classes, importlib-metadata, dulwich, cleo, cffi, build, requests-toolbelt, cryptography, cachecontrol, SecretStorage, keyring, poetry-plugin-export, poetry
#9 5.860 Successfully installed SecretStorage-3.3.3 build-1.2.2.post1 cachecontrol-0.14.1 certifi-2024.8.30 cffi-1.17.1 charset-normalizer-3.4.0 cleo-2.1.0 crashtest-0.4.1 cryptography-43.0.3 distlib-0.3.9 dulwich-0.21.7 fastjsonschema-2.20.0 filelock-3.16.1 idna-3.10 importlib-metadata-8.5.0 installer-0.7.0 jaraco.classes-3.4.0 jeepney-0.8.0 keyring-24.3.1 more-itertools-10.5.0 msgpack-1.1.0 packaging-24.1 pexpect-4.9.0 pkginfo-1.11.2 platformdirs-4.3.6 poetry-1.8.4 poetry-core-1.9.1 poetry-plugin-export-1.8.0 ptyprocess-0.7.0 pycparser-2.22 pyproject-hooks-1.2.0 rapidfuzz-3.10.1 requests-2.32.3 requests-toolbelt-1.0.0 shellingham-1.5.4 tomlkit-0.13.2 trove-classifiers-2024.10.21.16 urllib3-2.2.3 virtualenv-20.27.1 zipp-3.20.2
#9 5.860 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
#9 5.954
#9 5.954 [notice] A new release of pip is available: 24.0 -> 24.3.1
#9 5.954 [notice] To update, run: pip install --upgrade pip
#9 DONE 6.3s
#10 [builder 4/14] RUN python3 -m venv /venv
#10 DONE 2.2s
#11 [builder 5/14] RUN ln -s /venv/lib/python3.11 /venv/lib/python
#11 DONE 0.1s
#12 [builder 6/14] WORKDIR /build
#12 DONE 0.0s
#13 [builder 7/14] RUN go install -v github.com/go-python/gopy@latest
#13 0.136 go: downloading github.com/go-python/gopy v0.4.10
#13 0.184 go: downloading github.com/gonuts/commander v0.1.0
#13 0.185 go: downloading github.com/gonuts/flag v0.1.0
#13 0.206 go: downloading github.com/pkg/errors v0.9.1
#13 0.210 go: downloading golang.org/x/tools v0.16.0
#13 0.545 go: downloading golang.org/x/mod v0.14.0
#13 0.600 internal/unsafeheader
#13 0.601 internal/goarch
#13 0.605 internal/cpu
#13 0.607 internal/abi
#13 0.630 internal/bytealg
#13 0.660 internal/chacha8rand
#13 0.698 internal/coverage/rtcov
#13 0.705 internal/godebugs
#13 0.716 internal/goexperiment
#13 0.721 internal/goos
#13 0.726 runtime/internal/atomic
#13 0.727 runtime/internal/math
#13 0.735 runtime/internal/sys
#13 0.746 runtime/internal/syscall
#13 0.754 internal/race
#13 0.760 sync/atomic
#13 0.768 runtime
#13 0.796 unicode
#13 0.888 unicode/utf8
#13 0.917 internal/itoa
#13 0.926 math/bits
#13 0.943 math
#13 1.075 cmp
#13 1.079 slices
#13 1.091 encoding
#13 1.096 unicode/utf16
#13 1.105 internal/gover
#13 1.119 internal/goversion
#13 1.123 internal/platform
#13 1.168 log/internal
#13 1.173 golang.org/x/tools/internal/packagesinternal
#13 2.672 internal/reflectlite
#13 2.672 sync
#13 2.733 internal/testlog
#13 2.743 internal/bisect
#13 2.778 internal/godebug
#13 2.786 errors
#13 2.802 sort
#13 2.804 io
#13 2.843 bytes
#13 2.898 strconv
#13 2.929 internal/oserror
#13 2.936 syscall
#13 3.033 reflect
#13 3.210 internal/syscall/unix
#13 3.231 time
#13 3.554 internal/poll
#13 3.585 internal/fmtsort
#13 3.605 internal/safefilepath
#13 3.612 internal/syscall/execenv
#13 3.622 path
#13 3.649 io/fs
#13 3.661 encoding/binary
#13 3.704 os
#13 3.743 encoding/base64
#13 3.776 strings
#13 3.882 regexp/syntax
#13 3.907 fmt
#13 4.064 encoding/json
#13 4.115 github.com/pkg/errors
#13 4.146 go/token
#13 4.193 path/filepath
#13 4.250 go/scanner
#13 4.300 go/ast
#13 4.339 go/doc/comment
#13 4.453 regexp
#13 4.495 container/heap
#13 4.511 math/rand
#13 4.564 internal/lazyregexp
#13 4.567 math/big
#13 4.581 go/doc
#13 4.713 go/internal/typeparams
#13 4.722 go/build/constraint
#13 4.752 go/parser
#13 4.972 go/constant
#13 5.010 go/version
#13 5.029 internal/buildcfg
#13 5.067 internal/types/errors
#13 5.069 hash
#13 5.076 hash/fnv
#13 5.081 go/types
#13 5.104 context
#13 5.144 os/exec
#13 5.212 github.com/gonuts/flag
#13 5.264 net/url
#13 5.445 text/template/parse
#13 5.617 text/template
#13 5.852 github.com/gonuts/commander
#13 5.878 bufio
#13 5.936 internal/goroot
#13 5.952 go/build
#13 6.183 crypto
#13 6.205 crypto/md5
#13 6.248 golang.org/x/tools/internal/pkgbits
#13 6.351 golang.org/x/tools/internal/tokeninternal
#13 6.382 golang.org/x/mod/semver
#13 6.412 golang.org/x/tools/internal/event/label
#13 6.434 golang.org/x/tools/internal/event/keys
#13 6.507 golang.org/x/tools/internal/event/core
#13 6.540 golang.org/x/tools/internal/event
#13 6.563 golang.org/x/tools/internal/event/tag
#13 6.573 log
#13 6.645 golang.org/x/tools/internal/gocommand
#13 6.759 golang.org/x/tools/go/internal/packagesdriver
#13 6.862 golang.org/x/tools/internal/typeparams
#13 6.863 github.com/go-python/gopy/bind
#13 6.945 golang.org/x/tools/go/types/objectpath
#13 7.009 golang.org/x/tools/internal/gcimporter
#13 7.335 golang.org/x/tools/go/gcexportdata
#13 7.349 golang.org/x/tools/internal/typesinternal
#13 7.363 golang.org/x/tools/internal/versions
#13 7.376 golang.org/x/tools/go/packages
#13 7.493 github.com/go-python/gopy
#13 DONE 7.8s
#14 [builder 8/14] RUN go install golang.org/x/tools/cmd/goimports@latest
#14 0.135 go: downloading golang.org/x/tools v0.26.0
#14 0.435 go: downloading golang.org/x/mod v0.21.0
#14 0.468 go: downloading golang.org/x/sync v0.8.0
#14 DONE 1.6s
#15 [builder 9/14] COPY poetry.lock pyproject.toml /build/
#15 DONE 0.0s
#16 [builder 10/14] RUN poetry export --without-hashes > requirements.txt
#16 0.311 Warning: poetry-plugin-export will not be installed by default in a future version of Poetry.
#16 0.311 In order to avoid a breaking change and make your automation forward-compatible, please install poetry-plugin-export explicitly. See https://python-poetry.org/docs/plugins/#using-plugins for details on how to install a plugin.
#16 0.311 To disable this warning run 'poetry config warnings.export false'.
#16 DONE 0.5s
#17 [builder 11/14] RUN python3 -m pip install --requirement requirements.txt
#17 0.334 Ignoring brotlicffi: markers 'platform_python_implementation != "CPython" and python_version >= "3.11" and python_version < "4.0"' don't match your environment
#17 0.334 Ignoring colorama: markers 'python_version >= "3.11" and python_version < "4.0" and platform_system == "Windows"' don't match your environment
#17 0.375 Collecting aiodns==3.2.0 (from -r requirements.txt (line 1))
#17 0.404 Downloading aiodns-3.2.0-py3-none-any.whl.metadata (4.0 kB)
#17 0.426 Collecting aiohappyeyeballs==2.4.3 (from -r requirements.txt (line 2))
#17 0.429 Downloading aiohappyeyeballs-2.4.3-py3-none-any.whl.metadata (6.1 kB)
#17 0.644 Collecting aiohttp==3.10.10 (from aiohttp[speedups]==3.10.10->-r requirements.txt (line 3))
#17 0.648 Downloading aiohttp-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.6 kB)
#17 0.661 Collecting aiosignal==1.3.1 (from -r requirements.txt (line 4))
#17 0.665 Downloading aiosignal-1.3.1-py3-none-any.whl.metadata (4.0 kB)
#17 0.696 Collecting alembic==1.14.0 (from -r requirements.txt (line 5))
#17 0.700 Downloading alembic-1.14.0-py3-none-any.whl.metadata (7.4 kB)
#17 0.718 Collecting attrs==24.2.0 (from -r requirements.txt (line 6))
#17 0.721 Downloading attrs-24.2.0-py3-none-any.whl.metadata (11 kB)
#17 0.754 Collecting beautifulsoup4==4.12.3 (from -r requirements.txt (line 7))
#17 0.758 Downloading beautifulsoup4-4.12.3-py3-none-any.whl.metadata (3.8 kB)
#17 0.783 Collecting brotli==1.1.0 (from -r requirements.txt (line 8))
#17 0.788 Downloading Brotli-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.5 kB)
#17 0.806 Collecting certifi==2024.8.30 (from -r requirements.txt (line 10))
#17 0.807 Using cached certifi-2024.8.30-py3-none-any.whl.metadata (2.2 kB)
#17 0.879 Collecting cffi==1.17.1 (from -r requirements.txt (line 11))
#17 0.880 Using cached cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB)
#17 0.930 Collecting charset-normalizer==3.4.0 (from -r requirements.txt (line 12))
#17 0.931 Using cached charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (34 kB)
#17 0.945 Collecting configargparse==1.7 (from -r requirements.txt (line 14))
#17 0.950 Downloading ConfigArgParse-1.7-py3-none-any.whl.metadata (23 kB)
#17 1.077 Collecting cryptography==43.0.3 (from -r requirements.txt (line 15))
#17 1.078 Using cached cryptography-43.0.3-cp39-abi3-manylinux_2_28_x86_64.whl.metadata (5.4 kB)
#17 1.093 Collecting defusedxml==0.7.1 (from -r requirements.txt (line 16))
#17 1.097 Downloading defusedxml-0.7.1-py2.py3-none-any.whl.metadata (32 kB)
#17 1.146 Collecting frozenlist==1.5.0 (from -r requirements.txt (line 17))
#17 1.150 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (13 kB)
#17 1.276 Collecting greenlet==3.1.1 (from -r requirements.txt (line 18))
#17 1.280 Downloading greenlet-3.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.metadata (3.8 kB)
#17 1.295 Collecting idna==3.10 (from -r requirements.txt (line 19))
#17 1.296 Using cached idna-3.10-py3-none-any.whl.metadata (10 kB)
#17 1.399 Collecting linkpreview==0.6.5 (from -r requirements.txt (line 20))
#17 1.404 Downloading linkpreview-0.6.5-py3-none-any.whl.metadata (3.8 kB)
#17 1.424 Collecting mako==1.3.6 (from -r requirements.txt (line 21))
#17 1.428 Downloading Mako-1.3.6-py3-none-any.whl.metadata (2.9 kB)
#17 1.469 Collecting markupsafe==3.0.2 (from -r requirements.txt (line 22))
#17 1.472 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.0 kB)
#17 1.593 Collecting multidict==6.1.0 (from -r requirements.txt (line 23))
#17 1.595 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.0 kB)
#17 1.609 Collecting pickle-secure==0.99.9 (from -r requirements.txt (line 24))
#17 1.613 Downloading pickle_secure-0.99.9-py3-none-any.whl.metadata (2.3 kB)
#17 1.733 Collecting pillow==10.4.0 (from -r requirements.txt (line 25))
#17 1.737 Downloading pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl.metadata (9.2 kB)
#17 1.807 Collecting propcache==0.2.0 (from -r requirements.txt (line 26))
#17 1.811 Downloading propcache-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB)
#17 1.830 Collecting pyasn1-modules==0.4.1 (from -r requirements.txt (line 27))
#17 1.834 Downloading pyasn1_modules-0.4.1-py3-none-any.whl.metadata (3.5 kB)
#17 1.857 Collecting pyasn1==0.6.1 (from -r requirements.txt (line 28))
#17 1.861 Downloading pyasn1-0.6.1-py3-none-any.whl.metadata (8.4 kB)
#17 1.874 Collecting pybindgen==0.22.1 (from -r requirements.txt (line 29))
#17 1.878 Downloading PyBindGen-0.22.1-py2.py3-none-any.whl.metadata (5.6 kB)
#17 1.913 Collecting pycares==4.4.0 (from -r requirements.txt (line 30))
#17 1.917 Downloading pycares-4.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.1 kB)
#17 1.929 Collecting pycparser==2.22 (from -r requirements.txt (line 31))
#17 1.930 Using cached pycparser-2.22-py3-none-any.whl.metadata (943 bytes)
#17 1.969 Collecting pypng==0.20220715.0 (from -r requirements.txt (line 32))
#17 1.973 Downloading pypng-0.20220715.0-py3-none-any.whl.metadata (13 kB)
#17 1.991 Collecting python-magic==0.4.27 (from -r requirements.txt (line 33))
#17 1.995 Downloading python_magic-0.4.27-py2.py3-none-any.whl.metadata (5.8 kB)
#17 2.011 Collecting qrcode==7.4.2 (from -r requirements.txt (line 34))
#17 2.016 Downloading qrcode-7.4.2-py3-none-any.whl.metadata (17 kB)
#17 2.043 Collecting requests==2.32.3 (from -r requirements.txt (line 35))
#17 2.044 Using cached requests-2.32.3-py3-none-any.whl.metadata (4.6 kB)
#17 2.151 Collecting slidge==0.2.1 (from -r requirements.txt (line 36))
#17 2.282 Downloading slidge-0.2.1-py3-none-any.whl.metadata (5.0 kB)
#17 2.297 Collecting slixmpp==1.8.5 (from -r requirements.txt (line 37))
#17 2.302 Downloading slixmpp-1.8.5.tar.gz (574 kB)
#17 2.312 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 574.6/574.6 kB 70.2 MB/s eta 0:00:00
#17 2.430 Installing build dependencies: started
#17 3.545 Installing build dependencies: finished with status 'done'
#17 3.546 Getting requirements to build wheel: started
#17 3.768 Getting requirements to build wheel: finished with status 'done'
#17 3.769 Preparing metadata (pyproject.toml): started
#17 3.966 Preparing metadata (pyproject.toml): finished with status 'done'
#17 3.984 Collecting soupsieve==2.6 (from -r requirements.txt (line 38))
#17 3.987 Downloading soupsieve-2.6-py3-none-any.whl.metadata (4.6 kB)
#17 4.187 Collecting sqlalchemy==2.0.36 (from -r requirements.txt (line 39))
#17 4.191 Downloading SQLAlchemy-2.0.36-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.7 kB)
#17 4.204 Collecting thumbhash==0.1.2 (from -r requirements.txt (line 40))
#17 4.210 Downloading thumbhash-0.1.2-py3-none-any.whl.metadata (2.1 kB)
#17 4.227 Collecting typing-extensions==4.12.2 (from -r requirements.txt (line 41))
#17 4.230 Downloading typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB)
#17 4.261 Collecting urllib3==2.2.3 (from -r requirements.txt (line 42))
#17 4.262 Using cached urllib3-2.2.3-py3-none-any.whl.metadata (6.5 kB)
#17 4.476 Collecting yarl==1.17.1 (from -r requirements.txt (line 43))
#17 4.480 Downloading yarl-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (64 kB)
#17 4.483 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 64.8/64.8 kB 31.8 MB/s eta 0:00:00
#17 4.768 Downloading aiodns-3.2.0-py3-none-any.whl (5.7 kB)
#17 4.773 Downloading aiohappyeyeballs-2.4.3-py3-none-any.whl (14 kB)
#17 4.780 Downloading aiohttp-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB)
#17 4.790 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 165.3 MB/s eta 0:00:00
#17 4.793 Downloading aiosignal-1.3.1-py3-none-any.whl (7.6 kB)
#17 4.799 Downloading alembic-1.14.0-py3-none-any.whl (233 kB)
#17 4.803 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 233.5/233.5 kB 82.6 MB/s eta 0:00:00
#17 4.809 Downloading attrs-24.2.0-py3-none-any.whl (63 kB)
#17 4.812 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 63.0/63.0 kB 31.7 MB/s eta 0:00:00
#17 4.815 Downloading beautifulsoup4-4.12.3-py3-none-any.whl (147 kB)
#17 4.819 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 147.9/147.9 kB 63.8 MB/s eta 0:00:00
#17 4.826 Downloading Brotli-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB)
#17 4.847 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.9/2.9 MB 153.3 MB/s eta 0:00:00
#17 4.848 Using cached certifi-2024.8.30-py3-none-any.whl (167 kB)
#17 4.850 Using cached cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (467 kB)
#17 4.851 Using cached charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (142 kB)
#17 4.856 Downloading ConfigArgParse-1.7-py3-none-any.whl (25 kB)
#17 4.858 Using cached cryptography-43.0.3-cp39-abi3-manylinux_2_28_x86_64.whl (4.0 MB)
#17 4.867 Downloading defusedxml-0.7.1-py2.py3-none-any.whl (25 kB)
#17 4.872 Downloading frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274 kB)
#17 4.876 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 274.9/274.9 kB 102.6 MB/s eta 0:00:00
#17 4.882 Downloading greenlet-3.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (602 kB)
#17 4.887 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 602.4/602.4 kB 135.5 MB/s eta 0:00:00
#17 4.888 Using cached idna-3.10-py3-none-any.whl (70 kB)
#17 4.893 Downloading linkpreview-0.6.5-py3-none-any.whl (11 kB)
#17 4.897 Downloading Mako-1.3.6-py3-none-any.whl (78 kB)
#17 4.900 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.6/78.6 kB 42.9 MB/s eta 0:00:00
#17 4.904 Downloading MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23 kB)
#17 4.910 Downloading multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (129 kB)
#17 4.913 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 129.0/129.0 kB 63.8 MB/s eta 0:00:00
#17 4.917 Downloading pickle_secure-0.99.9-py3-none-any.whl (6.6 kB)
#17 4.925 Downloading pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl (4.5 MB)
#17 4.951 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 182.4 MB/s eta 0:00:00
#17 4.956 Downloading propcache-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (236 kB)
#17 4.959 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 236.0/236.0 kB 90.0 MB/s eta 0:00:00
#17 4.963 Downloading pyasn1_modules-0.4.1-py3-none-any.whl (181 kB)
#17 4.966 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 181.5/181.5 kB 83.4 MB/s eta 0:00:00
#17 4.970 Downloading pyasn1-0.6.1-py3-none-any.whl (83 kB)
#17 4.973 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 83.1/83.1 kB 44.1 MB/s eta 0:00:00
#17 4.978 Downloading PyBindGen-0.22.1-py2.py3-none-any.whl (152 kB)
#17 4.981 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 152.8/152.8 kB 67.3 MB/s eta 0:00:00
#17 4.987 Downloading pycares-4.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288 kB)
#17 4.991 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 288.7/288.7 kB 92.4 MB/s eta 0:00:00
#17 4.992 Using cached pycparser-2.22-py3-none-any.whl (117 kB)
#17 4.997 Downloading pypng-0.20220715.0-py3-none-any.whl (58 kB)
#17 5.000 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 58.1/58.1 kB 31.6 MB/s eta 0:00:00
#17 5.003 Downloading python_magic-0.4.27-py2.py3-none-any.whl (13 kB)
#17 5.009 Downloading qrcode-7.4.2-py3-none-any.whl (46 kB)
#17 5.011 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 46.2/46.2 kB 24.2 MB/s eta 0:00:00
#17 5.012 Using cached requests-2.32.3-py3-none-any.whl (64 kB)
#17 5.018 Downloading slidge-0.2.1-py3-none-any.whl (211 kB)
#17 5.021 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 211.0/211.0 kB 86.8 MB/s eta 0:00:00
#17 5.025 Downloading soupsieve-2.6-py3-none-any.whl (36 kB)
#17 5.034 Downloading SQLAlchemy-2.0.36-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB)
#17 5.054 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.2/3.2 MB 191.7 MB/s eta 0:00:00
#17 5.058 Downloading thumbhash-0.1.2-py3-none-any.whl (5.1 kB)
#17 5.063 Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB)
#17 5.066 Using cached urllib3-2.2.3-py3-none-any.whl (126 kB)
#17 5.070 Downloading yarl-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (343 kB)
#17 5.075 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 343.4/343.4 kB 101.9 MB/s eta 0:00:00
#17 5.110 Building wheels for collected packages: slixmpp
#17 5.111 Building wheel for slixmpp (pyproject.toml): started
#17 5.571 Building wheel for slixmpp (pyproject.toml): finished with status 'done'
#17 5.573 Created wheel for slixmpp: filename=slixmpp-1.8.5-py3-none-any.whl size=511619 sha256=3e0a3bdee5753936e104de02609d648de092888afe8cb06ed973600bc7036c7d
#17 5.573 Stored in directory: /root/.cache/pip/wheels/bd/36/1f/bb5720bf3bf0d3ad08642be1ea7c2c5e0b63bdf4e2a1dc8798
#17 5.577 Successfully built slixmpp
#17 5.709 Installing collected packages: pypng, pybindgen, brotli, urllib3, typing-extensions, thumbhash, soupsieve, python-magic, pycparser, pyasn1, propcache, pillow, multidict, markupsafe, idna, greenlet, frozenlist, defusedxml, configargparse, charset-normalizer, certifi, attrs, aiohappyeyeballs, yarl, sqlalchemy, requests, qrcode, pyasn1-modules, mako, cffi, beautifulsoup4, aiosignal, pycares, linkpreview, cryptography, alembic, aiohttp, pickle-secure, aiodns, slixmpp, slidge
#17 8.087 Successfully installed aiodns-3.2.0 aiohappyeyeballs-2.4.3 aiohttp-3.10.10 aiosignal-1.3.1 alembic-1.14.0 attrs-24.2.0 beautifulsoup4-4.12.3 brotli-1.1.0 certifi-2024.8.30 cffi-1.17.1 charset-normalizer-3.4.0 configargparse-1.7 cryptography-43.0.3 defusedxml-0.7.1 frozenlist-1.5.0 greenlet-3.1.1 idna-3.10 linkpreview-0.6.5 mako-1.3.6 markupsafe-3.0.2 multidict-6.1.0 pickle-secure-0.99.9 pillow-10.4.0 propcache-0.2.0 pyasn1-0.6.1 pyasn1-modules-0.4.1 pybindgen-0.22.1 pycares-4.4.0 pycparser-2.22 pypng-0.20220715.0 python-magic-0.4.27 qrcode-7.4.2 requests-2.32.3 slidge-0.2.1 slixmpp-1.8.5 soupsieve-2.6 sqlalchemy-2.0.36 thumbhash-0.1.2 typing-extensions-4.12.2 urllib3-2.2.3 yarl-1.17.1
#17 8.112
#17 8.112 [notice] A new release of pip is available: 24.0 -> 24.3.1
#17 8.112 [notice] To update, run: pip install --upgrade pip
#17 DONE 8.6s
#18 [builder 12/14] COPY ./slidge_whatsapp/*.go ./slidge_whatsapp/go.* /build/
#18 DONE 0.1s
#19 [builder 13/14] COPY ./slidge_whatsapp/media /build/media
#19 DONE 0.0s
#20 [builder 14/14] RUN gopy build -output=generated -no-make=true /build/
#20 0.052 go build -v /build/
#20 0.061 go: downloading github.com/h2non/filetype v1.1.3
#20 0.064 go: downloading github.com/mattn/go-sqlite3 v1.14.23
#20 0.244 go: downloading go.mau.fi/whatsmeow v0.0.0-20241009112614-70d73b690a8d
#20 0.324 go: downloading golang.org/x/image v0.15.0
#20 0.517 go: downloading github.com/google/uuid v1.6.0
#20 0.518 go: downloading github.com/gorilla/websocket v1.5.1
#20 0.531 go: downloading github.com/rs/zerolog v1.33.0
#20 0.540 go: downloading go.mau.fi/libsignal v0.1.1
#20 0.564 go: downloading go.mau.fi/util v0.8.0
#20 0.591 go: downloading golang.org/x/crypto v0.27.0
#20 0.688 go: downloading golang.org/x/net v0.29.0
#20 0.688 go: downloading google.golang.org/protobuf v1.34.2
#20 0.882 go: downloading github.com/mattn/go-colorable v0.1.13
#20 0.884 go: downloading filippo.io/edwards25519 v1.1.0
#20 0.897 go: downloading golang.org/x/sys v0.25.0
#20 0.936 go: downloading github.com/mattn/go-isatty v0.0.20
#20 1.114 golang.org/x/image/math/f64
#20 1.128 image/color
#20 1.132 golang.org/x/image/riff
#20 1.150 hash/adler32
#20 1.162 compress/zlib
#20 1.163 image
#20 1.198 github.com/h2non/filetype/matchers/isobmff
#20 1.210 github.com/h2non/filetype/types
#20 1.232 github.com/h2non/filetype/matchers
#20 1.317 github.com/h2non/filetype
#20 1.326 image/internal/imageutil
#20 1.337 image/draw
#20 1.373 golang.org/x/image/vp8
#20 1.397 golang.org/x/image/draw
#20 1.481 golang.org/x/image/vp8l
#20 1.548 golang.org/x/image/webp
#20 1.578 image/jpeg
#20 1.692 image/png
#20 1.791 crypto/internal/alias
#20 1.798 crypto/subtle
#20 1.812 crypto/cipher
#20 1.873 crypto/internal/boring/sig
#20 1.895 crypto/internal/boring
#20 1.917 crypto/sha1
#20 1.987 crypto/sha256
#20 2.010 git.sr.ht/~nicoco/slidge-whatsapp/slidge_whatsapp/media
#20 2.025 crypto/sha512
#20 2.060 database/sql/driver
#20 2.077 runtime/cgo
#20 2.131 database/sql
#20 2.426 crypto/aes
#20 2.478 crypto/hmac
#20 2.491 encoding/base32
#20 2.526 encoding/hex
#20 2.552 crypto/internal/randutil
#20 2.564 crypto/rand
#20 2.581 github.com/mattn/go-sqlite3
#20 2.590 vendor/golang.org/x/net/dns/dnsmessage
#20 2.810 internal/nettrace
#20 2.815 internal/singleflight
#20 2.826 internal/intern
#20 2.840 net/netip
#20 2.928 net
#20 4.168 github.com/google/uuid
#20 4.225 container/list
#20 4.241 crypto/des
#20 4.263 crypto/internal/edwards25519/field
#20 4.298 crypto/internal/nistec/fiat
#20 4.508 embed
#20 4.532 crypto/internal/nistec
#20 4.678 crypto/ecdh
#20 4.710 crypto/elliptic
#20 4.782 crypto/internal/bigmod
#20 4.837 crypto/internal/boring/bbig
#20 4.846 encoding/asn1
#20 4.970 vendor/golang.org/x/crypto/cryptobyte/asn1
#20 4.978 vendor/golang.org/x/crypto/cryptobyte
#20 5.080 crypto/ecdsa
#20 5.165 crypto/internal/edwards25519
#20 5.262 crypto/ed25519
#20 5.368 crypto/rc4
#20 5.378 crypto/rsa
#20 5.457 crypto/dsa
#20 5.477 crypto/x509/pkix
#20 5.502 encoding/pem
#20 5.524 crypto/x509
#20 5.850 vendor/golang.org/x/crypto/internal/alias
#20 5.858 vendor/golang.org/x/crypto/chacha20
#20 5.885 vendor/golang.org/x/crypto/internal/poly1305
#20 5.915 vendor/golang.org/x/sys/cpu
#20 5.942 vendor/golang.org/x/crypto/chacha20poly1305
#20 5.989 vendor/golang.org/x/crypto/hkdf
#20 5.999 crypto/tls
#20 6.828 golang.org/x/net/internal/socks
#20 6.870 golang.org/x/net/proxy
#20 6.897 vendor/golang.org/x/text/transform
#20 6.930 vendor/golang.org/x/text/unicode/bidi
#20 7.012 vendor/golang.org/x/text/secure/bidirule
#20 7.030 vendor/golang.org/x/text/unicode/norm
#20 7.209 vendor/golang.org/x/net/idna
#20 7.302 net/textproto
#20 7.347 vendor/golang.org/x/net/http/httpguts
#20 7.364 vendor/golang.org/x/net/http/httpproxy
#20 7.385 vendor/golang.org/x/net/http2/hpack
#20 7.445 mime
#20 7.529 mime/quotedprintable
#20 7.552 mime/multipart
#20 7.618 net/http/httptrace
#20 7.638 net/http/internal
#20 7.663 net/http/internal/ascii
#20 7.677 net/http
#20 9.318 github.com/gorilla/websocket
#20 9.445 golang.org/x/sys/unix
#20 10.00 github.com/mattn/go-isatty
#20 10.02 github.com/mattn/go-colorable
#20 10.03 github.com/rs/zerolog/internal/json
#20 10.09 github.com/rs/zerolog
#20 10.41 filippo.io/edwards25519/field
#20 10.44 filippo.io/edwards25519
#20 10.52 go.mau.fi/libsignal/logger
#20 10.53 golang.org/x/crypto/curve25519
#20 10.54 go.mau.fi/libsignal/ecc
#20 10.56 go.mau.fi/libsignal/cipher
#20 10.58 golang.org/x/crypto/hkdf
#20 10.60 go.mau.fi/libsignal/kdf
#20 10.60 go.mau.fi/libsignal/util/bytehelper
#20 10.61 go.mau.fi/libsignal/groups/ratchet
#20 10.62 go.mau.fi/libsignal/signalerror
#20 10.63 go.mau.fi/libsignal/groups/state/record
#20 10.67 go.mau.fi/libsignal/keys/identity
#20 10.68 go.mau.fi/libsignal/util/optional
#20 10.69 go.mau.fi/libsignal/protocol
#20 10.71 go.mau.fi/libsignal/groups/state/store
#20 10.72 go.mau.fi/libsignal/keys/message
#20 10.73 go.mau.fi/libsignal/keys/chain
#20 10.74 go.mau.fi/libsignal/keys/session
#20 10.75 go.mau.fi/libsignal/keys/root
#20 10.76 go.mau.fi/libsignal/util/errorhelper
#20 10.76 go.mau.fi/libsignal/state/record
#20 10.82 google.golang.org/protobuf/internal/detrand
#20 10.83 google.golang.org/protobuf/internal/errors
#20 10.85 google.golang.org/protobuf/encoding/protowire
#20 10.87 google.golang.org/protobuf/internal/pragma
#20 10.88 google.golang.org/protobuf/reflect/protoreflect
#20 11.02 google.golang.org/protobuf/internal/encoding/messageset
#20 11.04 google.golang.org/protobuf/internal/flags
#20 11.05 google.golang.org/protobuf/internal/genid
#20 11.07 google.golang.org/protobuf/internal/order
#20 11.09 google.golang.org/protobuf/internal/strs
#20 11.11 google.golang.org/protobuf/reflect/protoregistry
#20 11.16 google.golang.org/protobuf/runtime/protoiface
#20 11.17 google.golang.org/protobuf/proto
#20 11.27 google.golang.org/protobuf/internal/descfmt
#20 11.31 google.golang.org/protobuf/internal/descopts
#20 11.32 google.golang.org/protobuf/internal/editiondefaults
#20 11.32 google.golang.org/protobuf/internal/encoding/text
#20 11.42 google.golang.org/protobuf/internal/encoding/defval
#20 11.43 google.golang.org/protobuf/internal/filedesc
#20 11.72 google.golang.org/protobuf/internal/set
#20 11.73 google.golang.org/protobuf/encoding/prototext
#20 11.81 google.golang.org/protobuf/internal/encoding/tag
#20 11.83 google.golang.org/protobuf/internal/impl
#20 12.88 google.golang.org/protobuf/internal/filetype
#20 12.91 google.golang.org/protobuf/internal/version
#20 12.92 google.golang.org/protobuf/runtime/protoimpl
#20 12.93 go.mau.fi/libsignal/serialize
#20 13.04 go.mau.fi/libsignal/util/keyhelper
#20 13.05 go.mau.fi/libsignal/groups
#20 13.07 go.mau.fi/libsignal/keys/prekey
#20 13.08 go.mau.fi/libsignal/ratchet
#20 13.10 go.mau.fi/libsignal/state/store
#20 13.11 go.mau.fi/libsignal/util/medium
#20 13.12 go.mau.fi/libsignal/session
#20 13.16 go.mau.fi/util/fallocate
#20 13.18 go.mau.fi/util/random
#20 13.19 go.mau.fi/util/retryafter
#20 13.20 go.mau.fi/whatsmeow/util/hkdfutil
#20 13.21 go.mau.fi/whatsmeow/appstate/lthash
#20 13.21 go.mau.fi/whatsmeow/binary/token
#20 13.23 go.mau.fi/util/jsontime
#20 13.49 go.mau.fi/whatsmeow/proto/waAdv
#20 13.52 go.mau.fi/whatsmeow/proto/waCert
#20 13.54 go.mau.fi/whatsmeow/proto/waUserPassword
#20 13.57 go.mau.fi/whatsmeow/proto/waChatLockSettings
#20 13.59 go.mau.fi/whatsmeow/proto/waCommon
#20 13.62 go.mau.fi/whatsmeow/proto/waCompanionReg
#20 13.67 go.mau.fi/whatsmeow/proto/waDeviceCapabilities
#20 13.69 go.mau.fi/whatsmeow/proto/waMmsRetry
#20 13.71 go.mau.fi/whatsmeow/proto/waE2E
#20 14.84 go.mau.fi/whatsmeow/proto/waEphemeral
#20 14.88 go.mau.fi/whatsmeow/proto/waSyncAction
#20 15.10 go.mau.fi/whatsmeow/proto/waWeb
#20 15.26 go.mau.fi/whatsmeow/proto/waHistorySync
#20 15.38 go.mau.fi/whatsmeow/proto/armadilloutil
#20 15.39 go.mau.fi/whatsmeow/proto/waArmadilloXMA
#20 15.43 go.mau.fi/whatsmeow/proto/waArmadilloApplication
#20 15.53 go.mau.fi/whatsmeow/proto/waMediaTransport
#20 15.61 go.mau.fi/whatsmeow/proto/waConsumerApplication
#20 15.74 go.mau.fi/whatsmeow/proto/waMultiDevice
#20 15.78 go.mau.fi/whatsmeow/proto/waMsgApplication
#20 15.84 go.mau.fi/whatsmeow/proto/waMsgTransport
#20 15.89 go.mau.fi/whatsmeow/proto/waQuickPromotionSurfaces
#20 15.92 go.mau.fi/whatsmeow/proto/waServerSync
#20 15.96 go.mau.fi/whatsmeow/proto/waVnameCert
#20 16.00 go.mau.fi/whatsmeow/proto/waWa6
#20 16.08 go.mau.fi/whatsmeow/binary/proto
#20 16.15 go.mau.fi/whatsmeow/types
#20 16.23 go.mau.fi/whatsmeow/binary
#20 16.32 go.mau.fi/whatsmeow/util/keys
#20 16.33 go.mau.fi/whatsmeow/util/log
#20 16.35 go.mau.fi/whatsmeow/store
#20 16.41 go.mau.fi/whatsmeow/util/cbcutil
#20 16.43 go.mau.fi/whatsmeow/appstate
#20 16.50 go.mau.fi/whatsmeow/proto
#20 16.51 go.mau.fi/whatsmeow/util/gcmutil
#20 16.52 go.mau.fi/whatsmeow/socket
#20 16.56 go.mau.fi/whatsmeow/types/events
#20 16.67 golang.org/x/crypto/pbkdf2
#20 16.68 runtime/debug
#20 16.71 go.mau.fi/whatsmeow
#20 17.82 go.mau.fi/whatsmeow/store/sqlstore
#20 17.91 compress/lzw
#20 17.94 image/color/palette
#20 17.95 image/gif
#20 18.01 log/slog/internal
#20 18.01 log/slog/internal/buffer
#20 18.03 log/slog
#20 31.11 git.sr.ht/~nicoco/slidge-whatsapp/slidge_whatsapp
#20 33.32
#20 33.32 --- Processing package: git.sr.ht/~nicoco/slidge-whatsapp/slidge_whatsapp ---
#20 33.33 ignoring python incompatible method: time.func (time.Time).Date() (year int, month time.Month, day int): func() (year int, month time.Month, day int): gopy: too many results to return: func() (year int, month time.Month, day int)
#20 33.33 ignoring python incompatible method: time.func (time.Time).ISOWeek() (year int, week int): func() (year int, week int): gopy: second result value must be of type error: func() (year int, week int)
#20 33.33 ignoring python incompatible method: time.func (time.Time).Clock() (hour int, min int, sec int): func() (hour int, min int, sec int): gopy: too many results to return: func() (hour int, min int, sec int)
#20 33.33 ignoring python incompatible method: time.func (time.Time).Zone() (name string, offset int): func() (name string, offset int): gopy: second result value must be of type error: func() (name string, offset int)
#20 33.33 ignoring python incompatible method: time.func (time.Time).ZoneBounds() (start time.Time, end time.Time): func() (start time.Time, end time.Time): gopy: second result value must be of type error: func() (start time.Time, end time.Time)
#20 33.36
#20 33.36 --- building package ---
#20 33.36 gopy build -output=generated -no-make=true /build/
#20 33.36 goimports -w whatsapp.go
#20 33.65 go build -mod=mod -buildmode=c-shared -o whatsapp_go.so .
#20 73.14 /venv/bin/python build.py
#20 73.26 CGO_CFLAGS="-I/usr/local/include/python3.11" -fPIC -Ofast
#20 73.26 CGO_LDFLAGS="-L/usr/local/lib" "-lpython3.11" -ldl -lm
#20 73.26 go build -mod=mod -buildmode=c-shared -o _whatsapp.cpython-311-x86_64-linux-gnu.so .
#20 DONE 105.6s
#21 [builder-wheel 1/10] RUN pip install pybindgen
#21 0.442 Requirement already satisfied: pybindgen in /venv/lib/python3.11/site-packages (0.22.1)
#21 0.591
#21 0.591 [notice] A new release of pip is available: 24.0 -> 24.3.1
#21 0.591 [notice] To update, run: pip install --upgrade pip
#21 DONE 0.6s
#22 [builder-wheel 2/10] COPY go.* /build/
#22 DONE 0.0s
#23 [builder-wheel 3/10] COPY README.md /build/
#23 DONE 0.0s
#24 [builder-wheel 4/10] COPY slidge_whatsapp/*.py /build/slidge_whatsapp/
#24 DONE 0.0s
#25 [builder-wheel 5/10] COPY slidge_whatsapp/*.go /build/slidge_whatsapp/
#25 DONE 0.0s
#26 [builder-wheel 6/10] COPY slidge_whatsapp/media/*.go /build/slidge_whatsapp/media/
#26 DONE 0.0s
#27 [builder-wheel 7/10] COPY build.py /build/
#27 DONE 0.0s
#28 [builder-wheel 8/10] RUN poetry build
#28 0.361 Creating virtualenv slidge-whatsapp-XDF0t07c-py3.11 in /root/.cache/pypoetry/virtualenvs
#28 0.664 Preparing build environment with build-system requirements poetry-core, pybindgen
#28 1.743 Building slidge-whatsapp (0.0.0-dev+20241106_gitc91e5300b8)
#28 1.749 - Building sdist
#28 1.767 - Built slidge_whatsapp-0.0.0.dev0+20241106.gitc91e5300b8.tar.gz
#28 1.767 - Building wheel
#28 2.044 go build -v .
#28 2.161 git.sr.ht/~nicoco/slidge-whatsapp/slidge_whatsapp/slidge_whatsapp
#28 4.046
#28 4.046 --- Processing package: git.sr.ht/~nicoco/slidge-whatsapp/slidge_whatsapp/slidge_whatsapp ---
#28 4.047 ignoring python incompatible method: time.func (time.Time).Date() (year int, month time.Month, day int): func() (year int, month time.Month, day int): gopy: too many results to return: func() (year int, month time.Month, day int)
#28 4.047 ignoring python incompatible method: time.func (time.Time).ISOWeek() (year int, week int): func() (year int, week int): gopy: second result value must be of type error: func() (year int, week int)
#28 4.047 ignoring python incompatible method: time.func (time.Time).Clock() (hour int, min int, sec int): func() (hour int, min int, sec int): gopy: too many results to return: func() (hour int, min int, sec int)
#28 4.047 ignoring python incompatible method: time.func (time.Time).Zone() (name string, offset int): func() (name string, offset int): gopy: second result value must be of type error: func() (name string, offset int)
#28 4.047 ignoring python incompatible method: time.func (time.Time).ZoneBounds() (start time.Time, end time.Time): func() (start time.Time, end time.Time): gopy: second result value must be of type error: func() (start time.Time, end time.Time)
#28 4.074
#28 4.074 --- building package ---
#28 4.074 gopy build -output=generated -no-make=true .
#28 4.074 goimports -w whatsapp.go
#28 4.217 go build -mod=mod -buildmode=c-shared -o whatsapp_go.so .
#28 7.911 /venv/bin/python build.py
#28 8.011 CGO_CFLAGS="-I/usr/local/include/python3.11" -fPIC -Ofast
#28 8.011 CGO_LDFLAGS="-L/usr/local/lib" "-lpython3.11" -ldl -lm
#28 8.011 go build -mod=mod -buildmode=c-shared -o _whatsapp.cpython-311-x86_64-linux-gnu.so .
#28 13.04 - Built slidge_whatsapp-0.0.0.dev0+20241106.gitc91e5300b8-cp311-cp311-manylinux_2_36_x86_64.whl
#28 DONE 13.2s
#29 [builder-wheel 9/10] RUN ls -l ./dist
#29 0.078 total 9216
#29 0.078 -rw-r--r-- 1 root root 9390865 Nov 6 05:41 slidge_whatsapp-0.0.0.dev0+20241106.gitc91e5300b8-cp311-cp311-manylinux_2_36_x86_64.whl
#29 0.078 -rw-r--r-- 1 root root 41049 Nov 6 05:41 slidge_whatsapp-0.0.0.dev0+20241106.gitc91e5300b8.tar.gz
#29 DONE 0.1s
#30 [builder-wheel 10/10] RUN python --version
#30 0.064 Python 3.11.10
#30 DONE 0.1s
#31 [wheel 1/1] COPY --from=builder-wheel ./build/dist/* /
#31 DONE 0.0s
#32 exporting to client directory
#32 copying files 9.43MB 0.1s done
#32 DONE 0.1s
+ mkdir dist
+ mv dist-mess/slidge_whatsapp-0.0.0.dev0+20241106.gitc91e5300b8.tar.gz dist/
+ mv dist-mess/slidge_whatsapp-0.0.0.dev0+20241106.gitc91e5300b8-cp311-cp311-manylinux_2_36_x86_64.whl dist/
+ tar cvf /home/build/packages.tar dist/slidge_whatsapp-0.0.0.dev0+20241106.gitc91e5300b8-cp311-cp311-manylinux_2_36_x86_64.whl dist/slidge_whatsapp-0.0.0.dev0+20241106.gitc91e5300b8.tar.gz
dist/slidge_whatsapp-0.0.0.dev0+20241106.gitc91e5300b8-cp311-cp311-manylinux_2_36_x86_64.whl
dist/slidge_whatsapp-0.0.0.dev0+20241106.gitc91e5300b8.tar.gz
|