Artifact pymongo_4.10.1-2+bd1_arm64-2024-10-14T16:24:23Z

Metadata
bd_uninstallable: null
filename: pymongo_4.10.1-2+bd1_arm64-2024-10-14T16:24:23Z.build
source: pymongo
version: 4.10.1-2

File

pymongo_4.10.1-2+bd1_arm64-2024-10-14T16:24:23Z.build
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 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
sbuild (Debian sbuild) 0.85.11~bpo12+1 (31 August 2024) on debusine-worker-arm64-demeter-06.freexian.com

+==============================================================================+
| pymongo 4.10.1-2+bd1 (arm64)                 Mon, 14 Oct 2024 16:24:23 +0000 |
+==============================================================================+

Package: pymongo
Version: 4.10.1-2+bd1
Source Version: 4.10.1-2
Distribution: sid
Machine Architecture: arm64
Host Architecture: arm64
Build Architecture: arm64
Build Type: any

I: No tarballs found in /var/lib/debusine/worker/.cache/sbuild
Unpacking /var/lib/debusine/worker/system-images/851445/system.tar.xz to /tmp/tmp.sbuild.pXgvUN9boV...
I: NOTICE: Log filtering will replace 'sbuild-unshare-dummy-location' with '<<CHROOT>>'

+------------------------------------------------------------------------------+
| Chroot Setup Commands                                                        |
+------------------------------------------------------------------------------+


rm -f /etc/resolv.conf
----------------------


I: Finished running 'rm -f /etc/resolv.conf'.

Finished processing commands.
--------------------------------------------------------------------------------
Copying /tmp/debusine-fetch-exec-upload-6g4atd1n/libpython3-all-dbg_3.12.6-1+debusine1_arm64.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-6g4atd1n/libpython3-all-dev_3.12.6-1+debusine1_arm64.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-6g4atd1n/libpython3-dbg_3.12.6-1+debusine1_arm64.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-6g4atd1n/libpython3-dev_3.12.6-1+debusine1_arm64.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-6g4atd1n/libpython3-stdlib_3.12.6-1+debusine1_arm64.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-6g4atd1n/python3-all-dbg_3.12.6-1+debusine1_arm64.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-6g4atd1n/python3-all-dev_3.12.6-1+debusine1_arm64.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-6g4atd1n/python3-all-venv_3.12.6-1+debusine1_arm64.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-6g4atd1n/python3-all_3.12.6-1+debusine1_arm64.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-6g4atd1n/python3-dbg_3.12.6-1+debusine1_arm64.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-6g4atd1n/python3-dev_3.12.6-1+debusine1_arm64.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-6g4atd1n/python3-full_3.12.6-1+debusine1_arm64.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-6g4atd1n/python3-minimal_3.12.6-1+debusine1_arm64.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-6g4atd1n/python3-nopie_3.12.6-1+debusine1_arm64.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-6g4atd1n/python3-venv_3.12.6-1+debusine1_arm64.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-6g4atd1n/python3_3.12.6-1+debusine1_arm64.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-6g4atd1n/2to3_3.12.6-1+debusine1_all.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-6g4atd1n/idle_3.12.6-1+debusine1_all.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-6g4atd1n/python3-doc_3.12.6-1+debusine1_all.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-6g4atd1n/python3-examples_3.12.6-1+debusine1_all.deb to /<<CHROOT>>...
I: NOTICE: Log filtering will replace 'build/pymongo-OKoIlj/resolver-al0eCL' with '<<RESOLVERDIR>>'

+------------------------------------------------------------------------------+
| Update chroot                                                                |
+------------------------------------------------------------------------------+

