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
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
cmd: env PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin piuparts --keep-sources-list --allow-database --warn-on-leftovers-after-purge --basetgz=/tmp/debusine-fetch-exec-upload-b3v_4g30/base_tar/system.tar.gz --scriptsdir=/tmp/debusine-fetch-exec-upload-b3v_4g30/scripts '/tmp/debusine-fetch-exec-upload-b3v_4g30/spawn-fcgi-dbgsym_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb' '/tmp/debusine-fetch-exec-upload-b3v_4g30/spawn-fcgi_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb'
output (contains stdout and stderr):
0m0.0s INFO: ------------------------------------------------------------------------------
0m0.0s INFO: To quickly glance what went wrong, scroll down to the bottom of this logfile.
0m0.0s INFO: FAQ available at https://wiki.debian.org/piuparts/FAQ
0m0.0s INFO: The FAQ also explains how to contact us in case you think piuparts is wrong.
0m0.0s INFO: ------------------------------------------------------------------------------
0m0.0s INFO: piuparts version 1.6.0 starting up.
0m0.0s INFO: Command line arguments: /usr/bin/piuparts --keep-sources-list --allow-database --warn-on-leftovers-after-purge --basetgz=/tmp/debusine-fetch-exec-upload-b3v_4g30/base_tar/system.tar.gz --scriptsdir=/tmp/debusine-fetch-exec-upload-b3v_4g30/scripts '/tmp/debusine-fetch-exec-upload-b3v_4g30/spawn-fcgi-dbgsym_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb' '/tmp/debusine-fetch-exec-upload-b3v_4g30/spawn-fcgi_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb'
0m0.0s INFO: Running on: Linux dev 6.12.43+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.43-1 (2025-08-27) x86_64
0m0.0s DEBUG: Starting command: ['dpkg', '--info', '/tmp/debusine-fetch-exec-upload-b3v_4g30/spawn-fcgi-dbgsym_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb']
0m0.0s DUMP: 
   new Debian package, version 2.0.
   size 17504 bytes: control archive=544 bytes.
       403 bytes,    12 lines      control
       106 bytes,     1 lines      md5sums
   Package: spawn-fcgi-dbgsym
   Source: spawn-fcgi
   Version: 1.6.7~snap-20250301-194725-ga82da4-0.2
   Auto-Built-Package: debug-symbols
   Architecture: amd64
   Maintainer: Jérémy Lal <kapouer@melix.org>
   Installed-Size: 39
   Depends: spawn-fcgi (= 1.6.7~snap-20250301-194725-ga82da4-0.2)
   Section: debug
   Priority: optional
   Description: debug symbols for spawn-fcgi
   Build-Ids: c82b6edf616e72fead061df6a1fc1ccabb3a4f00
0m0.0s DEBUG: Command ok: ['dpkg', '--info', '/tmp/debusine-fetch-exec-upload-b3v_4g30/spawn-fcgi-dbgsym_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb']
0m0.0s DEBUG: Starting command: ['dpkg', '--info', '/tmp/debusine-fetch-exec-upload-b3v_4g30/spawn-fcgi_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb']
0m0.0s DUMP: 
   new Debian package, version 2.0.
   size 15336 bytes: control archive=1236 bytes.
       817 bytes,    20 lines      control
       894 bytes,    12 lines      md5sums
       133 bytes,     9 lines   *  preinst              #!/bin/sh
   Package: spawn-fcgi
   Version: 1.6.7~snap-20250301-194725-ga82da4-0.2
   Architecture: amd64
   Maintainer: Jérémy Lal <kapouer@melix.org>
   Installed-Size: 55
   Depends: libc6 (>= 2.38)
   Section: web
   Priority: optional
   Homepage: http://redmine.lighttpd.net/projects/spawn-fcgi
   Description: FastCGI process spawner
    Allows FastCGI processes to be separated from web server process :
      * Easy creation of chmoded socket.
      * Privilege separation without needing a suid-binary,
        or running a server as root.
      * You can restart your web server and the FastCGI applications
        without restarting the others.
      * You can run them in different chroot()s.
      * Running your FastCGI applications doesn’t depend on the web server
        you are running, which allows for easier testing of/migration
        to other web servers.
0m0.0s DEBUG: Command ok: ['dpkg', '--info', '/tmp/debusine-fetch-exec-upload-b3v_4g30/spawn-fcgi_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb']
0m0.0s DEBUG: Created temporary directory /tmp/tmpglbzwey7
0m0.0s DEBUG: Unpacking /tmp/debusine-fetch-exec-upload-b3v_4g30/base_tar/system.tar.gz into /tmp/tmpglbzwey7
0m0.0s DEBUG: Starting command: ['tar', '-C', '/tmp/tmpglbzwey7', '--auto-compress', '-xf', '/tmp/debusine-fetch-exec-upload-b3v_4g30/base_tar/system.tar.gz']
0m1.9s DEBUG: Command ok: ['tar', '-C', '/tmp/tmpglbzwey7', '--auto-compress', '-xf', '/tmp/debusine-fetch-exec-upload-b3v_4g30/base_tar/system.tar.gz']
0m1.9s DEBUG: Starting command: ['mount', '-t', 'proc', 'proc', '/tmp/tmpglbzwey7/proc']
0m1.9s DEBUG: Command ok: ['mount', '-t', 'proc', 'proc', '/tmp/tmpglbzwey7/proc']
0m1.9s DEBUG: Starting command: ['mount', '-t', 'devpts', '-o', 'newinstance,noexec,nosuid,gid=5,mode=0620,ptmxmode=0666', 'devpts', '/tmp/tmpglbzwey7/dev/pts']
0m1.9s DEBUG: Command ok: ['mount', '-t', 'devpts', '-o', 'newinstance,noexec,nosuid,gid=5,mode=0620,ptmxmode=0666', 'devpts', '/tmp/tmpglbzwey7/dev/pts']
0m1.9s DEBUG: Starting command: ['mount', '-t', 'tmpfs', '-o', 'size=65536k', 'tmpfs', '/tmp/tmpglbzwey7/dev/shm']
0m1.9s DEBUG: Command ok: ['mount', '-t', 'tmpfs', '-o', 'size=65536k', 'tmpfs', '/tmp/tmpglbzwey7/dev/shm']
0m1.9s DEBUG: Created policy-rc.d and chmodded it.
0m1.9s DEBUG: Created resolv.conf.
0m1.9s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/null', '/tmp/tmpglbzwey7/dev/null']
0m1.9s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/null', '/tmp/tmpglbzwey7/dev/null']
0m1.9s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/zero', '/tmp/tmpglbzwey7/dev/zero']
0m1.9s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/zero', '/tmp/tmpglbzwey7/dev/zero']
0m1.9s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/full', '/tmp/tmpglbzwey7/dev/full']
0m1.9s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/full', '/tmp/tmpglbzwey7/dev/full']
0m1.9s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/random', '/tmp/tmpglbzwey7/dev/random']
0m1.9s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/random', '/tmp/tmpglbzwey7/dev/random']
0m1.9s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/urandom', '/tmp/tmpglbzwey7/dev/urandom']
0m1.9s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/urandom', '/tmp/tmpglbzwey7/dev/urandom']
0m1.9s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/tty', '/tmp/tmpglbzwey7/dev/tty']
0m1.9s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/tty', '/tmp/tmpglbzwey7/dev/tty']
0m1.9s DEBUG: Copying scriptsdir /tmp/debusine-fetch-exec-upload-b3v_4g30/scripts to /tmp/tmpglbzwey7/tmp/scripts/
0m1.9s INFO: Running scripts post_chroot_unpack
0m1.9s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'tmp/scripts/post_chroot_unpack_debusine']
0m1.9s DUMP: 
  + printf %s Types: deb
  URIs: http://deb.debian.org/debian
  Suites: trixie-proposed-updates
  Components: main
  
  + printf %s Types: deb
  URIs: http://incoming.debian.org/debian-buildd
  Suites: buildd-trixie-proposed-updates
  Components: main
  
  + echo DONE
  DONE
