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
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
cmd: env PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin piuparts --keep-sources-list --allow-database --warn-on-leftovers-after-purge --basetgz=/tmp/debusine-fetch-exec-upload-wk8v47cq/base_tar/system.tar /tmp/debusine-fetch-exec-upload-wk8v47cq/python3-rich_13.9.4-0.1_all.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.5.1 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-wk8v47cq/base_tar/system.tar /tmp/debusine-fetch-exec-upload-wk8v47cq/python3-rich_13.9.4-0.1_all.deb
0m0.0s INFO: Running on: Linux debusine-worker-amd64-hades-01 6.1.0-28-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.119-1 (2024-11-22) x86_64
0m0.0s DEBUG: Starting command: ['dpkg', '--info', '/tmp/debusine-fetch-exec-upload-wk8v47cq/python3-rich_13.9.4-0.1_all.deb']
0m0.0s DUMP: 
   new Debian package, version 2.0.
   size 202948 bytes: control archive=4680 bytes.
      2020 bytes,    38 lines      control
      9979 bytes,   123 lines      md5sums
       259 bytes,    12 lines   *  postinst             #!/bin/sh
       372 bytes,    12 lines   *  prerm                #!/bin/sh
   Package: python3-rich
   Source: rich
   Version: 13.9.4-0.1
   Architecture: all
   Maintainer: Sandro Tosi <morph@debian.org>
   Installed-Size: 1072
   Depends: python3-markdown-it, python3-pygments (>= 2.14.0), python3-typing-extensions (>= 3.7.4) | python3-supported-min (>= 3.11), python3:any
   Section: python
   Priority: optional
   Homepage: https://github.com/Textualize/rich
   Description: render rich text, tables, progress bars, syntax highlighting, markdown and more
    Rich is a Python library for rich text and beautiful formatting in the
    terminal.
    .
    The Rich API makes it easy to add color and style to terminal output. Rich can
    also render pretty tables, progress bars, markdown, syntax highlighted source
    code, tracebacks, and more — out of the box.
    .
    Here's a list of the core functionalities of rich:
    .
     * to effortlessly add rich output to your application, you can import the rich
       print method, which has the same signature as the builtin Python function
     * Rich can be installed in the Python REPL, so that any data structures will
       be pretty printed and highlighted
     * for more control over rich terminal content, import and construct a Console
       object. The Console object has a print method which has an intentionally
       similar interface to the builtin print function
     * to insert an emoji in to console output place the name between two colons
     * Rich can render flexible tables with unicode box characters. There is a
       large variety of formatting options for borders, styles, cell alignment etc
     * Rich can render multiple flicker-free progress bars to track long-running
       tasks.
     * Rich can render content in neat columns with equal or optimal width.
     * Rich can render markdown and does a reasonable job of translating the
       formatting to the terminal
     * Rich can render beautiful tracebacks which are easier to read and show more
       code than standard Python tracebacks. You can set Rich as the default
       traceback handler so all uncaught exceptions will be rendered by Rich.
0m0.0s DEBUG: Command ok: ['dpkg', '--info', '/tmp/debusine-fetch-exec-upload-wk8v47cq/python3-rich_13.9.4-0.1_all.deb']
0m0.0s DEBUG: Created temporary directory /tmp/tmp6cdavkee
0m0.0s DEBUG: Unpacking /tmp/debusine-fetch-exec-upload-wk8v47cq/base_tar/system.tar into /tmp/tmp6cdavkee
0m0.0s DEBUG: Starting command: ['tar', '-C', '/tmp/tmp6cdavkee', '--auto-compress', '-xf', '/tmp/debusine-fetch-exec-upload-wk8v47cq/base_tar/system.tar']
0m0.9s DUMP: 
  tar: Ignoring unknown extended header keyword 'hdrcharset'
0m0.9s DEBUG: Command ok: ['tar', '-C', '/tmp/tmp6cdavkee', '--auto-compress', '-xf', '/tmp/debusine-fetch-exec-upload-wk8v47cq/base_tar/system.tar']
0m0.9s DEBUG: Starting command: ['mount', '-t', 'proc', 'proc', '/tmp/tmp6cdavkee/proc']
0m1.0s DEBUG: Command ok: ['mount', '-t', 'proc', 'proc', '/tmp/tmp6cdavkee/proc']
0m1.0s DEBUG: Starting command: ['mount', '-t', 'devpts', '-o', 'newinstance,noexec,nosuid,gid=5,mode=0620,ptmxmode=0666', 'devpts', '/tmp/tmp6cdavkee/dev/pts']
0m1.0s DEBUG: Command ok: ['mount', '-t', 'devpts', '-o', 'newinstance,noexec,nosuid,gid=5,mode=0620,ptmxmode=0666', 'devpts', '/tmp/tmp6cdavkee/dev/pts']
0m1.0s DEBUG: Starting command: ['mount', '-t', 'tmpfs', '-o', 'size=65536k', 'tmpfs', '/tmp/tmp6cdavkee/dev/shm']
0m1.0s DEBUG: Command ok: ['mount', '-t', 'tmpfs', '-o', 'size=65536k', 'tmpfs', '/tmp/tmp6cdavkee/dev/shm']
0m1.0s DEBUG: Created policy-rc.d and chmodded it.
0m1.0s DEBUG: Created resolv.conf.
0m1.0s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/null', '/tmp/tmp6cdavkee/dev/null']
0m1.0s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/null', '/tmp/tmp6cdavkee/dev/null']
0m1.0s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/zero', '/tmp/tmp6cdavkee/dev/zero']
0m1.0s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/zero', '/tmp/tmp6cdavkee/dev/zero']
0m1.0s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/full', '/tmp/tmp6cdavkee/dev/full']
0m1.0s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/full', '/tmp/tmp6cdavkee/dev/full']
0m1.0s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/random', '/tmp/tmp6cdavkee/dev/random']
0m1.0s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/random', '/tmp/tmp6cdavkee/dev/random']
0m1.0s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/urandom', '/tmp/tmp6cdavkee/dev/urandom']
0m1.0s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/urandom', '/tmp/tmp6cdavkee/dev/urandom']
0m1.0s DEBUG: Starting command: ['mount', '-o', 'bind', '/dev/tty', '/tmp/tmp6cdavkee/dev/tty']
0m1.0s DEBUG: Command ok: ['mount', '-o', 'bind', '/dev/tty', '/tmp/tmp6cdavkee/dev/tty']
0m1.0s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'apt-get', 'update']
0m3.5s DUMP: 
  Get:1 http://deb.debian.org/debian sid InRelease [202 kB]
  Get:2 http://deb.debian.org/debian sid/main amd64 Packages [10.1 MB]
  Get:3 http://deb.debian.org/debian sid/main Translation-en [7350 kB]
  Fetched 17.6 MB in 2s (9128 kB/s)
  Reading package lists...