Get:1 file:/build/pymongo-OKoIlj/resolver-hTK82h/apt_archive ./ InRelease
Ign:1 file:/build/pymongo-OKoIlj/resolver-hTK82h/apt_archive ./ InRelease
Get:2 file:/build/pymongo-OKoIlj/resolver-hTK82h/apt_archive ./ Release [609 B]
Get:3 http://deb.debian.org/debian sid InRelease [202 kB]
Get:2 file:/build/pymongo-OKoIlj/resolver-hTK82h/apt_archive ./ Release [609 B]
Get:4 file:/build/pymongo-OKoIlj/resolver-hTK82h/apt_archive ./ Release.gpg
Ign:4 file:/build/pymongo-OKoIlj/resolver-hTK82h/apt_archive ./ Release.gpg
Get:5 file:/build/pymongo-OKoIlj/resolver-hTK82h/apt_archive ./ Packages [20.5 kB]
Get:6 http://deb.debian.org/debian sid/main arm64 Packages [9914 kB]
Get:7 http://deb.debian.org/debian sid/main arm64 Components [4897 kB]
Fetched 15.0 MB in 2s (6342 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

+------------------------------------------------------------------------------+
| Fetch source files                                                           |
+------------------------------------------------------------------------------+


Local sources
-------------

/tmp/debusine-fetch-exec-upload-6g4atd1n/pymongo_4.10.1-2.dsc exists in /tmp/debusine-fetch-exec-upload-6g4atd1n; copying to chroot
I: NOTICE: Log filtering will replace 'build/pymongo-OKoIlj/pymongo-4.10.1' with '<<PKGBUILDDIR>>'
I: NOTICE: Log filtering will replace 'build/pymongo-OKoIlj' with '<<BUILDDIR>>'

+------------------------------------------------------------------------------+
| Install package build dependencies                                           |
+------------------------------------------------------------------------------+


Setup apt archive
-----------------

Merged Build-Depends: debhelper-compat (= 13), dh-python, python3-all-dev, python3-openssl (>= 19.0.0~), python3-setuptools, python3-sphinx, python3-pytest, python3-dnspython, python3-hatchling, pybuild-plugin-pyproject, python3-hatch-requirements-txt, python3-pytest-asyncio, build-essential, fakeroot, dumb-init
Filtered Build-Depends: debhelper-compat (= 13), dh-python, python3-all-dev, python3-openssl (>= 19.0.0~), python3-setuptools, python3-sphinx, python3-pytest, python3-dnspython, python3-hatchling, pybuild-plugin-pyproject, python3-hatch-requirements-txt, python3-pytest-asyncio, build-essential, fakeroot, dumb-init
dpkg-deb: building package 'sbuild-build-depends-main-dummy' in '/<<RESOLVERDIR>>/apt_archive/sbuild-build-depends-main-dummy.deb'.
Ign:1 copy:/<<RESOLVERDIR>>/apt_archive ./ InRelease
Get:2 copy:/<<RESOLVERDIR>>/apt_archive ./ Release [609 B]
Ign:3 copy:/<<RESOLVERDIR>>/apt_archive ./ Release.gpg
Get:4 copy:/<<RESOLVERDIR>>/apt_archive ./ Sources [865 B]
Get:5 copy:/<<RESOLVERDIR>>/apt_archive ./ Packages [890 B]
Fetched 2364 B in 0s (221 kB/s)
Reading package lists...
Get:1 file:/<<BUILDDIR>>/resolver-hTK82h/apt_archive ./ InRelease
Ign:1 file:/<<BUILDDIR>>/resolver-hTK82h/apt_archive ./ InRelease
Get:2 file:/<<BUILDDIR>>/resolver-hTK82h/apt_archive ./ Release [609 B]
Get:2 file:/<<BUILDDIR>>/resolver-hTK82h/apt_archive ./ Release [609 B]
Get:3 file:/<<BUILDDIR>>/resolver-hTK82h/apt_archive ./ Release.gpg
Ign:3 file:/<<BUILDDIR>>/resolver-hTK82h/apt_archive ./ Release.gpg
Reading package lists...
Reading package lists...

Install main build dependencies (apt-based resolver)
----------------------------------------------------

Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
  autoconf automake autopoint autotools-dev build-essential cpp cpp-14
  cpp-14-aarch64-linux-gnu cpp-aarch64-linux-gnu debhelper dh-autoreconf
  dh-python dh-strip-nondeterminism docutils-common dumb-init dwz fakeroot g++
  g++-14 g++-14-aarch64-linux-gnu g++-aarch64-linux-gnu gcc gcc-14
  gcc-14-aarch64-linux-gnu gcc-aarch64-linux-gnu libasan8 libc-dev-bin
  libc6-dev libcc1-0 libcrypt-dev libdebhelper-perl libelf1t64 libexpat1
  libexpat1-dev libfakeroot libfile-stripnondeterminism-perl libgcc-14-dev
  libhwasan0 libisl23 libitm1 libjs-jquery libjs-sphinxdoc libjs-underscore
  libjson-perl liblsan0 libmpc3 libmpfr6 libncursesw6 libnsl2
  libpython3-all-dev libpython3-dev libpython3-stdlib libpython3.12-dev
  libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 libpython3.13
  libpython3.13-dev libpython3.13-minimal libpython3.13-stdlib
  libstdc++-14-dev libtirpc-common libtirpc3t64 libtool libtsan2 libubsan1
  linux-libc-dev m4 media-types po-debconf pybuild-plugin-pyproject
  python-babel-localedata python3 python3-alabaster python3-all
  python3-all-dev python3-async-generator python3-autocommand python3-babel
  python3-bcrypt python3-build python3-certifi python3-cffi-backend
  python3-chardet python3-charset-normalizer python3-cryptography
  python3-defusedxml python3-dev python3-dnspython python3-docutils
  python3-hatch-requirements-txt python3-hatchling python3-idna
  python3-imagesize python3-inflect python3-iniconfig python3-installer
  python3-jaraco.context python3-jaraco.functools python3-jinja2
  python3-markupsafe python3-minimal python3-more-itertools python3-openssl
  python3-packaging python3-pathspec python3-pkg-resources python3-pluggy
  python3-pygments python3-pyproject-hooks python3-pytest
  python3-pytest-asyncio python3-requests python3-roman python3-setuptools
  python3-snowballstemmer python3-sphinx python3-toml
  python3-trove-classifiers python3-typeguard python3-typing-extensions
  python3-urllib3 python3-wheel python3-zipp python3.12 python3.12-dev
  python3.12-minimal python3.13 python3.13-dev python3.13-minimal rpcsvc-proto
  sgml-base sphinx-common xml-core zlib1g-dev
Suggested packages:
  autoconf-archive gnu-standards autoconf-doc cpp-doc gcc-14-locales
  cpp-14-doc dh-make flit gcc-14-doc gcc-multilib manpages-dev flex bison gdb
  gcc-doc gdb-aarch64-linux-gnu libc-devtools glibc-doc libstdc++-14-doc
  libtool-doc gfortran | fortran95-compiler gcj-jdk m4-doc libmail-box-perl
  python3-doc python3-tk python3-venv python3-pip python-build-doc
  python-charset-normalizer-doc python-cryptography-doc
  python3-cryptography-vectors python3-trio python3-aioquic docutils-doc
  fonts-linuxlibertine | ttf-linux-libertine texlive-lang-french
  texlive-latex-base texlive-latex-recommended python-installer-doc
  python-jinja2-doc python-openssl-doc python-pygments-doc ttf-bitstream-vera
  python3-socks python-requests-doc python-setuptools-doc python3-stemmer
  dvipng dvisvgm fonts-freefont-otf imagemagick-6.q16 latexmk libjs-mathjax
  python3-sphinx-rtd-theme sphinx-doc tex-gyre texlive-fonts-extra
  texlive-fonts-recommended texlive-latex-extra texlive-plain-generic
  python3-brotli python3.12-venv python3.12-doc binfmt-support python3.13-venv
  python3.13-doc sgml-base-doc
Recommended packages:
  manpages manpages-dev libarchive-cpio-perl javascript-common libjson-xs-perl
  libgpm2 libltdl-dev libmail-sendmail-perl python3-h2 python3-httpcore
  python3-httpx libpaper-utils python3-pil
The following NEW packages will be installed:
  autoconf automake autopoint autotools-dev build-essential cpp cpp-14
  cpp-14-aarch64-linux-gnu cpp-aarch64-linux-gnu debhelper dh-autoreconf
  dh-python dh-strip-nondeterminism docutils-common dumb-init dwz fakeroot g++
  g++-14 g++-14-aarch64-linux-gnu g++-aarch64-linux-gnu gcc gcc-14
  gcc-14-aarch64-linux-gnu gcc-aarch64-linux-gnu libasan8 libc-dev-bin
  libc6-dev libcc1-0 libcrypt-dev libdebhelper-perl libelf1t64 libexpat1
  libexpat1-dev libfakeroot libfile-stripnondeterminism-perl libgcc-14-dev
  libhwasan0 libisl23 libitm1 libjs-jquery libjs-sphinxdoc libjs-underscore
  libjson-perl liblsan0 libmpc3 libmpfr6 libncursesw6 libnsl2
  libpython3-all-dev libpython3-dev libpython3-stdlib libpython3.12-dev
  libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 libpython3.13
  libpython3.13-dev libpython3.13-minimal libpython3.13-stdlib
  libstdc++-14-dev libtirpc-common libtirpc3t64 libtool libtsan2 libubsan1
  linux-libc-dev m4 media-types po-debconf pybuild-plugin-pyproject
  python-babel-localedata python3 python3-alabaster python3-all
  python3-all-dev python3-async-generator python3-autocommand python3-babel
  python3-bcrypt python3-build python3-certifi python3-cffi-backend
  python3-chardet python3-charset-normalizer python3-cryptography
  python3-defusedxml python3-dev python3-dnspython python3-docutils
  python3-hatch-requirements-txt python3-hatchling python3-idna
  python3-imagesize python3-inflect python3-iniconfig python3-installer
  python3-jaraco.context python3-jaraco.functools python3-jinja2
  python3-markupsafe python3-minimal python3-more-itertools python3-openssl
  python3-packaging python3-pathspec python3-pkg-resources python3-pluggy
  python3-pygments python3-pyproject-hooks python3-pytest
  python3-pytest-asyncio python3-requests python3-roman python3-setuptools
  python3-snowballstemmer python3-sphinx python3-toml
  python3-trove-classifiers python3-typeguard python3-typing-extensions
  python3-urllib3 python3-wheel python3-zipp python3.12 python3.12-dev
  python3.12-minimal python3.13 python3.13-dev python3.13-minimal rpcsvc-proto
  sbuild-build-depends-main-dummy sgml-base sphinx-common xml-core zlib1g-dev
0 upgraded, 136 newly installed, 0 to remove and 0 not upgraded.
Need to get 101 MB/101 MB of archives.
After this operation, 426 MB of additional disk space will be used.
Get:1 copy:/<<RESOLVERDIR>>/apt_archive ./ sbuild-build-depends-main-dummy 0.invalid.0 [996 B]
Get:2 file:/<<BUILDDIR>>/resolver-hTK82h/apt_archive ./ python3-minimal 3.12.6-1+debusine1 [26.8 kB]
Get:3 file:/<<BUILDDIR>>/resolver-hTK82h/apt_archive ./ libpython3-stdlib 3.12.6-1+debusine1 [9732 B]
Get:4 file:/<<BUILDDIR>>/resolver-hTK82h/apt_archive ./ python3 3.12.6-1+debusine1 [27.8 kB]
Get:5 file:/<<BUILDDIR>>/resolver-hTK82h/apt_archive ./ libpython3-dev 3.12.6-1+debusine1 [9992 B]
Get:6 file:/<<BUILDDIR>>/resolver-hTK82h/apt_archive ./ libpython3-all-dev 3.12.6-1+debusine1 [1084 B]
Get:7 file:/<<BUILDDIR>>/resolver-hTK82h/apt_archive ./ python3-all 3.12.6-1+debusine1 [1056 B]
Get:8 file:/<<BUILDDIR>>/resolver-hTK82h/apt_archive ./ python3-dev 3.12.6-1+debusine1 [26.1 kB]
Get:9 file:/<<BUILDDIR>>/resolver-hTK82h/apt_archive ./ python3-all-dev 3.12.6-1+debusine1 [1084 B]
Get:10 http://deb.debian.org/debian sid/main arm64 libpython3.12-minimal arm64 3.12.7-1 [807 kB]
Get:11 http://deb.debian.org/debian sid/main arm64 libexpat1 arm64 2.6.3-1 [90.2 kB]
Get:12 http://deb.debian.org/debian sid/main arm64 python3.12-minimal arm64 3.12.7-1 [1941 kB]
Get:13 http://deb.debian.org/debian sid/main arm64 media-types all 10.1.0 [26.9 kB]
Get:14 http://deb.debian.org/debian sid/main arm64 libncursesw6 arm64 6.5-2 [124 kB]
Get:15 http://deb.debian.org/debian sid/main arm64 libtirpc-common all 1.3.4+ds-1.3 [10.9 kB]
Get:16 http://deb.debian.org/debian sid/main arm64 libtirpc3t64 arm64 1.3.4+ds-1.3 [78.4 kB]
Get:17 http://deb.debian.org/debian sid/main arm64 libnsl2 arm64 1.3.0-3+b2 [37.7 kB]
Get:18 http://deb.debian.org/debian sid/main arm64 libpython3.12-stdlib arm64 3.12.7-1 [1901 kB]
Get:19 http://deb.debian.org/debian sid/main arm64 python3.12 arm64 3.12.7-1 [671 kB]
Get:20 http://deb.debian.org/debian sid/main arm64 libpython3.13-minimal arm64 3.13.0-1 [849 kB]
Get:21 http://deb.debian.org/debian sid/main arm64 python3.13-minimal arm64 3.13.0-1 [1835 kB]
Get:22 http://deb.debian.org/debian sid/main arm64 sgml-base all 1.31 [15.4 kB]
Get:23 http://deb.debian.org/debian sid/main arm64 m4 arm64 1.4.19-4 [277 kB]
Get:24 http://deb.debian.org/debian sid/main arm64 autoconf all 2.72-3 [493 kB]
Get:25 http://deb.debian.org/debian sid/main arm64 autotools-dev all 20220109.1 [51.6 kB]
Get:26 http://deb.debian.org/debian sid/main arm64 automake all 1:1.16.5-1.3 [823 kB]
Get:27 http://deb.debian.org/debian sid/main arm64 autopoint all 0.22.5-2 [723 kB]
Get:28 http://deb.debian.org/debian sid/main arm64 libc-dev-bin arm64 2.40-3 [50.9 kB]
Get:29 http://deb.debian.org/debian sid/main arm64 linux-libc-dev all 6.11.2-1 [2424 kB]
Get:30 http://deb.debian.org/debian sid/main arm64 libcrypt-dev arm64 1:4.4.36-5 [122 kB]
Get:31 http://deb.debian.org/debian sid/main arm64 rpcsvc-proto arm64 1.4.3-1 [59.7 kB]
Get:32 http://deb.debian.org/debian sid/main arm64 libc6-dev arm64 2.40-3 [1591 kB]
Get:33 http://deb.debian.org/debian sid/main arm64 libisl23 arm64 0.27-1 [601 kB]
Get:34 http://deb.debian.org/debian sid/main arm64 libmpfr6 arm64 4.2.1-1+b1 [674 kB]
Get:35 http://deb.debian.org/debian sid/main arm64 libmpc3 arm64 1.3.1-1+b2 [50.2 kB]
Get:36 http://deb.debian.org/debian sid/main arm64 cpp-14-aarch64-linux-gnu arm64 14.2.0-6 [9165 kB]
Get:37 http://deb.debian.org/debian sid/main arm64 cpp-14 arm64 14.2.0-6 [1280 B]
Get:38 http://deb.debian.org/debian sid/main arm64 cpp-aarch64-linux-gnu arm64 4:14.2.0-1 [4832 B]
Get:39 http://deb.debian.org/debian sid/main arm64 cpp arm64 4:14.2.0-1 [1568 B]
Get:40 http://deb.debian.org/debian sid/main arm64 libcc1-0 arm64 14.2.0-6 [42.3 kB]
Get:41 http://deb.debian.org/debian sid/main arm64 libitm1 arm64 14.2.0-6 [24.1 kB]
Get:42 http://deb.debian.org/debian sid/main arm64 libasan8 arm64 14.2.0-6 [2578 kB]
Get:43 http://deb.debian.org/debian sid/main arm64 liblsan0 arm64 14.2.0-6 [1162 kB]
Get:44 http://deb.debian.org/debian sid/main arm64 libtsan2 arm64 14.2.0-6 [2386 kB]
Get:45 http://deb.debian.org/debian sid/main arm64 libubsan1 arm64 14.2.0-6 [1039 kB]
Get:46 http://deb.debian.org/debian sid/main arm64 libhwasan0 arm64 14.2.0-6 [1442 kB]
Get:47 http://deb.debian.org/debian sid/main arm64 libgcc-14-dev arm64 14.2.0-6 [2364 kB]
Get:48 http://deb.debian.org/debian sid/main arm64 gcc-14-aarch64-linux-gnu arm64 14.2.0-6 [17.7 MB]
Get:49 http://deb.debian.org/debian sid/main arm64 gcc-14 arm64 14.2.0-6 [515 kB]
Get:50 http://deb.debian.org/debian sid/main arm64 gcc-aarch64-linux-gnu arm64 4:14.2.0-1 [1440 B]
Get:51 http://deb.debian.org/debian sid/main arm64 gcc arm64 4:14.2.0-1 [5136 B]
Get:52 http://deb.debian.org/debian sid/main arm64 libstdc++-14-dev arm64 14.2.0-6 [2265 kB]
Get:53 http://deb.debian.org/debian sid/main arm64 g++-14-aarch64-linux-gnu arm64 14.2.0-6 [10.1 MB]
Get:54 http://deb.debian.org/debian sid/main arm64 g++-14 arm64 14.2.0-6 [19.9 kB]
Get:55 http://deb.debian.org/debian sid/main arm64 g++-aarch64-linux-gnu arm64 4:14.2.0-1 [1200 B]
Get:56 http://deb.debian.org/debian sid/main arm64 g++ arm64 4:14.2.0-1 [1332 B]
Get:57 http://deb.debian.org/debian sid/main arm64 build-essential arm64 12.12 [4624 B]
Get:58 http://deb.debian.org/debian sid/main arm64 libdebhelper-perl all 13.20 [89.7 kB]
Get:59 http://deb.debian.org/debian sid/main arm64 libtool all 2.4.7-7 [517 kB]
Get:60 http://deb.debian.org/debian sid/main arm64 dh-autoreconf all 20 [17.1 kB]
Get:61 http://deb.debian.org/debian sid/main arm64 libfile-stripnondeterminism-perl all 1.14.0-1 [19.5 kB]
Get:62 http://deb.debian.org/debian sid/main arm64 dh-strip-nondeterminism all 1.14.0-1 [8448 B]
Get:63 http://deb.debian.org/debian sid/main arm64 libelf1t64 arm64 0.191-2 [188 kB]
Get:64 http://deb.debian.org/debian sid/main arm64 dwz arm64 0.15-1+b1 [102 kB]
Get:65 http://deb.debian.org/debian sid/main arm64 po-debconf all 1.0.21+nmu1 [248 kB]
Get:66 http://deb.debian.org/debian sid/main arm64 debhelper all 13.20 [915 kB]
Get:67 http://deb.debian.org/debian sid/main arm64 python3-autocommand all 2.2.2-3 [13.6 kB]
Get:68 http://deb.debian.org/debian sid/main arm64 python3-more-itertools all 10.5.0-1 [63.8 kB]
Get:69 http://deb.debian.org/debian sid/main arm64 python3-typing-extensions all 4.12.2-2 [73.0 kB]
Get:70 http://deb.debian.org/debian sid/main arm64 python3-typeguard all 4.3.0-1 [36.5 kB]
Get:71 http://deb.debian.org/debian sid/main arm64 python3-inflect all 7.3.1-2 [32.4 kB]
Get:72 http://deb.debian.org/debian sid/main arm64 python3-jaraco.context all 6.0.0-1 [7984 B]
Get:73 http://deb.debian.org/debian sid/main arm64 python3-jaraco.functools all 4.1.0-1 [12.0 kB]
Get:74 http://deb.debian.org/debian sid/main arm64 python3-pkg-resources all 74.1.2-2 [213 kB]
Get:75 http://deb.debian.org/debian sid/main arm64 python3-zipp all 3.20.2-1 [10.3 kB]
Get:76 http://deb.debian.org/debian sid/main arm64 python3-setuptools all 74.1.2-2 [736 kB]
Get:77 http://deb.debian.org/debian sid/main arm64 dh-python all 6.20240824 [109 kB]
Get:78 http://deb.debian.org/debian sid/main arm64 xml-core all 0.19 [20.1 kB]
Get:79 http://deb.debian.org/debian sid/main arm64 docutils-common all 0.21.2+dfsg-2 [128 kB]
Get:80 http://deb.debian.org/debian sid/main arm64 dumb-init arm64 1.2.5-3 [13.4 kB]
Get:81 http://deb.debian.org/debian sid/main arm64 libfakeroot arm64 1.36-1 [29.1 kB]
Get:82 http://deb.debian.org/debian sid/main arm64 fakeroot arm64 1.36-1 [74.4 kB]
Get:83 http://deb.debian.org/debian sid/main arm64 libexpat1-dev arm64 2.6.3-1 [142 kB]
Get:84 http://deb.debian.org/debian sid/main arm64 libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [326 kB]
Get:85 http://deb.debian.org/debian sid/main arm64 libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [116 kB]
Get:86 http://deb.debian.org/debian sid/main arm64 libjs-sphinxdoc all 7.4.7-3 [158 kB]
Get:87 http://deb.debian.org/debian sid/main arm64 libjson-perl all 4.10000-1 [87.5 kB]
Get:88 http://deb.debian.org/debian sid/main arm64 libpython3.12t64 arm64 3.12.7-1 [1982 kB]
Get:89 http://deb.debian.org/debian sid/main arm64 zlib1g-dev arm64 1:1.3.dfsg+really1.3.1-1 [916 kB]
Get:90 http://deb.debian.org/debian sid/main arm64 libpython3.12-dev arm64 3.12.7-1 [4793 kB]
Get:91 http://deb.debian.org/debian sid/main arm64 libpython3.13-stdlib arm64 3.13.0-1 [1920 kB]
Get:92 http://deb.debian.org/debian sid/main arm64 libpython3.13 arm64 3.13.0-1 [1960 kB]
Get:93 http://deb.debian.org/debian sid/main arm64 libpython3.13-dev arm64 3.13.0-1 [4668 kB]
Get:94 http://deb.debian.org/debian sid/main arm64 python3-packaging all 24.1-1 [45.8 kB]
Get:95 http://deb.debian.org/debian sid/main arm64 python3-pyproject-hooks all 1.1.0-2 [11.3 kB]
Get:96 http://deb.debian.org/debian sid/main arm64 python3-toml all 0.10.2-1 [16.2 kB]
Get:97 http://deb.debian.org/debian sid/main arm64 python3-wheel all 0.44.0-2 [53.4 kB]
Get:98 http://deb.debian.org/debian sid/main arm64 python3-build all 1.2.2-1 [36.0 kB]
Get:99 http://deb.debian.org/debian sid/main arm64 python3-installer all 0.7.0+dfsg1-3 [18.6 kB]
Get:100 http://deb.debian.org/debian sid/main arm64 pybuild-plugin-pyproject all 6.20240824 [11.2 kB]
Get:101 http://deb.debian.org/debian sid/main arm64 python-babel-localedata all 2.14.0-1 [5701 kB]
Get:102 http://deb.debian.org/debian sid/main arm64 python3-alabaster all 0.7.16-0.1 [27.9 kB]
Get:103 http://deb.debian.org/debian sid/main arm64 python3.13 arm64 3.13.0-1 [730 kB]
Get:104 http://deb.debian.org/debian sid/main arm64 python3.12-dev arm64 3.12.7-1 [505 kB]
Get:105 http://deb.debian.org/debian sid/main arm64 python3.13-dev arm64 3.13.0-1 [504 kB]
Get:106 http://deb.debian.org/debian sid/main arm64 python3-async-generator all 1.10-4 [17.4 kB]
Get:107 http://deb.debian.org/debian sid/main arm64 python3-babel all 2.14.0-1 [111 kB]
Get:108 http://deb.debian.org/debian sid/main arm64 python3-bcrypt arm64 4.2.0-2 [188 kB]
Get:109 http://deb.debian.org/debian sid/main arm64 python3-certifi all 2024.8.30+dfsg-1 [9576 B]
Get:110 http://deb.debian.org/debian sid/main arm64 python3-cffi-backend arm64 1.17.1-1 [87.4 kB]
Get:111 http://deb.debian.org/debian sid/main arm64 python3-chardet all 5.2.0+dfsg-1 [107 kB]
Get:112 http://deb.debian.org/debian sid/main arm64 python3-charset-normalizer arm64 3.3.2-4 [110 kB]
Get:113 http://deb.debian.org/debian sid/main arm64 python3-cryptography arm64 43.0.0-1 [835 kB]
Get:114 http://deb.debian.org/debian sid/main arm64 python3-defusedxml all 0.7.1-2 [43.3 kB]
Get:115 http://deb.debian.org/debian sid/main arm64 python3-dnspython all 2.6.1-1 [161 kB]
Get:116 http://deb.debian.org/debian sid/main arm64 python3-roman all 4.2-1 [10.4 kB]
Get:117 http://deb.debian.org/debian sid/main arm64 python3-docutils all 0.21.2+dfsg-2 [403 kB]
Get:118 http://deb.debian.org/debian sid/main arm64 python3-pathspec all 0.12.1-1 [28.1 kB]
Get:119 http://deb.debian.org/debian sid/main arm64 python3-pluggy all 1.5.0-1 [26.9 kB]
Get:120 http://deb.debian.org/debian sid/main arm64 python3-trove-classifiers all 2024.9.12-1 [10.2 kB]
Get:121 http://deb.debian.org/debian sid/main arm64 python3-hatchling all 1.25.0-1 [53.8 kB]
Get:122 http://deb.debian.org/debian sid/main arm64 python3-hatch-requirements-txt all 0.4.1-2 [7408 B]
Get:123 http://deb.debian.org/debian sid/main arm64 python3-idna all 3.8-2 [41.6 kB]
Get:124 http://deb.debian.org/debian sid/main arm64 python3-imagesize all 1.4.1-1 [6688 B]
Get:125 http://deb.debian.org/debian sid/main arm64 python3-iniconfig all 1.1.1-2 [6396 B]
Get:126 http://deb.debian.org/debian sid/main arm64 python3-markupsafe arm64 2.1.5-1+b1 [13.7 kB]
Get:127 http://deb.debian.org/debian sid/main arm64 python3-jinja2 all 3.1.3-1 [119 kB]
Get:128 http://deb.debian.org/debian sid/main arm64 python3-openssl all 24.2.1-1 [53.2 kB]
Get:129 http://deb.debian.org/debian sid/main arm64 python3-pygments all 2.18.0+dfsg-1 [836 kB]
Get:130 http://deb.debian.org/debian sid/main arm64 python3-pytest all 8.3.3-1 [249 kB]
Get:131 http://deb.debian.org/debian sid/main arm64 python3-pytest-asyncio all 0.24.0a1-1 [15.6 kB]
Get:132 http://deb.debian.org/debian sid/main arm64 python3-urllib3 all 2.0.7-2 [111 kB]
Get:133 http://deb.debian.org/debian sid/main arm64 python3-requests all 2.32.3+dfsg-1 [71.9 kB]
Get:134 http://deb.debian.org/debian sid/main arm64 python3-snowballstemmer all 2.2.0-4 [58.0 kB]
Get:135 http://deb.debian.org/debian sid/main arm64 sphinx-common all 7.4.7-3 [731 kB]
Get:136 http://deb.debian.org/debian sid/main arm64 python3-sphinx all 7.4.7-3 [588 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 101 MB in 1s (70.6 MB/s)
Selecting previously unselected package libpython3.12-minimal:arm64.
(Reading database ... 16915 files and directories currently installed.)
Preparing to unpack .../libpython3.12-minimal_3.12.7-1_arm64.deb ...
Unpacking libpython3.12-minimal:arm64 (3.12.7-1) ...
Selecting previously unselected package libexpat1:arm64.
Preparing to unpack .../libexpat1_2.6.3-1_arm64.deb ...
Unpacking libexpat1:arm64 (2.6.3-1) ...
Selecting previously unselected package python3.12-minimal.
Preparing to unpack .../python3.12-minimal_3.12.7-1_arm64.deb ...
Unpacking python3.12-minimal (3.12.7-1) ...
Setting up libpython3.12-minimal:arm64 (3.12.7-1) ...
Setting up libexpat1:arm64 (2.6.3-1) ...
Setting up python3.12-minimal (3.12.7-1) ...
Selecting previously unselected package python3-minimal.
(Reading database ... 17235 files and directories currently installed.)
Preparing to unpack .../0-python3-minimal_3.12.6-1+debusine1_arm64.deb ...
Unpacking python3-minimal (3.12.6-1+debusine1) ...
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 libncursesw6:arm64.
Preparing to unpack .../2-libncursesw6_6.5-2_arm64.deb ...
Unpacking libncursesw6:arm64 (6.5-2) ...
Selecting previously unselected package libtirpc-common.
Preparing to unpack .../3-libtirpc-common_1.3.4+ds-1.3_all.deb ...
Unpacking libtirpc-common (1.3.4+ds-1.3) ...
Selecting previously unselected package libtirpc3t64:arm64.
Preparing to unpack .../4-libtirpc3t64_1.3.4+ds-1.3_arm64.deb ...
Adding 'diversion of /lib/aarch64-linux-gnu/libtirpc.so.3 to /lib/aarch64-linux-gnu/libtirpc.so.3.usr-is-merged by libtirpc3t64'
Adding 'diversion of /lib/aarch64-linux-gnu/libtirpc.so.3.0.0 to /lib/aarch64-linux-gnu/libtirpc.so.3.0.0.usr-is-merged by libtirpc3t64'
Unpacking libtirpc3t64:arm64 (1.3.4+ds-1.3) ...
Selecting previously unselected package libnsl2:arm64.
Preparing to unpack .../5-libnsl2_1.3.0-3+b2_arm64.deb ...
Unpacking libnsl2:arm64 (1.3.0-3+b2) ...
Selecting previously unselected package libpython3.12-stdlib:arm64.
Preparing to unpack .../6-libpython3.12-stdlib_3.12.7-1_arm64.deb ...
Unpacking libpython3.12-stdlib:arm64 (3.12.7-1) ...
Selecting previously unselected package python3.12.
Preparing to unpack .../7-python3.12_3.12.7-1_arm64.deb ...
Unpacking python3.12 (3.12.7-1) ...
Selecting previously unselected package libpython3-stdlib:arm64.
Preparing to unpack .../8-libpython3-stdlib_3.12.6-1+debusine1_arm64.deb ...
Unpacking libpython3-stdlib:arm64 (3.12.6-1+debusine1) ...
Setting up python3-minimal (3.12.6-1+debusine1) ...
Selecting previously unselected package python3.
(Reading database ... 17707 files and directories currently installed.)
Preparing to unpack .../000-python3_3.12.6-1+debusine1_arm64.deb ...
Unpacking python3 (3.12.6-1+debusine1) ...
Selecting previously unselected package libpython3.13-minimal:arm64.
Preparing to unpack .../001-libpython3.13-minimal_3.13.0-1_arm64.deb ...
Unpacking libpython3.13-minimal:arm64 (3.13.0-1) ...
Selecting previously unselected package python3.13-minimal.
Preparing to unpack .../002-python3.13-minimal_3.13.0-1_arm64.deb ...
Unpacking python3.13-minimal (3.13.0-1) ...
Selecting previously unselected package sgml-base.
Preparing to unpack .../003-sgml-base_1.31_all.deb ...
Unpacking sgml-base (1.31) ...
Selecting previously unselected package m4.
Preparing to unpack .../004-m4_1.4.19-4_arm64.deb ...
Unpacking m4 (1.4.19-4) ...
Selecting previously unselected package autoconf.
Preparing to unpack .../005-autoconf_2.72-3_all.deb ...
Unpacking autoconf (2.72-3) ...
Selecting previously unselected package autotools-dev.
Preparing to unpack .../006-autotools-dev_20220109.1_all.deb ...
Unpacking autotools-dev (20220109.1) ...
Selecting previously unselected package automake.
Preparing to unpack .../007-automake_1%3a1.16.5-1.3_all.deb ...
Unpacking automake (1:1.16.5-1.3) ...
Selecting previously unselected package autopoint.
Preparing to unpack .../008-autopoint_0.22.5-2_all.deb ...
Unpacking autopoint (0.22.5-2) ...
Selecting previously unselected package libc-dev-bin.
Preparing to unpack .../009-libc-dev-bin_2.40-3_arm64.deb ...
Unpacking libc-dev-bin (2.40-3) ...
Selecting previously unselected package linux-libc-dev.
Preparing to unpack .../010-linux-libc-dev_6.11.2-1_all.deb ...
Unpacking linux-libc-dev (6.11.2-1) ...
Selecting previously unselected package libcrypt-dev:arm64.
Preparing to unpack .../011-libcrypt-dev_1%3a4.4.36-5_arm64.deb ...
Unpacking libcrypt-dev:arm64 (1:4.4.36-5) ...
Selecting previously unselected package rpcsvc-proto.
Preparing to unpack .../012-rpcsvc-proto_1.4.3-1_arm64.deb ...
Unpacking rpcsvc-proto (1.4.3-1) ...
Selecting previously unselected package libc6-dev:arm64.
Preparing to unpack .../013-libc6-dev_2.40-3_arm64.deb ...
Unpacking libc6-dev:arm64 (2.40-3) ...
Selecting previously unselected package libisl23:arm64.
Preparing to unpack .../014-libisl23_0.27-1_arm64.deb ...
Unpacking libisl23:arm64 (0.27-1) ...
Selecting previously unselected package libmpfr6:arm64.
Preparing to unpack .../015-libmpfr6_4.2.1-1+b1_arm64.deb ...
Unpacking libmpfr6:arm64 (4.2.1-1+b1) ...
Selecting previously unselected package libmpc3:arm64.
Preparing to unpack .../016-libmpc3_1.3.1-1+b2_arm64.deb ...
Unpacking libmpc3:arm64 (1.3.1-1+b2) ...
Selecting previously unselected package cpp-14-aarch64-linux-gnu.
Preparing to unpack .../017-cpp-14-aarch64-linux-gnu_14.2.0-6_arm64.deb ...
Unpacking cpp-14-aarch64-linux-gnu (14.2.0-6) ...
Selecting previously unselected package cpp-14.
Preparing to unpack .../018-cpp-14_14.2.0-6_arm64.deb ...
Unpacking cpp-14 (14.2.0-6) ...
Selecting previously unselected package cpp-aarch64-linux-gnu.
Preparing to unpack .../019-cpp-aarch64-linux-gnu_4%3a14.2.0-1_arm64.deb ...
Unpacking cpp-aarch64-linux-gnu (4:14.2.0-1) ...
Selecting previously unselected package cpp.
Preparing to unpack .../020-cpp_4%3a14.2.0-1_arm64.deb ...
Unpacking cpp (4:14.2.0-1) ...
Selecting previously unselected package libcc1-0:arm64.
Preparing to unpack .../021-libcc1-0_14.2.0-6_arm64.deb ...
Unpacking libcc1-0:arm64 (14.2.0-6) ...
Selecting previously unselected package libitm1:arm64.
Preparing to unpack .../022-libitm1_14.2.0-6_arm64.deb ...
Unpacking libitm1:arm64 (14.2.0-6) ...
Selecting previously unselected package libasan8:arm64.
Preparing to unpack .../023-libasan8_14.2.0-6_arm64.deb ...
Unpacking libasan8:arm64 (14.2.0-6) ...
Selecting previously unselected package liblsan0:arm64.
Preparing to unpack .../024-liblsan0_14.2.0-6_arm64.deb ...
Unpacking liblsan0:arm64 (14.2.0-6) ...
Selecting previously unselected package libtsan2:arm64.
Preparing to unpack .../025-libtsan2_14.2.0-6_arm64.deb ...
Unpacking libtsan2:arm64 (14.2.0-6) ...
Selecting previously unselected package libubsan1:arm64.
Preparing to unpack .../026-libubsan1_14.2.0-6_arm64.deb ...
Unpacking libubsan1:arm64 (14.2.0-6) ...
Selecting previously unselected package libhwasan0:arm64.
Preparing to unpack .../027-libhwasan0_14.2.0-6_arm64.deb ...
Unpacking libhwasan0:arm64 (14.2.0-6) ...
Selecting previously unselected package libgcc-14-dev:arm64.
Preparing to unpack .../028-libgcc-14-dev_14.2.0-6_arm64.deb ...
Unpacking libgcc-14-dev:arm64 (14.2.0-6) ...
Selecting previously unselected package gcc-14-aarch64-linux-gnu.
Preparing to unpack .../029-gcc-14-aarch64-linux-gnu_14.2.0-6_arm64.deb ...
Unpacking gcc-14-aarch64-linux-gnu (14.2.0-6) ...
Selecting previously unselected package gcc-14.
Preparing to unpack .../030-gcc-14_14.2.0-6_arm64.deb ...
Unpacking gcc-14 (14.2.0-6) ...
Selecting previously unselected package gcc-aarch64-linux-gnu.
Preparing to unpack .../031-gcc-aarch64-linux-gnu_4%3a14.2.0-1_arm64.deb ...
Unpacking gcc-aarch64-linux-gnu (4:14.2.0-1) ...
Selecting previously unselected package gcc.
Preparing to unpack .../032-gcc_4%3a14.2.0-1_arm64.deb ...
Unpacking gcc (4:14.2.0-1) ...
Selecting previously unselected package libstdc++-14-dev:arm64.
Preparing to unpack .../033-libstdc++-14-dev_14.2.0-6_arm64.deb ...
Unpacking libstdc++-14-dev:arm64 (14.2.0-6) ...
Selecting previously unselected package g++-14-aarch64-linux-gnu.
Preparing to unpack .../034-g++-14-aarch64-linux-gnu_14.2.0-6_arm64.deb ...
Unpacking g++-14-aarch64-linux-gnu (14.2.0-6) ...
Selecting previously unselected package g++-14.
Preparing to unpack .../035-g++-14_14.2.0-6_arm64.deb ...
Unpacking g++-14 (14.2.0-6) ...
Selecting previously unselected package g++-aarch64-linux-gnu.
Preparing to unpack .../036-g++-aarch64-linux-gnu_4%3a14.2.0-1_arm64.deb ...
Unpacking g++-aarch64-linux-gnu (4:14.2.0-1) ...
Selecting previously unselected package g++.
Preparing to unpack .../037-g++_4%3a14.2.0-1_arm64.deb ...
Unpacking g++ (4:14.2.0-1) ...
Selecting previously unselected package build-essential.
Preparing to unpack .../038-build-essential_12.12_arm64.deb ...
Unpacking build-essential (12.12) ...
Selecting previously unselected package libdebhelper-perl.
Preparing to unpack .../039-libdebhelper-perl_13.20_all.deb ...
Unpacking libdebhelper-perl (13.20) ...
Selecting previously unselected package libtool.
Preparing to unpack .../040-libtool_2.4.7-7_all.deb ...
Unpacking libtool (2.4.7-7) ...
Selecting previously unselected package dh-autoreconf.
Preparing to unpack .../041-dh-autoreconf_20_all.deb ...
Unpacking dh-autoreconf (20) ...
Selecting previously unselected package libfile-stripnondeterminism-perl.
Preparing to unpack .../042-libfile-stripnondeterminism-perl_1.14.0-1_all.deb ...
Unpacking libfile-stripnondeterminism-perl (1.14.0-1) ...
Selecting previously unselected package dh-strip-nondeterminism.
Preparing to unpack .../043-dh-strip-nondeterminism_1.14.0-1_all.deb ...
Unpacking dh-strip-nondeterminism (1.14.0-1) ...
Selecting previously unselected package libelf1t64:arm64.
Preparing to unpack .../044-libelf1t64_0.191-2_arm64.deb ...
Unpacking libelf1t64:arm64 (0.191-2) ...
Selecting previously unselected package dwz.
Preparing to unpack .../045-dwz_0.15-1+b1_arm64.deb ...
Unpacking dwz (0.15-1+b1) ...
Selecting previously unselected package po-debconf.
Preparing to unpack .../046-po-debconf_1.0.21+nmu1_all.deb ...
Unpacking po-debconf (1.0.21+nmu1) ...
Selecting previously unselected package debhelper.
Preparing to unpack .../047-debhelper_13.20_all.deb ...
Unpacking debhelper (13.20) ...
Selecting previously unselected package python3-autocommand.
Preparing to unpack .../048-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 .../049-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 .../050-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 .../051-python3-typeguard_4.3.0-1_all.deb ...
Unpacking python3-typeguard (4.3.0-1) ...
Selecting previously unselected package python3-inflect.
Preparing to unpack .../052-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 .../053-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 .../054-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 .../055-python3-pkg-resources_74.1.2-2_all.deb ...
Unpacking python3-pkg-resources (74.1.2-2) ...
Selecting previously unselected package python3-zipp.
Preparing to unpack .../056-python3-zipp_3.20.2-1_all.deb ...
Unpacking python3-zipp (3.20.2-1) ...
Selecting previously unselected package python3-setuptools.
Preparing to unpack .../057-python3-setuptools_74.1.2-2_all.deb ...
Unpacking python3-setuptools (74.1.2-2) ...
Selecting previously unselected package dh-python.
Preparing to unpack .../058-dh-python_6.20240824_all.deb ...
Unpacking dh-python (6.20240824) ...
Selecting previously unselected package xml-core.
Preparing to unpack .../059-xml-core_0.19_all.deb ...
Unpacking xml-core (0.19) ...
Selecting previously unselected package docutils-common.
Preparing to unpack .../060-docutils-common_0.21.2+dfsg-2_all.deb ...
Unpacking docutils-common (0.21.2+dfsg-2) ...
Selecting previously unselected package dumb-init.
Preparing to unpack .../061-dumb-init_1.2.5-3_arm64.deb ...
Unpacking dumb-init (1.2.5-3) ...
Selecting previously unselected package libfakeroot:arm64.
Preparing to unpack .../062-libfakeroot_1.36-1_arm64.deb ...
Unpacking libfakeroot:arm64 (1.36-1) ...
Selecting previously unselected package fakeroot.
Preparing to unpack .../063-fakeroot_1.36-1_arm64.deb ...
Unpacking fakeroot (1.36-1) ...
Selecting previously unselected package libexpat1-dev:arm64.
Preparing to unpack .../064-libexpat1-dev_2.6.3-1_arm64.deb ...
Unpacking libexpat1-dev:arm64 (2.6.3-1) ...
Selecting previously unselected package libjs-jquery.
Preparing to unpack .../065-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 .../066-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 .../067-libjs-sphinxdoc_7.4.7-3_all.deb ...
Unpacking libjs-sphinxdoc (7.4.7-3) ...
Selecting previously unselected package libjson-perl.
Preparing to unpack .../068-libjson-perl_4.10000-1_all.deb ...
Unpacking libjson-perl (4.10000-1) ...
Selecting previously unselected package libpython3.12t64:arm64.
Preparing to unpack .../069-libpython3.12t64_3.12.7-1_arm64.deb ...
Unpacking libpython3.12t64:arm64 (3.12.7-1) ...
Selecting previously unselected package zlib1g-dev:arm64.
Preparing to unpack .../070-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1_arm64.deb ...
Unpacking zlib1g-dev:arm64 (1:1.3.dfsg+really1.3.1-1) ...
Selecting previously unselected package libpython3.12-dev:arm64.
Preparing to unpack .../071-libpython3.12-dev_3.12.7-1_arm64.deb ...
Unpacking libpython3.12-dev:arm64 (3.12.7-1) ...
Selecting previously unselected package libpython3-dev:arm64.
Preparing to unpack .../072-libpython3-dev_3.12.6-1+debusine1_arm64.deb ...
Unpacking libpython3-dev:arm64 (3.12.6-1+debusine1) ...
Selecting previously unselected package libpython3.13-stdlib:arm64.
Preparing to unpack .../073-libpython3.13-stdlib_3.13.0-1_arm64.deb ...
Unpacking libpython3.13-stdlib:arm64 (3.13.0-1) ...
Selecting previously unselected package libpython3.13:arm64.
Preparing to unpack .../074-libpython3.13_3.13.0-1_arm64.deb ...
Unpacking libpython3.13:arm64 (3.13.0-1) ...
Selecting previously unselected package libpython3.13-dev:arm64.
Preparing to unpack .../075-libpython3.13-dev_3.13.0-1_arm64.deb ...
Unpacking libpython3.13-dev:arm64 (3.13.0-1) ...
Selecting previously unselected package libpython3-all-dev:arm64.
Preparing to unpack .../076-libpython3-all-dev_3.12.6-1+debusine1_arm64.deb ...
Unpacking libpython3-all-dev:arm64 (3.12.6-1+debusine1) ...
Selecting previously unselected package python3-packaging.
Preparing to unpack .../077-python3-packaging_24.1-1_all.deb ...
Unpacking python3-packaging (24.1-1) ...
Selecting previously unselected package python3-pyproject-hooks.
Preparing to unpack .../078-python3-pyproject-hooks_1.1.0-2_all.deb ...
Unpacking python3-pyproject-hooks (1.1.0-2) ...
Selecting previously unselected package python3-toml.
Preparing to unpack .../079-python3-toml_0.10.2-1_all.deb ...
Unpacking python3-toml (0.10.2-1) ...
Selecting previously unselected package python3-wheel.
Preparing to unpack .../080-python3-wheel_0.44.0-2_all.deb ...
Unpacking python3-wheel (0.44.0-2) ...
Selecting previously unselected package python3-build.
Preparing to unpack .../081-python3-build_1.2.2-1_all.deb ...
Unpacking python3-build (1.2.2-1) ...
Selecting previously unselected package python3-installer.
Preparing to unpack .../082-python3-installer_0.7.0+dfsg1-3_all.deb ...
Unpacking python3-installer (0.7.0+dfsg1-3) ...
Selecting previously unselected package pybuild-plugin-pyproject.
Preparing to unpack .../083-pybuild-plugin-pyproject_6.20240824_all.deb ...
Unpacking pybuild-plugin-pyproject (6.20240824) ...
Selecting previously unselected package python-babel-localedata.
Preparing to unpack .../084-python-babel-localedata_2.14.0-1_all.deb ...
Unpacking python-babel-localedata (2.14.0-1) ...
Selecting previously unselected package python3-alabaster.
Preparing to unpack .../085-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 .../086-python3.13_3.13.0-1_arm64.deb ...
Unpacking python3.13 (3.13.0-1) ...
Selecting previously unselected package python3-all.
Preparing to unpack .../087-python3-all_3.12.6-1+debusine1_arm64.deb ...
Unpacking python3-all (3.12.6-1+debusine1) ...
Selecting previously unselected package python3.12-dev.
Preparing to unpack .../088-python3.12-dev_3.12.7-1_arm64.deb ...
Unpacking python3.12-dev (3.12.7-1) ...
Selecting previously unselected package python3-dev.
Preparing to unpack .../089-python3-dev_3.12.6-1+debusine1_arm64.deb ...
Unpacking python3-dev (3.12.6-1+debusine1) ...
Selecting previously unselected package python3.13-dev.
Preparing to unpack .../090-python3.13-dev_3.13.0-1_arm64.deb ...
Unpacking python3.13-dev (3.13.0-1) ...
Selecting previously unselected package python3-all-dev.
Preparing to unpack .../091-python3-all-dev_3.12.6-1+debusine1_arm64.deb ...
Unpacking python3-all-dev (3.12.6-1+debusine1) ...
Selecting previously unselected package python3-async-generator.
Preparing to unpack .../092-python3-async-generator_1.10-4_all.deb ...
Unpacking python3-async-generator (1.10-4) ...
Selecting previously unselected package python3-babel.
Preparing to unpack .../093-python3-babel_2.14.0-1_all.deb ...
Unpacking python3-babel (2.14.0-1) ...
Selecting previously unselected package python3-bcrypt.
Preparing to unpack .../094-python3-bcrypt_4.2.0-2_arm64.deb ...
Unpacking python3-bcrypt (4.2.0-2) ...
Selecting previously unselected package python3-certifi.
Preparing to unpack .../095-python3-certifi_2024.8.30+dfsg-1_all.deb ...
Unpacking python3-certifi (2024.8.30+dfsg-1) ...
Selecting previously unselected package python3-cffi-backend:arm64.
Preparing to unpack .../096-python3-cffi-backend_1.17.1-1_arm64.deb ...
Unpacking python3-cffi-backend:arm64 (1.17.1-1) ...
Selecting previously unselected package python3-chardet.
Preparing to unpack .../097-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 .../098-python3-charset-normalizer_3.3.2-4_arm64.deb ...
Unpacking python3-charset-normalizer (3.3.2-4) ...
Selecting previously unselected package python3-cryptography.
Preparing to unpack .../099-python3-cryptography_43.0.0-1_arm64.deb ...
Unpacking python3-cryptography (43.0.0-1) ...
Selecting previously unselected package python3-defusedxml.
Preparing to unpack .../100-python3-defusedxml_0.7.1-2_all.deb ...
Unpacking python3-defusedxml (0.7.1-2) ...
Selecting previously unselected package python3-dnspython.
Preparing to unpack .../101-python3-dnspython_2.6.1-1_all.deb ...
Unpacking python3-dnspython (2.6.1-1) ...
Selecting previously unselected package python3-roman.
Preparing to unpack .../102-python3-roman_4.2-1_all.deb ...
Unpacking python3-roman (4.2-1) ...
Selecting previously unselected package python3-docutils.
Preparing to unpack .../103-python3-docutils_0.21.2+dfsg-2_all.deb ...
Unpacking python3-docutils (0.21.2+dfsg-2) ...
Selecting previously unselected package python3-pathspec.
Preparing to unpack .../104-python3-pathspec_0.12.1-1_all.deb ...
Unpacking python3-pathspec (0.12.1-1) ...
Selecting previously unselected package python3-pluggy.
Preparing to unpack .../105-python3-pluggy_1.5.0-1_all.deb ...
Unpacking python3-pluggy (1.5.0-1) ...
Selecting previously unselected package python3-trove-classifiers.
Preparing to unpack .../106-python3-trove-classifiers_2024.9.12-1_all.deb ...
Unpacking python3-trove-classifiers (2024.9.12-1) ...
Selecting previously unselected package python3-hatchling.
Preparing to unpack .../107-python3-hatchling_1.25.0-1_all.deb ...
Unpacking python3-hatchling (1.25.0-1) ...
Selecting previously unselected package python3-hatch-requirements-txt.
Preparing to unpack .../108-python3-hatch-requirements-txt_0.4.1-2_all.deb ...
Unpacking python3-hatch-requirements-txt (0.4.1-2) ...
Selecting previously unselected package python3-idna.
Preparing to unpack .../109-python3-idna_3.8-2_all.deb ...
Unpacking python3-idna (3.8-2) ...
Selecting previously unselected package python3-imagesize.
Preparing to unpack .../110-python3-imagesize_1.4.1-1_all.deb ...
Unpacking python3-imagesize (1.4.1-1) ...
Selecting previously unselected package python3-iniconfig.
Preparing to unpack .../111-python3-iniconfig_1.1.1-2_all.deb ...
Unpacking python3-iniconfig (1.1.1-2) ...
Selecting previously unselected package python3-markupsafe.
Preparing to unpack .../112-python3-markupsafe_2.1.5-1+b1_arm64.deb ...
Unpacking python3-markupsafe (2.1.5-1+b1) ...
Selecting previously unselected package python3-jinja2.
Preparing to unpack .../113-python3-jinja2_3.1.3-1_all.deb ...
Unpacking python3-jinja2 (3.1.3-1) ...
Selecting previously unselected package python3-openssl.
Preparing to unpack .../114-python3-openssl_24.2.1-1_all.deb ...
Unpacking python3-openssl (24.2.1-1) ...
Selecting previously unselected package python3-pygments.
Preparing to unpack .../115-python3-pygments_2.18.0+dfsg-1_all.deb ...
Unpacking python3-pygments (2.18.0+dfsg-1) ...
Selecting previously unselected package python3-pytest.
Preparing to unpack .../116-python3-pytest_8.3.3-1_all.deb ...
Unpacking python3-pytest (8.3.3-1) ...
Selecting previously unselected package python3-pytest-asyncio.
Preparing to unpack .../117-python3-pytest-asyncio_0.24.0a1-1_all.deb ...
Unpacking python3-pytest-asyncio (0.24.0a1-1) ...
Selecting previously unselected package python3-urllib3.
Preparing to unpack .../118-python3-urllib3_2.0.7-2_all.deb ...
Unpacking python3-urllib3 (2.0.7-2) ...
Selecting previously unselected package python3-requests.
Preparing to unpack .../119-python3-requests_2.32.3+dfsg-1_all.deb ...
Unpacking python3-requests (2.32.3+dfsg-1) ...
Selecting previously unselected package python3-snowballstemmer.
Preparing to unpack .../120-python3-snowballstemmer_2.2.0-4_all.deb ...
Unpacking python3-snowballstemmer (2.2.0-4) ...
Selecting previously unselected package sphinx-common.
Preparing to unpack .../121-sphinx-common_7.4.7-3_all.deb ...
Unpacking sphinx-common (7.4.7-3) ...
Selecting previously unselected package python3-sphinx.
Preparing to unpack .../122-python3-sphinx_7.4.7-3_all.deb ...
Unpacking python3-sphinx (7.4.7-3) ...
Selecting previously unselected package sbuild-build-depends-main-dummy.
Preparing to unpack .../123-sbuild-build-depends-main-dummy_0.invalid.0_arm64.deb ...
Unpacking sbuild-build-depends-main-dummy (0.invalid.0) ...
Setting up media-types (10.1.0) ...
Setting up dumb-init (1.2.5-3) ...
Setting up libfile-stripnondeterminism-perl (1.14.0-1) ...
Setting up libtirpc-common (1.3.4+ds-1.3) ...
Setting up po-debconf (1.0.21+nmu1) ...
Setting up libdebhelper-perl (13.20) ...
Setting up linux-libc-dev (6.11.2-1) ...
Setting up m4 (1.4.19-4) ...
Setting up libfakeroot:arm64 (1.36-1) ...
Setting up libelf1t64:arm64 (0.191-2) ...
Setting up python-babel-localedata (2.14.0-1) ...
Setting up fakeroot (1.36-1) ...
update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
Setting up libpython3.13-minimal:arm64 (3.13.0-1) ...
Setting up autotools-dev (20220109.1) ...
Setting up rpcsvc-proto (1.4.3-1) ...
Setting up libmpfr6:arm64 (4.2.1-1+b1) ...
Setting up libmpc3:arm64 (1.3.1-1+b2) ...
Setting up autopoint (0.22.5-2) ...
Setting up libncursesw6:arm64 (6.5-2) ...
Setting up autoconf (2.72-3) ...
Setting up libubsan1:arm64 (14.2.0-6) ...
Setting up dh-strip-nondeterminism (1.14.0-1) ...
Setting up dwz (0.15-1+b1) ...
Setting up libhwasan0:arm64 (14.2.0-6) ...
Setting up libcrypt-dev:arm64 (1:4.4.36-5) ...
Setting up libasan8:arm64 (14.2.0-6) ...
Setting up libjson-perl (4.10000-1) ...
Setting up python3.13-minimal (3.13.0-1) ...
Setting up sgml-base (1.31) ...
Setting up libtsan2:arm64 (14.2.0-6) ...
Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
Setting up libisl23:arm64 (0.27-1) ...
Setting up libc-dev-bin (2.40-3) ...
Setting up libpython3.13-stdlib:arm64 (3.13.0-1) ...
Setting up libcc1-0:arm64 (14.2.0-6) ...
Setting up liblsan0:arm64 (14.2.0-6) ...
Setting up libitm1:arm64 (14.2.0-6) ...
Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ...
Setting up libpython3.13:arm64 (3.13.0-1) ...
Setting up automake (1:1.16.5-1.3) ...
update-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake (automake) in auto mode
Setting up libtirpc3t64:arm64 (1.3.4+ds-1.3) ...
Setting up python3.13 (3.13.0-1) ...
Setting up libjs-sphinxdoc (7.4.7-3) ...
Setting up cpp-14-aarch64-linux-gnu (14.2.0-6) ...
Setting up xml-core (0.19) ...
Setting up libnsl2:arm64 (1.3.0-3+b2) ...
Setting up libc6-dev:arm64 (2.40-3) ...
Setting up libgcc-14-dev:arm64 (14.2.0-6) ...
Setting up libstdc++-14-dev:arm64 (14.2.0-6) ...
Setting up libpython3.12-stdlib:arm64 (3.12.7-1) ...
Setting up python3.12 (3.12.7-1) ...
Setting up libpython3.12t64:arm64 (3.12.7-1) ...
Setting up cpp-aarch64-linux-gnu (4:14.2.0-1) ...
Setting up libexpat1-dev:arm64 (2.6.3-1) ...
Setting up sphinx-common (7.4.7-3) ...
Setting up cpp-14 (14.2.0-6) ...
Setting up zlib1g-dev:arm64 (1:1.3.dfsg+really1.3.1-1) ...
Setting up cpp (4:14.2.0-1) ...
Setting up gcc-14-aarch64-linux-gnu (14.2.0-6) ...
Setting up libpython3-stdlib:arm64 (3.12.6-1+debusine1) ...
Setting up gcc-aarch64-linux-gnu (4:14.2.0-1) ...
Setting up g++-14-aarch64-linux-gnu (14.2.0-6) ...
Setting up python3 (3.12.6-1+debusine1) ...
Setting up libpython3.12-dev:arm64 (3.12.7-1) ...
Setting up python3-zipp (3.20.2-1) ...
Setting up python3-autocommand (2.2.2-3) ...
Setting up python3-markupsafe (2.1.5-1+b1) ...
Setting up python3-wheel (0.44.0-2) ...
Setting up gcc-14 (14.2.0-6) ...
Setting up python3-roman (4.2-1) ...
Setting up python3-jinja2 (3.1.3-1) ...
Setting up python3-packaging (24.1-1) ...
Setting up python3-pyproject-hooks (1.1.0-2) ...
Setting up python3-certifi (2024.8.30+dfsg-1) ...
Setting up python3-snowballstemmer (2.2.0-4) ...
Setting up libpython3.13-dev:arm64 (3.13.0-1) ...
Setting up python3-idna (3.8-2) ...
Setting up python3.12-dev (3.12.7-1) ...
Setting up python3-typing-extensions (4.12.2-2) ...
Setting up python3-toml (0.10.2-1) ...
Setting up python3-installer (0.7.0+dfsg1-3) ...
Setting up python3-urllib3 (2.0.7-2) ...
Setting up python3-pluggy (1.5.0-1) ...
Setting up python3-trove-classifiers (2024.9.12-1) ...
Setting up python3-dnspython (2.6.1-1) ...
Setting up g++-aarch64-linux-gnu (4:14.2.0-1) ...
Setting up g++-14 (14.2.0-6) ...
Setting up python3-build (1.2.2-1) ...
Setting up python3-pathspec (0.12.1-1) ...
Setting up python3-cffi-backend:arm64 (1.17.1-1) ...
Setting up python3-imagesize (1.4.1-1) ...
Setting up python3-more-itertools (10.5.0-1) ...
Setting up python3-iniconfig (1.1.1-2) ...
Setting up libpython3-dev:arm64 (3.12.6-1+debusine1) ...
Setting up python3-jaraco.functools (4.1.0-1) ...
Setting up python3-async-generator (1.10-4) ...
Setting up python3-jaraco.context (6.0.0-1) ...
Setting up libtool (2.4.7-7) ...
Setting up python3-defusedxml (0.7.1-2) ...
Setting up python3-charset-normalizer (3.3.2-4) ...
Setting up python3.13-dev (3.13.0-1) ...
Setting up python3-pytest (8.3.3-1) ...
Setting up python3-alabaster (0.7.16-0.1) ...
Setting up python3-bcrypt (4.2.0-2) ...
Setting up python3-typeguard (4.3.0-1) ...
Setting up python3-all (3.12.6-1+debusine1) ...
Setting up gcc (4:14.2.0-1) ...
Setting up dh-autoreconf (20) ...
Setting up python3-inflect (7.3.1-2) ...
Setting up libpython3-all-dev:arm64 (3.12.6-1+debusine1) ...
Setting up python3-cryptography (43.0.0-1) ...
Setting up python3-dev (3.12.6-1+debusine1) ...
Setting up python3-pytest-asyncio (0.24.0a1-1) ...
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 build-essential (12.12) ...
Setting up python3-hatchling (1.25.0-1) ...
Setting up python3-pkg-resources (74.1.2-2) ...
Setting up python3-all-dev (3.12.6-1+debusine1) ...
Setting up python3-setuptools (74.1.2-2) ...
Setting up python3-babel (2.14.0-1) ...
update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode
Setting up python3-openssl (24.2.1-1) ...
Setting up debhelper (13.20) ...
Setting up python3-hatch-requirements-txt (0.4.1-2) ...
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 dh-python (6.20240824) ...
Setting up pybuild-plugin-pyproject (6.20240824) ...
Processing triggers for libc-bin (2.40-3) ...
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 (7.4.7-3) ...
Setting up sbuild-build-depends-main-dummy (0.invalid.0) ...

+------------------------------------------------------------------------------+
| Check architectures                                                          |
+------------------------------------------------------------------------------+

E: dsc: arm64 not in arch list or does not match any arch wildcards: any-amd64 any-arm any-i386 any-ia64 any-mipsel any-ppc64el all -- skipping

+------------------------------------------------------------------------------+
| Cleanup                                                                      |
+------------------------------------------------------------------------------+

Purging /<<BUILDDIR>>
Not cleaning session: cloned chroot in use
E: dsc: arm64 not in arch list or does not match any arch wildcards: any-amd64 any-arm any-i386 any-ia64 any-mipsel any-ppc64el all -- skipping

+------------------------------------------------------------------------------+
| Summary                                                                      |
+------------------------------------------------------------------------------+

Build Architecture: arm64
Build Type: any
Build-Space: n/a
Build-Time: 0
Distribution: sid
Fail-Stage: arch-check
Host Architecture: arm64
Install-Time: 57
Job: /tmp/debusine-fetch-exec-upload-6g4atd1n/pymongo_4.10.1-2.dsc
Machine Architecture: arm64
Package: pymongo
Package-Time: 0
Source-Version: 4.10.1-2
Space: n/a
Status: skipped
Version: 4.10.1-2+bd1
--------------------------------------------------------------------------------
Finished at 2024-10-14T16:24:23Z
Build needed 00:00:00, no disk space

Relations

Relation Direction Type Name
relates-to Source package pymongo_4.10.1-2
relates-to Binary package libpython3-all-dbg_3.12.6-1+debusine1_arm64
relates-to Binary package libpython3-all-dev_3.12.6-1+debusine1_arm64
relates-to Binary package libpython3-dbg_3.12.6-1+debusine1_arm64
relates-to Binary package libpython3-dev_3.12.6-1+debusine1_arm64
relates-to Binary package libpython3-stdlib_3.12.6-1+debusine1_arm64
relates-to Binary package python3-all-dbg_3.12.6-1+debusine1_arm64
relates-to Binary package python3-all-dev_3.12.6-1+debusine1_arm64
relates-to Binary package python3-all-venv_3.12.6-1+debusine1_arm64
relates-to Binary package python3-all_3.12.6-1+debusine1_arm64
relates-to Binary package python3-dbg_3.12.6-1+debusine1_arm64
relates-to Binary package python3-dev_3.12.6-1+debusine1_arm64
relates-to Binary package python3-full_3.12.6-1+debusine1_arm64
relates-to Binary package python3-minimal_3.12.6-1+debusine1_arm64
relates-to Binary package python3-nopie_3.12.6-1+debusine1_arm64
relates-to Binary package python3-venv_3.12.6-1+debusine1_arm64
relates-to Binary package python3_3.12.6-1+debusine1_arm64
relates-to Binary package 2to3_3.12.6-1+debusine1_all
relates-to Binary package idle_3.12.6-1+debusine1_all
relates-to Binary package python3-doc_3.12.6-1+debusine1_all
relates-to Binary package python3-examples_3.12.6-1+debusine1_all

build log System build a package - 6 days, 2 hours ago 0 minutes
BETA