0m1.9s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'tmp/scripts/post_chroot_unpack_debusine']
0m1.9s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'apt-get', 'update']
0m3.2s DUMP: 
  Get:1 http://incoming.debian.org/debian-buildd buildd-trixie-proposed-updates InRelease [29.2 kB]
  Get:2 http://incoming.debian.org/debian-buildd buildd-trixie-proposed-updates/main amd64 Packages [6128 B]
  Get:3 http://deb.debian.org/debian trixie-proposed-updates InRelease [55.8 kB]
  Get:4 http://deb.debian.org/debian trixie InRelease [138 kB]
  Get:5 http://incoming.debian.org/debian-buildd buildd-trixie-proposed-updates/main Translation-en [9772 B]
  Get:6 http://deb.debian.org/debian trixie-proposed-updates/main amd64 Packages [137 kB]
  Get:7 http://deb.debian.org/debian trixie-proposed-updates/main Translation-en [89.1 kB]
  Get:8 http://deb.debian.org/debian trixie/main amd64 Packages [9668 kB]
  Get:9 http://deb.debian.org/debian trixie/main Translation-en [6484 kB]
  Fetched 16.6 MB in 1s (20.9 MB/s)
  Reading package lists...
0m3.2s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'apt-get', 'update']
0m3.2s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'apt-get', '-yf', 'dist-upgrade']
0m3.9s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  Calculating upgrade...
  The following packages will be upgraded:
    base-files init-system-helpers libpcre2-8-0 libsystemd0 libudev1
    linux-libc-dev
  6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
  Need to get 3670 kB of archives.
  After this operation, 32.8 kB of additional disk space will be used.
  Get:1 http://deb.debian.org/debian trixie-proposed-updates/main amd64 base-files amd64 13.8+deb13u1 [73.2 kB]
  Get:2 http://deb.debian.org/debian trixie-proposed-updates/main amd64 init-system-helpers all 1.69~deb13u1 [39.4 kB]
  Get:3 http://deb.debian.org/debian trixie-proposed-updates/main amd64 libpcre2-8-0 amd64 10.46-1~deb13u1 [299 kB]
  Get:4 http://deb.debian.org/debian trixie-proposed-updates/main amd64 libsystemd0 amd64 257.8-1~deb13u1 [453 kB]
  Get:5 http://deb.debian.org/debian trixie-proposed-updates/main amd64 libudev1 amd64 257.8-1~deb13u1 [152 kB]
  Get:6 http://deb.debian.org/debian trixie-proposed-updates/main amd64 linux-libc-dev all 6.12.43-1 [2654 kB]
  Fetched 3670 kB in 0s (55.0 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 ... 11790 files and directories currently installed.)
  Preparing to unpack .../base-files_13.8+deb13u1_amd64.deb ...
  Unpacking base-files (13.8+deb13u1) over (13.8) ...
  Setting up base-files (13.8+deb13u1) ...
  Installing new version of config file /etc/debian_version ...
  (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 ... 11790 files and directories currently installed.)
  Preparing to unpack .../init-system-helpers_1.69~deb13u1_all.deb ...
  Unpacking init-system-helpers (1.69~deb13u1) over (1.68) ...
  Setting up init-system-helpers (1.69~deb13u1) ...
  (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 ... 11791 files and directories currently installed.)
  Preparing to unpack .../libpcre2-8-0_10.46-1~deb13u1_amd64.deb ...
  Unpacking libpcre2-8-0:amd64 (10.46-1~deb13u1) over (10.45-1) ...
  Setting up libpcre2-8-0:amd64 (10.46-1~deb13u1) ...
  (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 ... 11791 files and directories currently installed.)
  Preparing to unpack .../libsystemd0_257.8-1~deb13u1_amd64.deb ...
  Unpacking libsystemd0:amd64 (257.8-1~deb13u1) over (257.7-1) ...
  Setting up libsystemd0:amd64 (257.8-1~deb13u1) ...
  (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 ... 11791 files and directories currently installed.)
  Preparing to unpack .../libudev1_257.8-1~deb13u1_amd64.deb ...
  Unpacking libudev1:amd64 (257.8-1~deb13u1) over (257.7-1) ...
  Setting up libudev1:amd64 (257.8-1~deb13u1) ...
  (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 ... 11791 files and directories currently installed.)
  Preparing to unpack .../linux-libc-dev_6.12.43-1_all.deb ...
  Unpacking linux-libc-dev (6.12.43-1) over (6.12.38-1) ...
  Setting up linux-libc-dev (6.12.43-1) ...
  Processing triggers for libc-bin (2.41-12) ...
0m3.9s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'apt-get', '-yf', 'dist-upgrade']
0m3.9s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'sh', '-c', 'apt-cache dumpavail | md5sum']
0m4.1s DUMP: 
  e8613f917c3a32d6bb24a33d2ddef7f0  -
