Artifact debusine:work-request-debug-logs

Metadata
{}

File

cmd-output.log
  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
cmd: autopkgtest --apt-upgrade --output-dir=artifact-dir --summary=artifact-dir/summary --no-built-binaries --needs-internet=run --copy=/etc/resolv.conf:/etc/resolv.conf /tmp/debusine-fetch-exec-upload-4u7ww26b/python3-rich_13.9.4-0.1_all.deb /tmp/debusine-fetch-exec-upload-4u7ww26b/python3-sphinx-theme-builder_0.2.0b2-3_all.deb /tmp/debusine-fetch-exec-upload-4u7ww26b/sphinx-theme-builder_0.2.0b2-3.dsc -- unshare --arch amd64 --release sid --tarball /var/lib/debusine/worker/system-images/1099747/system.tar.xz
output (contains stdout and stderr):
autopkgtest [14:04:32]: starting date and time: 2024-12-18 14:04:32+0000
autopkgtest [14:04:32]: version 5.38~bpo12+1
autopkgtest [14:04:32]: host debusine-worker-amd64-hades-03; command line: /usr/bin/autopkgtest --apt-upgrade --output-dir=artifact-dir --summary=artifact-dir/summary --no-built-binaries --needs-internet=run --copy=/etc/resolv.conf:/etc/resolv.conf /tmp/debusine-fetch-exec-upload-4u7ww26b/python3-rich_13.9.4-0.1_all.deb /tmp/debusine-fetch-exec-upload-4u7ww26b/python3-sphinx-theme-builder_0.2.0b2-3_all.deb /tmp/debusine-fetch-exec-upload-4u7ww26b/sphinx-theme-builder_0.2.0b2-3.dsc -- unshare --arch amd64 --release sid --tarball /var/lib/debusine/worker/system-images/1099747/system.tar.xz
autopkgtest [14:04:36]: testbed dpkg architecture: amd64
autopkgtest [14:04:36]: testbed apt version: 2.9.17
autopkgtest [14:04:36]: @@@@@@@@@@@@@@@@@@@@ test bed setup
Get:1 http://deb.debian.org/debian sid InRelease [202 kB]
Get:2 http://deb.debian.org/debian sid/main amd64 Packages [10.1 MB]
Get:3 http://deb.debian.org/debian sid/main Translation-en [7350 kB]
Get:4 http://deb.debian.org/debian sid/main amd64 Components [4974 kB]
Fetched 22.6 MB in 2s (9487 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
The following packages will be upgraded:
  gcc-14-base gettext gettext-base libatomic1 libgcc-s1 libgomp1 libstdc++6
7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 2779 kB of archives.
After this operation, 1024 B of additional disk space will be used.
Get:1 http://deb.debian.org/debian sid/main amd64 libatomic1 amd64 14.2.0-11 [9284 B]
Get:2 http://deb.debian.org/debian sid/main amd64 gcc-14-base amd64 14.2.0-11 [48.0 kB]
Get:3 http://deb.debian.org/debian sid/main amd64 libstdc++6 amd64 14.2.0-11 [713 kB]
Get:4 http://deb.debian.org/debian sid/main amd64 libgomp1 amd64 14.2.0-11 [137 kB]
Get:5 http://deb.debian.org/debian sid/main amd64 libgcc-s1 amd64 14.2.0-11 [72.7 kB]
Get:6 http://deb.debian.org/debian sid/main amd64 gettext-base amd64 0.22.5-3 [200 kB]
Get:7 http://deb.debian.org/debian sid/main amd64 gettext amd64 0.22.5-3 [1600 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 2779 kB in 0s (25.3 MB/s)
(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 ... 17030 files and directories currently installed.)
Preparing to unpack .../libatomic1_14.2.0-11_amd64.deb ...
Unpacking libatomic1:amd64 (14.2.0-11) over (14.2.0-8) ...
Preparing to unpack .../gcc-14-base_14.2.0-11_amd64.deb ...
Unpacking gcc-14-base:amd64 (14.2.0-11) over (14.2.0-8) ...
Setting up gcc-14-base:amd64 (14.2.0-11) ...
(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 ... 17030 files and directories currently installed.)
Preparing to unpack .../libstdc++6_14.2.0-11_amd64.deb ...
Unpacking libstdc++6:amd64 (14.2.0-11) over (14.2.0-8) ...
Setting up libstdc++6:amd64 (14.2.0-11) ...
(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 ... 17030 files and directories currently installed.)
Preparing to unpack .../libgomp1_14.2.0-11_amd64.deb ...
Unpacking libgomp1:amd64 (14.2.0-11) over (14.2.0-8) ...
Preparing to unpack .../libgcc-s1_14.2.0-11_amd64.deb ...
Unpacking libgcc-s1:amd64 (14.2.0-11) over (14.2.0-8) ...
Setting up libgcc-s1:amd64 (14.2.0-11) ...
(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 ... 17030 files and directories currently installed.)
Preparing to unpack .../gettext-base_0.22.5-3_amd64.deb ...
Unpacking gettext-base (0.22.5-3) over (0.22.5-2) ...
Preparing to unpack .../gettext_0.22.5-3_amd64.deb ...
Unpacking gettext (0.22.5-3) over (0.22.5-2) ...
Setting up gettext-base (0.22.5-3) ...
Setting up libgomp1:amd64 (14.2.0-11) ...
Setting up libatomic1:amd64 (14.2.0-11) ...
Setting up gettext (0.22.5-3) ...
Processing triggers for man-db (2.13.0-1) ...
Processing triggers for libc-bin (2.40-4) ...
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
autopkgtest [14:04:43]: testbed running kernel: Linux 6.1.0-28-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.119-1 (2024-11-22)
autopkgtest [14:04:43]: @@@@@@@@@@@@@@@@@@@@ source /tmp/debusine-fetch-exec-upload-4u7ww26b/sphinx-theme-builder_0.2.0b2-3.dsc
gpgv: Signature made Mon Oct  7 15:17:43 2024 UTC
gpgv:                using RSA key 21C9A18D855396669BD2D8E9F9154FDE143E4BAF
gpgv: Can't check signature: No public key
dpkg-source: warning: cannot verify inline signature for /tmp/autopkgtest.mg2Uf2/sphinx-theme-builder_0.2.0b2-3.dsc: no acceptable signature found
dpkg-source: info: extracting sphinx-theme-builder in src
dpkg-source: info: unpacking sphinx-theme-builder_0.2.0b2.orig.tar.gz
dpkg-source: info: unpacking sphinx-theme-builder_0.2.0b2-3.debian.tar.xz
autopkgtest [14:04:44]: testing package sphinx-theme-builder version 0.2.0b2-3
autopkgtest [14:04:44]: build not needed
autopkgtest [14:04:44]: test pytest: preparing testbed
Reading package lists...
Building dependency tree...
Reading state information...
The following NEW packages will be installed:
  apt-utils
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 328 kB of archives.
After this operation, 1097 kB of additional disk space will be used.
Get:1 http://deb.debian.org/debian sid/main amd64 apt-utils amd64 2.9.17 [328 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 328 kB in 0s (7979 kB/s)
Selecting previously unselected package apt-utils.
(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 ... 17030 files and directories currently installed.)
Preparing to unpack .../apt-utils_2.9.17_amd64.deb ...
Unpacking apt-utils (2.9.17) ...
Setting up apt-utils (2.9.17) ...
Processing triggers for man-db (2.13.0-1) ...
Ign:1 file:/tmp/autopkgtest.mg2Uf2/binaries  InRelease
Get:2 file:/tmp/autopkgtest.mg2Uf2/binaries  Release [816 B]
Get:2 file:/tmp/autopkgtest.mg2Uf2/binaries  Release [816 B]
Ign:3 file:/tmp/autopkgtest.mg2Uf2/binaries  Release.gpg
Get:4 file:/tmp/autopkgtest.mg2Uf2/binaries  Packages [3803 B]
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Starting pkgProblemResolver with broken count: 0
Starting 2 pkgProblemResolver with broken count: 0
Done
The following NEW packages will be installed:
  cpp cpp-14 cpp-14-x86-64-linux-gnu cpp-x86-64-linux-gnu docutils-common g++
  g++-14 g++-14-x86-64-linux-gnu g++-x86-64-linux-gnu gcc gcc-14
  gcc-14-x86-64-linux-gnu gcc-x86-64-linux-gnu libasan8 libc-dev-bin libc6-dev
  libcc1-0 libcrypt-dev libexpat1 libgcc-14-dev libhwasan0 libisl23 libitm1
  libjs-jquery libjs-sphinxdoc libjs-underscore libjson-perl liblsan0 libmpc3
  libmpfr6 libnsl2 libpython3-stdlib libpython3.12-minimal
  libpython3.12-stdlib libpython3.13-minimal libpython3.13-stdlib libquadmath0
  libssl-dev libstdc++-14-dev libtirpc-common libtirpc3t64 libtsan2 libubsan1
  libuv1t64 linux-libc-dev media-types nodeenv python-babel-localedata python3
  python3-alabaster python3-all python3-anyio python3-autocommand
  python3-babel python3-build python3-certifi python3-chardet
  python3-charset-normalizer python3-click python3-colorama python3-defusedxml
  python3-docutils python3-h11 python3-idna python3-imagesize python3-inflect
  python3-iniconfig python3-jaraco.context python3-jaraco.functools
  python3-jinja2 python3-livereload python3-markdown-it python3-markupsafe
  python3-mdurl python3-minimal python3-more-itertools python3-packaging
  python3-pkg-resources python3-pluggy python3-pygments
  python3-pyproject-hooks python3-pyproject-metadata python3-pytest
  python3-requests python3-rich python3-roman python3-sniffio
  python3-snowballstemmer python3-sphinx python3-sphinx-autobuild
  python3-sphinx-theme-builder python3-starlette python3-toml python3-tornado
  python3-typeguard python3-typing-extensions python3-urllib3 python3-uvicorn
  python3-uvloop python3-watchfiles python3-websockets python3-wheel
  python3-wsproto python3.12 python3.12-minimal python3.13 python3.13-minimal
  rpcsvc-proto sgml-base sphinx-common xml-core
0 upgraded, 111 newly installed, 0 to remove and 0 not upgraded.
Need to get 92.7 MB/92.9 MB of archives.
After this operation, 373 MB of additional disk space will be used.
Get:1 file:/tmp/autopkgtest.mg2Uf2/binaries  python3-rich 13.9.4-0.1 [203 kB]
Get:2 file:/tmp/autopkgtest.mg2Uf2/binaries  python3-sphinx-theme-builder 0.2.0b2-3 [23.6 kB]
Get:3 http://deb.debian.org/debian sid/main amd64 libpython3.12-minimal amd64 3.12.8-3 [817 kB]
Get:4 http://deb.debian.org/debian sid/main amd64 libexpat1 amd64 2.6.4-1 [106 kB]
Get:5 http://deb.debian.org/debian sid/main amd64 python3.12-minimal amd64 3.12.8-3 [2162 kB]
Get:6 http://deb.debian.org/debian sid/main amd64 python3-minimal amd64 3.12.7-1 [26.8 kB]
Get:7 http://deb.debian.org/debian sid/main amd64 media-types all 10.1.0 [26.9 kB]
Get:8 http://deb.debian.org/debian sid/main amd64 libtirpc-common all 1.3.4+ds-1.3 [10.9 kB]
Get:9 http://deb.debian.org/debian sid/main amd64 libtirpc3t64 amd64 1.3.4+ds-1.3+b1 [83.1 kB]
Get:10 http://deb.debian.org/debian sid/main amd64 libnsl2 amd64 1.3.0-3+b3 [40.6 kB]
Get:11 http://deb.debian.org/debian sid/main amd64 libpython3.12-stdlib amd64 3.12.8-3 [1969 kB]
Get:12 http://deb.debian.org/debian sid/main amd64 python3.12 amd64 3.12.8-3 [677 kB]
Get:13 http://deb.debian.org/debian sid/main amd64 libpython3-stdlib amd64 3.12.7-1 [9712 B]
Get:14 http://deb.debian.org/debian sid/main amd64 python3 amd64 3.12.7-1 [27.8 kB]
Get:15 http://deb.debian.org/debian sid/main amd64 libpython3.13-minimal amd64 3.13.1-2 [858 kB]
Get:16 http://deb.debian.org/debian sid/main amd64 python3.13-minimal amd64 3.13.1-2 [2198 kB]
Get:17 http://deb.debian.org/debian sid/main amd64 sgml-base all 1.31 [15.4 kB]
Get:18 http://deb.debian.org/debian sid/main amd64 libisl23 amd64 0.27-1 [659 kB]
Get:19 http://deb.debian.org/debian sid/main amd64 libmpfr6 amd64 4.2.1-1+b2 [724 kB]
Get:20 http://deb.debian.org/debian sid/main amd64 libmpc3 amd64 1.3.1-1+b3 [52.2 kB]
Get:21 http://deb.debian.org/debian sid/main amd64 cpp-14-x86-64-linux-gnu amd64 14.2.0-11 [11.0 MB]
Get:22 http://deb.debian.org/debian sid/main amd64 cpp-14 amd64 14.2.0-11 [1284 B]
Get:23 http://deb.debian.org/debian sid/main amd64 cpp-x86-64-linux-gnu amd64 4:14.2.0-1 [4840 B]
Get:24 http://deb.debian.org/debian sid/main amd64 cpp amd64 4:14.2.0-1 [1568 B]
Get:25 http://deb.debian.org/debian sid/main amd64 xml-core all 0.19 [20.1 kB]
Get:26 http://deb.debian.org/debian sid/main amd64 docutils-common all 0.21.2+dfsg-2 [128 kB]
Get:27 http://deb.debian.org/debian sid/main amd64 libcc1-0 amd64 14.2.0-11 [42.9 kB]
Get:28 http://deb.debian.org/debian sid/main amd64 libitm1 amd64 14.2.0-11 [26.0 kB]
Get:29 http://deb.debian.org/debian sid/main amd64 libasan8 amd64 14.2.0-11 [2728 kB]
Get:30 http://deb.debian.org/debian sid/main amd64 liblsan0 amd64 14.2.0-11 [1205 kB]
Get:31 http://deb.debian.org/debian sid/main amd64 libtsan2 amd64 14.2.0-11 [2461 kB]
Get:32 http://deb.debian.org/debian sid/main amd64 libubsan1 amd64 14.2.0-11 [1075 kB]
Get:33 http://deb.debian.org/debian sid/main amd64 libhwasan0 amd64 14.2.0-11 [1489 kB]
Get:34 http://deb.debian.org/debian sid/main amd64 libquadmath0 amd64 14.2.0-11 [146 kB]
Get:35 http://deb.debian.org/debian sid/main amd64 libgcc-14-dev amd64 14.2.0-11 [2673 kB]
Get:36 http://deb.debian.org/debian sid/main amd64 gcc-14-x86-64-linux-gnu amd64 14.2.0-11 [21.4 MB]
Get:37 http://deb.debian.org/debian sid/main amd64 gcc-14 amd64 14.2.0-11 [534 kB]
Get:38 http://deb.debian.org/debian sid/main amd64 gcc-x86-64-linux-gnu amd64 4:14.2.0-1 [1436 B]
Get:39 http://deb.debian.org/debian sid/main amd64 gcc amd64 4:14.2.0-1 [5136 B]
Get:40 http://deb.debian.org/debian sid/main amd64 libc-dev-bin amd64 2.40-4 [52.0 kB]
Get:41 http://deb.debian.org/debian sid/main amd64 linux-libc-dev all 6.12.5-1 [2474 kB]
Get:42 http://deb.debian.org/debian sid/main amd64 libcrypt-dev amd64 1:4.4.36-5 [118 kB]
Get:43 http://deb.debian.org/debian sid/main amd64 rpcsvc-proto amd64 1.4.3-1 [63.3 kB]
Get:44 http://deb.debian.org/debian sid/main amd64 libc6-dev amd64 2.40-4 [1954 kB]
Get:45 http://deb.debian.org/debian sid/main amd64 libstdc++-14-dev amd64 14.2.0-11 [2373 kB]
Get:46 http://deb.debian.org/debian sid/main amd64 g++-14-x86-64-linux-gnu amd64 14.2.0-11 [12.1 MB]
Get:47 http://deb.debian.org/debian sid/main amd64 g++-14 amd64 14.2.0-11 [20.4 kB]
Get:48 http://deb.debian.org/debian sid/main amd64 g++-x86-64-linux-gnu amd64 4:14.2.0-1 [1200 B]
Get:49 http://deb.debian.org/debian sid/main amd64 g++ amd64 4:14.2.0-1 [1344 B]
Get:50 http://deb.debian.org/debian sid/main amd64 libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [326 kB]
Get:51 http://deb.debian.org/debian sid/main amd64 libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [116 kB]
Get:52 http://deb.debian.org/debian sid/main amd64 libjs-sphinxdoc all 8.1.3-2 [30.3 kB]
Get:53 http://deb.debian.org/debian sid/main amd64 libjson-perl all 4.10000-1 [87.5 kB]
Get:54 http://deb.debian.org/debian sid/main amd64 libpython3.13-stdlib amd64 3.13.1-2 [1975 kB]
Get:55 http://deb.debian.org/debian sid/main amd64 libssl-dev amd64 3.3.2-2 [2742 kB]
Get:56 http://deb.debian.org/debian sid/main amd64 libuv1t64 amd64 1.48.0-7 [148 kB]
Get:57 http://deb.debian.org/debian sid/main amd64 python3-autocommand all 2.2.2-3 [13.6 kB]
Get:58 http://deb.debian.org/debian sid/main amd64 python3-more-itertools all 10.5.0-1 [63.8 kB]
Get:59 http://deb.debian.org/debian sid/main amd64 python3-typing-extensions all 4.12.2-2 [73.0 kB]
Get:60 http://deb.debian.org/debian sid/main amd64 python3-typeguard all 4.4.1-1 [37.0 kB]
Get:61 http://deb.debian.org/debian sid/main amd64 python3-inflect all 7.3.1-2 [32.4 kB]
Get:62 http://deb.debian.org/debian sid/main amd64 python3-jaraco.context all 6.0.0-1 [7984 B]
Get:63 http://deb.debian.org/debian sid/main amd64 python3-jaraco.functools all 4.1.0-1 [12.0 kB]
Get:64 http://deb.debian.org/debian sid/main amd64 python3-pkg-resources all 75.6.0-1 [222 kB]
Get:65 http://deb.debian.org/debian sid/main amd64 nodeenv all 1.9.1-1 [25.5 kB]
Get:66 http://deb.debian.org/debian sid/main amd64 python-babel-localedata all 2.16.0-1 [5696 kB]
Get:67 http://deb.debian.org/debian sid/main amd64 python3-alabaster all 0.7.16-0.1 [27.9 kB]
Get:68 http://deb.debian.org/debian sid/main amd64 python3.13 amd64 3.13.1-2 [740 kB]
Get:69 http://deb.debian.org/debian sid/main amd64 python3-all amd64 3.12.7-1 [1052 B]
Get:70 http://deb.debian.org/debian sid/main amd64 python3-idna all 3.8-2 [41.6 kB]
Get:71 http://deb.debian.org/debian sid/main amd64 python3-sniffio all 1.3.1-1 [7120 B]
Get:72 http://deb.debian.org/debian sid/main amd64 python3-anyio all 4.6.2-4 [60.0 kB]
Get:73 http://deb.debian.org/debian sid/main amd64 python3-babel all 2.16.0-1 [114 kB]
Get:74 http://deb.debian.org/debian sid/main amd64 python3-packaging all 24.2-1 [55.3 kB]
Get:75 http://deb.debian.org/debian sid/main amd64 python3-pyproject-hooks all 1.2.0-1 [11.7 kB]
Get:76 http://deb.debian.org/debian sid/main amd64 python3-toml all 0.10.2-1 [16.2 kB]
Get:77 http://deb.debian.org/debian sid/main amd64 python3-wheel all 0.45.1-1 [56.7 kB]
Get:78 http://deb.debian.org/debian sid/main amd64 python3-build all 1.2.2-1 [36.0 kB]
Get:79 http://deb.debian.org/debian sid/main amd64 python3-certifi all 2024.8.30+dfsg-1 [9576 B]
Get:80 http://deb.debian.org/debian sid/main amd64 python3-chardet all 5.2.0+dfsg-1 [107 kB]
Get:81 http://deb.debian.org/debian sid/main amd64 python3-charset-normalizer amd64 3.4.0-1+b1 [140 kB]
Get:82 http://deb.debian.org/debian sid/main amd64 python3-colorama all 0.4.6-4 [36.2 kB]
Get:83 http://deb.debian.org/debian sid/main amd64 python3-click all 8.1.7-2 [94.3 kB]
Get:84 http://deb.debian.org/debian sid/main amd64 python3-defusedxml all 0.7.1-3 [43.4 kB]
Get:85 http://deb.debian.org/debian sid/main amd64 python3-roman all 4.2-1 [10.4 kB]
Get:86 http://deb.debian.org/debian sid/main amd64 python3-docutils all 0.21.2+dfsg-2 [403 kB]
Get:87 http://deb.debian.org/debian sid/main amd64 python3-h11 all 0.14.0-1 [50.1 kB]
Get:88 http://deb.debian.org/debian sid/main amd64 python3-imagesize all 1.4.1-1 [6688 B]
Get:89 http://deb.debian.org/debian sid/main amd64 python3-iniconfig all 1.1.1-2 [6396 B]
Get:90 http://deb.debian.org/debian sid/main amd64 python3-markupsafe amd64 2.1.5-1+b2 [13.9 kB]
Get:91 http://deb.debian.org/debian sid/main amd64 python3-jinja2 all 3.1.3-1.1 [120 kB]
Get:92 http://deb.debian.org/debian sid/main amd64 python3-tornado amd64 6.4.2-1 [349 kB]
Get:93 http://deb.debian.org/debian sid/main amd64 python3-livereload all 2.7.0-0.1 [23.7 kB]
Get:94 http://deb.debian.org/debian sid/main amd64 python3-mdurl all 0.1.2-1 [9444 B]
Get:95 http://deb.debian.org/debian sid/main amd64 python3-markdown-it all 3.0.0-2 [62.5 kB]
Get:96 http://deb.debian.org/debian sid/main amd64 python3-pluggy all 1.5.0-1 [26.9 kB]
Get:97 http://deb.debian.org/debian sid/main amd64 python3-pygments all 2.18.0+dfsg-1 [836 kB]
Get:98 http://deb.debian.org/debian sid/main amd64 python3-pyproject-metadata all 0.9.0-1 [20.8 kB]
Get:99 http://deb.debian.org/debian sid/main amd64 python3-pytest all 8.3.4-1 [250 kB]
Get:100 http://deb.debian.org/debian sid/main amd64 python3-urllib3 all 2.2.3-4 [112 kB]
Get:101 http://deb.debian.org/debian sid/main amd64 python3-requests all 2.32.3+dfsg-1 [71.9 kB]
Get:102 http://deb.debian.org/debian sid/main amd64 python3-snowballstemmer all 2.2.0-4 [58.0 kB]
Get:103 http://deb.debian.org/debian sid/main amd64 sphinx-common all 8.1.3-2 [616 kB]
Get:104 http://deb.debian.org/debian sid/main amd64 python3-sphinx all 8.1.3-2 [468 kB]
Get:105 http://deb.debian.org/debian sid/main amd64 python3-starlette all 0.41.3-2 [51.2 kB]
Get:106 http://deb.debian.org/debian sid/main amd64 python3-wsproto all 1.2.0-1 [25.4 kB]
Get:107 http://deb.debian.org/debian sid/main amd64 python3-uvloop amd64 0.21.0+ds1-1+b1 [803 kB]
Get:108 http://deb.debian.org/debian sid/main amd64 python3-uvicorn all 0.32.0-2 [50.8 kB]
Get:109 http://deb.debian.org/debian sid/main amd64 python3-watchfiles amd64 0.24.0-1+b1 [354 kB]
Get:110 http://deb.debian.org/debian sid/main amd64 python3-websockets amd64 14.1-1 [89.2 kB]
Get:111 http://deb.debian.org/debian sid/main amd64 python3-sphinx-autobuild all 2024.10.03-1 [12.9 kB]
Fetched 92.7 MB in 1s (98.7 MB/s)
Selecting previously unselected package libpython3.12-minimal:amd64.
(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 ... 17112 files and directories currently installed.)
Preparing to unpack .../libpython3.12-minimal_3.12.8-3_amd64.deb ...
Unpacking libpython3.12-minimal:amd64 (3.12.8-3) ...
Selecting previously unselected package libexpat1:amd64.
Preparing to unpack .../libexpat1_2.6.4-1_amd64.deb ...
Unpacking libexpat1:amd64 (2.6.4-1) ...
Selecting previously unselected package python3.12-minimal.
Preparing to unpack .../python3.12-minimal_3.12.8-3_amd64.deb ...
Unpacking python3.12-minimal (3.12.8-3) ...
Setting up libpython3.12-minimal:amd64 (3.12.8-3) ...
Setting up libexpat1:amd64 (2.6.4-1) ...
Setting up python3.12-minimal (3.12.8-3) ...
Selecting previously unselected package python3-minimal.
(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 ... 17432 files and directories currently installed.)
Preparing to unpack .../0-python3-minimal_3.12.7-1_amd64.deb ...
Unpacking python3-minimal (3.12.7-1) ...
Selecting previously unselected package media-types.
Preparing to unpack .../1-media-types_10.1.0_all.deb ...
Unpacking media-types (10.1.0) ...
Selecting previously unselected package libtirpc-common.
Preparing to unpack .../2-libtirpc-common_1.3.4+ds-1.3_all.deb ...
Unpacking libtirpc-common (1.3.4+ds-1.3) ...
Selecting previously unselected package libtirpc3t64:amd64.
Preparing to unpack .../3-libtirpc3t64_1.3.4+ds-1.3+b1_amd64.deb ...
Adding 'diversion of /lib/x86_64-linux-gnu/libtirpc.so.3 to /lib/x86_64-linux-gnu/libtirpc.so.3.usr-is-merged by libtirpc3t64'
Adding 'diversion of /lib/x86_64-linux-gnu/libtirpc.so.3.0.0 to /lib/x86_64-linux-gnu/libtirpc.so.3.0.0.usr-is-merged by libtirpc3t64'
Unpacking libtirpc3t64:amd64 (1.3.4+ds-1.3+b1) ...
Selecting previously unselected package libnsl2:amd64.
Preparing to unpack .../4-libnsl2_1.3.0-3+b3_amd64.deb ...
Unpacking libnsl2:amd64 (1.3.0-3+b3) ...
Selecting previously unselected package libpython3.12-stdlib:amd64.
Preparing to unpack .../5-libpython3.12-stdlib_3.12.8-3_amd64.deb ...
Unpacking libpython3.12-stdlib:amd64 (3.12.8-3) ...
Selecting previously unselected package python3.12.
Preparing to unpack .../6-python3.12_3.12.8-3_amd64.deb ...
Unpacking python3.12 (3.12.8-3) ...
Selecting previously unselected package libpython3-stdlib:amd64.
Preparing to unpack .../7-libpython3-stdlib_3.12.7-1_amd64.deb ...
Unpacking libpython3-stdlib:amd64 (3.12.7-1) ...
Setting up python3-minimal (3.12.7-1) ...
Selecting previously unselected package python3.
(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 ... 17898 files and directories currently installed.)
Preparing to unpack .../00-python3_3.12.7-1_amd64.deb ...
Unpacking python3 (3.12.7-1) ...
Selecting previously unselected package libpython3.13-minimal:amd64.
Preparing to unpack .../01-libpython3.13-minimal_3.13.1-2_amd64.deb ...
Unpacking libpython3.13-minimal:amd64 (3.13.1-2) ...
Selecting previously unselected package python3.13-minimal.
Preparing to unpack .../02-python3.13-minimal_3.13.1-2_amd64.deb ...
Unpacking python3.13-minimal (3.13.1-2) ...
Selecting previously unselected package sgml-base.
Preparing to unpack .../03-sgml-base_1.31_all.deb ...
Unpacking sgml-base (1.31) ...
Selecting previously unselected package libisl23:amd64.
Preparing to unpack .../04-libisl23_0.27-1_amd64.deb ...
Unpacking libisl23:amd64 (0.27-1) ...
Selecting previously unselected package libmpfr6:amd64.
Preparing to unpack .../05-libmpfr6_4.2.1-1+b2_amd64.deb ...
Unpacking libmpfr6:amd64 (4.2.1-1+b2) ...
Selecting previously unselected package libmpc3:amd64.
Preparing to unpack .../06-libmpc3_1.3.1-1+b3_amd64.deb ...
Unpacking libmpc3:amd64 (1.3.1-1+b3) ...
Selecting previously unselected package cpp-14-x86-64-linux-gnu.
Preparing to unpack .../07-cpp-14-x86-64-linux-gnu_14.2.0-11_amd64.deb ...
Unpacking cpp-14-x86-64-linux-gnu (14.2.0-11) ...
Selecting previously unselected package cpp-14.
Preparing to unpack .../08-cpp-14_14.2.0-11_amd64.deb ...
Unpacking cpp-14 (14.2.0-11) ...
Selecting previously unselected package cpp-x86-64-linux-gnu.
Preparing to unpack .../09-cpp-x86-64-linux-gnu_4%3a14.2.0-1_amd64.deb ...
Unpacking cpp-x86-64-linux-gnu (4:14.2.0-1) ...
Selecting previously unselected package cpp.
Preparing to unpack .../10-cpp_4%3a14.2.0-1_amd64.deb ...
Unpacking cpp (4:14.2.0-1) ...
Selecting previously unselected package xml-core.
Preparing to unpack .../11-xml-core_0.19_all.deb ...
Unpacking xml-core (0.19) ...
Selecting previously unselected package docutils-common.
Preparing to unpack .../12-docutils-common_0.21.2+dfsg-2_all.deb ...
Unpacking docutils-common (0.21.2+dfsg-2) ...
Selecting previously unselected package libcc1-0:amd64.
Preparing to unpack .../13-libcc1-0_14.2.0-11_amd64.deb ...
Unpacking libcc1-0:amd64 (14.2.0-11) ...
Selecting previously unselected package libitm1:amd64.
Preparing to unpack .../14-libitm1_14.2.0-11_amd64.deb ...
Unpacking libitm1:amd64 (14.2.0-11) ...
Selecting previously unselected package libasan8:amd64.
Preparing to unpack .../15-libasan8_14.2.0-11_amd64.deb ...
Unpacking libasan8:amd64 (14.2.0-11) ...
Selecting previously unselected package liblsan0:amd64.
Preparing to unpack .../16-liblsan0_14.2.0-11_amd64.deb ...
Unpacking liblsan0:amd64 (14.2.0-11) ...
Selecting previously unselected package libtsan2:amd64.
Preparing to unpack .../17-libtsan2_14.2.0-11_amd64.deb ...
Unpacking libtsan2:amd64 (14.2.0-11) ...
Selecting previously unselected package libubsan1:amd64.
Preparing to unpack .../18-libubsan1_14.2.0-11_amd64.deb ...
Unpacking libubsan1:amd64 (14.2.0-11) ...
Selecting previously unselected package libhwasan0:amd64.
Preparing to unpack .../19-libhwasan0_14.2.0-11_amd64.deb ...
Unpacking libhwasan0:amd64 (14.2.0-11) ...
Selecting previously unselected package libquadmath0:amd64.
Preparing to unpack .../20-libquadmath0_14.2.0-11_amd64.deb ...
Unpacking libquadmath0:amd64 (14.2.0-11) ...
Selecting previously unselected package libgcc-14-dev:amd64.
Preparing to unpack .../21-libgcc-14-dev_14.2.0-11_amd64.deb ...
Unpacking libgcc-14-dev:amd64 (14.2.0-11) ...
Selecting previously unselected package gcc-14-x86-64-linux-gnu.
Preparing to unpack .../22-gcc-14-x86-64-linux-gnu_14.2.0-11_amd64.deb ...
Unpacking gcc-14-x86-64-linux-gnu (14.2.0-11) ...
Selecting previously unselected package gcc-14.
Preparing to unpack .../23-gcc-14_14.2.0-11_amd64.deb ...
Unpacking gcc-14 (14.2.0-11) ...
Selecting previously unselected package gcc-x86-64-linux-gnu.
Preparing to unpack .../24-gcc-x86-64-linux-gnu_4%3a14.2.0-1_amd64.deb ...
Unpacking gcc-x86-64-linux-gnu (4:14.2.0-1) ...
Selecting previously unselected package gcc.
Preparing to unpack .../25-gcc_4%3a14.2.0-1_amd64.deb ...
Unpacking gcc (4:14.2.0-1) ...
Selecting previously unselected package libc-dev-bin.
Preparing to unpack .../26-libc-dev-bin_2.40-4_amd64.deb ...
Unpacking libc-dev-bin (2.40-4) ...
Selecting previously unselected package linux-libc-dev.
Preparing to unpack .../27-linux-libc-dev_6.12.5-1_all.deb ...
Unpacking linux-libc-dev (6.12.5-1) ...
Selecting previously unselected package libcrypt-dev:amd64.
Preparing to unpack .../28-libcrypt-dev_1%3a4.4.36-5_amd64.deb ...
Unpacking libcrypt-dev:amd64 (1:4.4.36-5) ...
Selecting previously unselected package rpcsvc-proto.
Preparing to unpack .../29-rpcsvc-proto_1.4.3-1_amd64.deb ...
Unpacking rpcsvc-proto (1.4.3-1) ...
Selecting previously unselected package libc6-dev:amd64.
Preparing to unpack .../30-libc6-dev_2.40-4_amd64.deb ...
Unpacking libc6-dev:amd64 (2.40-4) ...
Selecting previously unselected package libstdc++-14-dev:amd64.
Preparing to unpack .../31-libstdc++-14-dev_14.2.0-11_amd64.deb ...
Unpacking libstdc++-14-dev:amd64 (14.2.0-11) ...
Selecting previously unselected package g++-14-x86-64-linux-gnu.
Preparing to unpack .../32-g++-14-x86-64-linux-gnu_14.2.0-11_amd64.deb ...
Unpacking g++-14-x86-64-linux-gnu (14.2.0-11) ...
Selecting previously unselected package g++-14.
Preparing to unpack .../33-g++-14_14.2.0-11_amd64.deb ...
Unpacking g++-14 (14.2.0-11) ...
Selecting previously unselected package g++-x86-64-linux-gnu.
Preparing to unpack .../34-g++-x86-64-linux-gnu_4%3a14.2.0-1_amd64.deb ...
Unpacking g++-x86-64-linux-gnu (4:14.2.0-1) ...
Selecting previously unselected package g++.
Preparing to unpack .../35-g++_4%3a14.2.0-1_amd64.deb ...
Unpacking g++ (4:14.2.0-1) ...
Selecting previously unselected package libjs-jquery.
Preparing to unpack .../36-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ...
Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
Selecting previously unselected package libjs-underscore.
Preparing to unpack .../37-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ...
Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ...
Selecting previously unselected package libjs-sphinxdoc.
Preparing to unpack .../38-libjs-sphinxdoc_8.1.3-2_all.deb ...
Unpacking libjs-sphinxdoc (8.1.3-2) ...
Selecting previously unselected package libjson-perl.
Preparing to unpack .../39-libjson-perl_4.10000-1_all.deb ...
Unpacking libjson-perl (4.10000-1) ...
Selecting previously unselected package libpython3.13-stdlib:amd64.
Preparing to unpack .../40-libpython3.13-stdlib_3.13.1-2_amd64.deb ...
Unpacking libpython3.13-stdlib:amd64 (3.13.1-2) ...
Selecting previously unselected package libssl-dev:amd64.
Preparing to unpack .../41-libssl-dev_3.3.2-2_amd64.deb ...
Unpacking libssl-dev:amd64 (3.3.2-2) ...
Selecting previously unselected package libuv1t64:amd64.
Preparing to unpack .../42-libuv1t64_1.48.0-7_amd64.deb ...
Unpacking libuv1t64:amd64 (1.48.0-7) ...
Selecting previously unselected package python3-autocommand.
Preparing to unpack .../43-python3-autocommand_2.2.2-3_all.deb ...
Unpacking python3-autocommand (2.2.2-3) ...
Selecting previously unselected package python3-more-itertools.
Preparing to unpack .../44-python3-more-itertools_10.5.0-1_all.deb ...
Unpacking python3-more-itertools (10.5.0-1) ...
Selecting previously unselected package python3-typing-extensions.
Preparing to unpack .../45-python3-typing-extensions_4.12.2-2_all.deb ...
Unpacking python3-typing-extensions (4.12.2-2) ...
Selecting previously unselected package python3-typeguard.
Preparing to unpack .../46-python3-typeguard_4.4.1-1_all.deb ...
Unpacking python3-typeguard (4.4.1-1) ...
Selecting previously unselected package python3-inflect.
Preparing to unpack .../47-python3-inflect_7.3.1-2_all.deb ...
Unpacking python3-inflect (7.3.1-2) ...
Selecting previously unselected package python3-jaraco.context.
Preparing to unpack .../48-python3-jaraco.context_6.0.0-1_all.deb ...
Unpacking python3-jaraco.context (6.0.0-1) ...
Selecting previously unselected package python3-jaraco.functools.
Preparing to unpack .../49-python3-jaraco.functools_4.1.0-1_all.deb ...
Unpacking python3-jaraco.functools (4.1.0-1) ...
Selecting previously unselected package python3-pkg-resources.
Preparing to unpack .../50-python3-pkg-resources_75.6.0-1_all.deb ...
Unpacking python3-pkg-resources (75.6.0-1) ...
Selecting previously unselected package nodeenv.
Preparing to unpack .../51-nodeenv_1.9.1-1_all.deb ...
Unpacking nodeenv (1.9.1-1) ...
Selecting previously unselected package python-babel-localedata.
Preparing to unpack .../52-python-babel-localedata_2.16.0-1_all.deb ...
Unpacking python-babel-localedata (2.16.0-1) ...
Selecting previously unselected package python3-alabaster.
Preparing to unpack .../53-python3-alabaster_0.7.16-0.1_all.deb ...
Unpacking python3-alabaster (0.7.16-0.1) ...
Selecting previously unselected package python3.13.
Preparing to unpack .../54-python3.13_3.13.1-2_amd64.deb ...
Unpacking python3.13 (3.13.1-2) ...
Selecting previously unselected package python3-all.
Preparing to unpack .../55-python3-all_3.12.7-1_amd64.deb ...
Unpacking python3-all (3.12.7-1) ...
Selecting previously unselected package python3-idna.
Preparing to unpack .../56-python3-idna_3.8-2_all.deb ...
Unpacking python3-idna (3.8-2) ...
Selecting previously unselected package python3-sniffio.
Preparing to unpack .../57-python3-sniffio_1.3.1-1_all.deb ...
Unpacking python3-sniffio (1.3.1-1) ...
Selecting previously unselected package python3-anyio.
Preparing to unpack .../58-python3-anyio_4.6.2-4_all.deb ...
Unpacking python3-anyio (4.6.2-4) ...
Selecting previously unselected package python3-babel.
Preparing to unpack .../59-python3-babel_2.16.0-1_all.deb ...
Unpacking python3-babel (2.16.0-1) ...
Selecting previously unselected package python3-packaging.
Preparing to unpack .../60-python3-packaging_24.2-1_all.deb ...
Unpacking python3-packaging (24.2-1) ...
Selecting previously unselected package python3-pyproject-hooks.
Preparing to unpack .../61-python3-pyproject-hooks_1.2.0-1_all.deb ...
Unpacking python3-pyproject-hooks (1.2.0-1) ...
Selecting previously unselected package python3-toml.
Preparing to unpack .../62-python3-toml_0.10.2-1_all.deb ...
Unpacking python3-toml (0.10.2-1) ...
Selecting previously unselected package python3-wheel.
Preparing to unpack .../63-python3-wheel_0.45.1-1_all.deb ...
Unpacking python3-wheel (0.45.1-1) ...
Selecting previously unselected package python3-build.
Preparing to unpack .../64-python3-build_1.2.2-1_all.deb ...
Unpacking python3-build (1.2.2-1) ...
Selecting previously unselected package python3-certifi.
Preparing to unpack .../65-python3-certifi_2024.8.30+dfsg-1_all.deb ...
Unpacking python3-certifi (2024.8.30+dfsg-1) ...
Selecting previously unselected package python3-chardet.
Preparing to unpack .../66-python3-chardet_5.2.0+dfsg-1_all.deb ...
Unpacking python3-chardet (5.2.0+dfsg-1) ...
Selecting previously unselected package python3-charset-normalizer.
Preparing to unpack .../67-python3-charset-normalizer_3.4.0-1+b1_amd64.deb ...
Unpacking python3-charset-normalizer (3.4.0-1+b1) ...
Selecting previously unselected package python3-colorama.
Preparing to unpack .../68-python3-colorama_0.4.6-4_all.deb ...
Unpacking python3-colorama (0.4.6-4) ...
Selecting previously unselected package python3-click.
Preparing to unpack .../69-python3-click_8.1.7-2_all.deb ...
Unpacking python3-click (8.1.7-2) ...
Selecting previously unselected package python3-defusedxml.
Preparing to unpack .../70-python3-defusedxml_0.7.1-3_all.deb ...
Unpacking python3-defusedxml (0.7.1-3) ...
Selecting previously unselected package python3-roman.
Preparing to unpack .../71-python3-roman_4.2-1_all.deb ...
Unpacking python3-roman (4.2-1) ...
Selecting previously unselected package python3-docutils.
Preparing to unpack .../72-python3-docutils_0.21.2+dfsg-2_all.deb ...
Unpacking python3-docutils (0.21.2+dfsg-2) ...
Selecting previously unselected package python3-h11.
Preparing to unpack .../73-python3-h11_0.14.0-1_all.deb ...
Unpacking python3-h11 (0.14.0-1) ...
Selecting previously unselected package python3-imagesize.
Preparing to unpack .../74-python3-imagesize_1.4.1-1_all.deb ...
Unpacking python3-imagesize (1.4.1-1) ...
Selecting previously unselected package python3-iniconfig.
Preparing to unpack .../75-python3-iniconfig_1.1.1-2_all.deb ...
Unpacking python3-iniconfig (1.1.1-2) ...
Selecting previously unselected package python3-markupsafe.
Preparing to unpack .../76-python3-markupsafe_2.1.5-1+b2_amd64.deb ...
Unpacking python3-markupsafe (2.1.5-1+b2) ...
Selecting previously unselected package python3-jinja2.
Preparing to unpack .../77-python3-jinja2_3.1.3-1.1_all.deb ...
Unpacking python3-jinja2 (3.1.3-1.1) ...
Selecting previously unselected package python3-tornado.
Preparing to unpack .../78-python3-tornado_6.4.2-1_amd64.deb ...
Unpacking python3-tornado (6.4.2-1) ...
Selecting previously unselected package python3-livereload.
Preparing to unpack .../79-python3-livereload_2.7.0-0.1_all.deb ...
Unpacking python3-livereload (2.7.0-0.1) ...
Selecting previously unselected package python3-mdurl.
Preparing to unpack .../80-python3-mdurl_0.1.2-1_all.deb ...
Unpacking python3-mdurl (0.1.2-1) ...
Selecting previously unselected package python3-markdown-it.
Preparing to unpack .../81-python3-markdown-it_3.0.0-2_all.deb ...
Unpacking python3-markdown-it (3.0.0-2) ...
Selecting previously unselected package python3-pluggy.
Preparing to unpack .../82-python3-pluggy_1.5.0-1_all.deb ...
Unpacking python3-pluggy (1.5.0-1) ...
Selecting previously unselected package python3-pygments.
Preparing to unpack .../83-python3-pygments_2.18.0+dfsg-1_all.deb ...
Unpacking python3-pygments (2.18.0+dfsg-1) ...
Selecting previously unselected package python3-pyproject-metadata.
Preparing to unpack .../84-python3-pyproject-metadata_0.9.0-1_all.deb ...
Unpacking python3-pyproject-metadata (0.9.0-1) ...
Selecting previously unselected package python3-pytest.
Preparing to unpack .../85-python3-pytest_8.3.4-1_all.deb ...
Unpacking python3-pytest (8.3.4-1) ...
Selecting previously unselected package python3-urllib3.
Preparing to unpack .../86-python3-urllib3_2.2.3-4_all.deb ...
Unpacking python3-urllib3 (2.2.3-4) ...
Selecting previously unselected package python3-requests.
Preparing to unpack .../87-python3-requests_2.32.3+dfsg-1_all.deb ...
Unpacking python3-requests (2.32.3+dfsg-1) ...
Selecting previously unselected package python3-rich.
Preparing to unpack .../88-python3-rich.deb ...
Unpacking python3-rich (13.9.4-0.1) ...
Selecting previously unselected package python3-snowballstemmer.
Preparing to unpack .../89-python3-snowballstemmer_2.2.0-4_all.deb ...
Unpacking python3-snowballstemmer (2.2.0-4) ...
Selecting previously unselected package sphinx-common.
Preparing to unpack .../90-sphinx-common_8.1.3-2_all.deb ...
Unpacking sphinx-common (8.1.3-2) ...
Selecting previously unselected package python3-sphinx.
Preparing to unpack .../91-python3-sphinx_8.1.3-2_all.deb ...
Unpacking python3-sphinx (8.1.3-2) ...
Selecting previously unselected package python3-starlette.
Preparing to unpack .../92-python3-starlette_0.41.3-2_all.deb ...
Unpacking python3-starlette (0.41.3-2) ...
Selecting previously unselected package python3-wsproto.
Preparing to unpack .../93-python3-wsproto_1.2.0-1_all.deb ...
Unpacking python3-wsproto (1.2.0-1) ...
Selecting previously unselected package python3-uvloop.
Preparing to unpack .../94-python3-uvloop_0.21.0+ds1-1+b1_amd64.deb ...
Unpacking python3-uvloop (0.21.0+ds1-1+b1) ...
Selecting previously unselected package python3-uvicorn.
Preparing to unpack .../95-python3-uvicorn_0.32.0-2_all.deb ...
Unpacking python3-uvicorn (0.32.0-2) ...
Selecting previously unselected package python3-watchfiles.
Preparing to unpack .../96-python3-watchfiles_0.24.0-1+b1_amd64.deb ...
Unpacking python3-watchfiles (0.24.0-1+b1) ...
Selecting previously unselected package python3-websockets.
Preparing to unpack .../97-python3-websockets_14.1-1_amd64.deb ...
Unpacking python3-websockets (14.1-1) ...
Selecting previously unselected package python3-sphinx-autobuild.
Preparing to unpack .../98-python3-sphinx-autobuild_2024.10.03-1_all.deb ...
Unpacking python3-sphinx-autobuild (2024.10.03-1) ...
Selecting previously unselected package python3-sphinx-theme-builder.
Preparing to unpack .../99-python3-sphinx-theme-builder.deb ...
Unpacking python3-sphinx-theme-builder (0.2.0b2-3) ...
Setting up media-types (10.1.0) ...
Setting up libtirpc-common (1.3.4+ds-1.3) ...
Setting up libuv1t64:amd64 (1.48.0-7) ...
Setting up linux-libc-dev (6.12.5-1) ...
Setting up python-babel-localedata (2.16.0-1) ...
Setting up libpython3.13-minimal:amd64 (3.13.1-2) ...
Setting up rpcsvc-proto (1.4.3-1) ...
Setting up libmpfr6:amd64 (4.2.1-1+b2) ...
Setting up libquadmath0:amd64 (14.2.0-11) ...
Setting up libssl-dev:amd64 (3.3.2-2) ...
Setting up libmpc3:amd64 (1.3.1-1+b3) ...
Setting up libubsan1:amd64 (14.2.0-11) ...
Setting up libhwasan0:amd64 (14.2.0-11) ...
Setting up libcrypt-dev:amd64 (1:4.4.36-5) ...
Setting up libasan8:amd64 (14.2.0-11) ...
Setting up libjson-perl (4.10000-1) ...
Setting up python3.13-minimal (3.13.1-2) ...
Setting up sgml-base (1.31) ...
Setting up libtsan2:amd64 (14.2.0-11) ...
Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
Setting up libisl23:amd64 (0.27-1) ...
Setting up libc-dev-bin (2.40-4) ...
Setting up libpython3.13-stdlib:amd64 (3.13.1-2) ...
Setting up libcc1-0:amd64 (14.2.0-11) ...
Setting up liblsan0:amd64 (14.2.0-11) ...
Setting up libitm1:amd64 (14.2.0-11) ...
Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ...
Setting up libtirpc3t64:amd64 (1.3.4+ds-1.3+b1) ...
Setting up python3.13 (3.13.1-2) ...
Setting up cpp-14-x86-64-linux-gnu (14.2.0-11) ...
Setting up libjs-sphinxdoc (8.1.3-2) ...
Setting up cpp-14 (14.2.0-11) ...
Setting up xml-core (0.19) ...
Setting up libnsl2:amd64 (1.3.0-3+b3) ...
Setting up libc6-dev:amd64 (2.40-4) ...
Setting up libgcc-14-dev:amd64 (14.2.0-11) ...
Setting up libstdc++-14-dev:amd64 (14.2.0-11) ...
Setting up cpp-x86-64-linux-gnu (4:14.2.0-1) ...
Setting up libpython3.12-stdlib:amd64 (3.12.8-3) ...
Setting up python3.12 (3.12.8-3) ...
Setting up sphinx-common (8.1.3-2) ...
Setting up cpp (4:14.2.0-1) ...
Setting up gcc-14-x86-64-linux-gnu (14.2.0-11) ...
Setting up libpython3-stdlib:amd64 (3.12.7-1) ...
Setting up gcc-x86-64-linux-gnu (4:14.2.0-1) ...
Setting up python3 (3.12.7-1) ...
Setting up python3-autocommand (2.2.2-3) ...
Setting up python3-markupsafe (2.1.5-1+b2) ...
Setting up python3-wheel (0.45.1-1) ...
Setting up gcc-14 (14.2.0-11) ...
Setting up python3-roman (4.2-1) ...
Setting up python3-jinja2 (3.1.3-1.1) ...
Setting up python3-packaging (24.2-1) ...
Setting up python3-pyproject-hooks (1.2.0-1) ...
Setting up python3-certifi (2024.8.30+dfsg-1) ...
Setting up python3-snowballstemmer (2.2.0-4) ...
Setting up python3-mdurl (0.1.2-1) ...
Setting up python3-idna (3.8-2) ...
Setting up python3-h11 (0.14.0-1) ...
Setting up python3-typing-extensions (4.12.2-2) ...
Setting up python3-toml (0.10.2-1) ...
Setting up python3-uvloop (0.21.0+ds1-1+b1) ...
Setting up python3-urllib3 (2.2.3-4) ...
Setting up python3-pluggy (1.5.0-1) ...
Setting up g++-14-x86-64-linux-gnu (14.2.0-11) ...
Setting up python3-markdown-it (3.0.0-2) ...
Setting up g++-x86-64-linux-gnu (4:14.2.0-1) ...
Setting up g++-14 (14.2.0-11) ...
Setting up python3-build (1.2.2-1) ...
Setting up python3-imagesize (1.4.1-1) ...
Setting up python3-websockets (14.1-1) ...
Setting up python3-more-itertools (10.5.0-1) ...
Setting up python3-iniconfig (1.1.1-2) ...
Setting up python3-sniffio (1.3.1-1) ...
Setting up python3-tornado (6.4.2-1) ...
Setting up python3-jaraco.functools (4.1.0-1) ...
Setting up python3-wsproto (1.2.0-1) ...
Setting up python3-jaraco.context (6.0.0-1) ...
Setting up python3-anyio (4.6.2-4) ...
Setting up python3-pyproject-metadata (0.9.0-1) ...
Setting up python3-colorama (0.4.6-4) ...
Setting up python3-defusedxml (0.7.1-3) ...
Setting up python3-charset-normalizer (3.4.0-1+b1) ...
Setting up python3-pytest (8.3.4-1) ...
Setting up python3-alabaster (0.7.16-0.1) ...
Setting up python3-typeguard (4.4.1-1) ...
Setting up python3-watchfiles (0.24.0-1+b1) ...
Setting up python3-all (3.12.7-1) ...
Setting up python3-starlette (0.41.3-2) ...
Setting up python3-click (8.1.7-2) ...
Setting up gcc (4:14.2.0-1) ...
Setting up python3-inflect (7.3.1-2) ...
Setting up g++ (4:14.2.0-1) ...
update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
Setting up python3-pkg-resources (75.6.0-1) ...
Setting up python3-uvicorn (0.32.0-2) ...
Setting up python3-babel (2.16.0-1) ...
update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode
Setting up python3-pygments (2.18.0+dfsg-1) ...
Setting up python3-chardet (5.2.0+dfsg-1) ...
Setting up python3-requests (2.32.3+dfsg-1) ...
Setting up python3-livereload (2.7.0-0.1) ...
Setting up nodeenv (1.9.1-1) ...
Setting up python3-rich (13.9.4-0.1) ...
Processing triggers for libc-bin (2.40-4) ...
Processing triggers for man-db (2.13.0-1) ...
Processing triggers for sgml-base (1.31) ...
Setting up docutils-common (0.21.2+dfsg-2) ...
Processing triggers for sgml-base (1.31) ...
Setting up python3-docutils (0.21.2+dfsg-2) ...
Setting up python3-sphinx (8.1.3-2) ...
Setting up python3-sphinx-autobuild (2024.10.03-1) ...
Setting up python3-sphinx-theme-builder (0.2.0b2-3) ...
autopkgtest [14:05:18]: test pytest: [-----------------------
=== python3.13 ===
============================= test session starts ==============================
platform linux -- Python 3.13.1, pytest-8.3.4, pluggy-1.5.0
rootdir: /tmp/autopkgtest.mg2Uf2/autopkgtest_tmp
plugins: anyio-4.6.2, typeguard-4.4.1
collected 52 items

tests/integration/test_cli_compile.py ..                                 [  3%]
tests/integration/test_cli_new.py ....                                   [ 11%]
tests/integration/test_cli_package.py .                                  [ 13%]
tests/unit/test_errors.py ...................                            [ 50%]
tests/unit/test_project.py ...................                           [ 86%]
tests/workflow/test_cli.py ...                                           [ 92%]
tests/workflow/test_new.py ...                                           [ 98%]
tests/workflow/test_package.py .                                         [100%]

=============================== warnings summary ===============================
tests/unit/test_project.py::TestProjectFromPath::test_works_with_proper_dynamic_version
tests/unit/test_project.py::TestProjectFromPath::test_works_with_proper_dynamic_version
tests/unit/test_project.py::TestProjectFromPath::test_rejects_with_double_declaration
tests/unit/test_project.py::TestProjectFromPath::test_rejects_no_dynamic_with_version_in_python_file
  /usr/lib/python3/dist-packages/sphinx_theme_builder/_internal/project.py:43: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead
    and isinstance(child.value, ast.Str)

tests/unit/test_project.py::TestProjectFromPath::test_works_with_proper_dynamic_version
tests/unit/test_project.py::TestProjectFromPath::test_rejects_with_double_declaration
tests/unit/test_project.py::TestProjectFromPath::test_rejects_no_dynamic_with_version_in_python_file
  /usr/lib/python3/dist-packages/sphinx_theme_builder/_internal/project.py:45: DeprecationWarning: Attribute s is deprecated and will be removed in Python 3.14; use value instead
    version = child.value.s

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
======================== 52 passed, 7 warnings in 0.16s ========================
=== python3.12 ===
============================= test session starts ==============================
platform linux -- Python 3.12.8, pytest-8.3.4, pluggy-1.5.0
rootdir: /tmp/autopkgtest.mg2Uf2/autopkgtest_tmp
plugins: anyio-4.6.2, typeguard-4.4.1
collected 52 items

tests/integration/test_cli_compile.py ..                                 [  3%]
tests/integration/test_cli_new.py ....                                   [ 11%]
tests/integration/test_cli_package.py .                                  [ 13%]
tests/unit/test_errors.py ...................                            [ 50%]
tests/unit/test_project.py ...................                           [ 86%]
tests/workflow/test_cli.py ...                                           [ 92%]
tests/workflow/test_new.py ...                                           [ 98%]
tests/workflow/test_package.py .                                         [100%]

=============================== warnings summary ===============================
tests/unit/test_project.py::TestProjectFromPath::test_works_with_proper_dynamic_version
tests/unit/test_project.py::TestProjectFromPath::test_works_with_proper_dynamic_version
tests/unit/test_project.py::TestProjectFromPath::test_rejects_with_double_declaration
tests/unit/test_project.py::TestProjectFromPath::test_rejects_no_dynamic_with_version_in_python_file
  /usr/lib/python3/dist-packages/sphinx_theme_builder/_internal/project.py:43: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead
    and isinstance(child.value, ast.Str)

tests/unit/test_project.py::TestProjectFromPath::test_works_with_proper_dynamic_version
tests/unit/test_project.py::TestProjectFromPath::test_rejects_with_double_declaration
tests/unit/test_project.py::TestProjectFromPath::test_rejects_no_dynamic_with_version_in_python_file
  /usr/lib/python3/dist-packages/sphinx_theme_builder/_internal/project.py:45: DeprecationWarning: Attribute s is deprecated and will be removed in Python 3.14; use value instead
    version = child.value.s

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
======================== 52 passed, 7 warnings in 0.17s ========================
autopkgtest [14:05:19]: test pytest: -----------------------]
pytest               PASS
autopkgtest [14:05:19]: test pytest:  - - - - - - - - - - results - - - - - - - - - -
autopkgtest [14:05:19]: @@@@@@@@@@@@@@@@@@@@ summary
pytest               PASS

aborted: False
returncode: 0

Files in working directory:
artifact-dir
artifact-dir/binaries
artifact-dir/binaries/python3-rich.deb
artifact-dir/binaries/python3-sphinx-theme-builder.deb
artifact-dir/log
artifact-dir/pytest-packages
artifact-dir/pytest-stdout
artifact-dir/summary
artifact-dir/testbed-packages
artifact-dir/testinfo.json
artifact-dir/testpkg-version
--------------------

Relations

Relation Direction Type Name
relates-to Source package sphinx-theme-builder_0.2.0b2-3
relates-to Binary package python3-sphinx-theme-builder_0.2.0b2-3_all
relates-to Package upload rich_13.9.4-0.1

debug log System autopkgtest - 2 weeks, 2 days ago 0 minutes
BETA