0m3.5s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'apt-get', 'update']
0m3.5s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'apt-get', '-yf', 'dist-upgrade']
0m9.8s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  Calculating upgrade...
  The following packages will be upgraded:
    cpp-14 cpp-14-x86-64-linux-gnu dbus dbus-bin dbus-daemon
    dbus-session-bus-common dbus-system-bus-common g++-14
    g++-14-x86-64-linux-gnu gcc-14 gcc-14-base gcc-14-x86-64-linux-gnu libasan8
    libatomic1 libcc1-0 libdbus-1-3 libgcc-14-dev libgcc-s1 libgomp1 libhwasan0
    libitm1 liblsan0 libquadmath0 libstdc++-14-dev libstdc++6 libtsan2 libubsan1
  27 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
  Need to get 60.9 MB of archives.
  After this operation, 39.9 kB disk space will be freed.
  Get:1 http://deb.debian.org/debian sid/main amd64 dbus-system-bus-common all 1.16.0-1 [52.2 kB]
  Get:2 http://deb.debian.org/debian sid/main amd64 dbus-session-bus-common all 1.16.0-1 [51.1 kB]
  Get:3 http://deb.debian.org/debian sid/main amd64 dbus-daemon amd64 1.16.0-1 [157 kB]
  Get:4 http://deb.debian.org/debian sid/main amd64 dbus-bin amd64 1.16.0-1 [78.9 kB]
  Get:5 http://deb.debian.org/debian sid/main amd64 dbus amd64 1.16.0-1 [70.5 kB]
  Get:6 http://deb.debian.org/debian sid/main amd64 libdbus-1-3 amd64 1.16.0-1 [177 kB]
  Get:7 http://deb.debian.org/debian sid/main amd64 libcc1-0 amd64 14.2.0-11 [42.9 kB]
  Get:8 http://deb.debian.org/debian sid/main amd64 libgomp1 amd64 14.2.0-11 [137 kB]
  Get:9 http://deb.debian.org/debian sid/main amd64 libitm1 amd64 14.2.0-11 [26.0 kB]
  Get:10 http://deb.debian.org/debian sid/main amd64 libatomic1 amd64 14.2.0-11 [9284 B]
  Get:11 http://deb.debian.org/debian sid/main amd64 libasan8 amd64 14.2.0-11 [2728 kB]
  Get:12 http://deb.debian.org/debian sid/main amd64 liblsan0 amd64 14.2.0-11 [1205 kB]
  Get:13 http://deb.debian.org/debian sid/main amd64 libtsan2 amd64 14.2.0-11 [2461 kB]
  Get:14 http://deb.debian.org/debian sid/main amd64 libubsan1 amd64 14.2.0-11 [1075 kB]
  Get:15 http://deb.debian.org/debian sid/main amd64 libhwasan0 amd64 14.2.0-11 [1489 kB]
  Get:16 http://deb.debian.org/debian sid/main amd64 libquadmath0 amd64 14.2.0-11 [146 kB]
  Get:17 http://deb.debian.org/debian sid/main amd64 gcc-14-base amd64 14.2.0-11 [48.0 kB]
  Get:18 http://deb.debian.org/debian sid/main amd64 libstdc++6 amd64 14.2.0-11 [713 kB]
  Get:19 http://deb.debian.org/debian sid/main amd64 gcc-14 amd64 14.2.0-11 [534 kB]
  Get:20 http://deb.debian.org/debian sid/main amd64 g++-14 amd64 14.2.0-11 [20.4 kB]
  Get:21 http://deb.debian.org/debian sid/main amd64 g++-14-x86-64-linux-gnu amd64 14.2.0-11 [12.1 MB]
  Get:22 http://deb.debian.org/debian sid/main amd64 libstdc++-14-dev amd64 14.2.0-11 [2373 kB]
  Get:23 http://deb.debian.org/debian sid/main amd64 libgcc-14-dev amd64 14.2.0-11 [2673 kB]
  Get:24 http://deb.debian.org/debian sid/main amd64 gcc-14-x86-64-linux-gnu amd64 14.2.0-11 [21.4 MB]
  Get:25 http://deb.debian.org/debian sid/main amd64 cpp-14-x86-64-linux-gnu amd64 14.2.0-11 [11.0 MB]
  Get:26 http://deb.debian.org/debian sid/main amd64 cpp-14 amd64 14.2.0-11 [1284 B]
  Get:27 http://deb.debian.org/debian sid/main amd64 libgcc-s1 amd64 14.2.0-11 [72.7 kB]
  debconf: delaying package configuration, since apt-utils is not installed
  Fetched 60.9 MB in 1s (102 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 ... 14176 files and directories currently installed.)
  Preparing to unpack .../00-dbus-system-bus-common_1.16.0-1_all.deb ...
  Unpacking dbus-system-bus-common (1.16.0-1) over (1.15.92-1) ...
  Preparing to unpack .../01-dbus-session-bus-common_1.16.0-1_all.deb ...
  Unpacking dbus-session-bus-common (1.16.0-1) over (1.15.92-1) ...
  Preparing to unpack .../02-dbus-daemon_1.16.0-1_amd64.deb ...
  Unpacking dbus-daemon (1.16.0-1) over (1.15.92-1) ...
  Preparing to unpack .../03-dbus-bin_1.16.0-1_amd64.deb ...
  Unpacking dbus-bin (1.16.0-1) over (1.15.92-1) ...
  Preparing to unpack .../04-dbus_1.16.0-1_amd64.deb ...
  Unpacking dbus (1.16.0-1) over (1.15.92-1) ...
  Preparing to unpack .../05-libdbus-1-3_1.16.0-1_amd64.deb ...
  Unpacking libdbus-1-3:amd64 (1.16.0-1) over (1.15.92-1) ...
  Preparing to unpack .../06-libcc1-0_14.2.0-11_amd64.deb ...
  Unpacking libcc1-0:amd64 (14.2.0-11) over (14.2.0-8) ...
  Preparing to unpack .../07-libgomp1_14.2.0-11_amd64.deb ...
  Unpacking libgomp1:amd64 (14.2.0-11) over (14.2.0-8) ...
  Preparing to unpack .../08-libitm1_14.2.0-11_amd64.deb ...
  Unpacking libitm1:amd64 (14.2.0-11) over (14.2.0-8) ...
  Preparing to unpack .../09-libatomic1_14.2.0-11_amd64.deb ...
  Unpacking libatomic1:amd64 (14.2.0-11) over (14.2.0-8) ...
  Preparing to unpack .../10-libasan8_14.2.0-11_amd64.deb ...
  Unpacking libasan8:amd64 (14.2.0-11) over (14.2.0-8) ...
  Preparing to unpack .../11-liblsan0_14.2.0-11_amd64.deb ...
  Unpacking liblsan0:amd64 (14.2.0-11) over (14.2.0-8) ...
  Preparing to unpack .../12-libtsan2_14.2.0-11_amd64.deb ...
  Unpacking libtsan2:amd64 (14.2.0-11) over (14.2.0-8) ...
  Preparing to unpack .../13-libubsan1_14.2.0-11_amd64.deb ...
  Unpacking libubsan1:amd64 (14.2.0-11) over (14.2.0-8) ...
  Preparing to unpack .../14-libhwasan0_14.2.0-11_amd64.deb ...
  Unpacking libhwasan0:amd64 (14.2.0-11) over (14.2.0-8) ...
  Preparing to unpack .../15-libquadmath0_14.2.0-11_amd64.deb ...
  Unpacking libquadmath0:amd64 (14.2.0-11) over (14.2.0-8) ...
  Preparing to unpack .../16-gcc-14-base_14.2.0-11_amd64.deb ...
  Unpacking gcc-14-base:amd64 (14.2.0-11) over (14.2.0-8) ...
  Setting up gcc-14-base:amd64 (14.2.0-11) ...
  (Reading database ... 
  (Reading database ... 5%
  (Reading database ... 10%
  (Reading database ... 15%
  (Reading database ... 20%
  (Reading database ... 25%
  (Reading database ... 30%
  (Reading database ... 35%
  (Reading database ... 40%
  (Reading database ... 45%
  (Reading database ... 50%
  (Reading database ... 55%
  (Reading database ... 60%
  (Reading database ... 65%
  (Reading database ... 70%
  (Reading database ... 75%
  (Reading database ... 80%
  (Reading database ... 85%
  (Reading database ... 90%
  (Reading database ... 95%
  (Reading database ... 100%
  (Reading database ... 14176 files and directories currently installed.)
  Preparing to unpack .../libstdc++6_14.2.0-11_amd64.deb ...
  Unpacking libstdc++6:amd64 (14.2.0-11) over (14.2.0-8) ...
  Setting up libstdc++6:amd64 (14.2.0-11) ...
  (Reading database ... 
  (Reading database ... 5%
  (Reading database ... 10%
  (Reading database ... 15%
  (Reading database ... 20%
  (Reading database ... 25%
  (Reading database ... 30%
  (Reading database ... 35%
  (Reading database ... 40%
  (Reading database ... 45%
  (Reading database ... 50%
  (Reading database ... 55%
  (Reading database ... 60%
  (Reading database ... 65%
  (Reading database ... 70%
  (Reading database ... 75%
  (Reading database ... 80%
  (Reading database ... 85%
  (Reading database ... 90%
  (Reading database ... 95%
  (Reading database ... 100%
  (Reading database ... 14176 files and directories currently installed.)
  Preparing to unpack .../0-gcc-14_14.2.0-11_amd64.deb ...
  Unpacking gcc-14 (14.2.0-11) over (14.2.0-8) ...
  Preparing to unpack .../1-g++-14_14.2.0-11_amd64.deb ...
  Unpacking g++-14 (14.2.0-11) over (14.2.0-8) ...
  Preparing to unpack .../2-g++-14-x86-64-linux-gnu_14.2.0-11_amd64.deb ...
  Unpacking g++-14-x86-64-linux-gnu (14.2.0-11) over (14.2.0-8) ...
  Preparing to unpack .../3-libstdc++-14-dev_14.2.0-11_amd64.deb ...
  Unpacking libstdc++-14-dev:amd64 (14.2.0-11) over (14.2.0-8) ...
  Preparing to unpack .../4-libgcc-14-dev_14.2.0-11_amd64.deb ...
  Unpacking libgcc-14-dev:amd64 (14.2.0-11) over (14.2.0-8) ...
  Preparing to unpack .../5-gcc-14-x86-64-linux-gnu_14.2.0-11_amd64.deb ...
  Unpacking gcc-14-x86-64-linux-gnu (14.2.0-11) over (14.2.0-8) ...
  Preparing to unpack .../6-cpp-14-x86-64-linux-gnu_14.2.0-11_amd64.deb ...
  Unpacking cpp-14-x86-64-linux-gnu (14.2.0-11) over (14.2.0-8) ...
  Preparing to unpack .../7-cpp-14_14.2.0-11_amd64.deb ...
  Unpacking cpp-14 (14.2.0-11) over (14.2.0-8) ...
  Preparing to unpack .../8-libgcc-s1_14.2.0-11_amd64.deb ...
  Unpacking libgcc-s1:amd64 (14.2.0-11) over (14.2.0-8) ...
  Setting up libgcc-s1:amd64 (14.2.0-11) ...
  Setting up libgomp1:amd64 (14.2.0-11) ...
  Setting up libdbus-1-3:amd64 (1.16.0-1) ...
  Setting up libquadmath0:amd64 (14.2.0-11) ...
  Setting up libatomic1:amd64 (14.2.0-11) ...
  Setting up cpp-14-x86-64-linux-gnu (14.2.0-11) ...
  Setting up cpp-14 (14.2.0-11) ...
  Setting up libubsan1:amd64 (14.2.0-11) ...
  Setting up libhwasan0:amd64 (14.2.0-11) ...
  Setting up dbus-session-bus-common (1.16.0-1) ...
  Setting up libasan8:amd64 (14.2.0-11) ...
  Setting up libtsan2:amd64 (14.2.0-11) ...
  Setting up dbus-system-bus-common (1.16.0-1) ...
  Setting up libcc1-0:amd64 (14.2.0-11) ...
  Setting up dbus-bin (1.16.0-1) ...
  Setting up liblsan0:amd64 (14.2.0-11) ...
  Setting up libitm1:amd64 (14.2.0-11) ...
  Setting up dbus-daemon (1.16.0-1) ...
  Setting up dbus (1.16.0-1) ...
  Running in chroot, ignoring request.
  invoke-rc.d: policy-rc.d denied execution of start.
  Setting up libgcc-14-dev:amd64 (14.2.0-11) ...
  Setting up libstdc++-14-dev:amd64 (14.2.0-11) ...
  Setting up gcc-14-x86-64-linux-gnu (14.2.0-11) ...
  Setting up gcc-14 (14.2.0-11) ...
  Setting up g++-14-x86-64-linux-gnu (14.2.0-11) ...
  Setting up g++-14 (14.2.0-11) ...
  Processing triggers for libc-bin (2.40-4) ...
0m9.8s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'apt-get', '-yf', 'dist-upgrade']
0m9.8s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'sh', '-c', 'apt-cache dumpavail | md5sum']
0m10.0s DUMP: 
  fe87ee01df0ea3149d6ced24964375f7  -
0m10.0s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'sh', '-c', 'apt-cache dumpavail | md5sum']
0m10.0s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'apt-get', 'clean']
0m10.0s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'apt-get', 'clean']
0m10.0s DEBUG: Recording chroot state
0m10.1s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m10.1s DUMP: 
  install ok installed	adduser	adduser	3.137
  install ok installed	apt	apt	2.9.17
  install ok installed	base-files	base-files	13.6
  install ok installed	base-passwd	base-passwd	3.6.5
  install ok installed	bash	bash	5.2.37-1
  install ok installed	binutils	binutils	2.43.50.20241215-1
  install ok installed	binutils-common:amd64	binutils-common	2.43.50.20241215-1
  install ok installed	binutils-x86-64-linux-gnu	binutils-x86-64-linux-gnu	2.43.50.20241215-1
  install ok installed	bsdutils	bsdutils	1:2.40.2-12
  install ok installed	build-essential	build-essential	12.12
  install ok installed	bzip2	bzip2	1.0.8-6
  install ok installed	coreutils	coreutils	9.5-1+b1
  install ok installed	cpp	cpp	4:14.2.0-1
  install ok installed	cpp-14	cpp-14	14.2.0-11
  install ok installed	cpp-14-x86-64-linux-gnu	cpp-14-x86-64-linux-gnu	14.2.0-11
  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-9
  install ok installed	dbus	dbus	1.16.0-1
  install ok installed	dbus-bin	dbus-bin	1.16.0-1
  install ok installed	dbus-daemon	dbus-daemon	1.16.0-1
  install ok installed	dbus-session-bus-common	dbus-session-bus-common	1.16.0-1
  install ok installed	dbus-system-bus-common	dbus-system-bus-common	1.16.0-1
  install ok installed	debconf	debconf	1.5.87
  install ok installed	debian-archive-keyring	debian-archive-keyring	2023.4
  install ok installed	debianutils	debianutils	5.21
  install ok installed	diffutils	diffutils	1:3.10-1
  install ok installed	dpkg	dpkg	1.22.11
  install ok installed	dpkg-dev	dpkg-dev	1.22.11
  install ok installed	e2fsprogs	e2fsprogs	1.47.2~rc1-2
  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-11
  install ok installed	g++-14-x86-64-linux-gnu	g++-14-x86-64-linux-gnu	14.2.0-11
  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-11
  install ok installed	gcc-14-base:amd64	gcc-14-base	14.2.0-11
  install ok installed	gcc-14-x86-64-linux-gnu	gcc-14-x86-64-linux-gnu	14.2.0-11
  install ok installed	gcc-x86-64-linux-gnu	gcc-x86-64-linux-gnu	4:14.2.0-1
  install ok installed	gpgv	gpgv	2.2.45-2
  install ok installed	grep	grep	3.11-4
  install ok installed	gzip	gzip	1.12-1.2
  install ok installed	hostname	hostname	3.25
  install ok installed	init-system-helpers	init-system-helpers	1.67
  install ok installed	libacl1:amd64	libacl1	2.3.2-2+b1
  install ok installed	libapparmor1:amd64	libapparmor1	3.1.7-1+b3
  install ok installed	libapt-pkg6.0t64:amd64	libapt-pkg6.0t64	2.9.17
  install ok installed	libasan8:amd64	libasan8	14.2.0-11
  install ok installed	libatomic1:amd64	libatomic1	14.2.0-11
  install ok installed	libattr1:amd64	libattr1	1:2.5.2-2
  install ok installed	libaudit-common	libaudit-common	1:4.0.2-2
  install ok installed	libaudit1:amd64	libaudit1	1:4.0.2-2
  install ok installed	libbinutils:amd64	libbinutils	2.43.50.20241215-1
  install ok installed	libblkid1:amd64	libblkid1	2.40.2-12
  install ok installed	libbsd0:amd64	libbsd0	0.12.2-2
  install ok installed	libbz2-1.0:amd64	libbz2-1.0	1.0.8-6
  install ok installed	libc-bin	libc-bin	2.40-4
  install ok installed	libc-dev-bin	libc-dev-bin	2.40-4
  install ok installed	libc6:amd64	libc6	2.40-4
  install ok installed	libc6-dev:amd64	libc6-dev	2.40-4
  install ok installed	libcap-ng0:amd64	libcap-ng0	0.8.5-4
  install ok installed	libcap2:amd64	libcap2	1:2.66-5+b1
  install ok installed	libcc1-0:amd64	libcc1-0	14.2.0-11
  install ok installed	libcom-err2:amd64	libcom-err2	1.47.2~rc1-2
  install ok installed	libcrypt-dev:amd64	libcrypt-dev	1:4.4.36-5
  install ok installed	libcrypt1:amd64	libcrypt1	1:4.4.36-5
  install ok installed	libctf-nobfd0:amd64	libctf-nobfd0	2.43.50.20241215-1
  install ok installed	libctf0:amd64	libctf0	2.43.50.20241215-1
  install ok installed	libdb5.3t64:amd64	libdb5.3t64	5.3.28+dfsg2-9
  install ok installed	libdbus-1-3:amd64	libdbus-1-3	1.16.0-1
  install ok installed	libdebconfclient0:amd64	libdebconfclient0	0.274
  install ok installed	libdpkg-perl	libdpkg-perl	1.22.11
  install ok installed	libexpat1:amd64	libexpat1	2.6.4-1
  install ok installed	libext2fs2t64:amd64	libext2fs2t64	1.47.2~rc1-2
  install ok installed	libffi8:amd64	libffi8	3.4.6-1
  install ok installed	libgcc-14-dev:amd64	libgcc-14-dev	14.2.0-11
  install ok installed	libgcc-s1:amd64	libgcc-s1	14.2.0-11
  install ok installed	libgcrypt20:amd64	libgcrypt20	1.11.0-6
  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	libgnutls30t64:amd64	libgnutls30t64	3.8.8-2
  install ok installed	libgomp1:amd64	libgomp1	14.2.0-11
  install ok installed	libgpg-error0:amd64	libgpg-error0	1.51-2
  install ok installed	libgprofng0:amd64	libgprofng0	2.43.50.20241215-1
  install ok installed	libhogweed6t64:amd64	libhogweed6t64	3.10-1+b1
  install ok installed	libhwasan0:amd64	libhwasan0	14.2.0-11
  install ok installed	libidn2-0:amd64	libidn2-0	2.3.7-2+b1
  install ok installed	libisl23:amd64	libisl23	0.27-1
  install ok installed	libitm1:amd64	libitm1	14.2.0-11
  install ok installed	libjansson4:amd64	libjansson4	2.14-2+b3
  install ok installed	liblsan0:amd64	liblsan0	14.2.0-11
  install ok installed	liblz4-1:amd64	liblz4-1	1.9.4-3+b1
  install ok installed	liblzma5:amd64	liblzma5	5.6.3-1+b1
  install ok installed	libmd0:amd64	libmd0	1.1.0-2+b1
  install ok installed	libmount1:amd64	libmount1	2.40.2-12
  install ok installed	libmpc3:amd64	libmpc3	1.3.1-1+b3
  install ok installed	libmpfr6:amd64	libmpfr6	4.2.1-1+b2
  install ok installed	libnettle8t64:amd64	libnettle8t64	3.10-1+b1
  install ok installed	libp11-kit0:amd64	libp11-kit0	0.25.5-2+b1
  install ok installed	libpam-modules:amd64	libpam-modules	1.5.3-7+b1
  install ok installed	libpam-modules-bin	libpam-modules-bin	1.5.3-7+b1
  install ok installed	libpam-runtime	libpam-runtime	1.5.3-7
  install ok installed	libpam0g:amd64	libpam0g	1.5.3-7+b1
  install ok installed	libpcre2-8-0:amd64	libpcre2-8-0	10.44-5
  install ok installed	libperl5.40:amd64	libperl5.40	5.40.0-8
  install ok installed	libquadmath0:amd64	libquadmath0	14.2.0-11
  install ok installed	libseccomp2:amd64	libseccomp2	2.5.5-2
  install ok installed	libselinux1:amd64	libselinux1	3.7-3+b1
  install ok installed	libsemanage-common	libsemanage-common	3.7-2
  install ok installed	libsemanage2:amd64	libsemanage2	3.7-2+b1
  install ok installed	libsepol2:amd64	libsepol2	3.7-1
  install ok installed	libsframe1:amd64	libsframe1	2.43.50.20241215-1
  install ok installed	libsmartcols1:amd64	libsmartcols1	2.40.2-12
  install ok installed	libss2:amd64	libss2	1.47.2~rc1-2
  install ok installed	libssl3t64:amd64	libssl3t64	3.3.2-2
  install ok installed	libstdc++-14-dev:amd64	libstdc++-14-dev	14.2.0-11
  install ok installed	libstdc++6:amd64	libstdc++6	14.2.0-11
  install ok installed	libsystemd-shared:amd64	libsystemd-shared	257-2
  install ok installed	libsystemd0:amd64	libsystemd0	257-2
  install ok installed	libtasn1-6:amd64	libtasn1-6	4.19.0-3+b3
  install ok installed	libtinfo6:amd64	libtinfo6	6.5-2+b1
  install ok installed	libtsan2:amd64	libtsan2	14.2.0-11
  install ok installed	libubsan1:amd64	libubsan1	14.2.0-11
  install ok installed	libudev1:amd64	libudev1	257-2
  install ok installed	libunistring5:amd64	libunistring5	1.3-1
  install ok installed	libuuid1:amd64	libuuid1	2.40.2-12
  install ok installed	libxxhash0:amd64	libxxhash0	0.8.2-2+b2
  install ok installed	libzstd1:amd64	libzstd1	1.5.6+dfsg-1+b1
  install ok installed	linux-libc-dev	linux-libc-dev	6.12.5-1
  install ok installed	login	login	1:4.16.0-2+really2.40.2-12
  install ok installed	login.defs	login.defs	1:4.16.0-7
  install ok installed	logsave	logsave	1.47.2~rc1-2
  install ok installed	make	make	4.3-4.1
  install ok installed	mawk	mawk	1.3.4.20240905-1
  install ok installed	mount	mount	2.40.2-12
  install ok installed	ncurses-base	ncurses-base	6.5-2
  install ok installed	ncurses-bin	ncurses-bin	6.5-2+b1
  install ok installed	openssl-provider-legacy	openssl-provider-legacy	3.3.2-2
  install ok installed	passwd	passwd	1:4.16.0-7
  install ok installed	patch	patch	2.7.6-7
  install ok installed	perl	perl	5.40.0-8
  install ok installed	perl-base	perl-base	5.40.0-8
  install ok installed	perl-modules-5.40	perl-modules-5.40	5.40.0-8
  install ok installed	rpcsvc-proto	rpcsvc-proto	1.4.3-1
  install ok installed	sed	sed	4.9-2
  install ok installed	systemd	systemd	257-2
  install ok installed	systemd-resolved	systemd-resolved	257-2
  install ok installed	systemd-sysv	systemd-sysv	257-2
  install ok installed	sysvinit-utils	sysvinit-utils	3.11-1
  install ok installed	tar	tar	1.35+dfsg-3
  install ok installed	tzdata	tzdata	2024b-4
  install ok installed	util-linux	util-linux	2.40.2-12
  install ok installed	xz-utils	xz-utils	5.6.3-1+b1
  install ok installed	zlib1g:amd64	zlib1g	1:1.3.dfsg+really1.3.1-1+b1
0m10.1s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m10.1s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'dpkg-divert', '--list']
0m10.1s DUMP: 
  diversion of /lib/x86_64-linux-gnu/libe2p.so.2 to /lib/x86_64-linux-gnu/libe2p.so.2.usr-is-merged by libext2fs2t64
  diversion of /lib/x86_64-linux-gnu/libext2fs.so.2.4 to /lib/x86_64-linux-gnu/libext2fs.so.2.4.usr-is-merged by libext2fs2t64
  diversion of /lib64/ld-linux-x86-64.so.2 to /lib64/ld-linux-x86-64.so.2.usr-is-merged by libc6
  diversion of /lib/x86_64-linux-gnu/libext2fs.so.2 to /lib/x86_64-linux-gnu/libext2fs.so.2.usr-is-merged by libext2fs2t64
  diversion of /lib/x86_64-linux-gnu/libe2p.so.2.3 to /lib/x86_64-linux-gnu/libe2p.so.2.3.usr-is-merged by libext2fs2t64
  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
0m10.1s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'dpkg-divert', '--list']
0m10.1s INFO: apt-cache does not know about any of the requested packages
0m10.1s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmp6cdavkee']
0m10.6s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmp6cdavkee']
0m11.1s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m11.1s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmp6cdavkee']
0m11.5s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmp6cdavkee']
0m12.0s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m12.0s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'dpkg-query', '-f', '${Version}\n', '-W', 'apt']
0m12.0s DUMP: 
  2.9.17
0m12.0s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'dpkg-query', '-f', '${Version}\n', '-W', 'apt']
0m12.0s DEBUG: Copying /tmp/debusine-fetch-exec-upload-wk8v47cq/python3-rich_13.9.4-0.1_all.deb to /tmp/tmp6cdavkee/tmp
0m12.0s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'apt-get', '-y', '--allow-downgrades', 'install', './tmp/python3-rich_13.9.4-0.1_all.deb']
0m19.8s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  The following additional packages will be installed:
    libgssapi-krb5-2 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0
    libncursesw6 libnsl2 libpython3-stdlib libpython3.12-minimal
    libpython3.12-stdlib libreadline8t64 libsqlite3-0 libtirpc-common
    libtirpc3t64 media-types netbase python3 python3-autocommand python3-inflect
    python3-jaraco.context python3-jaraco.functools python3-markdown-it
    python3-mdurl python3-minimal python3-more-itertools python3-pkg-resources
    python3-pygments python3-typeguard python3-typing-extensions python3.12
    python3.12-minimal readline-common
  Suggested packages:
    krb5-doc krb5-user python3-doc python3-tk python3-venv python3-setuptools
    python-pygments-doc ttf-bitstream-vera python3.12-venv python3.12-doc
    binfmt-support readline-doc
  Recommended packages:
    krb5-locales libgpm2 ca-certificates
  The following NEW packages will be installed:
    libgssapi-krb5-2 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0
    libncursesw6 libnsl2 libpython3-stdlib libpython3.12-minimal
    libpython3.12-stdlib libreadline8t64 libsqlite3-0 libtirpc-common
    libtirpc3t64 media-types netbase python3 python3-autocommand python3-inflect
    python3-jaraco.context python3-jaraco.functools python3-markdown-it
    python3-mdurl python3-minimal python3-more-itertools python3-pkg-resources
    python3-pygments python3-rich python3-typeguard python3-typing-extensions
    python3.12 python3.12-minimal readline-common
  0 upgraded, 33 newly installed, 0 to remove and 0 not upgraded.
  Need to get 9101 kB/9304 kB of archives.
  After this operation, 37.1 MB of additional disk space will be used.
  Get:1 /tmp/python3-rich_13.9.4-0.1_all.deb python3-rich all 13.9.4-0.1 [203 kB]
  Get:2 http://deb.debian.org/debian sid/main amd64 libpython3.12-minimal amd64 3.12.8-3 [817 kB]
  Get:3 http://deb.debian.org/debian sid/main amd64 python3.12-minimal amd64 3.12.8-3 [2162 kB]
  Get:4 http://deb.debian.org/debian sid/main amd64 python3-minimal amd64 3.12.7-1 [26.8 kB]
  Get:5 http://deb.debian.org/debian sid/main amd64 media-types all 10.1.0 [26.9 kB]
  Get:6 http://deb.debian.org/debian sid/main amd64 netbase all 6.4 [12.8 kB]
  Get:7 http://deb.debian.org/debian sid/main amd64 libncursesw6 amd64 6.5-2+b1 [136 kB]
  Get:8 http://deb.debian.org/debian sid/main amd64 libkrb5support0 amd64 1.21.3-3 [32.5 kB]
  Get:9 http://deb.debian.org/debian sid/main amd64 libk5crypto3 amd64 1.21.3-3 [79.9 kB]
  Get:10 http://deb.debian.org/debian sid/main amd64 libkeyutils1 amd64 1.6.3-4 [9092 B]
  Get:11 http://deb.debian.org/debian sid/main amd64 libkrb5-3 amd64 1.21.3-3 [324 kB]
  Get:12 http://deb.debian.org/debian sid/main amd64 libgssapi-krb5-2 amd64 1.21.3-3 [136 kB]
  Get:13 http://deb.debian.org/debian sid/main amd64 libtirpc-common all 1.3.4+ds-1.3 [10.9 kB]
  Get:14 http://deb.debian.org/debian sid/main amd64 libtirpc3t64 amd64 1.3.4+ds-1.3+b1 [83.1 kB]
  Get:15 http://deb.debian.org/debian sid/main amd64 libnsl2 amd64 1.3.0-3+b3 [40.6 kB]
  Get:16 http://deb.debian.org/debian sid/main amd64 readline-common all 8.2-6 [69.4 kB]
  Get:17 http://deb.debian.org/debian sid/main amd64 libreadline8t64 amd64 8.2-6 [169 kB]
  Get:18 http://deb.debian.org/debian sid/main amd64 libsqlite3-0 amd64 3.46.1-1 [913 kB]
  Get:19 http://deb.debian.org/debian sid/main amd64 libpython3.12-stdlib amd64 3.12.8-3 [1969 kB]
  Get:20 http://deb.debian.org/debian sid/main amd64 python3.12 amd64 3.12.8-3 [677 kB]
  Get:21 http://deb.debian.org/debian sid/main amd64 libpython3-stdlib amd64 3.12.7-1 [9712 B]
  Get:22 http://deb.debian.org/debian sid/main amd64 python3 amd64 3.12.7-1 [27.8 kB]
  Get:23 http://deb.debian.org/debian sid/main amd64 python3-autocommand all 2.2.2-3 [13.6 kB]
  Get:24 http://deb.debian.org/debian sid/main amd64 python3-more-itertools all 10.5.0-1 [63.8 kB]
  Get:25 http://deb.debian.org/debian sid/main amd64 python3-typing-extensions all 4.12.2-2 [73.0 kB]
  Get:26 http://deb.debian.org/debian sid/main amd64 python3-typeguard all 4.4.1-1 [37.0 kB]
  Get:27 http://deb.debian.org/debian sid/main amd64 python3-inflect all 7.3.1-2 [32.4 kB]
  Get:28 http://deb.debian.org/debian sid/main amd64 python3-jaraco.context all 6.0.0-1 [7984 B]
  Get:29 http://deb.debian.org/debian sid/main amd64 python3-jaraco.functools all 4.1.0-1 [12.0 kB]
  Get:30 http://deb.debian.org/debian sid/main amd64 python3-mdurl all 0.1.2-1 [9444 B]
  Get:31 http://deb.debian.org/debian sid/main amd64 python3-markdown-it all 3.0.0-2 [62.5 kB]
  Get:32 http://deb.debian.org/debian sid/main amd64 python3-pkg-resources all 75.6.0-1 [222 kB]
  Get:33 http://deb.debian.org/debian sid/main amd64 python3-pygments all 2.18.0+dfsg-1 [836 kB]
  debconf: delaying package configuration, since apt-utils is not installed
  Fetched 9101 kB in 0s (50.0 MB/s)
  Selecting previously unselected package libpython3.12-minimal:amd64.
  (Reading database ... 
  (Reading database ... 5%
  (Reading database ... 10%
  (Reading database ... 15%
  (Reading database ... 20%
  (Reading database ... 25%
  (Reading database ... 30%
  (Reading database ... 35%
  (Reading database ... 40%
  (Reading database ... 45%
  (Reading database ... 50%
  (Reading database ... 55%
  (Reading database ... 60%
  (Reading database ... 65%
  (Reading database ... 70%
  (Reading database ... 75%
  (Reading database ... 80%
  (Reading database ... 85%
  (Reading database ... 90%
  (Reading database ... 95%
  (Reading database ... 100%
  (Reading database ... 14177 files and directories currently installed.)
  Preparing to unpack .../libpython3.12-minimal_3.12.8-3_amd64.deb ...
  Unpacking libpython3.12-minimal:amd64 (3.12.8-3) ...
  Selecting previously unselected package python3.12-minimal.
  Preparing to unpack .../python3.12-minimal_3.12.8-3_amd64.deb ...
  Unpacking python3.12-minimal (3.12.8-3) ...
  Setting up libpython3.12-minimal:amd64 (3.12.8-3) ...
  Setting up python3.12-minimal (3.12.8-3) ...
  Selecting previously unselected package python3-minimal.
  (Reading database ... 
  (Reading database ... 5%
  (Reading database ... 10%
  (Reading database ... 15%
  (Reading database ... 20%
  (Reading database ... 25%
  (Reading database ... 30%
  (Reading database ... 35%
  (Reading database ... 40%
  (Reading database ... 45%
  (Reading database ... 50%
  (Reading database ... 55%
  (Reading database ... 60%
  (Reading database ... 65%
  (Reading database ... 70%
  (Reading database ... 75%
  (Reading database ... 80%
  (Reading database ... 85%
  (Reading database ... 90%
  (Reading database ... 95%
  (Reading database ... 100%
  (Reading database ... 14487 files and directories currently installed.)
  Preparing to unpack .../00-python3-minimal_3.12.7-1_amd64.deb ...
  Unpacking python3-minimal (3.12.7-1) ...
  Selecting previously unselected package media-types.
  Preparing to unpack .../01-media-types_10.1.0_all.deb ...
  Unpacking media-types (10.1.0) ...
  Selecting previously unselected package netbase.
  Preparing to unpack .../02-netbase_6.4_all.deb ...
  Unpacking netbase (6.4) ...
  Selecting previously unselected package libncursesw6:amd64.
  Preparing to unpack .../03-libncursesw6_6.5-2+b1_amd64.deb ...
  Unpacking libncursesw6:amd64 (6.5-2+b1) ...
  Selecting previously unselected package libkrb5support0:amd64.
  Preparing to unpack .../04-libkrb5support0_1.21.3-3_amd64.deb ...
  Unpacking libkrb5support0:amd64 (1.21.3-3) ...
  Selecting previously unselected package libk5crypto3:amd64.
  Preparing to unpack .../05-libk5crypto3_1.21.3-3_amd64.deb ...
  Unpacking libk5crypto3:amd64 (1.21.3-3) ...
  Selecting previously unselected package libkeyutils1:amd64.
  Preparing to unpack .../06-libkeyutils1_1.6.3-4_amd64.deb ...
  Unpacking libkeyutils1:amd64 (1.6.3-4) ...
  Selecting previously unselected package libkrb5-3:amd64.
  Preparing to unpack .../07-libkrb5-3_1.21.3-3_amd64.deb ...
  Unpacking libkrb5-3:amd64 (1.21.3-3) ...
  Selecting previously unselected package libgssapi-krb5-2:amd64.
  Preparing to unpack .../08-libgssapi-krb5-2_1.21.3-3_amd64.deb ...
  Unpacking libgssapi-krb5-2:amd64 (1.21.3-3) ...
  Selecting previously unselected package libtirpc-common.
  Preparing to unpack .../09-libtirpc-common_1.3.4+ds-1.3_all.deb ...
  Unpacking libtirpc-common (1.3.4+ds-1.3) ...
  Selecting previously unselected package libtirpc3t64:amd64.
  Preparing to unpack .../10-libtirpc3t64_1.3.4+ds-1.3+b1_amd64.deb ...
  Adding 'diversion of /lib/x86_64-linux-gnu/libtirpc.so.3 to /lib/x86_64-linux-gnu/libtirpc.so.3.usr-is-merged by libtirpc3t64'
  Adding 'diversion of /lib/x86_64-linux-gnu/libtirpc.so.3.0.0 to /lib/x86_64-linux-gnu/libtirpc.so.3.0.0.usr-is-merged by libtirpc3t64'
  Unpacking libtirpc3t64:amd64 (1.3.4+ds-1.3+b1) ...
  Selecting previously unselected package libnsl2:amd64.
  Preparing to unpack .../11-libnsl2_1.3.0-3+b3_amd64.deb ...
  Unpacking libnsl2:amd64 (1.3.0-3+b3) ...
  Selecting previously unselected package readline-common.
  Preparing to unpack .../12-readline-common_8.2-6_all.deb ...
  Unpacking readline-common (8.2-6) ...
  Selecting previously unselected package libreadline8t64:amd64.
  Preparing to unpack .../13-libreadline8t64_8.2-6_amd64.deb ...
  Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8 to /lib/x86_64-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64'
  Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8.2 to /lib/x86_64-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64'
  Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8 to /lib/x86_64-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64'
  Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8.2 to /lib/x86_64-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64'
  Unpacking libreadline8t64:amd64 (8.2-6) ...
  Selecting previously unselected package libsqlite3-0:amd64.
  Preparing to unpack .../14-libsqlite3-0_3.46.1-1_amd64.deb ...
  Unpacking libsqlite3-0:amd64 (3.46.1-1) ...
  Selecting previously unselected package libpython3.12-stdlib:amd64.
  Preparing to unpack .../15-libpython3.12-stdlib_3.12.8-3_amd64.deb ...
  Unpacking libpython3.12-stdlib:amd64 (3.12.8-3) ...
  Selecting previously unselected package python3.12.
  Preparing to unpack .../16-python3.12_3.12.8-3_amd64.deb ...
  Unpacking python3.12 (3.12.8-3) ...
  Selecting previously unselected package libpython3-stdlib:amd64.
  Preparing to unpack .../17-libpython3-stdlib_3.12.7-1_amd64.deb ...
  Unpacking libpython3-stdlib:amd64 (3.12.7-1) ...
  Setting up python3-minimal (3.12.7-1) ...
  Selecting previously unselected package python3.
  (Reading database ... 
  (Reading database ... 5%
  (Reading database ... 10%
  (Reading database ... 15%
  (Reading database ... 20%
  (Reading database ... 25%
  (Reading database ... 30%
  (Reading database ... 35%
  (Reading database ... 40%
  (Reading database ... 45%
  (Reading database ... 50%
  (Reading database ... 55%
  (Reading database ... 60%
  (Reading database ... 65%
  (Reading database ... 70%
  (Reading database ... 75%
  (Reading database ... 80%
  (Reading database ... 85%
  (Reading database ... 90%
  (Reading database ... 95%
  (Reading database ... 100%
  (Reading database ... 15046 files and directories currently installed.)
  Preparing to unpack .../00-python3_3.12.7-1_amd64.deb ...
  Unpacking python3 (3.12.7-1) ...
  Selecting previously unselected package python3-autocommand.
  Preparing to unpack .../01-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 .../02-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 .../03-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 .../04-python3-typeguard_4.4.1-1_all.deb ...
  Unpacking python3-typeguard (4.4.1-1) ...
  Selecting previously unselected package python3-inflect.
  Preparing to unpack .../05-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 .../06-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 .../07-python3-jaraco.functools_4.1.0-1_all.deb ...
  Unpacking python3-jaraco.functools (4.1.0-1) ...
  Selecting previously unselected package python3-mdurl.
  Preparing to unpack .../08-python3-mdurl_0.1.2-1_all.deb ...
  Unpacking python3-mdurl (0.1.2-1) ...
  Selecting previously unselected package python3-markdown-it.
  Preparing to unpack .../09-python3-markdown-it_3.0.0-2_all.deb ...
  Unpacking python3-markdown-it (3.0.0-2) ...
  Selecting previously unselected package python3-pkg-resources.
  Preparing to unpack .../10-python3-pkg-resources_75.6.0-1_all.deb ...
  Unpacking python3-pkg-resources (75.6.0-1) ...
  Selecting previously unselected package python3-pygments.
  Preparing to unpack .../11-python3-pygments_2.18.0+dfsg-1_all.deb ...
  Unpacking python3-pygments (2.18.0+dfsg-1) ...
  Selecting previously unselected package python3-rich.
  Preparing to unpack .../12-python3-rich_13.9.4-0.1_all.deb ...
  Unpacking python3-rich (13.9.4-0.1) ...
  Setting up media-types (10.1.0) ...
  Setting up libkeyutils1:amd64 (1.6.3-4) ...
  Setting up libtirpc-common (1.3.4+ds-1.3) ...
  Setting up libsqlite3-0:amd64 (3.46.1-1) ...
  Setting up libkrb5support0:amd64 (1.21.3-3) ...
  Setting up libncursesw6:amd64 (6.5-2+b1) ...
  Setting up libk5crypto3:amd64 (1.21.3-3) ...
  Setting up netbase (6.4) ...
  Setting up libkrb5-3:amd64 (1.21.3-3) ...
  Setting up readline-common (8.2-6) ...
  Setting up libgssapi-krb5-2:amd64 (1.21.3-3) ...
  Setting up libreadline8t64:amd64 (8.2-6) ...
  Setting up libtirpc3t64:amd64 (1.3.4+ds-1.3+b1) ...
  Setting up libnsl2:amd64 (1.3.0-3+b3) ...
  Setting up libpython3.12-stdlib:amd64 (3.12.8-3) ...
  Setting up python3.12 (3.12.8-3) ...
  Setting up libpython3-stdlib:amd64 (3.12.7-1) ...
  Setting up python3 (3.12.7-1) ...
  Setting up python3-autocommand (2.2.2-3) ...
  Setting up python3-mdurl (0.1.2-1) ...
  Setting up python3-typing-extensions (4.12.2-2) ...
  Setting up python3-markdown-it (3.0.0-2) ...
  Setting up python3-more-itertools (10.5.0-1) ...
  Setting up python3-jaraco.functools (4.1.0-1) ...
  Setting up python3-jaraco.context (6.0.0-1) ...
  Setting up python3-typeguard (4.4.1-1) ...
  Setting up python3-inflect (7.3.1-2) ...
  Setting up python3-pkg-resources (75.6.0-1) ...
  Setting up python3-pygments (2.18.0+dfsg-1) ...
  Setting up python3-rich (13.9.4-0.1) ...
  Processing triggers for systemd (257-2) ...
  Processing triggers for libc-bin (2.40-4) ...
0m19.8s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'apt-get', '-y', '--allow-downgrades', 'install', './tmp/python3-rich_13.9.4-0.1_all.deb']
0m19.8s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'python3-rich']
0m19.8s DUMP: 
  python3-rich install ok installed
0m19.8s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'python3-rich']
0m19.8s INFO: Installation of ['./tmp/python3-rich_13.9.4-0.1_all.deb'] ok
0m19.8s DEBUG: Removing /tmp/tmp6cdavkee/./tmp/python3-rich_13.9.4-0.1_all.deb
0m19.8s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmp6cdavkee']
0m20.3s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmp6cdavkee']
0m20.9s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m21.2s DEBUG: Starting command: ['debsums', '--root', '/tmp/tmp6cdavkee', '-ac', '--ignore-obsolete']
0m22.3s DEBUG: Command ok: ['debsums', '--root', '/tmp/tmp6cdavkee', '-ac', '--ignore-obsolete']
0m22.3s DEBUG: Starting command: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m22.3s DUMP: 
  0.17.2
0m22.3s DEBUG: Command ok: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m22.3s INFO: Running adequate version 0.17.2 now.
0m22.3s DEBUG: Starting command: ['adequate', '--root', '/tmp/tmp6cdavkee', 'python3-rich']
0m22.4s DEBUG: Command ok: ['adequate', '--root', '/tmp/tmp6cdavkee', 'python3-rich']
0m22.4s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m22.4s DUMP: 
  install ok installed	adduser	adduser	3.137
  install ok installed	apt	apt	2.9.17
  install ok installed	base-files	base-files	13.6
  install ok installed	base-passwd	base-passwd	3.6.5
  install ok installed	bash	bash	5.2.37-1
  install ok installed	binutils	binutils	2.43.50.20241215-1
  install ok installed	binutils-common:amd64	binutils-common	2.43.50.20241215-1
  install ok installed	binutils-x86-64-linux-gnu	binutils-x86-64-linux-gnu	2.43.50.20241215-1
  install ok installed	bsdutils	bsdutils	1:2.40.2-12
  install ok installed	build-essential	build-essential	12.12
  install ok installed	bzip2	bzip2	1.0.8-6
  install ok installed	coreutils	coreutils	9.5-1+b1
  install ok installed	cpp	cpp	4:14.2.0-1
  install ok installed	cpp-14	cpp-14	14.2.0-11
  install ok installed	cpp-14-x86-64-linux-gnu	cpp-14-x86-64-linux-gnu	14.2.0-11
  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-9
  install ok installed	dbus	dbus	1.16.0-1
  install ok installed	dbus-bin	dbus-bin	1.16.0-1
  install ok installed	dbus-daemon	dbus-daemon	1.16.0-1
  install ok installed	dbus-session-bus-common	dbus-session-bus-common	1.16.0-1
  install ok installed	dbus-system-bus-common	dbus-system-bus-common	1.16.0-1
  install ok installed	debconf	debconf	1.5.87
  install ok installed	debian-archive-keyring	debian-archive-keyring	2023.4
  install ok installed	debianutils	debianutils	5.21
  install ok installed	diffutils	diffutils	1:3.10-1
  install ok installed	dpkg	dpkg	1.22.11
  install ok installed	dpkg-dev	dpkg-dev	1.22.11
  install ok installed	e2fsprogs	e2fsprogs	1.47.2~rc1-2
  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-11
  install ok installed	g++-14-x86-64-linux-gnu	g++-14-x86-64-linux-gnu	14.2.0-11
  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-11
  install ok installed	gcc-14-base:amd64	gcc-14-base	14.2.0-11
  install ok installed	gcc-14-x86-64-linux-gnu	gcc-14-x86-64-linux-gnu	14.2.0-11
  install ok installed	gcc-x86-64-linux-gnu	gcc-x86-64-linux-gnu	4:14.2.0-1
  install ok installed	gpgv	gpgv	2.2.45-2
  install ok installed	grep	grep	3.11-4
  install ok installed	gzip	gzip	1.12-1.2
  install ok installed	hostname	hostname	3.25
  install ok installed	init-system-helpers	init-system-helpers	1.67
  install ok installed	libacl1:amd64	libacl1	2.3.2-2+b1
  install ok installed	libapparmor1:amd64	libapparmor1	3.1.7-1+b3
  install ok installed	libapt-pkg6.0t64:amd64	libapt-pkg6.0t64	2.9.17
  install ok installed	libasan8:amd64	libasan8	14.2.0-11
  install ok installed	libatomic1:amd64	libatomic1	14.2.0-11
  install ok installed	libattr1:amd64	libattr1	1:2.5.2-2
  install ok installed	libaudit-common	libaudit-common	1:4.0.2-2
  install ok installed	libaudit1:amd64	libaudit1	1:4.0.2-2
  install ok installed	libbinutils:amd64	libbinutils	2.43.50.20241215-1
  install ok installed	libblkid1:amd64	libblkid1	2.40.2-12
  install ok installed	libbsd0:amd64	libbsd0	0.12.2-2
  install ok installed	libbz2-1.0:amd64	libbz2-1.0	1.0.8-6
  install ok installed	libc-bin	libc-bin	2.40-4
  install ok installed	libc-dev-bin	libc-dev-bin	2.40-4
  install ok installed	libc6:amd64	libc6	2.40-4
  install ok installed	libc6-dev:amd64	libc6-dev	2.40-4
  install ok installed	libcap-ng0:amd64	libcap-ng0	0.8.5-4
  install ok installed	libcap2:amd64	libcap2	1:2.66-5+b1
  install ok installed	libcc1-0:amd64	libcc1-0	14.2.0-11
  install ok installed	libcom-err2:amd64	libcom-err2	1.47.2~rc1-2
  install ok installed	libcrypt-dev:amd64	libcrypt-dev	1:4.4.36-5
  install ok installed	libcrypt1:amd64	libcrypt1	1:4.4.36-5
  install ok installed	libctf-nobfd0:amd64	libctf-nobfd0	2.43.50.20241215-1
  install ok installed	libctf0:amd64	libctf0	2.43.50.20241215-1
  install ok installed	libdb5.3t64:amd64	libdb5.3t64	5.3.28+dfsg2-9
  install ok installed	libdbus-1-3:amd64	libdbus-1-3	1.16.0-1
  install ok installed	libdebconfclient0:amd64	libdebconfclient0	0.274
  install ok installed	libdpkg-perl	libdpkg-perl	1.22.11
  install ok installed	libexpat1:amd64	libexpat1	2.6.4-1
  install ok installed	libext2fs2t64:amd64	libext2fs2t64	1.47.2~rc1-2
  install ok installed	libffi8:amd64	libffi8	3.4.6-1
  install ok installed	libgcc-14-dev:amd64	libgcc-14-dev	14.2.0-11
  install ok installed	libgcc-s1:amd64	libgcc-s1	14.2.0-11
  install ok installed	libgcrypt20:amd64	libgcrypt20	1.11.0-6
  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	libgnutls30t64:amd64	libgnutls30t64	3.8.8-2
  install ok installed	libgomp1:amd64	libgomp1	14.2.0-11
  install ok installed	libgpg-error0:amd64	libgpg-error0	1.51-2
  install ok installed	libgprofng0:amd64	libgprofng0	2.43.50.20241215-1
  install ok installed	libgssapi-krb5-2:amd64	libgssapi-krb5-2	1.21.3-3
  install ok installed	libhogweed6t64:amd64	libhogweed6t64	3.10-1+b1
  install ok installed	libhwasan0:amd64	libhwasan0	14.2.0-11
  install ok installed	libidn2-0:amd64	libidn2-0	2.3.7-2+b1
  install ok installed	libisl23:amd64	libisl23	0.27-1
  install ok installed	libitm1:amd64	libitm1	14.2.0-11
  install ok installed	libjansson4:amd64	libjansson4	2.14-2+b3
  install ok installed	libk5crypto3:amd64	libk5crypto3	1.21.3-3
  install ok installed	libkeyutils1:amd64	libkeyutils1	1.6.3-4
  install ok installed	libkrb5-3:amd64	libkrb5-3	1.21.3-3
  install ok installed	libkrb5support0:amd64	libkrb5support0	1.21.3-3
  install ok installed	liblsan0:amd64	liblsan0	14.2.0-11
  install ok installed	liblz4-1:amd64	liblz4-1	1.9.4-3+b1
  install ok installed	liblzma5:amd64	liblzma5	5.6.3-1+b1
  install ok installed	libmd0:amd64	libmd0	1.1.0-2+b1
  install ok installed	libmount1:amd64	libmount1	2.40.2-12
  install ok installed	libmpc3:amd64	libmpc3	1.3.1-1+b3
  install ok installed	libmpfr6:amd64	libmpfr6	4.2.1-1+b2
  install ok installed	libncursesw6:amd64	libncursesw6	6.5-2+b1
  install ok installed	libnettle8t64:amd64	libnettle8t64	3.10-1+b1
  install ok installed	libnsl2:amd64	libnsl2	1.3.0-3+b3
  install ok installed	libp11-kit0:amd64	libp11-kit0	0.25.5-2+b1
  install ok installed	libpam-modules:amd64	libpam-modules	1.5.3-7+b1
  install ok installed	libpam-modules-bin	libpam-modules-bin	1.5.3-7+b1
  install ok installed	libpam-runtime	libpam-runtime	1.5.3-7
  install ok installed	libpam0g:amd64	libpam0g	1.5.3-7+b1
  install ok installed	libpcre2-8-0:amd64	libpcre2-8-0	10.44-5
  install ok installed	libperl5.40:amd64	libperl5.40	5.40.0-8
  install ok installed	libpython3-stdlib:amd64	libpython3-stdlib	3.12.7-1
  install ok installed	libpython3.12-minimal:amd64	libpython3.12-minimal	3.12.8-3
  install ok installed	libpython3.12-stdlib:amd64	libpython3.12-stdlib	3.12.8-3
  install ok installed	libquadmath0:amd64	libquadmath0	14.2.0-11
  install ok installed	libreadline8t64:amd64	libreadline8t64	8.2-6
  install ok installed	libseccomp2:amd64	libseccomp2	2.5.5-2
  install ok installed	libselinux1:amd64	libselinux1	3.7-3+b1
  install ok installed	libsemanage-common	libsemanage-common	3.7-2
  install ok installed	libsemanage2:amd64	libsemanage2	3.7-2+b1
  install ok installed	libsepol2:amd64	libsepol2	3.7-1
  install ok installed	libsframe1:amd64	libsframe1	2.43.50.20241215-1
  install ok installed	libsmartcols1:amd64	libsmartcols1	2.40.2-12
  install ok installed	libsqlite3-0:amd64	libsqlite3-0	3.46.1-1
  install ok installed	libss2:amd64	libss2	1.47.2~rc1-2
  install ok installed	libssl3t64:amd64	libssl3t64	3.3.2-2
  install ok installed	libstdc++-14-dev:amd64	libstdc++-14-dev	14.2.0-11
  install ok installed	libstdc++6:amd64	libstdc++6	14.2.0-11
  install ok installed	libsystemd-shared:amd64	libsystemd-shared	257-2
  install ok installed	libsystemd0:amd64	libsystemd0	257-2
  install ok installed	libtasn1-6:amd64	libtasn1-6	4.19.0-3+b3
  install ok installed	libtinfo6:amd64	libtinfo6	6.5-2+b1
  install ok installed	libtirpc-common	libtirpc-common	1.3.4+ds-1.3
  install ok installed	libtirpc3t64:amd64	libtirpc3t64	1.3.4+ds-1.3+b1
  install ok installed	libtsan2:amd64	libtsan2	14.2.0-11
  install ok installed	libubsan1:amd64	libubsan1	14.2.0-11
  install ok installed	libudev1:amd64	libudev1	257-2
  install ok installed	libunistring5:amd64	libunistring5	1.3-1
  install ok installed	libuuid1:amd64	libuuid1	2.40.2-12
  install ok installed	libxxhash0:amd64	libxxhash0	0.8.2-2+b2
  install ok installed	libzstd1:amd64	libzstd1	1.5.6+dfsg-1+b1
  install ok installed	linux-libc-dev	linux-libc-dev	6.12.5-1
  install ok installed	login	login	1:4.16.0-2+really2.40.2-12
  install ok installed	login.defs	login.defs	1:4.16.0-7
  install ok installed	logsave	logsave	1.47.2~rc1-2
  install ok installed	make	make	4.3-4.1
  install ok installed	mawk	mawk	1.3.4.20240905-1
  install ok installed	media-types	media-types	10.1.0
  install ok installed	mount	mount	2.40.2-12
  install ok installed	ncurses-base	ncurses-base	6.5-2
  install ok installed	ncurses-bin	ncurses-bin	6.5-2+b1
  install ok installed	netbase	netbase	6.4
  install ok installed	openssl-provider-legacy	openssl-provider-legacy	3.3.2-2
  install ok installed	passwd	passwd	1:4.16.0-7
  install ok installed	patch	patch	2.7.6-7
  install ok installed	perl	perl	5.40.0-8
  install ok installed	perl-base	perl-base	5.40.0-8
  install ok installed	perl-modules-5.40	perl-modules-5.40	5.40.0-8
  install ok installed	python3	python3	3.12.7-1
  install ok installed	python3-autocommand	python3-autocommand	2.2.2-3
  install ok installed	python3-inflect	python3-inflect	7.3.1-2
  install ok installed	python3-jaraco.context	python3-jaraco.context	6.0.0-1
  install ok installed	python3-jaraco.functools	python3-jaraco.functools	4.1.0-1
  install ok installed	python3-markdown-it	python3-markdown-it	3.0.0-2
  install ok installed	python3-mdurl	python3-mdurl	0.1.2-1
  install ok installed	python3-minimal	python3-minimal	3.12.7-1
  install ok installed	python3-more-itertools	python3-more-itertools	10.5.0-1
  install ok installed	python3-pkg-resources	python3-pkg-resources	75.6.0-1
  install ok installed	python3-pygments	python3-pygments	2.18.0+dfsg-1
  install ok installed	python3-rich	python3-rich	13.9.4-0.1
  install ok installed	python3-typeguard	python3-typeguard	4.4.1-1
  install ok installed	python3-typing-extensions	python3-typing-extensions	4.12.2-2
  install ok installed	python3.12	python3.12	3.12.8-3
  install ok installed	python3.12-minimal	python3.12-minimal	3.12.8-3
  install ok installed	readline-common	readline-common	8.2-6
  install ok installed	rpcsvc-proto	rpcsvc-proto	1.4.3-1
  install ok installed	sed	sed	4.9-2
  install ok installed	systemd	systemd	257-2
  install ok installed	systemd-resolved	systemd-resolved	257-2
  install ok installed	systemd-sysv	systemd-sysv	257-2
  install ok installed	sysvinit-utils	sysvinit-utils	3.11-1
  install ok installed	tar	tar	1.35+dfsg-3
  install ok installed	tzdata	tzdata	2024b-4
  install ok installed	util-linux	util-linux	2.40.2-12
  install ok installed	xz-utils	xz-utils	5.6.3-1+b1
  install ok installed	zlib1g:amd64	zlib1g	1:1.3.dfsg+really1.3.1-1+b1
0m22.4s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m22.4s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'apt-get', 'remove', 'libgssapi-krb5-2:amd64', 'libk5crypto3:amd64', 'libkeyutils1:amd64', 'libkrb5-3:amd64', 'libkrb5support0:amd64', 'libncursesw6:amd64', 'libnsl2:amd64', 'libpython3-stdlib:amd64', 'libpython3.12-minimal:amd64', 'libpython3.12-stdlib:amd64', 'libreadline8t64:amd64', 'libsqlite3-0:amd64', 'libtirpc-common', 'libtirpc3t64:amd64', 'media-types', 'netbase', 'python3', 'python3-autocommand', 'python3-inflect', 'python3-jaraco.context', 'python3-jaraco.functools', 'python3-markdown-it', 'python3-mdurl', 'python3-minimal', 'python3-more-itertools', 'python3-pkg-resources', 'python3-pygments', 'python3-typeguard', 'python3-typing-extensions', 'python3.12', 'python3.12-minimal', 'readline-common', 'python3-rich']
0m25.1s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  The following packages will be REMOVED:
    libgssapi-krb5-2 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0
    libncursesw6 libnsl2 libpython3-stdlib libpython3.12-minimal
    libpython3.12-stdlib libreadline8t64 libsqlite3-0 libtirpc-common
    libtirpc3t64 media-types netbase python3 python3-autocommand python3-inflect
    python3-jaraco.context python3-jaraco.functools python3-markdown-it
    python3-mdurl python3-minimal python3-more-itertools python3-pkg-resources
    python3-pygments python3-rich python3-typeguard python3-typing-extensions
    python3.12 python3.12-minimal readline-common
  0 upgraded, 0 newly installed, 33 to remove and 0 not upgraded.
  After this operation, 37.1 MB 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 ... 15841 files and directories currently installed.)
  Removing python3-rich (13.9.4-0.1) ...
  Removing python3-pygments (2.18.0+dfsg-1) ...
  Removing python3-pkg-resources (75.6.0-1) ...
  Removing python3-inflect (7.3.1-2) ...
  Removing python3-typeguard (4.4.1-1) ...
  Removing python3-typing-extensions (4.12.2-2) ...
  Removing python3-autocommand (2.2.2-3) ...
  Removing python3-jaraco.context (6.0.0-1) ...
  Removing python3-jaraco.functools (4.1.0-1) ...
  Removing python3-markdown-it (3.0.0-2) ...
  Removing python3-mdurl (0.1.2-1) ...
  Removing python3-more-itertools (10.5.0-1) ...
  Removing python3 (3.12.7-1) ...
  Removing python3.12 (3.12.8-3) ...
  Removing libpython3-stdlib:amd64 (3.12.7-1) ...
  Removing libpython3.12-stdlib:amd64 (3.12.8-3) ...
  find: '/usr/lib/python3': No such file or directory
  Removing libnsl2:amd64 (1.3.0-3+b3) ...
  Removing libtirpc3t64:amd64 (1.3.4+ds-1.3+b1) ...
  Removing 'diversion of /lib/x86_64-linux-gnu/libtirpc.so.3 to /lib/x86_64-linux-gnu/libtirpc.so.3.usr-is-merged by libtirpc3t64'
  Removing 'diversion of /lib/x86_64-linux-gnu/libtirpc.so.3.0.0 to /lib/x86_64-linux-gnu/libtirpc.so.3.0.0.usr-is-merged by libtirpc3t64'
  Removing libgssapi-krb5-2:amd64 (1.21.3-3) ...
  Removing libkrb5-3:amd64 (1.21.3-3) ...
  Removing libk5crypto3:amd64 (1.21.3-3) ...
  Removing libkeyutils1:amd64 (1.6.3-4) ...
  Removing libkrb5support0:amd64 (1.21.3-3) ...
  Removing libncursesw6:amd64 (6.5-2+b1) ...
  Removing python3-minimal (3.12.7-1) ...
  Removing python3.12-minimal (3.12.8-3) ...
  Removing libpython3.12-minimal:amd64 (3.12.8-3) ...
  find: '/usr/lib/python3': No such file or directory
  Removing libreadline8t64:amd64 (8.2-6) ...
  Removing 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8 to /lib/x86_64-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64'
  Removing 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8.2 to /lib/x86_64-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64'
  Removing 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8 to /lib/x86_64-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64'
  Removing 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8.2 to /lib/x86_64-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64'
  Removing libsqlite3-0:amd64 (3.46.1-1) ...
  Removing libtirpc-common (1.3.4+ds-1.3) ...
  Removing media-types (10.1.0) ...
  Removing netbase (6.4) ...
  Removing readline-common (8.2-6) ...
  Processing triggers for systemd (257-2) ...
  Processing triggers for libc-bin (2.40-4) ...
0m25.1s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'apt-get', 'remove', 'libgssapi-krb5-2:amd64', 'libk5crypto3:amd64', 'libkeyutils1:amd64', 'libkrb5-3:amd64', 'libkrb5support0:amd64', 'libncursesw6:amd64', 'libnsl2:amd64', 'libpython3-stdlib:amd64', 'libpython3.12-minimal:amd64', 'libpython3.12-stdlib:amd64', 'libreadline8t64:amd64', 'libsqlite3-0:amd64', 'libtirpc-common', 'libtirpc3t64:amd64', 'media-types', 'netbase', 'python3', 'python3-autocommand', 'python3-inflect', 'python3-jaraco.context', 'python3-jaraco.functools', 'python3-markdown-it', 'python3-mdurl', 'python3-minimal', 'python3-more-itertools', 'python3-pkg-resources', 'python3-pygments', 'python3-typeguard', 'python3-typing-extensions', 'python3.12', 'python3.12-minimal', 'readline-common', 'python3-rich']
0m25.1s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'dpkg', '--purge', 'libgssapi-krb5-2:amd64', 'libk5crypto3:amd64', 'libkeyutils1:amd64', 'libkrb5-3:amd64', 'libkrb5support0:amd64', 'libncursesw6:amd64', 'libnsl2:amd64', 'libpython3-stdlib:amd64', 'libpython3.12-minimal:amd64', 'libpython3.12-stdlib:amd64', 'libreadline8t64:amd64', 'libsqlite3-0:amd64', 'libtirpc-common', 'libtirpc3t64:amd64', 'media-types', 'netbase', 'python3', 'python3-autocommand', 'python3-inflect', 'python3-jaraco.context', 'python3-jaraco.functools', 'python3-markdown-it', 'python3-mdurl', 'python3-minimal', 'python3-more-itertools', 'python3-pkg-resources', 'python3-pygments', 'python3-typeguard', 'python3-typing-extensions', 'python3.12', 'python3.12-minimal', 'readline-common']
0m25.9s DUMP: 
  (Reading database ... 14185 files and directories currently installed.)
  Purging configuration files for libgssapi-krb5-2:amd64 (1.21.3-3) ...
  dpkg: warning: ignoring request to remove libk5crypto3 which isn't installed
  dpkg: warning: ignoring request to remove libkeyutils1 which isn't installed
  dpkg: warning: ignoring request to remove libkrb5-3 which isn't installed
  dpkg: warning: ignoring request to remove libkrb5support0 which isn't installed
  dpkg: warning: ignoring request to remove libncursesw6 which isn't installed
  dpkg: warning: ignoring request to remove libnsl2 which isn't installed
  dpkg: warning: ignoring request to remove libpython3-stdlib which isn't installed
  Purging configuration files for libpython3.12-minimal:amd64 (3.12.8-3) ...
  dpkg: warning: ignoring request to remove libpython3.12-stdlib which isn't installed
  Purging configuration files for libreadline8t64:amd64 (8.2-6) ...
  dpkg: warning: ignoring request to remove libsqlite3-0 which isn't installed
  Purging configuration files for libtirpc-common (1.3.4+ds-1.3) ...
  Purging configuration files for libtirpc3t64:amd64 (1.3.4+ds-1.3+b1) ...
  Purging configuration files for media-types (10.1.0) ...
  Purging configuration files for netbase (6.4) ...
  Purging configuration files for python3 (3.12.7-1) ...
  dpkg: warning: ignoring request to remove python3-autocommand which isn't installed
  dpkg: warning: ignoring request to remove python3-inflect which isn't installed
  dpkg: warning: ignoring request to remove python3-jaraco.context which isn't installed
  dpkg: warning: ignoring request to remove python3-jaraco.functools which isn't installed
  dpkg: warning: ignoring request to remove python3-markdown-it which isn't installed
  dpkg: warning: ignoring request to remove python3-mdurl which isn't installed
  dpkg: warning: ignoring request to remove python3-minimal which isn't installed
  dpkg: warning: ignoring request to remove python3-more-itertools which isn't installed
  dpkg: warning: ignoring request to remove python3-pkg-resources which isn't installed
  dpkg: warning: ignoring request to remove python3-pygments which isn't installed
  dpkg: warning: ignoring request to remove python3-typeguard which isn't installed
  dpkg: warning: ignoring request to remove python3-typing-extensions which isn't installed
  dpkg: warning: ignoring request to remove python3.12 which isn't installed
  Purging configuration files for python3.12-minimal (3.12.8-3) ...
  Purging configuration files for readline-common (8.2-6) ...
0m25.9s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'dpkg', '--purge', 'libgssapi-krb5-2:amd64', 'libk5crypto3:amd64', 'libkeyutils1:amd64', 'libkrb5-3:amd64', 'libkrb5support0:amd64', 'libncursesw6:amd64', 'libnsl2:amd64', 'libpython3-stdlib:amd64', 'libpython3.12-minimal:amd64', 'libpython3.12-stdlib:amd64', 'libreadline8t64:amd64', 'libsqlite3-0:amd64', 'libtirpc-common', 'libtirpc3t64:amd64', 'media-types', 'netbase', 'python3', 'python3-autocommand', 'python3-inflect', 'python3-jaraco.context', 'python3-jaraco.functools', 'python3-markdown-it', 'python3-mdurl', 'python3-minimal', 'python3-more-itertools', 'python3-pkg-resources', 'python3-pygments', 'python3-typeguard', 'python3-typing-extensions', 'python3.12', 'python3.12-minimal', 'readline-common']
0m26.0s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'dpkg', '--purge', 'python3-rich']
0m26.0s DUMP: 
  dpkg: warning: ignoring request to remove python3-rich which isn't installed
0m26.0s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'dpkg', '--purge', 'python3-rich']
0m26.0s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'dpkg', '--purge', '--pending']
0m26.0s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'dpkg', '--purge', '--pending']
0m26.0s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'dpkg', '--remove', '--pending']
0m26.0s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'dpkg', '--remove', '--pending']
0m26.0s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmp6cdavkee']
0m26.4s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmp6cdavkee']
0m26.9s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m26.9s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'dpkg-divert', '--list']
0m26.9s DUMP: 
  diversion of /lib/x86_64-linux-gnu/libe2p.so.2 to /lib/x86_64-linux-gnu/libe2p.so.2.usr-is-merged by libext2fs2t64
  diversion of /lib/x86_64-linux-gnu/libext2fs.so.2.4 to /lib/x86_64-linux-gnu/libext2fs.so.2.4.usr-is-merged by libext2fs2t64
  diversion of /lib64/ld-linux-x86-64.so.2 to /lib64/ld-linux-x86-64.so.2.usr-is-merged by libc6
  diversion of /lib/x86_64-linux-gnu/libext2fs.so.2 to /lib/x86_64-linux-gnu/libext2fs.so.2.usr-is-merged by libext2fs2t64
  diversion of /lib/x86_64-linux-gnu/libe2p.so.2.3 to /lib/x86_64-linux-gnu/libe2p.so.2.3.usr-is-merged by libext2fs2t64
  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
0m26.9s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'dpkg-divert', '--list']
0m26.9s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'apt-get', 'clean']
0m27.0s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'apt-get', 'clean']
0m27.0s DEBUG: Recording chroot state
0m27.1s INFO: PASS: Installation and purging test.
0m27.1s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'apt-cache', 'show', '--no-all-versions', 'python3-rich']
0m27.7s DUMP: 
  Package: python3-rich
  Source: rich
  Version: 13.7.1-1
  Installed-Size: 1062
  Maintainer: Sandro Tosi <morph@debian.org>
  Architecture: all
  Depends: python3-markdown-it, python3-pygments (>= 2.14.0), python3-typing-extensions (>= 3.7.4) | python3-supported-min (>= 3.9), python3:any
  Description-en: render rich text, tables, progress bars, syntax highlighting, markdown and more
   Rich is a Python library for rich text and beautiful formatting in the
   terminal.
   .
   The Rich API makes it easy to add color and style to terminal output. Rich can
   also render pretty tables, progress bars, markdown, syntax highlighted source
   code, tracebacks, and more ?? out of the box.
   .
   Here's a list of the core functionalities of rich:
   .
    * to effortlessly add rich output to your application, you can import the rich
      print method, which has the same signature as the builtin Python function
    * Rich can be installed in the Python REPL, so that any data structures will
      be pretty printed and highlighted
    * for more control over rich terminal content, import and construct a Console
      object. The Console object has a print method which has an intentionally
      similar interface to the builtin print function
    * to insert an emoji in to console output place the name between two colons
    * Rich can render flexible tables with unicode box characters. There is a
      large variety of formatting options for borders, styles, cell alignment etc
    * Rich can render multiple flicker-free progress bars to track long-running
      tasks.
    * Rich can render content in neat columns with equal or optimal width.
    * Rich can render markdown and does a reasonable job of translating the
      formatting to the terminal
    * Rich can render beautiful tracebacks which are easier to read and show more
      code than standard Python tracebacks. You can set Rich as the default
      traceback handler so all uncaught exceptions will be rendered by Rich.
  Description-md5: 0de6cad197d4560bd282be425a011767
  Homepage: https://github.com/Textualize/rich
  Section: python
  Priority: optional
  Filename: pool/main/r/rich/python3-rich_13.7.1-1_all.deb
  Size: 200528
  MD5sum: 782daeefff7087deda07b9da21661633
  SHA256: 3ede58063f66dd75ecb47af86a095a04f680a3dbc448b7ffe58285a79ac4fd92
0m27.7s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'apt-cache', 'show', '--no-all-versions', 'python3-rich']
0m27.7s INFO: apt-cache knows about the following packages: python3-rich
0m27.7s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'apt-cache', 'policy']
0m27.7s DUMP: 
  Package files:
   100 /var/lib/dpkg/status
       release a=now
   500 http://deb.debian.org/debian sid/main amd64 Packages
       release o=Debian,a=unstable,n=sid,l=Debian,c=main,b=amd64
       origin deb.debian.org
  Pinned packages:
0m27.7s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'apt-cache', 'policy']
0m27.7s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'apt-cache', 'policy', 'python3-rich']
0m27.7s DUMP: 
  python3-rich:
    Installed: (none)
    Candidate: 13.7.1-1
    Version table:
       13.7.1-1 500
          500 http://deb.debian.org/debian sid/main amd64 Packages
0m27.7s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'apt-cache', 'policy', 'python3-rich']
0m27.7s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'apt-get', '-y', 'install', 'python3-rich']
0m35.9s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  The following additional packages will be installed:
    libgssapi-krb5-2 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0
    libncursesw6 libnsl2 libpython3-stdlib libpython3.12-minimal
    libpython3.12-stdlib libreadline8t64 libsqlite3-0 libtirpc-common
    libtirpc3t64 media-types netbase python3 python3-autocommand python3-inflect
    python3-jaraco.context python3-jaraco.functools python3-markdown-it
    python3-mdurl python3-minimal python3-more-itertools python3-pkg-resources
    python3-pygments python3-typeguard python3-typing-extensions python3.12
    python3.12-minimal readline-common
  Suggested packages:
    krb5-doc krb5-user python3-doc python3-tk python3-venv python3-setuptools
    python-pygments-doc ttf-bitstream-vera python3.12-venv python3.12-doc
    binfmt-support readline-doc
  Recommended packages:
    krb5-locales libgpm2 ca-certificates
  The following NEW packages will be installed:
    libgssapi-krb5-2 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0
    libncursesw6 libnsl2 libpython3-stdlib libpython3.12-minimal
    libpython3.12-stdlib libreadline8t64 libsqlite3-0 libtirpc-common
    libtirpc3t64 media-types netbase python3 python3-autocommand python3-inflect
    python3-jaraco.context python3-jaraco.functools python3-markdown-it
    python3-mdurl python3-minimal python3-more-itertools python3-pkg-resources
    python3-pygments python3-rich python3-typeguard python3-typing-extensions
    python3.12 python3.12-minimal readline-common
  0 upgraded, 33 newly installed, 0 to remove and 0 not upgraded.
  Need to get 9302 kB of archives.
  After this operation, 37.1 MB of additional disk space will be used.
  Get:1 http://deb.debian.org/debian sid/main amd64 libpython3.12-minimal amd64 3.12.8-3 [817 kB]
  Get:2 http://deb.debian.org/debian sid/main amd64 python3.12-minimal amd64 3.12.8-3 [2162 kB]
  Get:3 http://deb.debian.org/debian sid/main amd64 python3-minimal amd64 3.12.7-1 [26.8 kB]
  Get:4 http://deb.debian.org/debian sid/main amd64 media-types all 10.1.0 [26.9 kB]
  Get:5 http://deb.debian.org/debian sid/main amd64 netbase all 6.4 [12.8 kB]
  Get:6 http://deb.debian.org/debian sid/main amd64 libncursesw6 amd64 6.5-2+b1 [136 kB]
  Get:7 http://deb.debian.org/debian sid/main amd64 libkrb5support0 amd64 1.21.3-3 [32.5 kB]
  Get:8 http://deb.debian.org/debian sid/main amd64 libk5crypto3 amd64 1.21.3-3 [79.9 kB]
  Get:9 http://deb.debian.org/debian sid/main amd64 libkeyutils1 amd64 1.6.3-4 [9092 B]
  Get:10 http://deb.debian.org/debian sid/main amd64 libkrb5-3 amd64 1.21.3-3 [324 kB]
  Get:11 http://deb.debian.org/debian sid/main amd64 libgssapi-krb5-2 amd64 1.21.3-3 [136 kB]
  Get:12 http://deb.debian.org/debian sid/main amd64 libtirpc-common all 1.3.4+ds-1.3 [10.9 kB]
  Get:13 http://deb.debian.org/debian sid/main amd64 libtirpc3t64 amd64 1.3.4+ds-1.3+b1 [83.1 kB]
  Get:14 http://deb.debian.org/debian sid/main amd64 libnsl2 amd64 1.3.0-3+b3 [40.6 kB]
  Get:15 http://deb.debian.org/debian sid/main amd64 readline-common all 8.2-6 [69.4 kB]
  Get:16 http://deb.debian.org/debian sid/main amd64 libreadline8t64 amd64 8.2-6 [169 kB]
  Get:17 http://deb.debian.org/debian sid/main amd64 libsqlite3-0 amd64 3.46.1-1 [913 kB]
  Get:18 http://deb.debian.org/debian sid/main amd64 libpython3.12-stdlib amd64 3.12.8-3 [1969 kB]
  Get:19 http://deb.debian.org/debian sid/main amd64 python3.12 amd64 3.12.8-3 [677 kB]
  Get:20 http://deb.debian.org/debian sid/main amd64 libpython3-stdlib amd64 3.12.7-1 [9712 B]
  Get:21 http://deb.debian.org/debian sid/main amd64 python3 amd64 3.12.7-1 [27.8 kB]
  Get:22 http://deb.debian.org/debian sid/main amd64 python3-autocommand all 2.2.2-3 [13.6 kB]
  Get:23 http://deb.debian.org/debian sid/main amd64 python3-more-itertools all 10.5.0-1 [63.8 kB]
  Get:24 http://deb.debian.org/debian sid/main amd64 python3-typing-extensions all 4.12.2-2 [73.0 kB]
  Get:25 http://deb.debian.org/debian sid/main amd64 python3-typeguard all 4.4.1-1 [37.0 kB]
  Get:26 http://deb.debian.org/debian sid/main amd64 python3-inflect all 7.3.1-2 [32.4 kB]
  Get:27 http://deb.debian.org/debian sid/main amd64 python3-jaraco.context all 6.0.0-1 [7984 B]
  Get:28 http://deb.debian.org/debian sid/main amd64 python3-jaraco.functools all 4.1.0-1 [12.0 kB]
  Get:29 http://deb.debian.org/debian sid/main amd64 python3-mdurl all 0.1.2-1 [9444 B]
  Get:30 http://deb.debian.org/debian sid/main amd64 python3-markdown-it all 3.0.0-2 [62.5 kB]
  Get:31 http://deb.debian.org/debian sid/main amd64 python3-pkg-resources all 75.6.0-1 [222 kB]
  Get:32 http://deb.debian.org/debian sid/main amd64 python3-pygments all 2.18.0+dfsg-1 [836 kB]
  Get:33 http://deb.debian.org/debian sid/main amd64 python3-rich all 13.7.1-1 [201 kB]
  debconf: delaying package configuration, since apt-utils is not installed
  Fetched 9302 kB in 0s (58.5 MB/s)
  Selecting previously unselected package libpython3.12-minimal:amd64.
  (Reading database ... 
  (Reading database ... 5%
  (Reading database ... 10%
  (Reading database ... 15%
  (Reading database ... 20%
  (Reading database ... 25%
  (Reading database ... 30%
  (Reading database ... 35%
  (Reading database ... 40%
  (Reading database ... 45%
  (Reading database ... 50%
  (Reading database ... 55%
  (Reading database ... 60%
  (Reading database ... 65%
  (Reading database ... 70%
  (Reading database ... 75%
  (Reading database ... 80%
  (Reading database ... 85%
  (Reading database ... 90%
  (Reading database ... 95%
  (Reading database ... 100%
  (Reading database ... 14177 files and directories currently installed.)
  Preparing to unpack .../libpython3.12-minimal_3.12.8-3_amd64.deb ...
  Unpacking libpython3.12-minimal:amd64 (3.12.8-3) ...
  Selecting previously unselected package python3.12-minimal.
  Preparing to unpack .../python3.12-minimal_3.12.8-3_amd64.deb ...
  Unpacking python3.12-minimal (3.12.8-3) ...
  Setting up libpython3.12-minimal:amd64 (3.12.8-3) ...
  Setting up python3.12-minimal (3.12.8-3) ...
  Selecting previously unselected package python3-minimal.
  (Reading database ... 
  (Reading database ... 5%
  (Reading database ... 10%
  (Reading database ... 15%
  (Reading database ... 20%
  (Reading database ... 25%
  (Reading database ... 30%
  (Reading database ... 35%
  (Reading database ... 40%
  (Reading database ... 45%
  (Reading database ... 50%
  (Reading database ... 55%
  (Reading database ... 60%
  (Reading database ... 65%
  (Reading database ... 70%
  (Reading database ... 75%
  (Reading database ... 80%
  (Reading database ... 85%
  (Reading database ... 90%
  (Reading database ... 95%
  (Reading database ... 100%
  (Reading database ... 14487 files and directories currently installed.)
  Preparing to unpack .../00-python3-minimal_3.12.7-1_amd64.deb ...
  Unpacking python3-minimal (3.12.7-1) ...
  Selecting previously unselected package media-types.
  Preparing to unpack .../01-media-types_10.1.0_all.deb ...
  Unpacking media-types (10.1.0) ...
  Selecting previously unselected package netbase.
  Preparing to unpack .../02-netbase_6.4_all.deb ...
  Unpacking netbase (6.4) ...
  Selecting previously unselected package libncursesw6:amd64.
  Preparing to unpack .../03-libncursesw6_6.5-2+b1_amd64.deb ...
  Unpacking libncursesw6:amd64 (6.5-2+b1) ...
  Selecting previously unselected package libkrb5support0:amd64.
  Preparing to unpack .../04-libkrb5support0_1.21.3-3_amd64.deb ...
  Unpacking libkrb5support0:amd64 (1.21.3-3) ...
  Selecting previously unselected package libk5crypto3:amd64.
  Preparing to unpack .../05-libk5crypto3_1.21.3-3_amd64.deb ...
  Unpacking libk5crypto3:amd64 (1.21.3-3) ...
  Selecting previously unselected package libkeyutils1:amd64.
  Preparing to unpack .../06-libkeyutils1_1.6.3-4_amd64.deb ...
  Unpacking libkeyutils1:amd64 (1.6.3-4) ...
  Selecting previously unselected package libkrb5-3:amd64.
  Preparing to unpack .../07-libkrb5-3_1.21.3-3_amd64.deb ...
  Unpacking libkrb5-3:amd64 (1.21.3-3) ...
  Selecting previously unselected package libgssapi-krb5-2:amd64.
  Preparing to unpack .../08-libgssapi-krb5-2_1.21.3-3_amd64.deb ...
  Unpacking libgssapi-krb5-2:amd64 (1.21.3-3) ...
  Selecting previously unselected package libtirpc-common.
  Preparing to unpack .../09-libtirpc-common_1.3.4+ds-1.3_all.deb ...
  Unpacking libtirpc-common (1.3.4+ds-1.3) ...
  Selecting previously unselected package libtirpc3t64:amd64.
  Preparing to unpack .../10-libtirpc3t64_1.3.4+ds-1.3+b1_amd64.deb ...
  Adding 'diversion of /lib/x86_64-linux-gnu/libtirpc.so.3 to /lib/x86_64-linux-gnu/libtirpc.so.3.usr-is-merged by libtirpc3t64'
  Adding 'diversion of /lib/x86_64-linux-gnu/libtirpc.so.3.0.0 to /lib/x86_64-linux-gnu/libtirpc.so.3.0.0.usr-is-merged by libtirpc3t64'
  Unpacking libtirpc3t64:amd64 (1.3.4+ds-1.3+b1) ...
  Selecting previously unselected package libnsl2:amd64.
  Preparing to unpack .../11-libnsl2_1.3.0-3+b3_amd64.deb ...
  Unpacking libnsl2:amd64 (1.3.0-3+b3) ...
  Selecting previously unselected package readline-common.
  Preparing to unpack .../12-readline-common_8.2-6_all.deb ...
  Unpacking readline-common (8.2-6) ...
  Selecting previously unselected package libreadline8t64:amd64.
  Preparing to unpack .../13-libreadline8t64_8.2-6_amd64.deb ...
  Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8 to /lib/x86_64-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64'
  Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8.2 to /lib/x86_64-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64'
  Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8 to /lib/x86_64-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64'
  Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8.2 to /lib/x86_64-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64'
  Unpacking libreadline8t64:amd64 (8.2-6) ...
  Selecting previously unselected package libsqlite3-0:amd64.
  Preparing to unpack .../14-libsqlite3-0_3.46.1-1_amd64.deb ...
  Unpacking libsqlite3-0:amd64 (3.46.1-1) ...
  Selecting previously unselected package libpython3.12-stdlib:amd64.
  Preparing to unpack .../15-libpython3.12-stdlib_3.12.8-3_amd64.deb ...
  Unpacking libpython3.12-stdlib:amd64 (3.12.8-3) ...
  Selecting previously unselected package python3.12.
  Preparing to unpack .../16-python3.12_3.12.8-3_amd64.deb ...
  Unpacking python3.12 (3.12.8-3) ...
  Selecting previously unselected package libpython3-stdlib:amd64.
  Preparing to unpack .../17-libpython3-stdlib_3.12.7-1_amd64.deb ...
  Unpacking libpython3-stdlib:amd64 (3.12.7-1) ...
  Setting up python3-minimal (3.12.7-1) ...
  Selecting previously unselected package python3.
  (Reading database ... 
  (Reading database ... 5%
  (Reading database ... 10%
  (Reading database ... 15%
  (Reading database ... 20%
  (Reading database ... 25%
  (Reading database ... 30%
  (Reading database ... 35%
  (Reading database ... 40%
  (Reading database ... 45%
  (Reading database ... 50%
  (Reading database ... 55%
  (Reading database ... 60%
  (Reading database ... 65%
  (Reading database ... 70%
  (Reading database ... 75%
  (Reading database ... 80%
  (Reading database ... 85%
  (Reading database ... 90%
  (Reading database ... 95%
  (Reading database ... 100%
  (Reading database ... 15046 files and directories currently installed.)
  Preparing to unpack .../00-python3_3.12.7-1_amd64.deb ...
  Unpacking python3 (3.12.7-1) ...
  Selecting previously unselected package python3-autocommand.
  Preparing to unpack .../01-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 .../02-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 .../03-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 .../04-python3-typeguard_4.4.1-1_all.deb ...
  Unpacking python3-typeguard (4.4.1-1) ...
  Selecting previously unselected package python3-inflect.
  Preparing to unpack .../05-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 .../06-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 .../07-python3-jaraco.functools_4.1.0-1_all.deb ...
  Unpacking python3-jaraco.functools (4.1.0-1) ...
  Selecting previously unselected package python3-mdurl.
  Preparing to unpack .../08-python3-mdurl_0.1.2-1_all.deb ...
  Unpacking python3-mdurl (0.1.2-1) ...
  Selecting previously unselected package python3-markdown-it.
  Preparing to unpack .../09-python3-markdown-it_3.0.0-2_all.deb ...
  Unpacking python3-markdown-it (3.0.0-2) ...
  Selecting previously unselected package python3-pkg-resources.
  Preparing to unpack .../10-python3-pkg-resources_75.6.0-1_all.deb ...
  Unpacking python3-pkg-resources (75.6.0-1) ...
  Selecting previously unselected package python3-pygments.
  Preparing to unpack .../11-python3-pygments_2.18.0+dfsg-1_all.deb ...
  Unpacking python3-pygments (2.18.0+dfsg-1) ...
  Selecting previously unselected package python3-rich.
  Preparing to unpack .../12-python3-rich_13.7.1-1_all.deb ...
  Unpacking python3-rich (13.7.1-1) ...
  Setting up media-types (10.1.0) ...
  Setting up libkeyutils1:amd64 (1.6.3-4) ...
  Setting up libtirpc-common (1.3.4+ds-1.3) ...
  Setting up libsqlite3-0:amd64 (3.46.1-1) ...
  Setting up libkrb5support0:amd64 (1.21.3-3) ...
  Setting up libncursesw6:amd64 (6.5-2+b1) ...
  Setting up libk5crypto3:amd64 (1.21.3-3) ...
  Setting up netbase (6.4) ...
  Setting up libkrb5-3:amd64 (1.21.3-3) ...
  Setting up readline-common (8.2-6) ...
  Setting up libgssapi-krb5-2:amd64 (1.21.3-3) ...
  Setting up libreadline8t64:amd64 (8.2-6) ...
  Setting up libtirpc3t64:amd64 (1.3.4+ds-1.3+b1) ...
  Setting up libnsl2:amd64 (1.3.0-3+b3) ...
  Setting up libpython3.12-stdlib:amd64 (3.12.8-3) ...
  Setting up python3.12 (3.12.8-3) ...
  Setting up libpython3-stdlib:amd64 (3.12.7-1) ...
  Setting up python3 (3.12.7-1) ...
  Setting up python3-autocommand (2.2.2-3) ...
  Setting up python3-mdurl (0.1.2-1) ...
  Setting up python3-typing-extensions (4.12.2-2) ...
  Setting up python3-markdown-it (3.0.0-2) ...
  Setting up python3-more-itertools (10.5.0-1) ...
  Setting up python3-jaraco.functools (4.1.0-1) ...
  Setting up python3-jaraco.context (6.0.0-1) ...
  Setting up python3-typeguard (4.4.1-1) ...
  Setting up python3-inflect (7.3.1-2) ...
  Setting up python3-pkg-resources (75.6.0-1) ...
  Setting up python3-pygments (2.18.0+dfsg-1) ...
  Setting up python3-rich (13.7.1-1) ...
  Processing triggers for systemd (257-2) ...
  Processing triggers for libc-bin (2.40-4) ...
0m35.9s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'apt-get', '-y', 'install', 'python3-rich']
0m35.9s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmp6cdavkee']
0m36.4s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmp6cdavkee']
0m37.0s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m37.0s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'dpkg-query', '-f', '${Version}\n', '-W', 'apt']
0m37.0s DUMP: 
  2.9.17
0m37.0s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'dpkg-query', '-f', '${Version}\n', '-W', 'apt']
0m37.0s DEBUG: Copying /tmp/debusine-fetch-exec-upload-wk8v47cq/python3-rich_13.9.4-0.1_all.deb to /tmp/tmp6cdavkee/tmp
0m37.0s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'apt-get', '-y', '--allow-downgrades', 'install', './tmp/python3-rich_13.9.4-0.1_all.deb']
0m38.1s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  The following packages will be upgraded:
    python3-rich
  1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
  Need to get 0 B/203 kB of archives.
  After this operation, 10.2 kB of additional disk space will be used.
  Get:1 /tmp/python3-rich_13.9.4-0.1_all.deb python3-rich all 13.9.4-0.1 [203 kB]
  debconf: delaying package configuration, since apt-utils is not installed
  (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 ... 15841 files and directories currently installed.)
  Preparing to unpack .../python3-rich_13.9.4-0.1_all.deb ...
  Unpacking python3-rich (13.9.4-0.1) over (13.7.1-1) ...
  Setting up python3-rich (13.9.4-0.1) ...
0m38.1s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'apt-get', '-y', '--allow-downgrades', 'install', './tmp/python3-rich_13.9.4-0.1_all.deb']
0m38.1s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'python3-rich']
0m38.1s DUMP: 
  python3-rich install ok installed
0m38.1s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'dpkg-query', '-f', '${Package} ${Status}\n', '-W', 'python3-rich']
0m38.1s INFO: Installation of ['./tmp/python3-rich_13.9.4-0.1_all.deb'] ok
0m38.1s DEBUG: Removing /tmp/tmp6cdavkee/./tmp/python3-rich_13.9.4-0.1_all.deb
0m38.1s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmp6cdavkee']
0m38.6s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmp6cdavkee']
0m39.2s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m39.5s DEBUG: Starting command: ['debsums', '--root', '/tmp/tmp6cdavkee', '-ac', '--ignore-obsolete']
0m40.6s DEBUG: Command ok: ['debsums', '--root', '/tmp/tmp6cdavkee', '-ac', '--ignore-obsolete']
0m40.6s DEBUG: Starting command: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m40.6s DUMP: 
  0.17.2
0m40.6s DEBUG: Command ok: ['dpkg-query', '-f', '${Version}\n', '-W', 'adequate']
0m40.6s INFO: Running adequate version 0.17.2 now.
0m40.6s DEBUG: Starting command: ['adequate', '--root', '/tmp/tmp6cdavkee', 'python3-rich']
0m40.7s DEBUG: Command ok: ['adequate', '--root', '/tmp/tmp6cdavkee', 'python3-rich']
0m40.7s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m40.7s DUMP: 
  install ok installed	adduser	adduser	3.137
  install ok installed	apt	apt	2.9.17
  install ok installed	base-files	base-files	13.6
  install ok installed	base-passwd	base-passwd	3.6.5
  install ok installed	bash	bash	5.2.37-1
  install ok installed	binutils	binutils	2.43.50.20241215-1
  install ok installed	binutils-common:amd64	binutils-common	2.43.50.20241215-1
  install ok installed	binutils-x86-64-linux-gnu	binutils-x86-64-linux-gnu	2.43.50.20241215-1
  install ok installed	bsdutils	bsdutils	1:2.40.2-12
  install ok installed	build-essential	build-essential	12.12
  install ok installed	bzip2	bzip2	1.0.8-6
  install ok installed	coreutils	coreutils	9.5-1+b1
  install ok installed	cpp	cpp	4:14.2.0-1
  install ok installed	cpp-14	cpp-14	14.2.0-11
  install ok installed	cpp-14-x86-64-linux-gnu	cpp-14-x86-64-linux-gnu	14.2.0-11
  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-9
  install ok installed	dbus	dbus	1.16.0-1
  install ok installed	dbus-bin	dbus-bin	1.16.0-1
  install ok installed	dbus-daemon	dbus-daemon	1.16.0-1
  install ok installed	dbus-session-bus-common	dbus-session-bus-common	1.16.0-1
  install ok installed	dbus-system-bus-common	dbus-system-bus-common	1.16.0-1
  install ok installed	debconf	debconf	1.5.87
  install ok installed	debian-archive-keyring	debian-archive-keyring	2023.4
  install ok installed	debianutils	debianutils	5.21
  install ok installed	diffutils	diffutils	1:3.10-1
  install ok installed	dpkg	dpkg	1.22.11
  install ok installed	dpkg-dev	dpkg-dev	1.22.11
  install ok installed	e2fsprogs	e2fsprogs	1.47.2~rc1-2
  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-11
  install ok installed	g++-14-x86-64-linux-gnu	g++-14-x86-64-linux-gnu	14.2.0-11
  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-11
  install ok installed	gcc-14-base:amd64	gcc-14-base	14.2.0-11
  install ok installed	gcc-14-x86-64-linux-gnu	gcc-14-x86-64-linux-gnu	14.2.0-11
  install ok installed	gcc-x86-64-linux-gnu	gcc-x86-64-linux-gnu	4:14.2.0-1
  install ok installed	gpgv	gpgv	2.2.45-2
  install ok installed	grep	grep	3.11-4
  install ok installed	gzip	gzip	1.12-1.2
  install ok installed	hostname	hostname	3.25
  install ok installed	init-system-helpers	init-system-helpers	1.67
  install ok installed	libacl1:amd64	libacl1	2.3.2-2+b1
  install ok installed	libapparmor1:amd64	libapparmor1	3.1.7-1+b3
  install ok installed	libapt-pkg6.0t64:amd64	libapt-pkg6.0t64	2.9.17
  install ok installed	libasan8:amd64	libasan8	14.2.0-11
  install ok installed	libatomic1:amd64	libatomic1	14.2.0-11
  install ok installed	libattr1:amd64	libattr1	1:2.5.2-2
  install ok installed	libaudit-common	libaudit-common	1:4.0.2-2
  install ok installed	libaudit1:amd64	libaudit1	1:4.0.2-2
  install ok installed	libbinutils:amd64	libbinutils	2.43.50.20241215-1
  install ok installed	libblkid1:amd64	libblkid1	2.40.2-12
  install ok installed	libbsd0:amd64	libbsd0	0.12.2-2
  install ok installed	libbz2-1.0:amd64	libbz2-1.0	1.0.8-6
  install ok installed	libc-bin	libc-bin	2.40-4
  install ok installed	libc-dev-bin	libc-dev-bin	2.40-4
  install ok installed	libc6:amd64	libc6	2.40-4
  install ok installed	libc6-dev:amd64	libc6-dev	2.40-4
  install ok installed	libcap-ng0:amd64	libcap-ng0	0.8.5-4
  install ok installed	libcap2:amd64	libcap2	1:2.66-5+b1
  install ok installed	libcc1-0:amd64	libcc1-0	14.2.0-11
  install ok installed	libcom-err2:amd64	libcom-err2	1.47.2~rc1-2
  install ok installed	libcrypt-dev:amd64	libcrypt-dev	1:4.4.36-5
  install ok installed	libcrypt1:amd64	libcrypt1	1:4.4.36-5
  install ok installed	libctf-nobfd0:amd64	libctf-nobfd0	2.43.50.20241215-1
  install ok installed	libctf0:amd64	libctf0	2.43.50.20241215-1
  install ok installed	libdb5.3t64:amd64	libdb5.3t64	5.3.28+dfsg2-9
  install ok installed	libdbus-1-3:amd64	libdbus-1-3	1.16.0-1
  install ok installed	libdebconfclient0:amd64	libdebconfclient0	0.274
  install ok installed	libdpkg-perl	libdpkg-perl	1.22.11
  install ok installed	libexpat1:amd64	libexpat1	2.6.4-1
  install ok installed	libext2fs2t64:amd64	libext2fs2t64	1.47.2~rc1-2
  install ok installed	libffi8:amd64	libffi8	3.4.6-1
  install ok installed	libgcc-14-dev:amd64	libgcc-14-dev	14.2.0-11
  install ok installed	libgcc-s1:amd64	libgcc-s1	14.2.0-11
  install ok installed	libgcrypt20:amd64	libgcrypt20	1.11.0-6
  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	libgnutls30t64:amd64	libgnutls30t64	3.8.8-2
  install ok installed	libgomp1:amd64	libgomp1	14.2.0-11
  install ok installed	libgpg-error0:amd64	libgpg-error0	1.51-2
  install ok installed	libgprofng0:amd64	libgprofng0	2.43.50.20241215-1
  install ok installed	libgssapi-krb5-2:amd64	libgssapi-krb5-2	1.21.3-3
  install ok installed	libhogweed6t64:amd64	libhogweed6t64	3.10-1+b1
  install ok installed	libhwasan0:amd64	libhwasan0	14.2.0-11
  install ok installed	libidn2-0:amd64	libidn2-0	2.3.7-2+b1
  install ok installed	libisl23:amd64	libisl23	0.27-1
  install ok installed	libitm1:amd64	libitm1	14.2.0-11
  install ok installed	libjansson4:amd64	libjansson4	2.14-2+b3
  install ok installed	libk5crypto3:amd64	libk5crypto3	1.21.3-3
  install ok installed	libkeyutils1:amd64	libkeyutils1	1.6.3-4
  install ok installed	libkrb5-3:amd64	libkrb5-3	1.21.3-3
  install ok installed	libkrb5support0:amd64	libkrb5support0	1.21.3-3
  install ok installed	liblsan0:amd64	liblsan0	14.2.0-11
  install ok installed	liblz4-1:amd64	liblz4-1	1.9.4-3+b1
  install ok installed	liblzma5:amd64	liblzma5	5.6.3-1+b1
  install ok installed	libmd0:amd64	libmd0	1.1.0-2+b1
  install ok installed	libmount1:amd64	libmount1	2.40.2-12
  install ok installed	libmpc3:amd64	libmpc3	1.3.1-1+b3
  install ok installed	libmpfr6:amd64	libmpfr6	4.2.1-1+b2
  install ok installed	libncursesw6:amd64	libncursesw6	6.5-2+b1
  install ok installed	libnettle8t64:amd64	libnettle8t64	3.10-1+b1
  install ok installed	libnsl2:amd64	libnsl2	1.3.0-3+b3
  install ok installed	libp11-kit0:amd64	libp11-kit0	0.25.5-2+b1
  install ok installed	libpam-modules:amd64	libpam-modules	1.5.3-7+b1
  install ok installed	libpam-modules-bin	libpam-modules-bin	1.5.3-7+b1
  install ok installed	libpam-runtime	libpam-runtime	1.5.3-7
  install ok installed	libpam0g:amd64	libpam0g	1.5.3-7+b1
  install ok installed	libpcre2-8-0:amd64	libpcre2-8-0	10.44-5
  install ok installed	libperl5.40:amd64	libperl5.40	5.40.0-8
  install ok installed	libpython3-stdlib:amd64	libpython3-stdlib	3.12.7-1
  install ok installed	libpython3.12-minimal:amd64	libpython3.12-minimal	3.12.8-3
  install ok installed	libpython3.12-stdlib:amd64	libpython3.12-stdlib	3.12.8-3
  install ok installed	libquadmath0:amd64	libquadmath0	14.2.0-11
  install ok installed	libreadline8t64:amd64	libreadline8t64	8.2-6
  install ok installed	libseccomp2:amd64	libseccomp2	2.5.5-2
  install ok installed	libselinux1:amd64	libselinux1	3.7-3+b1
  install ok installed	libsemanage-common	libsemanage-common	3.7-2
  install ok installed	libsemanage2:amd64	libsemanage2	3.7-2+b1
  install ok installed	libsepol2:amd64	libsepol2	3.7-1
  install ok installed	libsframe1:amd64	libsframe1	2.43.50.20241215-1
  install ok installed	libsmartcols1:amd64	libsmartcols1	2.40.2-12
  install ok installed	libsqlite3-0:amd64	libsqlite3-0	3.46.1-1
  install ok installed	libss2:amd64	libss2	1.47.2~rc1-2
  install ok installed	libssl3t64:amd64	libssl3t64	3.3.2-2
  install ok installed	libstdc++-14-dev:amd64	libstdc++-14-dev	14.2.0-11
  install ok installed	libstdc++6:amd64	libstdc++6	14.2.0-11
  install ok installed	libsystemd-shared:amd64	libsystemd-shared	257-2
  install ok installed	libsystemd0:amd64	libsystemd0	257-2
  install ok installed	libtasn1-6:amd64	libtasn1-6	4.19.0-3+b3
  install ok installed	libtinfo6:amd64	libtinfo6	6.5-2+b1
  install ok installed	libtirpc-common	libtirpc-common	1.3.4+ds-1.3
  install ok installed	libtirpc3t64:amd64	libtirpc3t64	1.3.4+ds-1.3+b1
  install ok installed	libtsan2:amd64	libtsan2	14.2.0-11
  install ok installed	libubsan1:amd64	libubsan1	14.2.0-11
  install ok installed	libudev1:amd64	libudev1	257-2
  install ok installed	libunistring5:amd64	libunistring5	1.3-1
  install ok installed	libuuid1:amd64	libuuid1	2.40.2-12
  install ok installed	libxxhash0:amd64	libxxhash0	0.8.2-2+b2
  install ok installed	libzstd1:amd64	libzstd1	1.5.6+dfsg-1+b1
  install ok installed	linux-libc-dev	linux-libc-dev	6.12.5-1
  install ok installed	login	login	1:4.16.0-2+really2.40.2-12
  install ok installed	login.defs	login.defs	1:4.16.0-7
  install ok installed	logsave	logsave	1.47.2~rc1-2
  install ok installed	make	make	4.3-4.1
  install ok installed	mawk	mawk	1.3.4.20240905-1
  install ok installed	media-types	media-types	10.1.0
  install ok installed	mount	mount	2.40.2-12
  install ok installed	ncurses-base	ncurses-base	6.5-2
  install ok installed	ncurses-bin	ncurses-bin	6.5-2+b1
  install ok installed	netbase	netbase	6.4
  install ok installed	openssl-provider-legacy	openssl-provider-legacy	3.3.2-2
  install ok installed	passwd	passwd	1:4.16.0-7
  install ok installed	patch	patch	2.7.6-7
  install ok installed	perl	perl	5.40.0-8
  install ok installed	perl-base	perl-base	5.40.0-8
  install ok installed	perl-modules-5.40	perl-modules-5.40	5.40.0-8
  install ok installed	python3	python3	3.12.7-1
  install ok installed	python3-autocommand	python3-autocommand	2.2.2-3
  install ok installed	python3-inflect	python3-inflect	7.3.1-2
  install ok installed	python3-jaraco.context	python3-jaraco.context	6.0.0-1
  install ok installed	python3-jaraco.functools	python3-jaraco.functools	4.1.0-1
  install ok installed	python3-markdown-it	python3-markdown-it	3.0.0-2
  install ok installed	python3-mdurl	python3-mdurl	0.1.2-1
  install ok installed	python3-minimal	python3-minimal	3.12.7-1
  install ok installed	python3-more-itertools	python3-more-itertools	10.5.0-1
  install ok installed	python3-pkg-resources	python3-pkg-resources	75.6.0-1
  install ok installed	python3-pygments	python3-pygments	2.18.0+dfsg-1
  install ok installed	python3-rich	python3-rich	13.9.4-0.1
  install ok installed	python3-typeguard	python3-typeguard	4.4.1-1
  install ok installed	python3-typing-extensions	python3-typing-extensions	4.12.2-2
  install ok installed	python3.12	python3.12	3.12.8-3
  install ok installed	python3.12-minimal	python3.12-minimal	3.12.8-3
  install ok installed	readline-common	readline-common	8.2-6
  install ok installed	rpcsvc-proto	rpcsvc-proto	1.4.3-1
  install ok installed	sed	sed	4.9-2
  install ok installed	systemd	systemd	257-2
  install ok installed	systemd-resolved	systemd-resolved	257-2
  install ok installed	systemd-sysv	systemd-sysv	257-2
  install ok installed	sysvinit-utils	sysvinit-utils	3.11-1
  install ok installed	tar	tar	1.35+dfsg-3
  install ok installed	tzdata	tzdata	2024b-4
  install ok installed	util-linux	util-linux	2.40.2-12
  install ok installed	xz-utils	xz-utils	5.6.3-1+b1
  install ok installed	zlib1g:amd64	zlib1g	1:1.3.dfsg+really1.3.1-1+b1
0m40.7s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'dpkg-query', '-W', '-f', '${Status}\\t${binary:Package}\\t${Package}\\t${Version}\\n']
0m40.7s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'apt-get', 'remove', 'libgssapi-krb5-2:amd64', 'libk5crypto3:amd64', 'libkeyutils1:amd64', 'libkrb5-3:amd64', 'libkrb5support0:amd64', 'libncursesw6:amd64', 'libnsl2:amd64', 'libpython3-stdlib:amd64', 'libpython3.12-minimal:amd64', 'libpython3.12-stdlib:amd64', 'libreadline8t64:amd64', 'libsqlite3-0:amd64', 'libtirpc-common', 'libtirpc3t64:amd64', 'media-types', 'netbase', 'python3', 'python3-autocommand', 'python3-inflect', 'python3-jaraco.context', 'python3-jaraco.functools', 'python3-markdown-it', 'python3-mdurl', 'python3-minimal', 'python3-more-itertools', 'python3-pkg-resources', 'python3-pygments', 'python3-typeguard', 'python3-typing-extensions', 'python3.12', 'python3.12-minimal', 'readline-common', 'python3-rich']
0m43.3s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  The following packages will be REMOVED:
    libgssapi-krb5-2 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0
    libncursesw6 libnsl2 libpython3-stdlib libpython3.12-minimal
    libpython3.12-stdlib libreadline8t64 libsqlite3-0 libtirpc-common
    libtirpc3t64 media-types netbase python3 python3-autocommand python3-inflect
    python3-jaraco.context python3-jaraco.functools python3-markdown-it
    python3-mdurl python3-minimal python3-more-itertools python3-pkg-resources
    python3-pygments python3-rich python3-typeguard python3-typing-extensions
    python3.12 python3.12-minimal readline-common
  0 upgraded, 0 newly installed, 33 to remove and 0 not upgraded.
  After this operation, 37.1 MB 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 ... 15841 files and directories currently installed.)
  Removing python3-rich (13.9.4-0.1) ...
  Removing python3-pygments (2.18.0+dfsg-1) ...
  Removing python3-pkg-resources (75.6.0-1) ...
  Removing python3-inflect (7.3.1-2) ...
  Removing python3-typeguard (4.4.1-1) ...
  Removing python3-typing-extensions (4.12.2-2) ...
  Removing python3-autocommand (2.2.2-3) ...
  Removing python3-jaraco.context (6.0.0-1) ...
  Removing python3-jaraco.functools (4.1.0-1) ...
  Removing python3-markdown-it (3.0.0-2) ...
  Removing python3-mdurl (0.1.2-1) ...
  Removing python3-more-itertools (10.5.0-1) ...
  Removing python3 (3.12.7-1) ...
  Removing python3.12 (3.12.8-3) ...
  Removing libpython3-stdlib:amd64 (3.12.7-1) ...
  Removing libpython3.12-stdlib:amd64 (3.12.8-3) ...
  find: '/usr/lib/python3': No such file or directory
  Removing libnsl2:amd64 (1.3.0-3+b3) ...
  Removing libtirpc3t64:amd64 (1.3.4+ds-1.3+b1) ...
  Removing 'diversion of /lib/x86_64-linux-gnu/libtirpc.so.3 to /lib/x86_64-linux-gnu/libtirpc.so.3.usr-is-merged by libtirpc3t64'
  Removing 'diversion of /lib/x86_64-linux-gnu/libtirpc.so.3.0.0 to /lib/x86_64-linux-gnu/libtirpc.so.3.0.0.usr-is-merged by libtirpc3t64'
  Removing libgssapi-krb5-2:amd64 (1.21.3-3) ...
  Removing libkrb5-3:amd64 (1.21.3-3) ...
  Removing libk5crypto3:amd64 (1.21.3-3) ...
  Removing libkeyutils1:amd64 (1.6.3-4) ...
  Removing libkrb5support0:amd64 (1.21.3-3) ...
  Removing libncursesw6:amd64 (6.5-2+b1) ...
  Removing python3-minimal (3.12.7-1) ...
  Removing python3.12-minimal (3.12.8-3) ...
  Removing libpython3.12-minimal:amd64 (3.12.8-3) ...
  find: '/usr/lib/python3': No such file or directory
  Removing libreadline8t64:amd64 (8.2-6) ...
  Removing 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8 to /lib/x86_64-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64'
  Removing 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8.2 to /lib/x86_64-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64'
  Removing 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8 to /lib/x86_64-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64'
  Removing 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8.2 to /lib/x86_64-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64'
  Removing libsqlite3-0:amd64 (3.46.1-1) ...
  Removing libtirpc-common (1.3.4+ds-1.3) ...
  Removing media-types (10.1.0) ...
  Removing netbase (6.4) ...
  Removing readline-common (8.2-6) ...
  Processing triggers for systemd (257-2) ...
  Processing triggers for libc-bin (2.40-4) ...
0m43.3s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'apt-get', 'remove', 'libgssapi-krb5-2:amd64', 'libk5crypto3:amd64', 'libkeyutils1:amd64', 'libkrb5-3:amd64', 'libkrb5support0:amd64', 'libncursesw6:amd64', 'libnsl2:amd64', 'libpython3-stdlib:amd64', 'libpython3.12-minimal:amd64', 'libpython3.12-stdlib:amd64', 'libreadline8t64:amd64', 'libsqlite3-0:amd64', 'libtirpc-common', 'libtirpc3t64:amd64', 'media-types', 'netbase', 'python3', 'python3-autocommand', 'python3-inflect', 'python3-jaraco.context', 'python3-jaraco.functools', 'python3-markdown-it', 'python3-mdurl', 'python3-minimal', 'python3-more-itertools', 'python3-pkg-resources', 'python3-pygments', 'python3-typeguard', 'python3-typing-extensions', 'python3.12', 'python3.12-minimal', 'readline-common', 'python3-rich']
0m43.3s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'dpkg', '--purge', 'libgssapi-krb5-2:amd64', 'libk5crypto3:amd64', 'libkeyutils1:amd64', 'libkrb5-3:amd64', 'libkrb5support0:amd64', 'libncursesw6:amd64', 'libnsl2:amd64', 'libpython3-stdlib:amd64', 'libpython3.12-minimal:amd64', 'libpython3.12-stdlib:amd64', 'libreadline8t64:amd64', 'libsqlite3-0:amd64', 'libtirpc-common', 'libtirpc3t64:amd64', 'media-types', 'netbase', 'python3', 'python3-autocommand', 'python3-inflect', 'python3-jaraco.context', 'python3-jaraco.functools', 'python3-markdown-it', 'python3-mdurl', 'python3-minimal', 'python3-more-itertools', 'python3-pkg-resources', 'python3-pygments', 'python3-typeguard', 'python3-typing-extensions', 'python3.12', 'python3.12-minimal', 'readline-common']
0m43.6s DUMP: 
  (Reading database ... 14185 files and directories currently installed.)
  Purging configuration files for libgssapi-krb5-2:amd64 (1.21.3-3) ...
  dpkg: warning: ignoring request to remove libk5crypto3 which isn't installed
  dpkg: warning: ignoring request to remove libkeyutils1 which isn't installed
  dpkg: warning: ignoring request to remove libkrb5-3 which isn't installed
  dpkg: warning: ignoring request to remove libkrb5support0 which isn't installed
  dpkg: warning: ignoring request to remove libncursesw6 which isn't installed
  dpkg: warning: ignoring request to remove libnsl2 which isn't installed
  dpkg: warning: ignoring request to remove libpython3-stdlib which isn't installed
  Purging configuration files for libpython3.12-minimal:amd64 (3.12.8-3) ...
  dpkg: warning: ignoring request to remove libpython3.12-stdlib which isn't installed
  Purging configuration files for libreadline8t64:amd64 (8.2-6) ...
  dpkg: warning: ignoring request to remove libsqlite3-0 which isn't installed
  Purging configuration files for libtirpc-common (1.3.4+ds-1.3) ...
  Purging configuration files for libtirpc3t64:amd64 (1.3.4+ds-1.3+b1) ...
  Purging configuration files for media-types (10.1.0) ...
  Purging configuration files for netbase (6.4) ...
  Purging configuration files for python3 (3.12.7-1) ...
  dpkg: warning: ignoring request to remove python3-autocommand which isn't installed
  dpkg: warning: ignoring request to remove python3-inflect which isn't installed
  dpkg: warning: ignoring request to remove python3-jaraco.context which isn't installed
  dpkg: warning: ignoring request to remove python3-jaraco.functools which isn't installed
  dpkg: warning: ignoring request to remove python3-markdown-it which isn't installed
  dpkg: warning: ignoring request to remove python3-mdurl which isn't installed
  dpkg: warning: ignoring request to remove python3-minimal which isn't installed
  dpkg: warning: ignoring request to remove python3-more-itertools which isn't installed
  dpkg: warning: ignoring request to remove python3-pkg-resources which isn't installed
  dpkg: warning: ignoring request to remove python3-pygments which isn't installed
  dpkg: warning: ignoring request to remove python3-typeguard which isn't installed
  dpkg: warning: ignoring request to remove python3-typing-extensions which isn't installed
  dpkg: warning: ignoring request to remove python3.12 which isn't installed
  Purging configuration files for python3.12-minimal (3.12.8-3) ...
  Purging configuration files for readline-common (8.2-6) ...
0m43.6s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'dpkg', '--purge', 'libgssapi-krb5-2:amd64', 'libk5crypto3:amd64', 'libkeyutils1:amd64', 'libkrb5-3:amd64', 'libkrb5support0:amd64', 'libncursesw6:amd64', 'libnsl2:amd64', 'libpython3-stdlib:amd64', 'libpython3.12-minimal:amd64', 'libpython3.12-stdlib:amd64', 'libreadline8t64:amd64', 'libsqlite3-0:amd64', 'libtirpc-common', 'libtirpc3t64:amd64', 'media-types', 'netbase', 'python3', 'python3-autocommand', 'python3-inflect', 'python3-jaraco.context', 'python3-jaraco.functools', 'python3-markdown-it', 'python3-mdurl', 'python3-minimal', 'python3-more-itertools', 'python3-pkg-resources', 'python3-pygments', 'python3-typeguard', 'python3-typing-extensions', 'python3.12', 'python3.12-minimal', 'readline-common']
0m43.6s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'dpkg', '--purge', 'python3-rich']
0m43.6s DUMP: 
  dpkg: warning: ignoring request to remove python3-rich which isn't installed
0m43.6s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'dpkg', '--purge', 'python3-rich']
0m43.6s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'dpkg', '--purge', '--pending']
0m43.6s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'dpkg', '--purge', '--pending']
0m43.6s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'dpkg', '--remove', '--pending']
0m43.6s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'dpkg', '--remove', '--pending']
0m43.6s DEBUG: Starting command: ['lsof', '-w', '+D', '/tmp/tmp6cdavkee']
0m44.1s DEBUG: Command failed (status=1), but ignoring error: ['lsof', '-w', '+D', '/tmp/tmp6cdavkee']
0m44.5s ERROR: WARN: Broken symlinks:
  /etc/vconsole.conf -> default/keyboard
  /etc/default/locale -> ../locale.conf
0m44.5s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'dpkg-divert', '--list']
0m44.5s DUMP: 
  diversion of /lib/x86_64-linux-gnu/libe2p.so.2 to /lib/x86_64-linux-gnu/libe2p.so.2.usr-is-merged by libext2fs2t64
  diversion of /lib/x86_64-linux-gnu/libext2fs.so.2.4 to /lib/x86_64-linux-gnu/libext2fs.so.2.4.usr-is-merged by libext2fs2t64
  diversion of /lib64/ld-linux-x86-64.so.2 to /lib64/ld-linux-x86-64.so.2.usr-is-merged by libc6
  diversion of /lib/x86_64-linux-gnu/libext2fs.so.2 to /lib/x86_64-linux-gnu/libext2fs.so.2.usr-is-merged by libext2fs2t64
  diversion of /lib/x86_64-linux-gnu/libe2p.so.2.3 to /lib/x86_64-linux-gnu/libe2p.so.2.3.usr-is-merged by libext2fs2t64
  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
0m44.5s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'dpkg-divert', '--list']
0m44.5s DEBUG: Starting command: ['chroot', '/tmp/tmp6cdavkee', 'apt-get', 'clean']
0m44.6s DEBUG: Command ok: ['chroot', '/tmp/tmp6cdavkee', 'apt-get', 'clean']
0m44.6s DEBUG: Recording chroot state
0m44.8s INFO: PASS: Installation, upgrade and purging tests.
0m45.2s DEBUG: Starting command: ['umount', '/tmp/tmp6cdavkee/dev/tty']
0m45.2s DEBUG: Command ok: ['umount', '/tmp/tmp6cdavkee/dev/tty']
0m45.2s DEBUG: Starting command: ['umount', '/tmp/tmp6cdavkee/dev/urandom']
0m45.2s DEBUG: Command ok: ['umount', '/tmp/tmp6cdavkee/dev/urandom']
0m45.2s DEBUG: Starting command: ['umount', '/tmp/tmp6cdavkee/dev/random']
0m45.2s DEBUG: Command ok: ['umount', '/tmp/tmp6cdavkee/dev/random']
0m45.2s DEBUG: Starting command: ['umount', '/tmp/tmp6cdavkee/dev/full']
0m45.2s DEBUG: Command ok: ['umount', '/tmp/tmp6cdavkee/dev/full']
0m45.2s DEBUG: Starting command: ['umount', '/tmp/tmp6cdavkee/dev/zero']
0m45.2s DEBUG: Command ok: ['umount', '/tmp/tmp6cdavkee/dev/zero']
0m45.2s DEBUG: Starting command: ['umount', '/tmp/tmp6cdavkee/dev/null']
0m45.2s DEBUG: Command ok: ['umount', '/tmp/tmp6cdavkee/dev/null']
0m45.2s DEBUG: Starting command: ['umount', '/tmp/tmp6cdavkee/dev/shm']
0m45.2s DEBUG: Command ok: ['umount', '/tmp/tmp6cdavkee/dev/shm']
0m45.2s DEBUG: Starting command: ['umount', '/tmp/tmp6cdavkee/dev/pts']
0m45.2s DEBUG: Command ok: ['umount', '/tmp/tmp6cdavkee/dev/pts']
0m45.2s DEBUG: Starting command: ['umount', '/tmp/tmp6cdavkee/proc']
0m45.2s DEBUG: Command ok: ['umount', '/tmp/tmp6cdavkee/proc']
0m45.2s DEBUG: Starting command: ['rm', '-rf', '--one-file-system', '/tmp/tmp6cdavkee']
0m45.6s DEBUG: Command ok: ['rm', '-rf', '--one-file-system', '/tmp/tmp6cdavkee']
0m45.6s DEBUG: Removed directory tree at /tmp/tmp6cdavkee
0m45.6s INFO: PASS: All tests.
0m45.6s INFO: piuparts run ends.

Files in working directory:

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