0m4.1s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'sh', '-c', 'apt-cache dumpavail | md5sum']
0m4.1s INFO: Running scripts post_setup
0m4.1s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'apt-get', 'clean']
0m4.1s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'apt-get', 'clean']
0m4.1s DEBUG: Recording chroot state
0m4.1s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m4.1s DUMP: 
  install ok installed	apt	apt	3.0.3
  install ok installed	base-files	base-files	13.8+deb13u1
  install ok installed	base-passwd	base-passwd	3.6.7
  install ok installed	bash	bash	5.2.37-2+b5
  install ok installed	binutils	binutils	2.44-3
  install ok installed	binutils-common:amd64	binutils-common	2.44-3
  install ok installed	binutils-x86-64-linux-gnu	binutils-x86-64-linux-gnu	2.44-3
  install ok installed	bsdutils	bsdutils	1:2.41-5
  install ok installed	build-essential	build-essential	12.12
  install ok installed	bzip2	bzip2	1.0.8-6
  install ok installed	coreutils	coreutils	9.7-3
  install ok installed	cpp	cpp	4:14.2.0-1
  install ok installed	cpp-14	cpp-14	14.2.0-19
  install ok installed	cpp-14-x86-64-linux-gnu	cpp-14-x86-64-linux-gnu	14.2.0-19
  install ok installed	cpp-x86-64-linux-gnu	cpp-x86-64-linux-gnu	4:14.2.0-1
  install ok installed	dash	dash	0.5.12-12
  install ok installed	debconf	debconf	1.5.91
  install ok installed	debian-archive-keyring	debian-archive-keyring	2025.1
  install ok installed	debianutils	debianutils	5.23.2
  install ok installed	diffutils	diffutils	1:3.10-4
  install ok installed	dpkg	dpkg	1.22.21
  install ok installed	dpkg-dev	dpkg-dev	1.22.21
  install ok installed	findutils	findutils	4.10.0-3
  install ok installed	g++	g++	4:14.2.0-1
  install ok installed	g++-14	g++-14	14.2.0-19
  install ok installed	g++-14-x86-64-linux-gnu	g++-14-x86-64-linux-gnu	14.2.0-19
  install ok installed	g++-x86-64-linux-gnu	g++-x86-64-linux-gnu	4:14.2.0-1
  install ok installed	gcc	gcc	4:14.2.0-1
  install ok installed	gcc-14	gcc-14	14.2.0-19
  install ok installed	gcc-14-base:amd64	gcc-14-base	14.2.0-19
  install ok installed	gcc-14-x86-64-linux-gnu	gcc-14-x86-64-linux-gnu	14.2.0-19
  install ok installed	gcc-x86-64-linux-gnu	gcc-x86-64-linux-gnu	4:14.2.0-1
  install ok installed	grep	grep	3.11-4
  install ok installed	gzip	gzip	1.13-1
  install ok installed	hostname	hostname	3.25
  install ok installed	init-system-helpers	init-system-helpers	1.69~deb13u1
  install ok installed	libacl1:amd64	libacl1	2.3.2-2+b1
  install ok installed	libapt-pkg7.0:amd64	libapt-pkg7.0	3.0.3
  install ok installed	libasan8:amd64	libasan8	14.2.0-19
  install ok installed	libatomic1:amd64	libatomic1	14.2.0-19
  install ok installed	libattr1:amd64	libattr1	1:2.5.2-3
  install ok installed	libaudit-common	libaudit-common	1:4.0.2-2
  install ok installed	libaudit1:amd64	libaudit1	1:4.0.2-2+b2
  install ok installed	libbinutils:amd64	libbinutils	2.44-3
  install ok installed	libblkid1:amd64	libblkid1	2.41-5
  install ok installed	libbz2-1.0:amd64	libbz2-1.0	1.0.8-6
  install ok installed	libc-bin	libc-bin	2.41-12
  install ok installed	libc-dev-bin	libc-dev-bin	2.41-12
  install ok installed	libc6:amd64	libc6	2.41-12
  install ok installed	libc6-dev:amd64	libc6-dev	2.41-12
  install ok installed	libcap-ng0:amd64	libcap-ng0	0.8.5-4+b1
  install ok installed	libcap2:amd64	libcap2	1:2.75-10+b1
  install ok installed	libcc1-0:amd64	libcc1-0	14.2.0-19
  install ok installed	libcrypt-dev:amd64	libcrypt-dev	1:4.4.38-1
  install ok installed	libcrypt1:amd64	libcrypt1	1:4.4.38-1
  install ok installed	libctf-nobfd0:amd64	libctf-nobfd0	2.44-3
  install ok installed	libctf0:amd64	libctf0	2.44-3
  install ok installed	libdb5.3t64:amd64	libdb5.3t64	5.3.28+dfsg2-9
  install ok installed	libdebconfclient0:amd64	libdebconfclient0	0.280
  install ok installed	libdpkg-perl	libdpkg-perl	1.22.21
  install ok installed	libgcc-14-dev:amd64	libgcc-14-dev	14.2.0-19
  install ok installed	libgcc-s1:amd64	libgcc-s1	14.2.0-19
  install ok installed	libgdbm-compat4t64:amd64	libgdbm-compat4t64	1.24-2
  install ok installed	libgdbm6t64:amd64	libgdbm6t64	1.24-2
  install ok installed	libgmp10:amd64	libgmp10	2:6.3.0+dfsg-3
  install ok installed	libgomp1:amd64	libgomp1	14.2.0-19
  install ok installed	libgprofng0:amd64	libgprofng0	2.44-3
  install ok installed	libhogweed6t64:amd64	libhogweed6t64	3.10.1-1
  install ok installed	libhwasan0:amd64	libhwasan0	14.2.0-19
  install ok installed	libisl23:amd64	libisl23	0.27-1
  install ok installed	libitm1:amd64	libitm1	14.2.0-19
  install ok installed	libjansson4:amd64	libjansson4	2.14-2+b3
  install ok installed	liblastlog2-2:amd64	liblastlog2-2	2.41-5
  install ok installed	liblsan0:amd64	liblsan0	14.2.0-19
  install ok installed	liblz4-1:amd64	liblz4-1	1.10.0-4
  install ok installed	liblzma5:amd64	liblzma5	5.8.1-1
  install ok installed	libmd0:amd64	libmd0	1.1.0-2+b1
  install ok installed	libmount1:amd64	libmount1	2.41-5
  install ok installed	libmpc3:amd64	libmpc3	1.3.1-1+b3
  install ok installed	libmpfr6:amd64	libmpfr6	4.2.2-1
  install ok installed	libnettle8t64:amd64	libnettle8t64	3.10.1-1
  install ok installed	libpam-modules:amd64	libpam-modules	1.7.0-5
  install ok installed	libpam-modules-bin	libpam-modules-bin	1.7.0-5
  install ok installed	libpam-runtime	libpam-runtime	1.7.0-5
  install ok installed	libpam0g:amd64	libpam0g	1.7.0-5
  install ok installed	libpcre2-8-0:amd64	libpcre2-8-0	10.46-1~deb13u1
  install ok installed	libperl5.40:amd64	libperl5.40	5.40.1-6
  install ok installed	libquadmath0:amd64	libquadmath0	14.2.0-19
  install ok installed	libseccomp2:amd64	libseccomp2	2.6.0-2
  install ok installed	libselinux1:amd64	libselinux1	3.8.1-1
  install ok installed	libsframe1:amd64	libsframe1	2.44-3
  install ok installed	libsmartcols1:amd64	libsmartcols1	2.41-5
  install ok installed	libsqlite3-0:amd64	libsqlite3-0	3.46.1-7
  install ok installed	libssl3t64:amd64	libssl3t64	3.5.1-1
  install ok installed	libstdc++-14-dev:amd64	libstdc++-14-dev	14.2.0-19
  install ok installed	libstdc++6:amd64	libstdc++6	14.2.0-19
  install ok installed	libsystemd0:amd64	libsystemd0	257.8-1~deb13u1
  install ok installed	libtinfo6:amd64	libtinfo6	6.5+20250216-2
  install ok installed	libtsan2:amd64	libtsan2	14.2.0-19
  install ok installed	libubsan1:amd64	libubsan1	14.2.0-19
  install ok installed	libudev1:amd64	libudev1	257.8-1~deb13u1
  install ok installed	libuuid1:amd64	libuuid1	2.41-5
  install ok installed	libxxhash0:amd64	libxxhash0	0.8.3-2
  install ok installed	libzstd1:amd64	libzstd1	1.5.7+dfsg-1
  install ok installed	linux-libc-dev	linux-libc-dev	6.12.43-1
  install ok installed	make	make	4.4.1-2
  install ok installed	mawk	mawk	1.3.4.20250131-1
  install ok installed	ncurses-base	ncurses-base	6.5+20250216-2
  install ok installed	ncurses-bin	ncurses-bin	6.5+20250216-2
  install ok installed	openssl-provider-legacy	openssl-provider-legacy	3.5.1-1
  install ok installed	patch	patch	2.8-2
  install ok installed	perl	perl	5.40.1-6
  install ok installed	perl-base	perl-base	5.40.1-6
  install ok installed	perl-modules-5.40	perl-modules-5.40	5.40.1-6
  install ok installed	rpcsvc-proto	rpcsvc-proto	1.4.3-1
  install ok installed	sed	sed	4.9-2
  install ok installed	sqv	sqv	1.3.0-3
  install ok installed	sysvinit-utils	sysvinit-utils	3.14-4
  install ok installed	tar	tar	1.35+dfsg-3.1
  install ok installed	util-linux	util-linux	2.41-5
  install ok installed	xz-utils	xz-utils	5.8.1-1
  install ok installed	zlib1g:amd64	zlib1g	1:1.3.dfsg+really1.3.1-1+b1
0m4.1s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m4.1s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'dpkg-divert', '--list']
0m4.1s DUMP: 
  diversion of /lib64/ld-linux-x86-64.so.2 to /lib64/ld-linux-x86-64.so.2.usr-is-merged by libc6
  diversion of /libx32 to /.libx32.usr-is-merged by base-files
  diversion of /lib32 to /.lib32.usr-is-merged by base-files
  diversion of /libo32 to /.libo32.usr-is-merged by base-files
0m4.1s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'dpkg-divert', '--list']
0m4.1s INFO: Running scripts is_testable
0m4.1s INFO: apt-cache does not know about any of the requested packages
0m4.1s INFO: Running scripts pre_test
0m4.1s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmpglbzwey7']
0m4.4s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmpglbzwey7']
0m4.7s DEBUG: No broken symlinks as far as we can find.
0m4.7s INFO: Running scripts pre_install
0m4.7s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmpglbzwey7']
0m4.9s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmpglbzwey7']
0m5.2s DEBUG: No broken symlinks as far as we can find.
0m5.2s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'dpkg-query', '-f', '${Version}\n', '-W', 'apt']
0m5.2s DUMP: 
  3.0.3
0m5.2s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'dpkg-query', '-f', '${Version}\n', '-W', 'apt']
0m5.2s DEBUG: Copying /tmp/debusine-fetch-exec-upload-b3v_4g30/spawn-fcgi-dbgsym_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb, /tmp/debusine-fetch-exec-upload-b3v_4g30/spawn-fcgi_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb to /tmp/tmpglbzwey7/tmp
0m5.2s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'apt-get', '-y', '--allow-downgrades', 'install', './tmp/spawn-fcgi-dbgsym_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb', './tmp/spawn-fcgi_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb']
0m6.0s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  The following NEW packages will be installed:
    spawn-fcgi spawn-fcgi-dbgsym
  0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
  Need to get 0 B/32.8 kB of archives.
  After this operation, 96.3 kB of additional disk space will be used.
  Get:1 /tmp/spawn-fcgi_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb spawn-fcgi amd64 1.6.7~snap-20250301-194725-ga82da4-0.2 [15.3 kB]
  Get:2 /tmp/spawn-fcgi-dbgsym_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb spawn-fcgi-dbgsym amd64 1.6.7~snap-20250301-194725-ga82da4-0.2 [17.5 kB]
  Selecting previously unselected package spawn-fcgi.
  (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 ... 11791 files and directories currently installed.)
  Preparing to unpack .../spawn-fcgi_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb ...
  Unpacking spawn-fcgi (1.6.7~snap-20250301-194725-ga82da4-0.2) ...
  Selecting previously unselected package spawn-fcgi-dbgsym.
  Preparing to unpack .../spawn-fcgi-dbgsym_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb ...
  Unpacking spawn-fcgi-dbgsym (1.6.7~snap-20250301-194725-ga82da4-0.2) ...
  Setting up spawn-fcgi (1.6.7~snap-20250301-194725-ga82da4-0.2) ...
  Setting up spawn-fcgi-dbgsym (1.6.7~snap-20250301-194725-ga82da4-0.2) ...
0m6.0s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'apt-get', '-y', '--allow-downgrades', 'install', './tmp/spawn-fcgi-dbgsym_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb', './tmp/spawn-fcgi_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb']
0m6.0s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'spawn-fcgi-dbgsym', 'spawn-fcgi']
0m6.0s DUMP: 
  spawn-fcgi install ok installed
  spawn-fcgi-dbgsym install ok installed
0m6.0s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'spawn-fcgi-dbgsym', 'spawn-fcgi']
0m6.0s INFO: Installation of ['./tmp/spawn-fcgi-dbgsym_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb', './tmp/spawn-fcgi_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb'] ok
0m6.0s DEBUG: Removing /tmp/tmpglbzwey7/./tmp/spawn-fcgi-dbgsym_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb
0m6.0s DEBUG: Removing /tmp/tmpglbzwey7/./tmp/spawn-fcgi_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb
0m6.0s INFO: Running scripts post_install
0m6.0s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'systemd-tmpfiles', '--cat-config']
0m6.0s DUMP: 
  chroot: failed to run command 'systemd-tmpfiles': No such file or directory
0m6.0s DEBUG: Command failed (status=127), but ignoring error: ['chroot', '/tmp/tmpglbzwey7', 'systemd-tmpfiles', '--cat-config']
0m6.0s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmpglbzwey7']
0m6.2s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmpglbzwey7']
0m6.5s DEBUG: No broken symlinks as far as we can find.
0m6.7s DEBUG: Starting command: ['debsums', '--root', '/tmp/tmpglbzwey7', '-ac', '--ignore-obsolete']
0m7.4s DEBUG: Command ok: ['debsums', '--root', '/tmp/tmpglbzwey7', '-ac', '--ignore-obsolete']
0m7.4s DEBUG: Starting command: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m7.4s DUMP: 
  0.17.5+b5
0m7.4s DEBUG: Command ok: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m7.4s INFO: Running adequate version 0.17.5+b5 now.
0m7.4s DEBUG: Starting command: ['adequate', '--root', '/tmp/tmpglbzwey7', 'spawn-fcgi-dbgsym', 'spawn-fcgi']
0m7.4s DEBUG: Command ok: ['adequate', '--root', '/tmp/tmpglbzwey7', 'spawn-fcgi-dbgsym', 'spawn-fcgi']
0m7.4s INFO: Running scripts pre_remove
0m7.4s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m7.4s DUMP: 
  install ok installed	apt	apt	3.0.3
  install ok installed	base-files	base-files	13.8+deb13u1
  install ok installed	base-passwd	base-passwd	3.6.7
  install ok installed	bash	bash	5.2.37-2+b5
  install ok installed	binutils	binutils	2.44-3
  install ok installed	binutils-common:amd64	binutils-common	2.44-3
  install ok installed	binutils-x86-64-linux-gnu	binutils-x86-64-linux-gnu	2.44-3
  install ok installed	bsdutils	bsdutils	1:2.41-5
  install ok installed	build-essential	build-essential	12.12
  install ok installed	bzip2	bzip2	1.0.8-6
  install ok installed	coreutils	coreutils	9.7-3
  install ok installed	cpp	cpp	4:14.2.0-1
  install ok installed	cpp-14	cpp-14	14.2.0-19
  install ok installed	cpp-14-x86-64-linux-gnu	cpp-14-x86-64-linux-gnu	14.2.0-19
  install ok installed	cpp-x86-64-linux-gnu	cpp-x86-64-linux-gnu	4:14.2.0-1
  install ok installed	dash	dash	0.5.12-12
  install ok installed	debconf	debconf	1.5.91
  install ok installed	debian-archive-keyring	debian-archive-keyring	2025.1
  install ok installed	debianutils	debianutils	5.23.2
  install ok installed	diffutils	diffutils	1:3.10-4
  install ok installed	dpkg	dpkg	1.22.21
  install ok installed	dpkg-dev	dpkg-dev	1.22.21
  install ok installed	findutils	findutils	4.10.0-3
  install ok installed	g++	g++	4:14.2.0-1
  install ok installed	g++-14	g++-14	14.2.0-19
  install ok installed	g++-14-x86-64-linux-gnu	g++-14-x86-64-linux-gnu	14.2.0-19
  install ok installed	g++-x86-64-linux-gnu	g++-x86-64-linux-gnu	4:14.2.0-1
  install ok installed	gcc	gcc	4:14.2.0-1
  install ok installed	gcc-14	gcc-14	14.2.0-19
  install ok installed	gcc-14-base:amd64	gcc-14-base	14.2.0-19
  install ok installed	gcc-14-x86-64-linux-gnu	gcc-14-x86-64-linux-gnu	14.2.0-19
  install ok installed	gcc-x86-64-linux-gnu	gcc-x86-64-linux-gnu	4:14.2.0-1
  install ok installed	grep	grep	3.11-4
  install ok installed	gzip	gzip	1.13-1
  install ok installed	hostname	hostname	3.25
  install ok installed	init-system-helpers	init-system-helpers	1.69~deb13u1
  install ok installed	libacl1:amd64	libacl1	2.3.2-2+b1
  install ok installed	libapt-pkg7.0:amd64	libapt-pkg7.0	3.0.3
  install ok installed	libasan8:amd64	libasan8	14.2.0-19
  install ok installed	libatomic1:amd64	libatomic1	14.2.0-19
  install ok installed	libattr1:amd64	libattr1	1:2.5.2-3
  install ok installed	libaudit-common	libaudit-common	1:4.0.2-2
  install ok installed	libaudit1:amd64	libaudit1	1:4.0.2-2+b2
  install ok installed	libbinutils:amd64	libbinutils	2.44-3
  install ok installed	libblkid1:amd64	libblkid1	2.41-5
  install ok installed	libbz2-1.0:amd64	libbz2-1.0	1.0.8-6
  install ok installed	libc-bin	libc-bin	2.41-12
  install ok installed	libc-dev-bin	libc-dev-bin	2.41-12
  install ok installed	libc6:amd64	libc6	2.41-12
  install ok installed	libc6-dev:amd64	libc6-dev	2.41-12
  install ok installed	libcap-ng0:amd64	libcap-ng0	0.8.5-4+b1
  install ok installed	libcap2:amd64	libcap2	1:2.75-10+b1
  install ok installed	libcc1-0:amd64	libcc1-0	14.2.0-19
  install ok installed	libcrypt-dev:amd64	libcrypt-dev	1:4.4.38-1
  install ok installed	libcrypt1:amd64	libcrypt1	1:4.4.38-1
  install ok installed	libctf-nobfd0:amd64	libctf-nobfd0	2.44-3
  install ok installed	libctf0:amd64	libctf0	2.44-3
  install ok installed	libdb5.3t64:amd64	libdb5.3t64	5.3.28+dfsg2-9
  install ok installed	libdebconfclient0:amd64	libdebconfclient0	0.280
  install ok installed	libdpkg-perl	libdpkg-perl	1.22.21
  install ok installed	libgcc-14-dev:amd64	libgcc-14-dev	14.2.0-19
  install ok installed	libgcc-s1:amd64	libgcc-s1	14.2.0-19
  install ok installed	libgdbm-compat4t64:amd64	libgdbm-compat4t64	1.24-2
  install ok installed	libgdbm6t64:amd64	libgdbm6t64	1.24-2
  install ok installed	libgmp10:amd64	libgmp10	2:6.3.0+dfsg-3
  install ok installed	libgomp1:amd64	libgomp1	14.2.0-19
  install ok installed	libgprofng0:amd64	libgprofng0	2.44-3
  install ok installed	libhogweed6t64:amd64	libhogweed6t64	3.10.1-1
  install ok installed	libhwasan0:amd64	libhwasan0	14.2.0-19
  install ok installed	libisl23:amd64	libisl23	0.27-1
  install ok installed	libitm1:amd64	libitm1	14.2.0-19
  install ok installed	libjansson4:amd64	libjansson4	2.14-2+b3
  install ok installed	liblastlog2-2:amd64	liblastlog2-2	2.41-5
  install ok installed	liblsan0:amd64	liblsan0	14.2.0-19
  install ok installed	liblz4-1:amd64	liblz4-1	1.10.0-4
  install ok installed	liblzma5:amd64	liblzma5	5.8.1-1
  install ok installed	libmd0:amd64	libmd0	1.1.0-2+b1
  install ok installed	libmount1:amd64	libmount1	2.41-5
  install ok installed	libmpc3:amd64	libmpc3	1.3.1-1+b3
  install ok installed	libmpfr6:amd64	libmpfr6	4.2.2-1
  install ok installed	libnettle8t64:amd64	libnettle8t64	3.10.1-1
  install ok installed	libpam-modules:amd64	libpam-modules	1.7.0-5
  install ok installed	libpam-modules-bin	libpam-modules-bin	1.7.0-5
  install ok installed	libpam-runtime	libpam-runtime	1.7.0-5
  install ok installed	libpam0g:amd64	libpam0g	1.7.0-5
  install ok installed	libpcre2-8-0:amd64	libpcre2-8-0	10.46-1~deb13u1
  install ok installed	libperl5.40:amd64	libperl5.40	5.40.1-6
  install ok installed	libquadmath0:amd64	libquadmath0	14.2.0-19
  install ok installed	libseccomp2:amd64	libseccomp2	2.6.0-2
  install ok installed	libselinux1:amd64	libselinux1	3.8.1-1
  install ok installed	libsframe1:amd64	libsframe1	2.44-3
  install ok installed	libsmartcols1:amd64	libsmartcols1	2.41-5
  install ok installed	libsqlite3-0:amd64	libsqlite3-0	3.46.1-7
  install ok installed	libssl3t64:amd64	libssl3t64	3.5.1-1
  install ok installed	libstdc++-14-dev:amd64	libstdc++-14-dev	14.2.0-19
  install ok installed	libstdc++6:amd64	libstdc++6	14.2.0-19
  install ok installed	libsystemd0:amd64	libsystemd0	257.8-1~deb13u1
  install ok installed	libtinfo6:amd64	libtinfo6	6.5+20250216-2
  install ok installed	libtsan2:amd64	libtsan2	14.2.0-19
  install ok installed	libubsan1:amd64	libubsan1	14.2.0-19
  install ok installed	libudev1:amd64	libudev1	257.8-1~deb13u1
  install ok installed	libuuid1:amd64	libuuid1	2.41-5
  install ok installed	libxxhash0:amd64	libxxhash0	0.8.3-2
  install ok installed	libzstd1:amd64	libzstd1	1.5.7+dfsg-1
  install ok installed	linux-libc-dev	linux-libc-dev	6.12.43-1
  install ok installed	make	make	4.4.1-2
  install ok installed	mawk	mawk	1.3.4.20250131-1
  install ok installed	ncurses-base	ncurses-base	6.5+20250216-2
  install ok installed	ncurses-bin	ncurses-bin	6.5+20250216-2
  install ok installed	openssl-provider-legacy	openssl-provider-legacy	3.5.1-1
  install ok installed	patch	patch	2.8-2
  install ok installed	perl	perl	5.40.1-6
  install ok installed	perl-base	perl-base	5.40.1-6
  install ok installed	perl-modules-5.40	perl-modules-5.40	5.40.1-6
  install ok installed	rpcsvc-proto	rpcsvc-proto	1.4.3-1
  install ok installed	sed	sed	4.9-2
  install ok installed	spawn-fcgi	spawn-fcgi	1.6.7~snap-20250301-194725-ga82da4-0.2
  install ok installed	spawn-fcgi-dbgsym	spawn-fcgi-dbgsym	1.6.7~snap-20250301-194725-ga82da4-0.2
  install ok installed	sqv	sqv	1.3.0-3
  install ok installed	sysvinit-utils	sysvinit-utils	3.14-4
  install ok installed	tar	tar	1.35+dfsg-3.1
  install ok installed	util-linux	util-linux	2.41-5
  install ok installed	xz-utils	xz-utils	5.8.1-1
  install ok installed	zlib1g:amd64	zlib1g	1:1.3.dfsg+really1.3.1-1+b1
0m7.4s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m7.4s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'apt-get', 'remove', '--allow-remove-essential', 'spawn-fcgi', 'spawn-fcgi-dbgsym']
0m7.8s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  The following packages will be REMOVED:
    spawn-fcgi spawn-fcgi-dbgsym
  0 upgraded, 0 newly installed, 2 to remove and 0 not upgraded.
  After this operation, 96.3 kB disk space will be freed.
  (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 ... 11810 files and directories currently installed.)
  Removing spawn-fcgi-dbgsym (1.6.7~snap-20250301-194725-ga82da4-0.2) ...
  Removing spawn-fcgi (1.6.7~snap-20250301-194725-ga82da4-0.2) ...
0m7.8s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'apt-get', 'remove', '--allow-remove-essential', 'spawn-fcgi', 'spawn-fcgi-dbgsym']
0m7.8s INFO: Running scripts post_remove
0m7.8s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'dpkg', '--purge', 'spawn-fcgi', 'spawn-fcgi-dbgsym']
0m7.8s DUMP: 
  dpkg: warning: ignoring request to remove spawn-fcgi which isn't installed
  dpkg: warning: ignoring request to remove spawn-fcgi-dbgsym which isn't installed
0m7.8s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'dpkg', '--purge', 'spawn-fcgi', 'spawn-fcgi-dbgsym']
0m7.8s INFO: Running scripts post_purge
0m7.8s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'dpkg', '--purge', '--pending']
0m7.8s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'dpkg', '--purge', '--pending']
0m7.8s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'dpkg', '--remove', '--pending']
0m7.8s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'dpkg', '--remove', '--pending']
0m7.8s INFO: Running scripts post_test
0m7.8s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmpglbzwey7']
0m8.0s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmpglbzwey7']
0m8.3s DEBUG: No broken symlinks as far as we can find.
0m8.3s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'dpkg-divert', '--list']
0m8.3s DUMP: 
  diversion of /lib64/ld-linux-x86-64.so.2 to /lib64/ld-linux-x86-64.so.2.usr-is-merged by libc6
  diversion of /libx32 to /.libx32.usr-is-merged by base-files
  diversion of /lib32 to /.lib32.usr-is-merged by base-files
  diversion of /libo32 to /.libo32.usr-is-merged by base-files
0m8.3s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'dpkg-divert', '--list']
0m8.3s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'apt-get', 'clean']
0m8.3s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'apt-get', 'clean']
0m8.3s DEBUG: Recording chroot state
0m8.6s INFO: PASS: Installation and purging test.
0m8.6s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'apt-cache', 'show', '--no-all-versions', 'spawn-fcgi-dbgsym']
0m9.1s DUMP: 
  E: No packages found
0m9.1s DEBUG: Command failed (status=100), but ignoring error: ['chroot', '/tmp/tmpglbzwey7', 'apt-cache', 'show', '--no-all-versions', 'spawn-fcgi-dbgsym']
0m9.1s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'apt-cache', 'show', '--no-all-versions', 'spawn-fcgi']
0m9.2s DUMP: 
  Package: spawn-fcgi
  Version: 1.6.6-1
  Installed-Size: 56
  Maintainer: Jérémy Lal <kapouer@melix.org>
  Architecture: amd64
  Depends: libc6 (>= 2.38)
  Description-en: FastCGI process spawner
   Allows FastCGI processes to be separated from web server process :
     * Easy creation of chmoded socket.
     * Privilege separation without needing a suid-binary,
       or running a server as root.
     * You can restart your web server and the FastCGI applications
       without restarting the others.
     * You can run them in different chroot()s.
     * Running your FastCGI applications doesn??t depend on the web server
       you are running, which allows for easier testing of/migration
       to other web servers.
  Description-md5: 33c67a75d7c9940faa4789113e2c2c43
  Homepage: http://redmine.lighttpd.net/projects/spawn-fcgi
  Tag: implemented-in::c, role::program
  Section: web
  Priority: optional
  Filename: pool/main/s/spawn-fcgi/spawn-fcgi_1.6.6-1_amd64.deb
  Size: 15588
  MD5sum: 6012ba3acbc3ab7e1c025ffdd9ccf3fe
  SHA256: 8ee6115b98aacca61d607d68a9d5b96f48a4c70f08a34157a789a73dc2177d3b
0m9.2s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'apt-cache', 'show', '--no-all-versions', 'spawn-fcgi']
0m9.2s INFO: apt-cache knows about the following packages: spawn-fcgi
0m9.2s INFO: the following packages are not in the archive: spawn-fcgi-dbgsym
0m9.2s INFO: Running scripts pre_test
0m9.2s INFO: Running scripts pre_install
0m9.2s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'apt-cache', 'policy']
0m9.2s DUMP: 
  Package files:
   100 /var/lib/dpkg/status
       release a=now
   500 http://deb.debian.org/debian trixie/main amd64 Packages
       release v=13.0,o=Debian,a=stable,n=trixie,l=Debian,c=main,b=amd64
       origin deb.debian.org
   500 http://incoming.debian.org/debian-buildd buildd-trixie-proposed-updates/main amd64 Packages
       release o=Debian,a=buildd-proposed-updates,n=buildd-trixie-proposed-updates,l=Debian,c=main,b=amd64
       origin incoming.debian.org
   500 http://deb.debian.org/debian trixie-proposed-updates/main amd64 Packages
       release v=13-updates,o=Debian,a=proposed-updates,n=trixie-proposed-updates,l=Debian,c=main,b=amd64
       origin deb.debian.org
  Pinned packages:
0m9.2s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'apt-cache', 'policy']
0m9.2s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'apt-cache', 'policy', 'spawn-fcgi']
0m9.2s DUMP: 
  spawn-fcgi:
    Installed: (none)
    Candidate: 1.6.6-1
    Version table:
       1.6.6-1 500
          500 http://deb.debian.org/debian trixie/main amd64 Packages
0m9.2s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'apt-cache', 'policy', 'spawn-fcgi']
0m9.2s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'apt-get', '-y', 'install', 'spawn-fcgi']
0m9.6s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  The following NEW packages will be installed:
    spawn-fcgi
  0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
  Need to get 15.6 kB of archives.
  After this operation, 57.3 kB of additional disk space will be used.
  Get:1 http://deb.debian.org/debian trixie/main amd64 spawn-fcgi amd64 1.6.6-1 [15.6 kB]
  Fetched 15.6 kB in 0s (1134 kB/s)
  Selecting previously unselected package spawn-fcgi.
  (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 ... 11791 files and directories currently installed.)
  Preparing to unpack .../spawn-fcgi_1.6.6-1_amd64.deb ...
  Unpacking spawn-fcgi (1.6.6-1) ...
  Setting up spawn-fcgi (1.6.6-1) ...
0m9.6s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'apt-get', '-y', 'install', 'spawn-fcgi']
0m9.6s INFO: Running scripts post_install
0m9.6s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmpglbzwey7']
0m9.9s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmpglbzwey7']
0m10.1s DEBUG: No broken symlinks as far as we can find.
0m10.1s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'dpkg-query', '-f', '${Version}\n', '-W', 'apt']
0m10.1s DUMP: 
  3.0.3
0m10.1s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'dpkg-query', '-f', '${Version}\n', '-W', 'apt']
0m10.1s DEBUG: Copying /tmp/debusine-fetch-exec-upload-b3v_4g30/spawn-fcgi-dbgsym_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb, /tmp/debusine-fetch-exec-upload-b3v_4g30/spawn-fcgi_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb to /tmp/tmpglbzwey7/tmp
0m10.1s INFO: Running scripts pre_install
0m10.1s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'apt-get', '-y', '--allow-downgrades', 'install', './tmp/spawn-fcgi-dbgsym_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb', './tmp/spawn-fcgi_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb']
0m10.5s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  The following NEW packages will be installed:
    spawn-fcgi-dbgsym
  The following packages will be upgraded:
    spawn-fcgi
  1 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
  Need to get 0 B/32.8 kB of archives.
  After this operation, 38.9 kB of additional disk space will be used.
  Get:1 /tmp/spawn-fcgi_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb spawn-fcgi amd64 1.6.7~snap-20250301-194725-ga82da4-0.2 [15.3 kB]
  Get:2 /tmp/spawn-fcgi-dbgsym_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb spawn-fcgi-dbgsym amd64 1.6.7~snap-20250301-194725-ga82da4-0.2 [17.5 kB]
  (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 ... 11805 files and directories currently installed.)
  Preparing to unpack .../spawn-fcgi_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb ...
  Unpacking spawn-fcgi (1.6.7~snap-20250301-194725-ga82da4-0.2) over (1.6.6-1) ...
  Selecting previously unselected package spawn-fcgi-dbgsym.
  Preparing to unpack .../spawn-fcgi-dbgsym_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb ...
  Unpacking spawn-fcgi-dbgsym (1.6.7~snap-20250301-194725-ga82da4-0.2) ...
  Setting up spawn-fcgi (1.6.7~snap-20250301-194725-ga82da4-0.2) ...
  Setting up spawn-fcgi-dbgsym (1.6.7~snap-20250301-194725-ga82da4-0.2) ...
0m10.5s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'apt-get', '-y', '--allow-downgrades', 'install', './tmp/spawn-fcgi-dbgsym_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb', './tmp/spawn-fcgi_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb']
0m10.5s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'spawn-fcgi-dbgsym', 'spawn-fcgi']
0m10.5s DUMP: 
  spawn-fcgi install ok installed
  spawn-fcgi-dbgsym install ok installed
0m10.5s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'spawn-fcgi-dbgsym', 'spawn-fcgi']
0m10.5s INFO: Installation of ['./tmp/spawn-fcgi-dbgsym_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb', './tmp/spawn-fcgi_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb'] ok
0m10.5s INFO: Running scripts post_install
0m10.5s DEBUG: Removing /tmp/tmpglbzwey7/./tmp/spawn-fcgi-dbgsym_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb
0m10.5s DEBUG: Removing /tmp/tmpglbzwey7/./tmp/spawn-fcgi_1.6.7~snap-20250301-194725-ga82da4-0.2_amd64.deb
0m10.5s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmpglbzwey7']
0m10.8s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmpglbzwey7']
0m11.1s DEBUG: No broken symlinks as far as we can find.
0m11.2s DEBUG: Starting command: ['debsums', '--root', '/tmp/tmpglbzwey7', '-ac', '--ignore-obsolete']
0m12.0s DEBUG: Command ok: ['debsums', '--root', '/tmp/tmpglbzwey7', '-ac', '--ignore-obsolete']
0m12.0s DEBUG: Starting command: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m12.0s DUMP: 
  0.17.5+b5
0m12.0s DEBUG: Command ok: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m12.0s INFO: Running adequate version 0.17.5+b5 now.
0m12.0s DEBUG: Starting command: ['adequate', '--root', '/tmp/tmpglbzwey7', 'spawn-fcgi-dbgsym', 'spawn-fcgi']
0m12.0s DEBUG: Command ok: ['adequate', '--root', '/tmp/tmpglbzwey7', 'spawn-fcgi-dbgsym', 'spawn-fcgi']
0m12.0s INFO: Running scripts pre_remove
0m12.0s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m12.0s DUMP: 
  install ok installed	apt	apt	3.0.3
  install ok installed	base-files	base-files	13.8+deb13u1
  install ok installed	base-passwd	base-passwd	3.6.7
  install ok installed	bash	bash	5.2.37-2+b5
  install ok installed	binutils	binutils	2.44-3
  install ok installed	binutils-common:amd64	binutils-common	2.44-3
  install ok installed	binutils-x86-64-linux-gnu	binutils-x86-64-linux-gnu	2.44-3
  install ok installed	bsdutils	bsdutils	1:2.41-5
  install ok installed	build-essential	build-essential	12.12
  install ok installed	bzip2	bzip2	1.0.8-6
  install ok installed	coreutils	coreutils	9.7-3
  install ok installed	cpp	cpp	4:14.2.0-1
  install ok installed	cpp-14	cpp-14	14.2.0-19
  install ok installed	cpp-14-x86-64-linux-gnu	cpp-14-x86-64-linux-gnu	14.2.0-19
  install ok installed	cpp-x86-64-linux-gnu	cpp-x86-64-linux-gnu	4:14.2.0-1
  install ok installed	dash	dash	0.5.12-12
  install ok installed	debconf	debconf	1.5.91
  install ok installed	debian-archive-keyring	debian-archive-keyring	2025.1
  install ok installed	debianutils	debianutils	5.23.2
  install ok installed	diffutils	diffutils	1:3.10-4
  install ok installed	dpkg	dpkg	1.22.21
  install ok installed	dpkg-dev	dpkg-dev	1.22.21
  install ok installed	findutils	findutils	4.10.0-3
  install ok installed	g++	g++	4:14.2.0-1
  install ok installed	g++-14	g++-14	14.2.0-19
  install ok installed	g++-14-x86-64-linux-gnu	g++-14-x86-64-linux-gnu	14.2.0-19
  install ok installed	g++-x86-64-linux-gnu	g++-x86-64-linux-gnu	4:14.2.0-1
  install ok installed	gcc	gcc	4:14.2.0-1
  install ok installed	gcc-14	gcc-14	14.2.0-19
  install ok installed	gcc-14-base:amd64	gcc-14-base	14.2.0-19
  install ok installed	gcc-14-x86-64-linux-gnu	gcc-14-x86-64-linux-gnu	14.2.0-19
  install ok installed	gcc-x86-64-linux-gnu	gcc-x86-64-linux-gnu	4:14.2.0-1
  install ok installed	grep	grep	3.11-4
  install ok installed	gzip	gzip	1.13-1
  install ok installed	hostname	hostname	3.25
  install ok installed	init-system-helpers	init-system-helpers	1.69~deb13u1
  install ok installed	libacl1:amd64	libacl1	2.3.2-2+b1
  install ok installed	libapt-pkg7.0:amd64	libapt-pkg7.0	3.0.3
  install ok installed	libasan8:amd64	libasan8	14.2.0-19
  install ok installed	libatomic1:amd64	libatomic1	14.2.0-19
  install ok installed	libattr1:amd64	libattr1	1:2.5.2-3
  install ok installed	libaudit-common	libaudit-common	1:4.0.2-2
  install ok installed	libaudit1:amd64	libaudit1	1:4.0.2-2+b2
  install ok installed	libbinutils:amd64	libbinutils	2.44-3
  install ok installed	libblkid1:amd64	libblkid1	2.41-5
  install ok installed	libbz2-1.0:amd64	libbz2-1.0	1.0.8-6
  install ok installed	libc-bin	libc-bin	2.41-12
  install ok installed	libc-dev-bin	libc-dev-bin	2.41-12
  install ok installed	libc6:amd64	libc6	2.41-12
  install ok installed	libc6-dev:amd64	libc6-dev	2.41-12
  install ok installed	libcap-ng0:amd64	libcap-ng0	0.8.5-4+b1
  install ok installed	libcap2:amd64	libcap2	1:2.75-10+b1
  install ok installed	libcc1-0:amd64	libcc1-0	14.2.0-19
  install ok installed	libcrypt-dev:amd64	libcrypt-dev	1:4.4.38-1
  install ok installed	libcrypt1:amd64	libcrypt1	1:4.4.38-1
  install ok installed	libctf-nobfd0:amd64	libctf-nobfd0	2.44-3
  install ok installed	libctf0:amd64	libctf0	2.44-3
  install ok installed	libdb5.3t64:amd64	libdb5.3t64	5.3.28+dfsg2-9
  install ok installed	libdebconfclient0:amd64	libdebconfclient0	0.280
  install ok installed	libdpkg-perl	libdpkg-perl	1.22.21
  install ok installed	libgcc-14-dev:amd64	libgcc-14-dev	14.2.0-19
  install ok installed	libgcc-s1:amd64	libgcc-s1	14.2.0-19
  install ok installed	libgdbm-compat4t64:amd64	libgdbm-compat4t64	1.24-2
  install ok installed	libgdbm6t64:amd64	libgdbm6t64	1.24-2
  install ok installed	libgmp10:amd64	libgmp10	2:6.3.0+dfsg-3
  install ok installed	libgomp1:amd64	libgomp1	14.2.0-19
  install ok installed	libgprofng0:amd64	libgprofng0	2.44-3
  install ok installed	libhogweed6t64:amd64	libhogweed6t64	3.10.1-1
  install ok installed	libhwasan0:amd64	libhwasan0	14.2.0-19
  install ok installed	libisl23:amd64	libisl23	0.27-1
  install ok installed	libitm1:amd64	libitm1	14.2.0-19
  install ok installed	libjansson4:amd64	libjansson4	2.14-2+b3
  install ok installed	liblastlog2-2:amd64	liblastlog2-2	2.41-5
  install ok installed	liblsan0:amd64	liblsan0	14.2.0-19
  install ok installed	liblz4-1:amd64	liblz4-1	1.10.0-4
  install ok installed	liblzma5:amd64	liblzma5	5.8.1-1
  install ok installed	libmd0:amd64	libmd0	1.1.0-2+b1
  install ok installed	libmount1:amd64	libmount1	2.41-5
  install ok installed	libmpc3:amd64	libmpc3	1.3.1-1+b3
  install ok installed	libmpfr6:amd64	libmpfr6	4.2.2-1
  install ok installed	libnettle8t64:amd64	libnettle8t64	3.10.1-1
  install ok installed	libpam-modules:amd64	libpam-modules	1.7.0-5
  install ok installed	libpam-modules-bin	libpam-modules-bin	1.7.0-5
  install ok installed	libpam-runtime	libpam-runtime	1.7.0-5
  install ok installed	libpam0g:amd64	libpam0g	1.7.0-5
  install ok installed	libpcre2-8-0:amd64	libpcre2-8-0	10.46-1~deb13u1
  install ok installed	libperl5.40:amd64	libperl5.40	5.40.1-6
  install ok installed	libquadmath0:amd64	libquadmath0	14.2.0-19
  install ok installed	libseccomp2:amd64	libseccomp2	2.6.0-2
  install ok installed	libselinux1:amd64	libselinux1	3.8.1-1
  install ok installed	libsframe1:amd64	libsframe1	2.44-3
  install ok installed	libsmartcols1:amd64	libsmartcols1	2.41-5
  install ok installed	libsqlite3-0:amd64	libsqlite3-0	3.46.1-7
  install ok installed	libssl3t64:amd64	libssl3t64	3.5.1-1
  install ok installed	libstdc++-14-dev:amd64	libstdc++-14-dev	14.2.0-19
  install ok installed	libstdc++6:amd64	libstdc++6	14.2.0-19
  install ok installed	libsystemd0:amd64	libsystemd0	257.8-1~deb13u1
  install ok installed	libtinfo6:amd64	libtinfo6	6.5+20250216-2
  install ok installed	libtsan2:amd64	libtsan2	14.2.0-19
  install ok installed	libubsan1:amd64	libubsan1	14.2.0-19
  install ok installed	libudev1:amd64	libudev1	257.8-1~deb13u1
  install ok installed	libuuid1:amd64	libuuid1	2.41-5
  install ok installed	libxxhash0:amd64	libxxhash0	0.8.3-2
  install ok installed	libzstd1:amd64	libzstd1	1.5.7+dfsg-1
  install ok installed	linux-libc-dev	linux-libc-dev	6.12.43-1
  install ok installed	make	make	4.4.1-2
  install ok installed	mawk	mawk	1.3.4.20250131-1
  install ok installed	ncurses-base	ncurses-base	6.5+20250216-2
  install ok installed	ncurses-bin	ncurses-bin	6.5+20250216-2
  install ok installed	openssl-provider-legacy	openssl-provider-legacy	3.5.1-1
  install ok installed	patch	patch	2.8-2
  install ok installed	perl	perl	5.40.1-6
  install ok installed	perl-base	perl-base	5.40.1-6
  install ok installed	perl-modules-5.40	perl-modules-5.40	5.40.1-6
  install ok installed	rpcsvc-proto	rpcsvc-proto	1.4.3-1
  install ok installed	sed	sed	4.9-2
  install ok installed	spawn-fcgi	spawn-fcgi	1.6.7~snap-20250301-194725-ga82da4-0.2
  install ok installed	spawn-fcgi-dbgsym	spawn-fcgi-dbgsym	1.6.7~snap-20250301-194725-ga82da4-0.2
  install ok installed	sqv	sqv	1.3.0-3
  install ok installed	sysvinit-utils	sysvinit-utils	3.14-4
  install ok installed	tar	tar	1.35+dfsg-3.1
  install ok installed	util-linux	util-linux	2.41-5
  install ok installed	xz-utils	xz-utils	5.8.1-1
  install ok installed	zlib1g:amd64	zlib1g	1:1.3.dfsg+really1.3.1-1+b1
0m12.0s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m12.0s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'apt-get', 'remove', '--allow-remove-essential', 'spawn-fcgi', 'spawn-fcgi-dbgsym']
0m12.3s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  The following packages will be REMOVED:
    spawn-fcgi spawn-fcgi-dbgsym
  0 upgraded, 0 newly installed, 2 to remove and 0 not upgraded.
  After this operation, 96.3 kB disk space will be freed.
  (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 ... 11810 files and directories currently installed.)
  Removing spawn-fcgi-dbgsym (1.6.7~snap-20250301-194725-ga82da4-0.2) ...
  Removing spawn-fcgi (1.6.7~snap-20250301-194725-ga82da4-0.2) ...
0m12.3s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'apt-get', 'remove', '--allow-remove-essential', 'spawn-fcgi', 'spawn-fcgi-dbgsym']
0m12.3s INFO: Running scripts post_remove
0m12.3s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'dpkg', '--purge', 'spawn-fcgi', 'spawn-fcgi-dbgsym']
0m12.3s DUMP: 
  dpkg: warning: ignoring request to remove spawn-fcgi which isn't installed
  dpkg: warning: ignoring request to remove spawn-fcgi-dbgsym which isn't installed
0m12.3s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'dpkg', '--purge', 'spawn-fcgi', 'spawn-fcgi-dbgsym']
0m12.3s INFO: Running scripts post_purge
0m12.3s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'dpkg', '--purge', '--pending']
0m12.3s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'dpkg', '--purge', '--pending']
0m12.3s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'dpkg', '--remove', '--pending']
0m12.4s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'dpkg', '--remove', '--pending']
0m12.4s INFO: Running scripts post_test
0m12.4s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmpglbzwey7']
0m12.6s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmpglbzwey7']
0m12.9s DEBUG: No broken symlinks as far as we can find.
0m12.9s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'dpkg-divert', '--list']
0m12.9s DUMP: 
  diversion of /lib64/ld-linux-x86-64.so.2 to /lib64/ld-linux-x86-64.so.2.usr-is-merged by libc6
  diversion of /libx32 to /.libx32.usr-is-merged by base-files
  diversion of /lib32 to /.lib32.usr-is-merged by base-files
  diversion of /libo32 to /.libo32.usr-is-merged by base-files
0m12.9s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'dpkg-divert', '--list']
0m12.9s DEBUG: Starting command: ['chroot', '/tmp/tmpglbzwey7', 'apt-get', 'clean']
0m12.9s DEBUG: Command ok: ['chroot', '/tmp/tmpglbzwey7', 'apt-get', 'clean']
0m12.9s DEBUG: Recording chroot state
0m13.2s INFO: PASS: Installation, upgrade and purging tests.
0m13.4s DEBUG: Starting command: ['umount', '/tmp/tmpglbzwey7/dev/tty']
0m13.4s DEBUG: Command ok: ['umount', '/tmp/tmpglbzwey7/dev/tty']
0m13.4s DEBUG: Starting command: ['umount', '/tmp/tmpglbzwey7/dev/urandom']
0m13.4s DEBUG: Command ok: ['umount', '/tmp/tmpglbzwey7/dev/urandom']
0m13.4s DEBUG: Starting command: ['umount', '/tmp/tmpglbzwey7/dev/random']
0m13.4s DEBUG: Command ok: ['umount', '/tmp/tmpglbzwey7/dev/random']
0m13.4s DEBUG: Starting command: ['umount', '/tmp/tmpglbzwey7/dev/full']
0m13.5s DEBUG: Command ok: ['umount', '/tmp/tmpglbzwey7/dev/full']
0m13.5s DEBUG: Starting command: ['umount', '/tmp/tmpglbzwey7/dev/zero']
0m13.5s DEBUG: Command ok: ['umount', '/tmp/tmpglbzwey7/dev/zero']
0m13.5s DEBUG: Starting command: ['umount', '/tmp/tmpglbzwey7/dev/null']
0m13.5s DEBUG: Command ok: ['umount', '/tmp/tmpglbzwey7/dev/null']
0m13.5s DEBUG: Starting command: ['umount', '/tmp/tmpglbzwey7/dev/shm']
0m13.5s DEBUG: Command ok: ['umount', '/tmp/tmpglbzwey7/dev/shm']
0m13.5s DEBUG: Starting command: ['umount', '/tmp/tmpglbzwey7/dev/pts']
0m13.5s DEBUG: Command ok: ['umount', '/tmp/tmpglbzwey7/dev/pts']
0m13.5s DEBUG: Starting command: ['umount', '/tmp/tmpglbzwey7/proc']
0m13.5s DEBUG: Command ok: ['umount', '/tmp/tmpglbzwey7/proc']
0m13.5s DEBUG: Starting command: ['rm', '-rf', '--one-file-system', '/tmp/tmpglbzwey7']
0m13.6s DEBUG: Command ok: ['rm', '-rf', '--one-file-system', '/tmp/tmpglbzwey7']
0m13.6s DEBUG: Removed directory tree at /tmp/tmpglbzwey7
0m13.6s INFO: PASS: All tests.
0m13.6s INFO: piuparts run ends.

Files in working directory:

--------------------