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
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973 |
This is a big file! Only the last 128KiB is shown. Click here to download the full log.
(13/476) Installing orc (0.4.38-r0)
(14/476) Installing libogg (1.3.5-r5)
(15/476) Installing libflac (1.4.3-r1)
(16/476) Installing opus (1.5.2-r0)
(17/476) Installing libvorbis (1.3.7-r2)
(18/476) Installing libsndfile (1.2.2-r0)
(19/476) Installing soxr (0.1.3-r7)
(20/476) Installing speexdsp (1.2.1-r2)
(21/476) Installing tdb-libs (1.4.10-r0)
(22/476) Installing libpulse (17.0-r3)
(23/476) Installing alsa-plugins-pulse (1.2.7.1-r3)
(24/476) Installing ncurses-terminfo-base (6.5_p20240601-r0)
(25/476) Installing libncursesw (6.5_p20240601-r0)
(26/476) Installing readline (8.2.13-r0)
(27/476) Installing bash (5.2.32-r0)
bash-5.2.32-r0: [USRMERGE] Rewrite bin/ to usr/bin/
bash-5.2.32-r0: [USRMERGE] Rewrite bin/bash to usr/bin/bash
Executing bash-5.2.32-r0.post-install
(28/476) Installing libffi (3.4.6-r0)
(29/476) Installing libeconf (0.6.3-r0)
(30/476) Installing libblkid (2.40.2-r0)
libblkid-2.40.2-r0: [USRMERGE] Rewrite lib/ to usr/lib/
libblkid-2.40.2-r0: [USRMERGE] Rewrite lib/libblkid.so.1 to usr/lib/libblkid.so.1
libblkid-2.40.2-r0: [USRMERGE] Rewrite lib/libblkid.so.1.1.0 to usr/lib/libblkid.so.1.1.0
(31/476) Installing libmount (2.40.2-r0)
libmount-2.40.2-r0: [USRMERGE] Rewrite lib/ to usr/lib/
libmount-2.40.2-r0: [USRMERGE] Rewrite lib/libmount.so.1 to usr/lib/libmount.so.1
libmount-2.40.2-r0: [USRMERGE] Rewrite lib/libmount.so.1.1.0 to usr/lib/libmount.so.1.1.0
(32/476) Installing glib (2.80.4-r0)
(33/476) Installing dconf (0.40.0-r5)
(34/476) Installing polkit-libs (999124-r2)
(35/476) Installing duktape (2.7.0-r1)
(36/476) Installing skalibs (2.14.2.0-r0)
skalibs-2.14.2.0-r0: [USRMERGE] Rewrite lib/ to usr/lib/
skalibs-2.14.2.0-r0: [USRMERGE] Rewrite lib/libskarnet.so.2.14 to usr/lib/libskarnet.so.2.14
skalibs-2.14.2.0-r0: [USRMERGE] Rewrite lib/libskarnet.so.2.14.2.0 to usr/lib/libskarnet.so.2.14.2.0
(37/476) Installing utmps-libs (0.1.2.2-r1)
utmps-libs-0.1.2.2-r1: [USRMERGE] Rewrite lib/ to usr/lib/
utmps-libs-0.1.2.2-r1: [USRMERGE] Rewrite lib/libutmps.so.0.1 to usr/lib/libutmps.so.0.1
utmps-libs-0.1.2.2-r1: [USRMERGE] Rewrite lib/libutmps.so.0.1.2.2 to usr/lib/libutmps.so.0.1.2.2
(38/476) Installing linux-pam (1.6.1-r0)
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/ to usr/lib/
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/libpam.so.0 to usr/lib/libpam.so.0
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/libpam.so.0.85.1 to usr/lib/libpam.so.0.85.1
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/libpam_misc.so.0 to usr/lib/libpam_misc.so.0
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/libpam_misc.so.0.82.1 to usr/lib/libpam_misc.so.0.82.1
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/libpamc.so.0 to usr/lib/libpamc.so.0
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/libpamc.so.0.82.1 to usr/lib/libpamc.so.0.82.1
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/ to usr/lib/security/
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_access.so to usr/lib/security/pam_access.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_canonicalize_user.so to usr/lib/security/pam_canonicalize_user.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_debug.so to usr/lib/security/pam_debug.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_deny.so to usr/lib/security/pam_deny.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_echo.so to usr/lib/security/pam_echo.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_env.so to usr/lib/security/pam_env.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_exec.so to usr/lib/security/pam_exec.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_faildelay.so to usr/lib/security/pam_faildelay.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_faillock.so to usr/lib/security/pam_faillock.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_filter/ to usr/lib/security/pam_filter/
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_filter.so to usr/lib/security/pam_filter.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_filter/upperLOWER to usr/lib/security/pam_filter/upperLOWER
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_ftp.so to usr/lib/security/pam_ftp.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_group.so to usr/lib/security/pam_group.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_issue.so to usr/lib/security/pam_issue.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_keyinit.so to usr/lib/security/pam_keyinit.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_limits.so to usr/lib/security/pam_limits.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_listfile.so to usr/lib/security/pam_listfile.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_localuser.so to usr/lib/security/pam_localuser.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_loginuid.so to usr/lib/security/pam_loginuid.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_mail.so to usr/lib/security/pam_mail.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_mkhomedir.so to usr/lib/security/pam_mkhomedir.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_motd.so to usr/lib/security/pam_motd.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_namespace.so to usr/lib/security/pam_namespace.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_nologin.so to usr/lib/security/pam_nologin.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_permit.so to usr/lib/security/pam_permit.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_pwhistory.so to usr/lib/security/pam_pwhistory.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_rootok.so to usr/lib/security/pam_rootok.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_securetty.so to usr/lib/security/pam_securetty.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_setquota.so to usr/lib/security/pam_setquota.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_shells.so to usr/lib/security/pam_shells.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_stress.so to usr/lib/security/pam_stress.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_succeed_if.so to usr/lib/security/pam_succeed_if.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_time.so to usr/lib/security/pam_time.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_timestamp.so to usr/lib/security/pam_timestamp.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_umask.so to usr/lib/security/pam_umask.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_unix.so to usr/lib/security/pam_unix.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_usertype.so to usr/lib/security/pam_usertype.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_warn.so to usr/lib/security/pam_warn.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_wheel.so to usr/lib/security/pam_wheel.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite lib/security/pam_xauth.so to usr/lib/security/pam_xauth.so
linux-pam-1.6.1-r0: [USRMERGE] Rewrite sbin/ to usr/bin/
linux-pam-1.6.1-r0: [USRMERGE] Rewrite sbin/faillock to usr/bin/faillock
linux-pam-1.6.1-r0: [USRMERGE] Rewrite sbin/mkhomedir_helper to usr/bin/mkhomedir_helper
linux-pam-1.6.1-r0: [USRMERGE] Rewrite sbin/pam_namespace_helper to usr/bin/pam_namespace_helper
linux-pam-1.6.1-r0: [USRMERGE] Rewrite sbin/pam_timestamp_check to usr/bin/pam_timestamp_check
linux-pam-1.6.1-r0: [USRMERGE] Rewrite sbin/unix_chkpwd to usr/bin/unix_chkpwd
(39/476) Installing polkit (999124-r2)
Executing polkit-999124-r2.pre-install
(40/476) Installing xz-libs (5.6.2-r0)
(41/476) Installing libxml2 (2.12.8-r0)
(42/476) Installing libxml2-utils (2.12.8-r0)
(43/476) Installing docbook-xml (4.5-r9)
Executing docbook-xml-4.5-r9.post-install
(44/476) Installing kbd-misc (2.6.4-r2)
(45/476) Installing kbd (2.6.4-r2)
kbd-2.6.4-r2: [USRMERGE] Rewrite usr/sbin/ to usr/bin/
kbd-2.6.4-r2: [USRMERGE] Rewrite usr/sbin/setfont to usr/bin/setfont
(46/476) Installing kmod (32-r3)
kmod-32-r3: [USRMERGE] Rewrite bin/ to usr/bin/
kmod-32-r3: [USRMERGE] Rewrite bin/depmod to usr/bin/depmod
kmod-32-r3: [USRMERGE] Rewrite bin/insmod to usr/bin/insmod
kmod-32-r3: [USRMERGE] Rewrite bin/kmod to usr/bin/kmod
kmod-32-r3: [USRMERGE] Rewrite bin/lsmod to usr/bin/lsmod
kmod-32-r3: [USRMERGE] Rewrite bin/modinfo to usr/bin/modinfo
kmod-32-r3: [USRMERGE] Rewrite bin/modprobe to usr/bin/modprobe
kmod-32-r3: [USRMERGE] Rewrite bin/rmmod to usr/bin/rmmod
kmod-32-r3: [USRMERGE] Rewrite lib/ to usr/lib/
kmod-32-r3: [USRMERGE] Rewrite sbin/ to usr/bin/
kmod-32-r3: [USRMERGE] Rewrite sbin/depmod to usr/bin/depmod
kmod-32-r3: [USRMERGE] ignoring redundant symlink usr/bin/depmod -> depmod
kmod-32-r3: [USRMERGE] Rewrite sbin/insmod to usr/bin/insmod
kmod-32-r3: [USRMERGE] ignoring redundant symlink usr/bin/insmod -> insmod
kmod-32-r3: [USRMERGE] Rewrite sbin/lsmod to usr/bin/lsmod
kmod-32-r3: [USRMERGE] ignoring redundant symlink usr/bin/lsmod -> lsmod
kmod-32-r3: [USRMERGE] Rewrite sbin/modinfo to usr/bin/modinfo
kmod-32-r3: [USRMERGE] ignoring redundant symlink usr/bin/modinfo -> modinfo
kmod-32-r3: [USRMERGE] Rewrite sbin/modprobe to usr/bin/modprobe
kmod-32-r3: [USRMERGE] ignoring redundant symlink usr/bin/modprobe -> modprobe
kmod-32-r3: [USRMERGE] Rewrite sbin/rmmod to usr/bin/rmmod
kmod-32-r3: [USRMERGE] ignoring redundant symlink usr/bin/rmmod -> rmmod
(47/476) Installing nettle (3.10-r0)
(48/476) Installing libtasn1 (4.19.0-r2)
(49/476) Installing p11-kit (0.25.5-r0)
(50/476) Installing gnutls (3.8.5-r0)
(51/476) Installing libmicrohttpd (0.9.77-r0)
(52/476) Installing systemd-journald (256-r3)
(53/476) Installing runuser (2.40.2-r0)
runuser-2.40.2-r0: [USRMERGE] Rewrite sbin/ to usr/bin/
runuser-2.40.2-r0: [USRMERGE] Rewrite sbin/runuser to usr/bin/runuser
(54/476) Installing libsmartcols (2.40.2-r0)
libsmartcols-2.40.2-r0: [USRMERGE] Rewrite lib/ to usr/lib/
libsmartcols-2.40.2-r0: [USRMERGE] Rewrite lib/libsmartcols.so.1 to usr/lib/libsmartcols.so.1
libsmartcols-2.40.2-r0: [USRMERGE] Rewrite lib/libsmartcols.so.1.1.0 to usr/lib/libsmartcols.so.1.1.0
(55/476) Installing util-linux-login (2.40.2-r0)
util-linux-login-2.40.2-r0: [USRMERGE] Rewrite bin/ to usr/bin/
util-linux-login-2.40.2-r0: [USRMERGE] Rewrite bin/login to usr/bin/login
util-linux-login-2.40.2-r0: [USRMERGE] Rewrite bin/su to usr/bin/su
util-linux-login-2.40.2-r0: [USRMERGE] Rewrite sbin/ to usr/bin/
util-linux-login-2.40.2-r0: [USRMERGE] Rewrite sbin/nologin to usr/bin/nologin
util-linux-login-2.40.2-r0: [USRMERGE] Rewrite sbin/sulogin to usr/bin/sulogin
(56/476) Installing less (661-r0)
(57/476) Installing kmod-libs (32-r3)
kmod-libs-32-r3: [USRMERGE] Rewrite lib/ to usr/lib/
kmod-libs-32-r3: [USRMERGE] Rewrite lib/libkmod.so.2 to usr/lib/libkmod.so.2
kmod-libs-32-r3: [USRMERGE] Rewrite lib/libkmod.so.2.4.2 to usr/lib/libkmod.so.2.4.2
(58/476) Installing libapparmor (3.1.7-r3)
(59/476) Installing libcap-ng (0.8.5-r0)
(60/476) Installing audit-libs (4.0.1-r0)
(61/476) Installing device-mapper-libs (2.03.23-r4)
device-mapper-libs-2.03.23-r4: [USRMERGE] Rewrite lib/ to usr/lib/
device-mapper-libs-2.03.23-r4: [USRMERGE] Rewrite lib/libdevmapper.so.1.02 to usr/lib/libdevmapper.so.1.02
(62/476) Installing json-c (0.17-r0)
(63/476) Installing libuuid (2.40.2-r0)
libuuid-2.40.2-r0: [USRMERGE] Rewrite lib/ to usr/lib/
libuuid-2.40.2-r0: [USRMERGE] Rewrite lib/libuuid.so.1 to usr/lib/libuuid.so.1
libuuid-2.40.2-r0: [USRMERGE] Rewrite lib/libuuid.so.1.3.0 to usr/lib/libuuid.so.1.3.0
(64/476) Installing cryptsetup-libs (2.7.4-r0)
cryptsetup-libs-2.7.4-r0: [USRMERGE] Rewrite lib/ to usr/lib/
cryptsetup-libs-2.7.4-r0: [USRMERGE] Rewrite lib/cryptsetup/ to usr/lib/cryptsetup/
cryptsetup-libs-2.7.4-r0: [USRMERGE] Rewrite lib/libcryptsetup.so.12 to usr/lib/libcryptsetup.so.12
cryptsetup-libs-2.7.4-r0: [USRMERGE] Rewrite lib/libcryptsetup.so.12.10.0 to usr/lib/libcryptsetup.so.12.10.0
(65/476) Installing libfdisk (2.40.2-r0)
libfdisk-2.40.2-r0: [USRMERGE] Rewrite lib/ to usr/lib/
libfdisk-2.40.2-r0: [USRMERGE] Rewrite lib/libfdisk.so.1 to usr/lib/libfdisk.so.1
libfdisk-2.40.2-r0: [USRMERGE] Rewrite lib/libfdisk.so.1.1.0 to usr/lib/libfdisk.so.1.1.0
(66/476) Installing libseccomp (2.5.5-r1)
(67/476) Installing dbus (9991.14.10-r3)
Executing dbus-9991.14.10-r3.pre-install
(68/476) Installing dbus-systemd (9991.14.10-r3)
(69/476) Installing dbus-daemon-launch-helper (9991.14.10-r3)
(70/476) Installing shadow (4.16.0-r0)
shadow-4.16.0-r0: [USRMERGE] Rewrite bin/ to usr/bin/
shadow-4.16.0-r0: [USRMERGE] Rewrite bin/groups to usr/bin/groups
shadow-4.16.0-r0: [USRMERGE] Rewrite lib/ to usr/lib/
shadow-4.16.0-r0: [USRMERGE] Rewrite usr/sbin/ to usr/bin/
shadow-4.16.0-r0: [USRMERGE] Rewrite usr/sbin/chgpasswd to usr/bin/chgpasswd
shadow-4.16.0-r0: [USRMERGE] Rewrite usr/sbin/chpasswd to usr/bin/chpasswd
shadow-4.16.0-r0: [USRMERGE] Rewrite usr/sbin/groupadd to usr/bin/groupadd
shadow-4.16.0-r0: [USRMERGE] Rewrite usr/sbin/groupdel to usr/bin/groupdel
shadow-4.16.0-r0: [USRMERGE] Rewrite usr/sbin/groupmems to usr/bin/groupmems
shadow-4.16.0-r0: [USRMERGE] Rewrite usr/sbin/groupmod to usr/bin/groupmod
shadow-4.16.0-r0: [USRMERGE] Rewrite usr/sbin/grpck to usr/bin/grpck
shadow-4.16.0-r0: [USRMERGE] Rewrite usr/sbin/logoutd to usr/bin/logoutd
shadow-4.16.0-r0: [USRMERGE] Rewrite usr/sbin/newusers to usr/bin/newusers
shadow-4.16.0-r0: [USRMERGE] Rewrite usr/sbin/pwck to usr/bin/pwck
shadow-4.16.0-r0: [USRMERGE] Rewrite usr/sbin/useradd to usr/bin/useradd
shadow-4.16.0-r0: [USRMERGE] Rewrite usr/sbin/userdel to usr/bin/userdel
shadow-4.16.0-r0: [USRMERGE] Rewrite usr/sbin/usermod to usr/bin/usermod
shadow-4.16.0-r0: [USRMERGE] Rewrite usr/sbin/vigr to usr/bin/vigr
shadow-4.16.0-r0: [USRMERGE] Rewrite usr/sbin/vipw to usr/bin/vipw
(71/476) Installing systemd-logind (256-r3)
(72/476) Installing systemd (256-r3)
Executing systemd-256-r3.pre-install
(73/476) Installing polkit-systemd (999124-r2)
(74/476) Installing systemd-udevd (256-r3)
(75/476) Installing systemd-dev (256-r3)
(76/476) Installing cairo-tools (1.18.2-r0)
(77/476) Installing libbz2 (1.0.8-r6)
(78/476) Installing libpng (1.6.43-r0)
(79/476) Installing freetype (2.13.2-r0)
(80/476) Installing fontconfig (2.15.0-r1)
(81/476) Installing expat (2.6.2-r0)
(82/476) Installing expat-dev (2.6.2-r0)
(83/476) Installing brotli (1.1.0-r2)
(84/476) Installing brotli-dev (1.1.0-r2)
(85/476) Installing zlib-dev (1.3.1-r1)
zlib-dev-1.3.1-r1: [USRMERGE] Rewrite lib/ to usr/lib/
zlib-dev-1.3.1-r1: [USRMERGE] Rewrite lib/libz.so to usr/lib/libz.so
(86/476) Installing libpng-dev (1.6.43-r0)
(87/476) Installing freetype-dev (2.13.2-r0)
(88/476) Installing fontconfig-dev (2.15.0-r1)
(89/476) Installing xorgproto (2024.1-r0)
(90/476) Installing libxau-dev (1.0.11-r4)
(91/476) Installing libxext (1.3.6-r2)
(92/476) Installing gdbm (1.24-r0)
(93/476) Installing mpdecimal (4.0.0-r0)
(94/476) Installing libpanelw (6.5_p20240601-r0)
(95/476) Installing sqlite-libs (3.46.1-r0)
(96/476) Installing python3 (3.12.5-r1)
(97/476) Installing python3-pycache-pyc0 (3.12.5-r1)
(98/476) Installing pyc (3.12.5-r1)
(99/476) Installing xcb-proto-pyc (1.16.0-r1)
(100/476) Installing python3-pyc (3.12.5-r1)
(101/476) Installing xcb-proto (1.16.0-r1)
(102/476) Installing libxdmcp-dev (1.1.5-r1)
(103/476) Installing libxcb-dev (1.16.1-r0)
(104/476) Installing xtrans (1.5.0-r0)
(105/476) Installing libx11-dev (1.8.10-r0)
(106/476) Installing libxext-dev (1.3.6-r2)
(107/476) Installing libxrender (0.9.11-r5)
(108/476) Installing libxrender-dev (0.9.11-r5)
(109/476) Installing pixman (0.43.4-r0)
(110/476) Installing pixman-dev (0.43.4-r0)
(111/476) Installing util-macros (1.20.1-r0)
(112/476) Installing xcb-util (0.4.1-r3)
(113/476) Installing xcb-util-dev (0.4.1-r3)
(114/476) Installing cairo (1.18.2-r0)
(115/476) Installing cairo-gobject (1.18.2-r0)
(116/476) Installing bzip2-dev (1.0.8-r6)
(117/476) Installing libgpg-error (1.50-r0)
(118/476) Installing libgcrypt (1.10.3-r0)
(119/476) Installing libxslt (1.1.39-r1)
(120/476) Installing docbook-xsl (1.79.2-r9)
Executing docbook-xsl-1.79.2-r9.post-install
(121/476) Installing xz (5.6.2-r0)
(122/476) Installing gettext-asprintf (0.22.5-r0)
(123/476) Installing gettext-libs (0.22.5-r0)
(124/476) Installing gettext-envsubst (0.22.5-r0)
(125/476) Installing gettext (0.22.5-r0)
(126/476) Installing gettext-dev (0.22.5-r0)
(127/476) Installing py3-parsing (3.1.2-r1)
(128/476) Installing py3-parsing-pyc (3.1.2-r1)
(129/476) Installing py3-packaging (24.1-r0)
(130/476) Installing py3-packaging-pyc (24.1-r0)
(131/476) Installing linux-headers (6.6-r0)
(132/476) Installing libffi-dev (3.4.6-r0)
(133/476) Installing bsd-compat-headers (0.7.2-r6)
(134/476) Installing libformw (6.5_p20240601-r0)
(135/476) Installing libmenuw (6.5_p20240601-r0)
(136/476) Installing libncurses++ (6.5_p20240601-r0)
(137/476) Installing ncurses-dev (6.5_p20240601-r0)
(138/476) Installing libedit (20240808.3.1-r0)
(139/476) Installing libedit-dev (20240808.3.1-r0)
(140/476) Installing libpcre2-16 (10.43-r0)
(141/476) Installing libpcre2-32 (10.43-r0)
(142/476) Installing pcre2-dev (10.43-r0)
(143/476) Installing sqlite (3.46.1-r0)
(144/476) Installing sqlite-dev (3.46.1-r0)
(145/476) Installing util-linux (2.40.2-r0)
util-linux-2.40.2-r0: [USRMERGE] Rewrite lib/ to usr/lib/
util-linux-2.40.2-r0: [USRMERGE] Rewrite lib/liblastlog2.so.2 to usr/lib/liblastlog2.so.2
util-linux-2.40.2-r0: [USRMERGE] Rewrite lib/liblastlog2.so.2.0.0 to usr/lib/liblastlog2.so.2.0.0
(146/476) Installing dmesg (2.40.2-r0)
dmesg-2.40.2-r0: [USRMERGE] Rewrite bin/ to usr/bin/
dmesg-2.40.2-r0: [USRMERGE] Rewrite bin/dmesg to usr/bin/dmesg
(147/476) Installing setarch (2.40.2-r0)
(148/476) Installing util-linux-misc (2.40.2-r0)
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite bin/ to usr/bin/
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite bin/getopt to usr/bin/getopt
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite bin/lsfd to usr/bin/lsfd
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite bin/more to usr/bin/more
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite bin/mountpoint to usr/bin/mountpoint
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite bin/pipesz to usr/bin/pipesz
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite bin/rev to usr/bin/rev
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite bin/wdctl to usr/bin/wdctl
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/ to usr/bin/
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/blkdiscard to usr/bin/blkdiscard
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/blkpr to usr/bin/blkpr
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/blkzone to usr/bin/blkzone
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/blockdev to usr/bin/blockdev
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/chcpu to usr/bin/chcpu
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/ctrlaltdel to usr/bin/ctrlaltdel
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/fdisk to usr/bin/fdisk
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/findfs to usr/bin/findfs
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/fsck to usr/bin/fsck
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/fsck.cramfs to usr/bin/fsck.cramfs
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/fsck.minix to usr/bin/fsck.minix
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/fsfreeze to usr/bin/fsfreeze
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/hwclock to usr/bin/hwclock
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/mkfs to usr/bin/mkfs
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/mkfs.bfs to usr/bin/mkfs.bfs
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/mkfs.cramfs to usr/bin/mkfs.cramfs
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/mkfs.minix to usr/bin/mkfs.minix
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/mkswap to usr/bin/mkswap
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/pivot_root to usr/bin/pivot_root
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/swaplabel to usr/bin/swaplabel
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/swapoff to usr/bin/swapoff
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/swapon to usr/bin/swapon
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/switch_root to usr/bin/switch_root
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite sbin/zramctl to usr/bin/zramctl
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite usr/sbin/ to usr/bin/
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite usr/sbin/addpart to usr/bin/addpart
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite usr/sbin/delpart to usr/bin/delpart
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite usr/sbin/ldattach to usr/bin/ldattach
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite usr/sbin/readprofile to usr/bin/readprofile
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite usr/sbin/resizepart to usr/bin/resizepart
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite usr/sbin/rfkill to usr/bin/rfkill
util-linux-misc-2.40.2-r0: [USRMERGE] Rewrite usr/sbin/rtcwake to usr/bin/rtcwake
(149/476) Installing mount (2.40.2-r0)
mount-2.40.2-r0: [USRMERGE] Rewrite bin/ to usr/bin/
mount-2.40.2-r0: [USRMERGE] Rewrite bin/mount to usr/bin/mount
(150/476) Installing losetup (2.40.2-r0)
losetup-2.40.2-r0: [USRMERGE] Rewrite sbin/ to usr/bin/
losetup-2.40.2-r0: [USRMERGE] Rewrite sbin/losetup to usr/bin/losetup
(151/476) Installing hexdump (2.40.2-r0)
(152/476) Installing uuidgen (2.40.2-r0)
(153/476) Installing blkid (2.40.2-r0)
blkid-2.40.2-r0: [USRMERGE] Rewrite sbin/ to usr/bin/
blkid-2.40.2-r0: [USRMERGE] Rewrite sbin/blkid to usr/bin/blkid
(154/476) Installing sfdisk (2.40.2-r0)
sfdisk-2.40.2-r0: [USRMERGE] Rewrite sbin/ to usr/bin/
sfdisk-2.40.2-r0: [USRMERGE] Rewrite sbin/sfdisk to usr/bin/sfdisk
(155/476) Installing mcookie (2.40.2-r0)
(156/476) Installing agetty (2.40.2-r0)
agetty-2.40.2-r0: [USRMERGE] Rewrite sbin/ to usr/bin/
agetty-2.40.2-r0: [USRMERGE] Rewrite sbin/agetty to usr/bin/agetty
(157/476) Installing wipefs (2.40.2-r0)
wipefs-2.40.2-r0: [USRMERGE] Rewrite sbin/ to usr/bin/
wipefs-2.40.2-r0: [USRMERGE] Rewrite sbin/wipefs to usr/bin/wipefs
(158/476) Installing cfdisk (2.40.2-r0)
cfdisk-2.40.2-r0: [USRMERGE] Rewrite sbin/ to usr/bin/
cfdisk-2.40.2-r0: [USRMERGE] Rewrite sbin/cfdisk to usr/bin/cfdisk
(159/476) Installing umount (2.40.2-r0)
umount-2.40.2-r0: [USRMERGE] Rewrite bin/ to usr/bin/
umount-2.40.2-r0: [USRMERGE] Rewrite bin/umount to usr/bin/umount
(160/476) Installing flock (2.40.2-r0)
(161/476) Installing lsblk (2.40.2-r0)
lsblk-2.40.2-r0: [USRMERGE] Rewrite bin/ to usr/bin/
lsblk-2.40.2-r0: [USRMERGE] Rewrite bin/lsblk to usr/bin/lsblk
(162/476) Installing setpriv (2.40.2-r0)
(163/476) Installing logger (2.40.2-r0)
(164/476) Installing partx (2.40.2-r0)
partx-2.40.2-r0: [USRMERGE] Rewrite usr/sbin/ to usr/bin/
partx-2.40.2-r0: [USRMERGE] Rewrite usr/sbin/partx to usr/bin/partx
(165/476) Installing fstrim (2.40.2-r0)
fstrim-2.40.2-r0: [USRMERGE] Rewrite sbin/ to usr/bin/
fstrim-2.40.2-r0: [USRMERGE] Rewrite sbin/fstrim to usr/bin/fstrim
(166/476) Installing findmnt (2.40.2-r0)
findmnt-2.40.2-r0: [USRMERGE] Rewrite bin/ to usr/bin/
findmnt-2.40.2-r0: [USRMERGE] Rewrite bin/findmnt to usr/bin/findmnt
(167/476) Installing util-linux-dev (2.40.2-r0)
(168/476) Installing glib-dev (2.80.4-r0)
(169/476) Installing cairo-dev (1.18.2-r0)
(170/476) Installing libtool (2.4.7-r3)
(171/476) Installing py3-setuptools (70.3.0-r0)
(172/476) Installing py3-setuptools-pyc (70.3.0-r0)
(173/476) Installing gobject-introspection (1.80.1-r2)
(174/476) Installing gobject-introspection-dev (1.80.1-r2)
(175/476) Installing gsettings-desktop-schemas (46.1-r0)
(176/476) Installing gsettings-desktop-schemas-dev (46.1-r0)
(177/476) Installing shared-mime-info (2.4-r0)
(178/476) Installing libjpeg-turbo (3.0.3-r0)
(179/476) Installing libsharpyuv (1.4.0-r0)
(180/476) Installing libwebp (1.4.0-r0)
(181/476) Installing tiff (4.6.0t-r0)
(182/476) Installing gdk-pixbuf (2.42.11-r1)
(183/476) Installing bubblewrap (0.10.0-r0)
(184/476) Installing xkeyboard-config (2.42-r0)
(185/476) Installing libxkbcommon (1.7.0-r0)
(186/476) Installing libgnome-desktop-4 (99944.0-r2)
(187/476) Installing hicolor-icon-theme (0.18-r0)
(188/476) Installing gtk-update-icon-cache (3.24.43-r0)
(189/476) Installing tzdata (2024a-r1)
(190/476) Installing iso-codes (4.16.0-r0)
(191/476) Installing libxfixes (6.0.1-r4)
(192/476) Installing libxcursor (1.2.2-r1)
(193/476) Installing libxdamage (1.1.6-r5)
(194/476) Installing libxi (1.8.1-r4)
(195/476) Installing libxinerama (1.1.5-r4)
(196/476) Installing libxrandr (1.5.4-r1)
(197/476) Installing avahi-libs (0.8-r18)
(198/476) Installing cups-libs (2.4.10-r0)
(199/476) Installing libepoxy (1.5.10-r1)
(200/476) Installing fribidi (1.0.15-r0)
(201/476) Installing graphene (1.10.8-r4)
(202/476) Installing mesa (24.1.5-r0)
(203/476) Installing hwdata-pci (0.385-r0)
(204/476) Installing libpciaccess (0.18.1-r0)
(205/476) Installing libdrm (2.4.123-r0)
(206/476) Installing wayland-libs-server (1.23.1-r0)
(207/476) Installing mesa-gbm (24.1.5-r0)
(208/476) Installing mesa-glapi (24.1.5-r0)
(209/476) Installing wayland-libs-client (1.23.1-r0)
(210/476) Installing libxshmfence (1.3.2-r6)
(211/476) Installing mesa-egl (24.1.5-r0)
(212/476) Installing libxxf86vm (1.1.5-r6)
(213/476) Installing mesa-gl (24.1.5-r0)
(214/476) Installing libxv (1.0.12-r5)
(215/476) Installing cdparanoia-libs (10.2-r14)
(216/476) Installing gstreamer (1.24.7-r0)
(217/476) Installing gstreamer-ptp-helper (1.24.7-r0)
(218/476) Installing libxft (2.3.8-r3)
(219/476) Installing graphite2 (1.3.14-r6)
(220/476) Installing harfbuzz (9.0.0-r0)
(221/476) Installing pango (1.54.0-r0)
(222/476) Installing libtheora (1.1.1-r18)
(223/476) Installing wayland-libs-cursor (1.23.1-r0)
(224/476) Installing wayland-libs-egl (1.23.1-r0)
(225/476) Installing gst-plugins-base (1.24.7-r0)
(226/476) Installing openexr-libiex (3.1.13-r1)
(227/476) Installing imath (3.1.11-r2)
(228/476) Installing openexr-libilmthread (3.1.13-r1)
(229/476) Installing openexr-libopenexr (3.1.13-r1)
(230/476) Installing soundtouch (2.3.3-r0)
(231/476) Installing aom-libs (3.10.0-r0)
(232/476) Installing libunibreak (6.1-r0)
(233/476) Installing libass (0.17.3-r0)
(234/476) Installing libraw1394 (2.1.2-r5)
(235/476) Installing libusb (1.0.27-r0)
(236/476) Installing libdc1394 (2.2.7-r0)
(237/476) Installing libde265 (1.0.15-r0)
(238/476) Installing tslib (1.23-r0)
(239/476) Installing directfb (1.7.7-r8)
(240/476) Installing faac (1.30-r5)
(241/476) Installing fdk-aac (2.0.2-r4)
(242/476) Installing flite (2.2-r3)
(243/476) Installing libfreeaptx (0.1.1-r1)
(244/476) Installing libxcomposite (0.4.6-r5)
(245/476) Installing libatk-1.0 (2.52.0-r0)
(246/476) Installing libxtst (1.2.5-r0)
(247/476) Installing at-spi2-core (2.52.0-r0)
(248/476) Installing libatk-bridge-2.0 (2.52.0-r0)
(249/476) Installing gtk+3.0 (3.24.43-r0)
(250/476) Installing gsm (1.0.22-r3)
(251/476) Installing libgudev (238-r0)
(252/476) Installing lcms2 (2.16-r0)
(253/476) Installing libldac (2.0.2.3-r1)
(254/476) Installing libmodplug (0.8.9.0-r3)
(255/476) Installing ca-certificates (20240705-r0)
ca-certificates-20240705-r0: [USRMERGE] Rewrite usr/sbin/ to usr/bin/
ca-certificates-20240705-r0: [USRMERGE] Rewrite usr/sbin/update-ca-certificates to usr/bin/update-ca-certificates
(256/476) Installing neon (0.33.0-r0)
(257/476) Installing libnice (0.1.22-r0)
(258/476) Installing openal-soft-libs (1.23.1-r0)
(259/476) Installing openh264 (2.4.1-r0)
(260/476) Installing openjpeg (2.5.2-r0)
(261/476) Installing librsvg (2.58.3-r0)
(262/476) Installing librtmp (2.4_git20190330-r4)
(263/476) Installing sbc (2.0-r2)
(264/476) Installing spandsp (0.0.6-r5)
(265/476) Installing libsrtp (2.5.0-r1)
(266/476) Installing libva (2.21.0-r0)
(267/476) Installing vo-aacenc (0.1.3-r3)
(268/476) Installing vo-amrwbenc (0.1.3-r3)
(269/476) Installing libwebpmux (1.4.0-r0)
(270/476) Installing libzbar (0.23.93-r1)
(271/476) Installing gst-plugins-bad (1.24.7-r0)
(272/476) Installing vulkan-loader (1.3.261.1-r0)
(273/476) Installing gtk4.0 (9999.4.14.4-r0)
(274/476) Installing libgnome-bg-4 (99944.0-r2)
(275/476) Installing libgnome-desktop-3 (99944.0-r2)
(276/476) Installing libgnome-rr-4 (99944.0-r2)
(277/476) Installing libturbojpeg (3.0.3-r0)
(278/476) Installing libjpeg-turbo-dev (3.0.3-r0)
(279/476) Installing zstd (1.5.6-r1)
(280/476) Installing zstd-dev (1.5.6-r1)
(281/476) Installing libtiffxx (4.6.0t-r0)
(282/476) Installing libwebpdecoder (1.4.0-r0)
(283/476) Installing libwebpdemux (1.4.0-r0)
(284/476) Installing libwebp-dev (1.4.0-r0)
(285/476) Installing tiff-dev (4.6.0t-r0)
(286/476) Installing gdk-pixbuf-dev (2.42.11-r1)
(287/476) Installing libpciaccess-dev (0.18.1-r0)
(288/476) Installing libdrm-dev (2.4.123-r0)
(289/476) Installing libxfixes-dev (6.0.1-r4)
(290/476) Installing libxdamage-dev (1.1.6-r5)
(291/476) Installing libxshmfence-dev (1.3.2-r6)
(292/476) Installing mesa-gles (24.1.5-r0)
(293/476) Installing llvm18-libs (18.1.8-r0)
(294/476) Installing mesa-osmesa (24.1.5-r0)
(295/476) Installing clang18-headers (18.1.8-r0)
(296/476) Installing libclc (18.1.8-r1)
(297/476) Installing spirv-llvm-translator-libs (18.1.3-r0)
(298/476) Installing spirv-tools (1.3.290.0-r0)
(299/476) Installing clang18-libs (18.1.8-r0)
(300/476) Installing libelf (0.191-r0)
(301/476) Installing mesa-rusticl (24.1.5-r0)
(302/476) Installing mesa-xatracker (24.1.5-r0)
(303/476) Installing libxxf86vm-dev (1.1.5-r6)
(304/476) Installing mesa-dev (24.1.5-r0)
(305/476) Installing libepoxy-dev (1.5.10-r1)
(306/476) Installing libxi-dev (1.8.1-r4)
(307/476) Installing libxinerama-dev (1.1.5-r4)
(308/476) Installing libxkbcommon-x11 (1.7.0-r0)
(309/476) Installing xz-dev (5.6.2-r0)
(310/476) Installing libxml2-dev (2.12.8-r0)
(311/476) Installing libxkbcommon-dev (1.7.0-r0)
(312/476) Installing wayland-protocols (1.37-r0)
(313/476) Installing dbus-dev (9991.14.10-r3)
(314/476) Installing libxtst-dev (1.2.5-r0)
(315/476) Installing at-spi2-core-dev (2.52.0-r0)
(316/476) Installing fribidi-dev (1.0.15-r0)
(317/476) Installing pango-tools (1.54.0-r0)
(318/476) Installing harfbuzz-cairo (9.0.0-r0)
(319/476) Installing harfbuzz-gobject (9.0.0-r0)
(320/476) Installing icu-data-en (74.2-r0)
Executing icu-data-en-74.2-r0.post-install
*
* If you need ICU with non-English locales and legacy charset support, install
* package icu-data-full.
*
(321/476) Installing icu-libs (74.2-r0)
(322/476) Installing harfbuzz-icu (9.0.0-r0)
(323/476) Installing harfbuzz-subset (9.0.0-r0)
(324/476) Installing graphite2-dev (1.3.14-r6)
(325/476) Installing icu (74.2-r0)
icu-74.2-r0: [USRMERGE] Rewrite usr/sbin/ to usr/bin/
icu-74.2-r0: [USRMERGE] Rewrite usr/sbin/escapesrc to usr/bin/escapesrc
icu-74.2-r0: [USRMERGE] Rewrite usr/sbin/genccode to usr/bin/genccode
icu-74.2-r0: [USRMERGE] Rewrite usr/sbin/gencmn to usr/bin/gencmn
icu-74.2-r0: [USRMERGE] Rewrite usr/sbin/gennorm2 to usr/bin/gennorm2
icu-74.2-r0: [USRMERGE] Rewrite usr/sbin/gensprep to usr/bin/gensprep
icu-74.2-r0: [USRMERGE] Rewrite usr/sbin/icupkg to usr/bin/icupkg
(326/476) Installing icu-dev (74.2-r0)
(327/476) Installing harfbuzz-dev (9.0.0-r0)
(328/476) Installing libxft-dev (2.3.8-r3)
(329/476) Installing pango-dev (1.54.0-r0)
(330/476) Installing wayland-dev (1.23.1-r0)
(331/476) Installing libxcomposite-dev (0.4.6-r5)
(332/476) Installing libxcursor-dev (1.2.2-r1)
(333/476) Installing libxrandr-dev (1.5.4-r1)
(334/476) Installing gtk+3.0-dev (3.24.43-r0)
(335/476) Installing vulkan-headers (1.3.261.1-r0)
(336/476) Installing graphene-dev (1.10.8-r4)
(337/476) Installing vulkan-loader-dev (1.3.261.1-r0)
(338/476) Installing gtk4.0-dev (9999.4.14.4-r0)
(339/476) Installing iso-codes-dev (4.16.0-r0)
(340/476) Installing libseccomp-dev (2.5.5-r1)
(341/476) Installing xkeyboard-config-dev (2.42-r0)
(342/476) Installing gnome-desktop-dev (99944.0-r2)
(343/476) Installing alsa-lib-dev (1.2.12-r0)
(344/476) Installing dconf-dev (0.40.0-r5)
(345/476) Installing libgudev-dev (238-r0)
(346/476) Installing polkit-dev (999124-r2)
(347/476) Installing sane (1.3.1-r0)
Executing sane-1.3.1-r0.pre-install
(348/476) Installing sane-udev (1.3.1-r0)
(349/476) Installing sane-dev (1.3.1-r0)
(350/476) Installing libice (1.1.1-r6)
(351/476) Installing libsm (1.2.4-r4)
(352/476) Installing libxt (1.3.0-r5)
(353/476) Installing libxpm (3.5.17-r0)
(354/476) Installing libdav1d (1.4.3-r0)
(355/476) Installing libavif (1.0.4-r0)
(356/476) Installing libgd (2.3.3-r9)
(357/476) Installing gd (2.3.3-r9)
(358/476) Installing perl (5.40.0-r2)
(359/476) Installing libavif-dev (1.0.4-r0)
(360/476) Installing libxpm-dev (3.5.17-r0)
(361/476) Installing gd-dev (2.3.3-r9)
(362/476) Installing libgmpxx (6.3.0-r2)
(363/476) Installing gmp-dev (6.3.0-r2)
(364/476) Installing libice-dev (1.1.1-r6)
(365/476) Installing libsm-dev (1.2.4-r4)
(366/476) Installing python3-dev (3.12.5-r1)
(367/476) Installing graphviz-libs (12.1.0-r0)
(368/476) Installing graphviz-dev (12.1.0-r0)
(369/476) Installing vala (0.56.16-r1)
(370/476) Installing libcolord (1.4.7-r0)
(371/476) Installing json-glib (1.8.0-r1)
(372/476) Installing libgusb (0.4.9-r0)
(373/476) Installing colord-colorhug (1.4.7-r0)
(374/476) Installing json-glib-dev (1.8.0-r1)
(375/476) Installing libusb-dev (1.0.27-r0)
(376/476) Installing libgusb-dev (0.4.9-r0)
(377/476) Installing colord-dev (1.4.7-r0)
(378/476) Installing libgpg-error-dev (1.50-r0)
(379/476) Installing libgcrypt-dev (1.10.3-r0)
(380/476) Installing gnutls-c++ (3.8.5-r0)
(381/476) Installing nettle-dev (3.10-r0)
(382/476) Installing libidn2-dev (2.3.7-r0)
(383/476) Installing libtasn1-progs (4.19.0-r2)
(384/476) Installing libtasn1-dev (4.19.0-r2)
(385/476) Installing p11-kit-dev (0.25.5-r0)
(386/476) Installing gnutls-dev (3.8.5-r0)
(387/476) Installing gdbm-tools (1.24-r0)
(388/476) Installing gdbm-dev (1.24-r0)
(389/476) Installing avahi-compat-howl (0.8-r18)
(390/476) Installing avahi-compat-libdns_sd (0.8-r18)
(391/476) Installing avahi-glib (0.8-r18)
(392/476) Installing libdaemon (0.14-r4)
(393/476) Installing libevent (2.1.12-r7)
(394/476) Installing avahi (0.8-r18)
Executing avahi-0.8-r18.pre-install
avahi-0.8-r18: [USRMERGE] Rewrite usr/sbin/ to usr/bin/
avahi-0.8-r18: [USRMERGE] Rewrite usr/sbin/avahi-daemon to usr/bin/avahi-daemon
avahi-0.8-r18: [USRMERGE] Rewrite usr/sbin/avahi-dnsconfd to usr/bin/avahi-dnsconfd
(395/476) Installing avahi-dev (0.8-r18)
(396/476) Installing cups-dev (2.4.10-r0)
(397/476) Installing libmm-glib (1.22.0-r0)
(398/476) Installing libnotify (0.8.3-r1)
(399/476) Installing libproxy (0.5.8-r0)
(400/476) Installing glib-networking (2.80.0-r0)
(401/476) Installing libsoup3 (3.6.0-r0)
(402/476) Installing geoclue (2.7.1-r1)
Executing geoclue-2.7.1-r1.pre-install
(403/476) Installing geoclue-dev (2.7.1-r1)
(404/476) Installing geocode-glib (3.26.4-r4)
(405/476) Installing libsoup (2.74.3-r2)
(406/476) Installing libgeocode-glib (3.26.4-r4)
(407/476) Installing geocode-glib-dev (3.26.4-r4)
(408/476) Installing lcms2-plugins (2.16-r0)
(409/476) Installing lcms2-dev (2.16-r0)
(410/476) Installing sound-theme-freedesktop (0.8-r1)
(411/476) Installing libcanberra (0.30-r10)
(412/476) Installing libcanberra-gstreamer (0.30-r10)
(413/476) Installing gtk+2.0 (2.24.33-r11)
(414/476) Installing libcanberra-gtk2 (0.30-r10)
(415/476) Installing libcanberra-gtk3 (0.30-r10)
(416/476) Installing perl-http-date (6.06-r0)
(417/476) Installing perl-clone (0.47-r0)
(418/476) Installing perl-uri (5.28-r0)
(419/476) Installing perl-io-html (1.004-r1)
(420/476) Installing perl-encode-locale (1.05-r5)
(421/476) Installing perl-lwp-mediatypes (6.04-r3)
(422/476) Installing perl-http-message (6.46-r0)
(423/476) Installing perl-http-cookies (6.11-r0)
(424/476) Installing perl-net-http (6.23-r1)
(425/476) Installing perl-html-tagset (3.24-r0)
(426/476) Installing perl-html-parser (3.83-r0)
(427/476) Installing perl-file-listing (6.16-r0)
(428/476) Installing perl-www-robotrules (6.02-r5)
(429/476) Installing perl-http-negotiate (6.01-r5)
(430/476) Installing perl-try-tiny (0.32-r0)
(431/476) Installing perl-libwww (6.77-r0)
(432/476) Installing perl-xml-parser (2.47-r1)
(433/476) Installing intltool (0.51.0-r8)
(434/476) Installing gtk+2.0-dev (2.24.33-r11)
(435/476) Installing libcanberra-dev (0.30-r10)
(436/476) Installing libgweather4 (4.4.2-r0)
(437/476) Installing nghttp2-dev (1.62.1-r0)
(438/476) Installing libpsl-utils (0.21.5-r2)
(439/476) Installing libpsl-dev (0.21.5-r2)
(440/476) Installing libsoup3-dev (3.6.0-r0)
(441/476) Installing libgweather4-dev (4.4.2-r0)
(442/476) Installing libnotify-dev (0.8.3-r1)
(443/476) Installing libevdev (1.13.2-r0)
(444/476) Installing libwacom (2.11.0-r0)
libwacom-2.11.0-r0: [USRMERGE] Rewrite lib/ to usr/lib/
libwacom-2.11.0-r0: [USRMERGE] Rewrite lib/udev/ to usr/lib/udev/
libwacom-2.11.0-r0: [USRMERGE] Rewrite lib/udev/hwdb.d/ to usr/lib/udev/hwdb.d/
libwacom-2.11.0-r0: [USRMERGE] Rewrite lib/udev/hwdb.d/65-libwacom.hwdb to usr/lib/udev/hwdb.d/65-libwacom.hwdb
libwacom-2.11.0-r0: [USRMERGE] Rewrite lib/udev/rules.d/ to usr/lib/udev/rules.d/
libwacom-2.11.0-r0: [USRMERGE] Rewrite lib/udev/rules.d/65-libwacom.rules to usr/lib/udev/rules.d/65-libwacom.rules
Executing libwacom-2.11.0-r0.post-install
udevadm hwdb is deprecated. Use systemd-hwdb instead.
(445/476) Installing libevdev-dev (1.13.2-r0)
(446/476) Installing libwacom-dev (2.11.0-r0)
(447/476) Installing modemmanager-dev (1.22.0-r0)
(448/476) Installing nspr (4.35-r4)
(449/476) Installing nss (3.104-r0)
(450/476) Installing libnm (9991.48.2-r2)
(451/476) Installing libndp (1.9-r1)
(452/476) Installing networkmanager (9991.48.2-r2)
Executing networkmanager-9991.48.2-r2.pre-install
networkmanager-9991.48.2-r2: [USRMERGE] Rewrite usr/sbin/ to usr/bin/
networkmanager-9991.48.2-r2: [USRMERGE] Rewrite usr/sbin/NetworkManager to usr/bin/NetworkManager
(453/476) Installing networkmanager-systemd (9991.48.2-r2)
Executing networkmanager-systemd-9991.48.2-r2.post-install
Created symlink '/etc/systemd/system/multi-user.target.wants/NetworkManager.service' → '/usr/lib/systemd/system/NetworkManager.service'.
Created symlink '/etc/systemd/system/dbus-org.freedesktop.nm-dispatcher.service' → '/usr/lib/systemd/system/NetworkManager-dispatcher.service'.
Created symlink '/etc/systemd/system/network-online.target.wants/NetworkManager-wait-online.service' → '/usr/lib/systemd/system/NetworkManager-wait-online.service'.
(454/476) Installing networkmanager-dev (9991.48.2-r2)
(455/476) Installing nspr-dev (4.35-r4)
(456/476) Installing nss-dev (3.104-r0)
(457/476) Installing libpulse-mainloop-glib (17.0-r3)
(458/476) Installing pulseaudio-dev (17.0-r3)
(459/476) Installing upower (9999-r3)
(460/476) Installing upower-systemd (9999-r3)
(461/476) Installing upower-dev (9999-r3)
(462/476) Installing gnome-settings-daemon-dev (99946.0-r1)
(463/476) Installing py3-libxml2 (2.12.8-r0)
(464/476) Installing py3-libxml2-pyc (2.12.8-r0)
(465/476) Installing itstool (2.0.7-r2)
(466/476) Installing samurai (1.2-r5)
(467/476) Installing meson (1.5.1-r0)
(468/476) Installing meson-pyc (1.5.1-r0)
(469/476) Installing meson-polkit (1.5.1-r0)
(470/476) Installing perl-yaml-syck (1.34-r5)
(471/476) Installing perl-test-pod (1.52-r4)
(472/476) Installing xmlto (0.0.29-r0)
(473/476) Installing .makedepends-gnome-session (20240903.161411)
(474/476) Installing perl-error (0.17029-r2)
(475/476) Installing perl-git (2.46.0-r0)
(476/476) Installing git-perl (2.46.0-r0)
Executing busybox-1.36.1-r31.trigger
Executing glib-2.80.4-r0.trigger
Warning: Schema “org.gnome.system.locale” has path “/system/locale/”. Paths starting with “/apps/”, “/desktop/” or “/system/” are deprecated.
Warning: Schema “org.gnome.system.proxy” has path “/system/proxy/”. Paths starting with “/apps/”, “/desktop/” or “/system/” are deprecated.
Warning: Schema “org.gnome.system.proxy.http” has path “/system/proxy/http/”. Paths starting with “/apps/”, “/desktop/” or “/system/” are deprecated.
Warning: Schema “org.gnome.system.proxy.https” has path “/system/proxy/https/”. Paths starting with “/apps/”, “/desktop/” or “/system/” are deprecated.
Warning: Schema “org.gnome.system.proxy.ftp” has path “/system/proxy/ftp/”. Paths starting with “/apps/”, “/desktop/” or “/system/” are deprecated.
Warning: Schema “org.gnome.system.proxy.socks” has path “/system/proxy/socks/”. Paths starting with “/apps/”, “/desktop/” or “/system/” are deprecated.
Executing dbus-9991.14.10-r3.trigger
Executing shared-mime-info-2.4-r0.trigger
Executing gdk-pixbuf-2.42.11-r1.trigger
Executing gtk-update-icon-cache-3.24.43-r0.trigger
Executing gtk+3.0-3.24.43-r0.trigger
Executing ca-certificates-20240705-r0.trigger
Executing gtk+2.0-2.24.33-r11.trigger
OK: 1273 MiB in 540 packages
>>> gnome-session: Cleaning up srcdir
>>> gnome-session: Cleaning up pkgdir
>>> gnome-session: Cleaning up tmpdir
>>> gnome-session: Fetching https://download.gnome.org/sources/gnome-session/46/gnome-session-46.0.tar.xz
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
9 473k 9 47931 0 0 199k 0 0:00:02 --:--:-- 0:00:02 199k
100 473k 100 473k 0 0 1673k 0 --:--:-- --:--:-- --:--:-- 8879k
>>> gnome-session: Fetching https://download.gnome.org/sources/gnome-session/46/gnome-session-46.0.tar.xz
>>> gnome-session: Checking sha512sums...
gnome-session-46.0.tar.xz: OK
>>> gnome-session: Unpacking /var/cache/distfiles/gnome-session-46.0.tar.xz...
The Meson build system
Version: 1.5.1
Source dir: /home/pmos/build/src/gnome-session-46.0
Build dir: /home/pmos/build/src/gnome-session-46.0/output
Build type: native build
Project name: gnome-session
Project version: 46.0
C compiler for the host machine: gcc (gcc 14.2.0 "gcc (Alpine 14.2.0) 14.2.0")
C linker for the host machine: gcc ld.bfd 2.43.1
Host machine cpu family: x86_64
Host machine cpu: x86_64
Found pkg-config: YES (/usr/sbin/pkg-config) 2.3.0
Run-time dependency gio-2.0 found: YES 2.80.4
Run-time dependency glib-2.0 found: YES 2.80.4
Run-time dependency gtk+-3.0 found: YES 3.24.43
Run-time dependency xtrans found: YES 1.5.0
Run-time dependency ice found: YES 1.1.1
Run-time dependency sm found: YES 1.2.4
Run-time dependency x11 found: YES 1.8.10
Run-time dependency gnome-desktop-3.0 found: YES 44.0
Run-time dependency json-glib-1.0 found: YES 1.8.0
Run-time dependency gio-unix-2.0 found: YES 2.80.4
Run-time dependency libsystemd found: YES 256
Configuring config.h using configuration
Configuring gnome-session using configuration
Dependency gio-2.0 found: YES 2.80.4 (cached)
Program /usr/bin/gdbus-codegen found: YES (/usr/bin/gdbus-codegen)
Dependency gio-2.0 found: YES 2.80.4 (cached)
Program /usr/bin/gdbus-codegen found: YES (/usr/bin/gdbus-codegen)
Dependency gio-2.0 found: YES 2.80.4 (cached)
Program /usr/bin/gdbus-codegen found: YES (/usr/bin/gdbus-codegen)
Dependency gio-2.0 found: YES 2.80.4 (cached)
Program /usr/bin/gdbus-codegen found: YES (/usr/bin/gdbus-codegen)
Dependency gio-2.0 found: YES 2.80.4 (cached)
Program /usr/bin/gdbus-codegen found: YES (/usr/bin/gdbus-codegen)
Dependency gio-2.0 found: YES 2.80.4 (cached)
Program /usr/bin/gdbus-codegen found: YES (/usr/bin/gdbus-codegen)
Run-time dependency egl found: YES 24.1.5
Run-time dependency glesv2 found: YES 24.1.5
Run-time dependency gl found: YES 24.1.5
Run-time dependency epoxy found: YES 1.5.10
Run-time dependency xcomposite found: YES 0.4.6
Configuring gnome.desktop.in using configuration
Program msgfmt found: YES (/usr/sbin/msgfmt)
Configuring gnome-xorg.desktop.in using configuration
Configuring gnome-wayland.desktop.in using configuration
Configuring gnome.session.desktop.in using configuration
Configuring gnome-dummy.session.desktop.in using configuration
Configuring gnome-session-manager@.service using configuration
Configuring gnome-session-signal-init.service using configuration
Configuring gnome-session-restart-dbus.service using configuration
Configuring gnome-session-monitor.service using configuration
Configuring gnome-session-failed.service using configuration
Configuring gnome.session.conf using configuration
Program xsltproc found: YES (/usr/sbin/xsltproc)
Configuring gnome-session.xml using configuration
Program xmlto found: YES (/usr/sbin/xmlto)
Program xsltproc found: YES (/usr/sbin/xsltproc)
Program msginit found: YES (/usr/sbin/msginit)
Program msgmerge found: YES (/usr/sbin/msgmerge)
Program xgettext found: YES (/usr/sbin/xgettext)
Dependency gio-2.0 found: YES 2.80.4 (cached)
Program /usr/bin/glib-compile-schemas found: YES (/usr/bin/glib-compile-schemas)
Build targets in project: 152
gnome-session 46.0
Directories
prefix : /usr
datadir : /usr/share
bindir : /usr/bin
libexecdir : /usr/libexec
localedir : /usr/share/locale
mandir : share/man
sysconfdir : /etc
pkgdatadir : /usr/share/gnome-session
Build Options
Debug mode : false
Use *_DISABLE_DEPRECATED: false
Build Docbook : true
Build manpages : true
Systemd Units Directory : /usr/lib/systemd/user
Session Selector Enabled: false
User defined options
auto_features : auto
bindir : /usr/bin
buildtype : plain
datadir : /usr/share
includedir : /usr/include
infodir : /usr/share/info
libdir : /usr/lib
libexecdir : /usr/libexec
localedir : /usr/share/locale
localstatedir : /var
mandir : /usr/share/man
prefix : /usr
sbindir : /usr/sbin
sharedstatedir : /var/lib
sysconfdir : /etc
werror : false
wrap_mode : nodownload
python.bytecompile : 0
b_lto : true
b_pie : true
b_staticpic : true
systemduserunitdir : /usr/lib/systemd/user
Found ninja-1.9 at /usr/sbin/ninja
INFO: autodetecting backend as ninja
INFO: calculating backend command to run: /usr/sbin/ninja -C /home/pmos/build/src/gnome-session-46.0/output
ninja: entering directory '/home/pmos/build/src/gnome-session-46.0/output'
[1/187] Building translation po/zu/LC_MESSAGES/gnome-session-46-zu.mo
[2/187] Building translation po/zh_TW/LC_MESSAGES/gnome-session-46-zh_TW.mo
[3/187] Building translation po/zh_HK/LC_MESSAGES/gnome-session-46-zh_HK.mo
[4/187] Building translation po/zh_CN/LC_MESSAGES/gnome-session-46-zh_CN.mo
[5/187] Building translation po/yo/LC_MESSAGES/gnome-session-46-yo.mo
[6/187] Building translation po/xh/LC_MESSAGES/gnome-session-46-xh.mo
[7/187] Building translation po/wa/LC_MESSAGES/gnome-session-46-wa.mo
[8/187] Building translation po/vi/LC_MESSAGES/gnome-session-46-vi.mo
[9/187] Building translation po/uz@cyrillic/LC_MESSAGES/gnome-session-46-uz@cyrillic.mo
[10/187] Building translation po/uz/LC_MESSAGES/gnome-session-46-uz.mo
[11/187] Building translation po/uk/LC_MESSAGES/gnome-session-46-uk.mo
[12/187] Building translation po/ug/LC_MESSAGES/gnome-session-46-ug.mo
[13/187] Building translation po/tr/LC_MESSAGES/gnome-session-46-tr.mo
[14/187] Building translation po/tk/LC_MESSAGES/gnome-session-46-tk.mo
[15/187] Building translation po/th/LC_MESSAGES/gnome-session-46-th.mo
[16/187] Building translation po/tg/LC_MESSAGES/gnome-session-46-tg.mo
[17/187] Building translation po/te/LC_MESSAGES/gnome-session-46-te.mo
[18/187] Building translation po/ta/LC_MESSAGES/gnome-session-46-ta.mo
[19/187] Building translation po/sv/LC_MESSAGES/gnome-session-46-sv.mo
[20/187] Building translation po/sr@latin/LC_MESSAGES/gnome-session-46-sr@latin.mo
[21/187] Building translation po/sr/LC_MESSAGES/gnome-session-46-sr.mo
[22/187] Building translation po/sq/LC_MESSAGES/gnome-session-46-sq.mo
[23/187] Building translation po/sl/LC_MESSAGES/gnome-session-46-sl.mo
[24/187] Building translation po/sk/LC_MESSAGES/gnome-session-46-sk.mo
[25/187] Building translation po/si/LC_MESSAGES/gnome-session-46-si.mo
[26/187] Building translation po/rw/LC_MESSAGES/gnome-session-46-rw.mo
[27/187] Building translation po/ru/LC_MESSAGES/gnome-session-46-ru.mo
[28/187] Building translation po/ro/LC_MESSAGES/gnome-session-46-ro.mo
[29/187] Building translation po/pt_BR/LC_MESSAGES/gnome-session-46-pt_BR.mo
[30/187] Building translation po/pt/LC_MESSAGES/gnome-session-46-pt.mo
[31/187] Building translation po/ps/LC_MESSAGES/gnome-session-46-ps.mo
[32/187] Building translation po/pl/LC_MESSAGES/gnome-session-46-pl.mo
[33/187] Building translation po/pa/LC_MESSAGES/gnome-session-46-pa.mo
[34/187] Building translation po/or/LC_MESSAGES/gnome-session-46-or.mo
[35/187] Building translation po/oc/LC_MESSAGES/gnome-session-46-oc.mo
[36/187] Building translation po/nso/LC_MESSAGES/gnome-session-46-nso.mo
[37/187] Building translation po/nn/LC_MESSAGES/gnome-session-46-nn.mo
[38/187] Building translation po/nl/LC_MESSAGES/gnome-session-46-nl.mo
[39/187] Building translation po/ne/LC_MESSAGES/gnome-session-46-ne.mo
[40/187] Building translation po/nds/LC_MESSAGES/gnome-session-46-nds.mo
[41/187] Building translation po/nb/LC_MESSAGES/gnome-session-46-nb.mo
[42/187] Building translation po/ms/LC_MESSAGES/gnome-session-46-ms.mo
[43/187] Building translation po/mr/LC_MESSAGES/gnome-session-46-mr.mo
[44/187] Building translation po/mn/LC_MESSAGES/gnome-session-46-mn.mo
[45/187] Building translation po/ml/LC_MESSAGES/gnome-session-46-ml.mo
[46/187] Building translation po/mk/LC_MESSAGES/gnome-session-46-mk.mo
[47/187] Building translation po/mjw/LC_MESSAGES/gnome-session-46-mjw.mo
[48/187] Building translation po/mi/LC_MESSAGES/gnome-session-46-mi.mo
[49/187] Building translation po/mg/LC_MESSAGES/gnome-session-46-mg.mo
[50/187] Building translation po/mai/LC_MESSAGES/gnome-session-46-mai.mo
[51/187] Building translation po/lv/LC_MESSAGES/gnome-session-46-lv.mo
[52/187] Building translation po/lt/LC_MESSAGES/gnome-session-46-lt.mo
[53/187] Building translation po/ku/LC_MESSAGES/gnome-session-46-ku.mo
[54/187] Building translation po/ko/LC_MESSAGES/gnome-session-46-ko.mo
[55/187] Building translation po/kn/LC_MESSAGES/gnome-session-46-kn.mo
[56/187] Building translation po/km/LC_MESSAGES/gnome-session-46-km.mo
[57/187] Building translation po/kk/LC_MESSAGES/gnome-session-46-kk.mo
[58/187] Building translation po/kab/LC_MESSAGES/gnome-session-46-kab.mo
[59/187] Building translation po/ka/LC_MESSAGES/gnome-session-46-ka.mo
[60/187] Building translation po/ja/LC_MESSAGES/gnome-session-46-ja.mo
[61/187] Building translation po/it/LC_MESSAGES/gnome-session-46-it.mo
[62/187] Building translation po/is/LC_MESSAGES/gnome-session-46-is.mo
[63/187] Building translation po/ig/LC_MESSAGES/gnome-session-46-ig.mo
[64/187] Building translation po/ie/LC_MESSAGES/gnome-session-46-ie.mo
[65/187] Building translation po/id/LC_MESSAGES/gnome-session-46-id.mo
[66/187] Building translation po/hy/LC_MESSAGES/gnome-session-46-hy.mo
[67/187] Building translation po/hu/LC_MESSAGES/gnome-session-46-hu.mo
[68/187] Building translation po/hr/LC_MESSAGES/gnome-session-46-hr.mo
[69/187] Building translation po/hi/LC_MESSAGES/gnome-session-46-hi.mo
[70/187] Building translation po/he/LC_MESSAGES/gnome-session-46-he.mo
[71/187] Building translation po/ha/LC_MESSAGES/gnome-session-46-ha.mo
[72/187] Building translation po/gu/LC_MESSAGES/gnome-session-46-gu.mo
[73/187] Building translation po/gl/LC_MESSAGES/gnome-session-46-gl.mo
[74/187] Building translation po/gd/LC_MESSAGES/gnome-session-46-gd.mo
[75/187] Building translation po/ga/LC_MESSAGES/gnome-session-46-ga.mo
[76/187] Building translation po/fy/LC_MESSAGES/gnome-session-46-fy.mo
[77/187] Building translation po/fur/LC_MESSAGES/gnome-session-46-fur.mo
[78/187] Building translation po/fr/LC_MESSAGES/gnome-session-46-fr.mo
[79/187] Building translation po/fi/LC_MESSAGES/gnome-session-46-fi.mo
[80/187] Building translation po/fa/LC_MESSAGES/gnome-session-46-fa.mo
[81/187] Building translation po/eu/LC_MESSAGES/gnome-session-46-eu.mo
[82/187] Building translation po/et/LC_MESSAGES/gnome-session-46-et.mo
[83/187] Building translation po/es/LC_MESSAGES/gnome-session-46-es.mo
[84/187] Building translation po/eo/LC_MESSAGES/gnome-session-46-eo.mo
[85/187] Building translation po/en@shaw/LC_MESSAGES/gnome-session-46-en@shaw.mo
[86/187] Building translation po/en_GB/LC_MESSAGES/gnome-session-46-en_GB.mo
[87/187] Building translation po/en_CA/LC_MESSAGES/gnome-session-46-en_CA.mo
[88/187] Building translation po/el/LC_MESSAGES/gnome-session-46-el.mo
[89/187] Building translation po/dz/LC_MESSAGES/gnome-session-46-dz.mo
[90/187] Building translation po/de/LC_MESSAGES/gnome-session-46-de.mo
[91/187] Building translation po/da/LC_MESSAGES/gnome-session-46-da.mo
[92/187] Building translation po/cy/LC_MESSAGES/gnome-session-46-cy.mo
[93/187] Building translation po/csb/LC_MESSAGES/gnome-session-46-csb.mo
[94/187] Building translation po/cs/LC_MESSAGES/gnome-session-46-cs.mo
[95/187] Building translation po/crh/LC_MESSAGES/gnome-session-46-crh.mo
[96/187] Building translation po/ckb/LC_MESSAGES/gnome-session-46-ckb.mo
[97/187] Building translation po/ca@valencia/LC_MESSAGES/gnome-session-46-ca@valencia.mo
[98/187] Building translation po/ca/LC_MESSAGES/gnome-session-46-ca.mo
[99/187] Building translation po/bs/LC_MESSAGES/gnome-session-46-bs.mo
[100/187] Building translation po/br/LC_MESSAGES/gnome-session-46-br.mo
[101/187] Building translation po/bn_IN/LC_MESSAGES/gnome-session-46-bn_IN.mo
[102/187] Building translation po/bn/LC_MESSAGES/gnome-session-46-bn.mo
[103/187] Building translation po/bg/LC_MESSAGES/gnome-session-46-bg.mo
[104/187] Building translation po/be@latin/LC_MESSAGES/gnome-session-46-be@latin.mo
[105/187] Building translation po/be/LC_MESSAGES/gnome-session-46-be.mo
[106/187] Building translation po/az/LC_MESSAGES/gnome-session-46-az.mo
[107/187] Building translation po/ast/LC_MESSAGES/gnome-session-46-ast.mo
[108/187] Building translation po/as/LC_MESSAGES/gnome-session-46-as.mo
[109/187] Building translation po/ar/LC_MESSAGES/gnome-session-46-ar.mo
[110/187] Building translation po/an/LC_MESSAGES/gnome-session-46-an.mo
[111/187] Building translation po/am/LC_MESSAGES/gnome-session-46-am.mo
[112/187] Building translation po/af/LC_MESSAGES/gnome-session-46-af.mo
[113/187] Building translation po/ab/LC_MESSAGES/gnome-session-46-ab.mo
[114/187] Generating doc/man/gnome-session-inhibit.1 with a custom command
[115/187] Generating doc/dbus/org.gnome.SessionManager.ref.xml with a custom command
Note: namesp. add : added namespace before processing gnome-session-inhibit
Warn: meta author : no refentry/info/author gnome-session-inhibit
Note: meta author : see http://www.docbook.org/tdg5/en/html/autho gnome-session-inhibit
Warn: meta author : no author data, so inserted a fixme gnome-session-inhibit
[116/187] Generating doc/dbus/org.gnome.SessionManager.Presence.ref.xml with a custom command
error : Unknown IO error
/home/pmos/build/src/gnome-session-46.0/gnome-session/org.gnome.SessionManager.xml:2: warning: failed to load external entity "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"
spection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"
^
[117/187] Generating doc/dbus/org.gnome.SessionManager.Inhibitor.ref.xml with a custom command
error : Unknown IO error
/home/pmos/build/src/gnome-session-46.0/gnome-session/org.gnome.SessionManager.Presence.xml:2: warning: failed to load external entity "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"
spection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"
^
[118/187] Generating doc/dbus/org.gnome.SessionManager.ClientPrivate.ref.xml with a custom command
error : Unknown IO error
/home/pmos/build/src/gnome-session-46.0/gnome-session/org.gnome.SessionManager.Inhibitor.xml:2: warning: failed to load external entity "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"
spection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"
^
[119/187] Generating doc/dbus/org.gnome.SessionManager.Client.ref.xml with a custom command
error : Unknown IO error
/home/pmos/build/src/gnome-session-46.0/gnome-session/org.gnome.SessionManager.ClientPrivate.xml:2: warning: failed to load external entity "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"
spection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"
^
[120/187] Merging translations for data/gnome-dummy.session
[121/187] Merging translations for data/gnome.session
error : Unknown IO error
/home/pmos/build/src/gnome-session-46.0/gnome-session/org.gnome.SessionManager.Client.xml:2: warning: failed to load external entity "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"
spection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"
^
[122/187] Generating doc/dbus/gnome-session with a custom command
[123/187] Merging translations for data/gnome-wayland.desktop
Note: namesp. add : added namespace before processing GNOME Session 46.0 Documentation
cp: can't preserve ownership of '/home/pmos/build/src/gnome-session-46.0/output/doc/dbus/gnome-session.html': Operation not permitted
[124/187] Merging translations for data/gnome-xorg.desktop
[125/187] Merging translations for data/gnome.desktop
[126/187] Compiling C object tools/gnome-session-check-accelerated.p/gnome-session-check-accelerated.c.o
[127/187] Compiling C object tools/gnome-session-check-accelerated-gl-helper.p/gnome-session-check-accelerated-gl-helper.c.o
[128/187] Linking target tools/gnome-session-check-accelerated-gl-helper
[129/187] Compiling C object tools/gnome-session-check-accelerated-gles-helper.p/gnome-session-check-accelerated-gles-helper.c.o
[130/187] Linking target tools/gnome-session-check-accelerated
[131/187] Compiling C object tools/gnome-session-ctl.p/gnome-session-ctl.c.o
../tools/gnome-session-check-accelerated-gles-helper.c: In function 'get_gles_renderer':
../tools/gnome-session-check-accelerated-gles-helper.c:71:9: warning: 'gdk_error_trap_push' is deprecated: Use 'gdk_x11_display_error_trap_push' instead [-Wdeprecated-declarations]
71 | gdk_error_trap_push ();
| ^~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-3.0/gdk/gdk.h:50,
from /usr/include/gtk-3.0/gtk/gtk.h:30,
from ../tools/gnome-session-check-accelerated-gles-helper.c:29:
/usr/include/gtk-3.0/gdk/gdkmain.h:70:32: note: declared here
70 | void gdk_error_trap_push (void);
| ^~~~~~~~~~~~~~~~~~~
../tools/gnome-session-check-accelerated-gles-helper.c:153:9: warning: 'gdk_error_trap_pop_ignored' is deprecated: Use 'gdk_x11_display_error_trap_pop_ignored' instead [-Wdeprecated-declarations]
153 | gdk_error_trap_pop_ignored ();
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-3.0/gdk/gdkmain.h:75:32: note: declared here
75 | void gdk_error_trap_pop_ignored (void);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
[132/187] Linking target tools/gnome-session-check-accelerated-gles-helper
[133/187] Compiling C object tools/gnome-session-inhibit.p/gnome-session-inhibit.c.o
../tools/gnome-session-ctl.c: In function 'leader_term_or_int_signal_cb':
../tools/gnome-session-ctl.c:153:13: warning: Deprecated pre-processor symbol: replace with "g_main_loop_quit"
153 | g_main_quit (data->loop);
| ^~~~~~~~~~~~~~~~~~~~~
[134/187] Linking target tools/gnome-session-ctl
[135/187] Compiling C object tools/gnome-session-quit.p/gnome-session-quit.c.o
[136/187] Linking target tools/gnome-session-inhibit
[137/187] Compiling C object gnome-session/test-process-helper.p/gsm-process-helper.c.o
[138/187] Linking target tools/gnome-session-quit
[139/187] Compiling C object gnome-session/test-process-helper.p/test-process-helper.c.o
[140/187] Compiling C object gnome-session/test-client-dbus.p/test-client-dbus.c.o
[141/187] Linking target gnome-session/test-process-helper
[142/187] Compiling C object gnome-session/test-inhibit.p/test-inhibit.c.o
[143/187] Linking target gnome-session/test-client-dbus
[144/187] Compiling C object gnome-session/gnome-session-failed.p/gsm-fail-whale-dialog.c.o
[145/187] Linking target gnome-session/test-inhibit
[146/187] Generating gdbus header gnome-session/org.gnome.SessionManager.Presence.h
[147/187] Linking target gnome-session/gnome-session-failed
[148/187] Generating gdbus source gnome-session/org.gnome.SessionManager.Presence.c
[149/187] Generating gdbus header gnome-session/org.gnome.SessionManager.Inhibitor.h
[150/187] Generating gdbus source gnome-session/org.gnome.SessionManager.Inhibitor.c
[151/187] Generating gdbus header gnome-session/org.gnome.SessionManager.App.h
[152/187] Generating gdbus source gnome-session/org.gnome.SessionManager.App.c
[153/187] Generating gdbus header gnome-session/org.gnome.SessionManager.ClientPrivate.h
[154/187] Generating gdbus source gnome-session/org.gnome.SessionManager.ClientPrivate.c
[155/187] Generating gdbus header gnome-session/org.gnome.SessionManager.Client.h
[156/187] Generating gdbus source gnome-session/org.gnome.SessionManager.Client.c
[157/187] Generating gdbus header gnome-session/org.gnome.SessionManager.h
[158/187] Generating gdbus source gnome-session/org.gnome.SessionManager.c
[159/187] Compiling C object gnome-session/gnome-session-binary.p/main.c.o
[160/187] Compiling C object gnome-session/gnome-session-binary.p/meson-generated_.._org.gnome.SessionManager.c.o
[161/187] Compiling C object gnome-session/gnome-session-binary.p/gsm-xsmp-server.c.o
[162/187] Compiling C object gnome-session/gnome-session-binary.p/gsm-xsmp-client.c.o
[163/187] Compiling C object gnome-session/gnome-session-binary.p/gsm-systemd.c.o
../gnome-session/gsm-xsmp-client.c: In function 'gsm_xsmp_client_init':
../gnome-session/gsm-xsmp-client.c:199:13: warning: Deprecated pre-processor symbol: replace with "G_ADD_PRIVATE"
199 | client->priv = GSM_XSMP_CLIENT_GET_PRIVATE (client);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../gnome-session/gsm-xsmp-client.c: In function 'gsm_xsmp_client_class_init':
../gnome-session/gsm-xsmp-client.c:1041:9: warning: 'g_type_class_add_private' is deprecated [-Wdeprecated-declarations]
1041 | g_type_class_add_private (klass, sizeof (GsmXSMPClientPrivate));
| ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
from /usr/include/glib-2.0/gobject/gbinding.h:31,
from /usr/include/glib-2.0/glib-object.h:24,
from /usr/include/glib-2.0/gio/gioenums.h:30,
from /usr/include/glib-2.0/gio/giotypes.h:30,
from /usr/include/glib-2.0/gio/gio.h:28,
from ../gnome-session/gsm-xsmp-client.c:29:
/usr/include/glib-2.0/gobject/gtype.h:1497:10: note: declared here
1497 | void g_type_class_add_private (gpointer g_class,
| ^~~~~~~~~~~~~~~~~~~~~~~~
[164/187] Compiling C object gnome-session/gnome-session-binary.p/gsm-system.c.o
../gnome-session/gsm-systemd.c: In function 'gsm_systemd_class_init':
../gnome-session/gsm-systemd.c:163:9: warning: 'g_type_class_add_private' is deprecated [-Wdeprecated-declarations]
163 | g_type_class_add_private (manager_class, sizeof (GsmSystemdPrivate));
| ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
from /usr/include/glib-2.0/gobject/gbinding.h:31,
from /usr/include/glib-2.0/glib-object.h:24,
from ../gnome-session/gsm-systemd.h:26,
from ../gnome-session/gsm-systemd.c:22:
/usr/include/glib-2.0/gobject/gtype.h:1497:10: note: declared here
1497 | void g_type_class_add_private (gpointer g_class,
| ^~~~~~~~~~~~~~~~~~~~~~~~
../gnome-session/gsm-systemd.c: In function 'gsm_systemd_init':
../gnome-session/gsm-systemd.c:375:13: warning: Deprecated pre-processor symbol: replace with "G_ADD_PRIVATE"
375 | GsmSystemdPrivate);
| ^ ~~~~~~~~~~~~~~~~~~~
../gnome-session/gsm-systemd.c: In function 'gsm_systemd_can_switch_user':
../gnome-session/gsm-systemd.c:592:9: warning: 'sd_seat_can_multi_session' is deprecated [-Wdeprecated-declarations]
592 | ret = sd_seat_can_multi_session (seat);
| ^~~
In file included from ../gnome-session/gsm-systemd.c:31:
/usr/include/systemd/sd-login.h:214:5: note: declared here
214 | int sd_seat_can_multi_session(const char *seat) _sd_deprecated_;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
[165/187] Compiling C object gnome-session/gnome-session-binary.p/gsm-store.c.o
[166/187] Compiling C object gnome-session/gnome-session-binary.p/gsm-shell.c.o
../gnome-session/gsm-store.c: In function 'gsm_store_class_init':
../gnome-session/gsm-store.c:360:9: warning: 'g_type_class_add_private' is deprecated [-Wdeprecated-declarations]
360 | g_type_class_add_private (klass, sizeof (GsmStorePrivate));
| ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
from /usr/include/glib-2.0/gobject/gbinding.h:31,
from /usr/include/glib-2.0/glib-object.h:24,
from ../gnome-session/gsm-store.c:30:
/usr/include/glib-2.0/gobject/gtype.h:1497:10: note: declared here
1497 | void g_type_class_add_private (gpointer g_class,
| ^~~~~~~~~~~~~~~~~~~~~~~~
../gnome-session/gsm-store.c: In function 'gsm_store_init':
../gnome-session/gsm-store.c:374:13: warning: Deprecated pre-processor symbol: replace with "G_ADD_PRIVATE"
374 | store->priv = GSM_STORE_GET_PRIVATE (store);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[167/187] Compiling C object gnome-session/gnome-session-binary.p/gsm-shell-extensions.c.o
../gnome-session/gsm-shell.c: In function 'gsm_shell_class_init':
../gnome-session/gsm-shell.c:182:9: warning: 'g_type_class_add_private' is deprecated [-Wdeprecated-declarations]
182 | g_type_class_add_private (shell_class, sizeof (GsmShellPrivate));
| ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
from /usr/include/glib-2.0/gobject/gbinding.h:31,
from /usr/include/glib-2.0/glib-object.h:24,
from ../gnome-session/gsm-shell.c:26:
/usr/include/glib-2.0/gobject/gtype.h:1497:10: note: declared here
1497 | void g_type_class_add_private (gpointer g_class,
| ^~~~~~~~~~~~~~~~~~~~~~~~
../gnome-session/gsm-shell.c: In function 'gsm_shell_init':
../gnome-session/gsm-shell.c:222:13: warning: Deprecated pre-processor symbol: replace with "G_ADD_PRIVATE"
222 | shell->priv = GSM_SHELL_GET_PRIVATE (shell);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[168/187] Compiling C object gnome-session/gnome-session-binary.p/gsm-session-save.c.o
../gnome-session/gsm-shell-extensions.c: In function 'gsm_shell_extensions_class_init':
../gnome-session/gsm-shell-extensions.c:74:3: warning: 'g_type_class_add_private' is deprecated [-Wdeprecated-declarations]
74 | g_type_class_add_private (object_class, sizeof (GsmShellExtensionsPrivate));
| ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
from /usr/include/glib-2.0/gobject/gbinding.h:31,
from /usr/include/glib-2.0/glib-object.h:24,
from /usr/include/glib-2.0/gio/gioenums.h:30,
from /usr/include/glib-2.0/gio/giotypes.h:30,
from /usr/include/glib-2.0/gio/gio.h:28,
from ../gnome-session/gsm-shell-extensions.c:25:
/usr/include/glib-2.0/gobject/gtype.h:1497:10: note: declared here
1497 | void g_type_class_add_private (gpointer g_class,
| ^~~~~~~~~~~~~~~~~~~~~~~~
../gnome-session/gsm-shell-extensions.c: In function 'gsm_shell_extensions_init':
../gnome-session/gsm-shell-extensions.c:169:13: warning: Deprecated pre-processor symbol: replace with "G_ADD_PRIVATE"
169 | self->priv = SHELL_EXTENSIONS_PRIVATE (self);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[169/187] Compiling C object gnome-session/gnome-session-binary.p/gsm-session-fill.c.o
[170/187] Compiling C object gnome-session/gnome-session-binary.p/gsm-process-helper.c.o
[171/187] Compiling C object gnome-session/gnome-session-binary.p/gsm-presence.c.o
[172/187] Compiling C object gnome-session/gnome-session-binary.p/gsm-manager.c.o
../gnome-session/gsm-presence.c: In function 'gsm_presence_init':
../gnome-session/gsm-presence.c:396:13: warning: Deprecated pre-processor symbol: replace with "G_ADD_PRIVATE"
396 | presence->priv = GSM_PRESENCE_GET_PRIVATE (presence);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../gnome-session/gsm-presence.c: In function 'gsm_presence_class_init':
../gnome-session/gsm-presence.c:530:9: warning: 'g_type_class_add_private' is deprecated [-Wdeprecated-declarations]
530 | g_type_class_add_private (klass, sizeof (GsmPresencePrivate));
| ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
from /usr/include/glib-2.0/gobject/gbinding.h:31,
from /usr/include/glib-2.0/glib-object.h:24,
from /usr/include/gnome-desktop-3.0/libgnome-desktop/gnome-idle-monitor.h:30,
from ../gnome-session/gsm-presence.c:28:
/usr/include/glib-2.0/gobject/gtype.h:1497:10: note: declared here
1497 | void g_type_class_add_private (gpointer g_class,
| ^~~~~~~~~~~~~~~~~~~~~~~~
[173/187] Compiling C object gnome-session/gnome-session-binary.p/gdm-log.c.o
[174/187] Compiling C object gnome-session/gnome-session-binary.p/gsm-inhibitor.c.o
[175/187] Compiling C object gnome-session/gnome-session-binary.p/gsm-fail-whale.c.o
[176/187] Compiling C object gnome-session/gnome-session-binary.p/gsm-dbus-client.c.o
../gnome-session/gsm-inhibitor.c: In function 'gsm_inhibitor_init':
../gnome-session/gsm-inhibitor.c:243:13: warning: Deprecated pre-processor symbol: replace with "G_ADD_PRIVATE"
243 | inhibitor->priv = GSM_INHIBITOR_GET_PRIVATE (inhibitor);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../gnome-session/gsm-inhibitor.c: In function 'gsm_inhibitor_class_init':
../gnome-session/gsm-inhibitor.c:604:9: warning: 'g_type_class_add_private' is deprecated [-Wdeprecated-declarations]
604 | g_type_class_add_private (klass, sizeof (GsmInhibitorPrivate));
| ^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
from /usr/include/glib-2.0/gobject/gbinding.h:31,
from /usr/include/glib-2.0/glib-object.h:24,
from ../gnome-session/gsm-inhibitor.h:22,
from ../gnome-session/gsm-inhibitor.c:27:
/usr/include/glib-2.0/gobject/gtype.h:1497:10: note: declared here
1497 | void g_type_class_add_private (gpointer g_class,
| ^~~~~~~~~~~~~~~~~~~~~~~~
[177/187] Compiling C object gnome-session/gnome-session-binary.p/gsm-client.c.o
[178/187] Compiling C object gnome-session/gnome-session-binary.p/gsm-autostart-app.c.o
../gnome-session/gsm-client.c:530:1: warning: conflicting types for 'gsm_client_query_end_session' due to enum/integer mismatch; have 'gboolean(GsmClient *, GsmClientEndSessionFlag, GError **)' {aka 'int(struct _GsmClient *, GsmClientEndSessionFlag, struct _GError **)'} [-Wenum-int-mismatch]
530 | gsm_client_query_end_session (GsmClient *client,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../gnome-session/gsm-client.c:22:
../gnome-session/gsm-client.h:115:23: note: previous declaration of 'gsm_client_query_end_session' with type 'gboolean(GsmClient *, guint, GError **)' {aka 'int(struct _GsmClient *, unsigned int, struct _GError **)'}
115 | gboolean gsm_client_query_end_session (GsmClient *client,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
../gnome-session/gsm-client.c:540:1: warning: conflicting types for 'gsm_client_end_session' due to enum/integer mismatch; have 'gboolean(GsmClient *, GsmClientEndSessionFlag, GError **)' {aka 'int(struct _GsmClient *, GsmClientEndSessionFlag, struct _GError **)'} [-Wenum-int-mismatch]
540 | gsm_client_end_session (GsmClient *client,
| ^~~~~~~~~~~~~~~~~~~~~~
../gnome-session/gsm-client.h:112:23: note: previous declaration of 'gsm_client_end_session' with type 'gboolean(GsmClient *, guint, GError **)' {aka 'int(struct _GsmClient *, unsigned int, struct _GError **)'}
112 | gboolean gsm_client_end_session (GsmClient *client,
| ^~~~~~~~~~~~~~~~~~~~~~
[179/187] Compiling C object gnome-session/gnome-session-binary.p/gsm-app.c.o
[180/187] Compiling C object gnome-session/gnome-session-binary.p/meson-generated_.._org.gnome.SessionManager.Presence.c.o
../gnome-session/gsm-app.c:40:9: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
40 | GTimeVal last_restart_time;
| ^~~~~~~~
In file included from /usr/include/glib-2.0/glib/galloca.h:34,
from /usr/include/glib-2.0/glib.h:32,
from ../gnome-session/gsm-app.c:24:
/usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
580 | struct _GTimeVal
| ^~~~~~~~~
../gnome-session/gsm-app.c: In function 'gsm_app_restart':
../gnome-session/gsm-app.c:516:9: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
516 | GTimeVal current_time;
| ^~~~~~~~
/usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
580 | struct _GTimeVal
| ^~~~~~~~~
../gnome-session/gsm-app.c:519:9: warning: 'g_get_current_time' is deprecated: Use 'g_get_real_time' instead [-Wdeprecated-declarations]
519 | g_get_current_time (¤t_time);
| ^~~~~~~~~~~~~~~~~~
In file included from /usr/include/glib-2.0/glib/giochannel.h:35,
from /usr/include/glib-2.0/glib.h:56:
/usr/include/glib-2.0/glib/gmain.h:728:8: note: declared here
728 | void g_get_current_time (GTimeVal *result);
| ^~~~~~~~~~~~~~~~~~
[181/187] Compiling C object gnome-session/gnome-session-binary.p/meson-generated_.._org.gnome.SessionManager.Inhibitor.c.o
[182/187] Compiling C object gnome-session/gnome-session-binary.p/meson-generated_.._org.gnome.SessionManager.App.c.o
[183/187] Compiling C object gnome-session/gnome-session-binary.p/meson-generated_.._org.gnome.SessionManager.ClientPrivate.c.o
[184/187] Compiling C object gnome-session/gnome-session-binary.p/meson-generated_.._org.gnome.SessionManager.Client.c.o
[185/187] Compiling C object gnome-session/libgsmutil.a.p/gsm-util.c.o
[186/187] Linking static target gnome-session/libgsmutil.a
[187/187] Linking target gnome-session/gnome-session-binary
>>> gnome-session: Entering fakeroot...
Installing gnome-session/gnome-session-binary to /home/pmos/build/pkg/gnome-session/usr/libexec
Installing gnome-session/gnome-session-failed to /home/pmos/build/pkg/gnome-session/usr/libexec
Installing tools/gnome-session-quit to /home/pmos/build/pkg/gnome-session/usr/bin
Installing tools/gnome-session-inhibit to /home/pmos/build/pkg/gnome-session/usr/bin
Installing tools/gnome-session-ctl to /home/pmos/build/pkg/gnome-session/usr/libexec
Installing tools/gnome-session-check-accelerated-gles-helper to /home/pmos/build/pkg/gnome-session/usr/libexec
Installing tools/gnome-session-check-accelerated-gl-helper to /home/pmos/build/pkg/gnome-session/usr/libexec
Installing tools/gnome-session-check-accelerated to /home/pmos/build/pkg/gnome-session/usr/libexec
Installing data/gnome.desktop to /home/pmos/build/pkg/gnome-session/usr/share/xsessions
Installing data/gnome-xorg.desktop to /home/pmos/build/pkg/gnome-session/usr/share/xsessions
Installing data/gnome-wayland.desktop to /home/pmos/build/pkg/gnome-session/usr/share/wayland-sessions
Installing data/gnome.session to /home/pmos/build/pkg/gnome-session/usr/share/gnome-session/sessions
Installing data/gnome-dummy.session to /home/pmos/build/pkg/gnome-session/usr/share/gnome-session/sessions
Installing doc/dbus/gnome-session.html to /home/pmos/build/pkg/gnome-session/usr/share/doc/gnome-session/dbus
Installing doc/man/gnome-session-inhibit.1 to /home/pmos/build/pkg/gnome-session/usr/share/man/man1
Installing po/ab/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ab/LC_MESSAGES
Installing po/af/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/af/LC_MESSAGES
Installing po/am/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/am/LC_MESSAGES
Installing po/an/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/an/LC_MESSAGES
Installing po/ar/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ar/LC_MESSAGES
Installing po/as/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/as/LC_MESSAGES
Installing po/ast/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ast/LC_MESSAGES
Installing po/az/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/az/LC_MESSAGES
Installing po/be/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/be/LC_MESSAGES
Installing po/be@latin/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/be@latin/LC_MESSAGES
Installing po/bg/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/bg/LC_MESSAGES
Installing po/bn/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/bn/LC_MESSAGES
Installing po/bn_IN/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/bn_IN/LC_MESSAGES
Installing po/br/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/br/LC_MESSAGES
Installing po/bs/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/bs/LC_MESSAGES
Installing po/ca/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ca/LC_MESSAGES
Installing po/ca@valencia/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ca@valencia/LC_MESSAGES
Installing po/ckb/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ckb/LC_MESSAGES
Installing po/crh/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/crh/LC_MESSAGES
Installing po/cs/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/cs/LC_MESSAGES
Installing po/csb/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/csb/LC_MESSAGES
Installing po/cy/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/cy/LC_MESSAGES
Installing po/da/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/da/LC_MESSAGES
Installing po/de/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/de/LC_MESSAGES
Installing po/dz/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/dz/LC_MESSAGES
Installing po/el/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/el/LC_MESSAGES
Installing po/en_CA/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/en_CA/LC_MESSAGES
Installing po/en_GB/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/en_GB/LC_MESSAGES
Installing po/en@shaw/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/en@shaw/LC_MESSAGES
Installing po/eo/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/eo/LC_MESSAGES
Installing po/es/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/es/LC_MESSAGES
Installing po/et/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/et/LC_MESSAGES
Installing po/eu/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/eu/LC_MESSAGES
Installing po/fa/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/fa/LC_MESSAGES
Installing po/fi/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/fi/LC_MESSAGES
Installing po/fr/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/fr/LC_MESSAGES
Installing po/fur/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/fur/LC_MESSAGES
Installing po/fy/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/fy/LC_MESSAGES
Installing po/ga/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ga/LC_MESSAGES
Installing po/gd/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/gd/LC_MESSAGES
Installing po/gl/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/gl/LC_MESSAGES
Installing po/gu/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/gu/LC_MESSAGES
Installing po/ha/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ha/LC_MESSAGES
Installing po/he/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/he/LC_MESSAGES
Installing po/hi/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/hi/LC_MESSAGES
Installing po/hr/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/hr/LC_MESSAGES
Installing po/hu/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/hu/LC_MESSAGES
Installing po/hy/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/hy/LC_MESSAGES
Installing po/id/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/id/LC_MESSAGES
Installing po/ie/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ie/LC_MESSAGES
Installing po/ig/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ig/LC_MESSAGES
Installing po/is/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/is/LC_MESSAGES
Installing po/it/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/it/LC_MESSAGES
Installing po/ja/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ja/LC_MESSAGES
Installing po/ka/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ka/LC_MESSAGES
Installing po/kab/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/kab/LC_MESSAGES
Installing po/kk/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/kk/LC_MESSAGES
Installing po/km/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/km/LC_MESSAGES
Installing po/kn/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/kn/LC_MESSAGES
Installing po/ko/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ko/LC_MESSAGES
Installing po/ku/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ku/LC_MESSAGES
Installing po/lt/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/lt/LC_MESSAGES
Installing po/lv/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/lv/LC_MESSAGES
Installing po/mai/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/mai/LC_MESSAGES
Installing po/mg/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/mg/LC_MESSAGES
Installing po/mi/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/mi/LC_MESSAGES
Installing po/mjw/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/mjw/LC_MESSAGES
Installing po/mk/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/mk/LC_MESSAGES
Installing po/ml/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ml/LC_MESSAGES
Installing po/mn/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/mn/LC_MESSAGES
Installing po/mr/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/mr/LC_MESSAGES
Installing po/ms/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ms/LC_MESSAGES
Installing po/nb/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/nb/LC_MESSAGES
Installing po/nds/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/nds/LC_MESSAGES
Installing po/ne/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ne/LC_MESSAGES
Installing po/nl/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/nl/LC_MESSAGES
Installing po/nn/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/nn/LC_MESSAGES
Installing po/nso/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/nso/LC_MESSAGES
Installing po/oc/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/oc/LC_MESSAGES
Installing po/or/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/or/LC_MESSAGES
Installing po/pa/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/pa/LC_MESSAGES
Installing po/pl/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/pl/LC_MESSAGES
Installing po/ps/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ps/LC_MESSAGES
Installing po/pt/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/pt/LC_MESSAGES
Installing po/pt_BR/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/pt_BR/LC_MESSAGES
Installing po/ro/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ro/LC_MESSAGES
Installing po/ru/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ru/LC_MESSAGES
Installing po/rw/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/rw/LC_MESSAGES
Installing po/si/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/si/LC_MESSAGES
Installing po/sk/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/sk/LC_MESSAGES
Installing po/sl/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/sl/LC_MESSAGES
Installing po/sq/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/sq/LC_MESSAGES
Installing po/sr/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/sr/LC_MESSAGES
Installing po/sr@latin/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/sr@latin/LC_MESSAGES
Installing po/sv/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/sv/LC_MESSAGES
Installing po/ta/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ta/LC_MESSAGES
Installing po/te/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/te/LC_MESSAGES
Installing po/tg/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/tg/LC_MESSAGES
Installing po/th/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/th/LC_MESSAGES
Installing po/tk/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/tk/LC_MESSAGES
Installing po/tr/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/tr/LC_MESSAGES
Installing po/ug/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/ug/LC_MESSAGES
Installing po/uk/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/uk/LC_MESSAGES
Installing po/uz/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/uz/LC_MESSAGES
Installing po/uz@cyrillic/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/uz@cyrillic/LC_MESSAGES
Installing po/vi/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/vi/LC_MESSAGES
Installing po/wa/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/wa/LC_MESSAGES
Installing po/xh/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/xh/LC_MESSAGES
Installing po/yo/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/yo/LC_MESSAGES
Installing po/zh_CN/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/zh_CN/LC_MESSAGES
Installing po/zh_HK/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/zh_HK/LC_MESSAGES
Installing po/zh_TW/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/zh_TW/LC_MESSAGES
Installing po/zu/LC_MESSAGES/gnome-session-46.mo to /home/pmos/build/pkg/gnome-session/usr/share/locale/zu/LC_MESSAGES
Installing /home/pmos/build/src/gnome-session-46.0/output/gnome-session/gnome-session to /home/pmos/build/pkg/gnome-session/usr/bin
Installing /home/pmos/build/src/gnome-session-46.0/data/org.gnome.SessionManager.gschema.xml to /home/pmos/build/pkg/gnome-session/usr/share/glib-2.0/schemas
Installing /home/pmos/build/src/gnome-session-46.0/output/data/gnome-session-manager@.service to /home/pmos/build/pkg/gnome-session/usr/lib/systemd/user
Installing /home/pmos/build/src/gnome-session-46.0/output/data/gnome-session-signal-init.service to /home/pmos/build/pkg/gnome-session/usr/lib/systemd/user
Installing /home/pmos/build/src/gnome-session-46.0/output/data/gnome-session-restart-dbus.service to /home/pmos/build/pkg/gnome-session/usr/lib/systemd/user
Installing /home/pmos/build/src/gnome-session-46.0/output/data/gnome-session-monitor.service to /home/pmos/build/pkg/gnome-session/usr/lib/systemd/user
Installing /home/pmos/build/src/gnome-session-46.0/output/data/gnome-session-failed.service to /home/pmos/build/pkg/gnome-session/usr/lib/systemd/user
Installing /home/pmos/build/src/gnome-session-46.0/data/gnome-session-wayland@.target to /home/pmos/build/pkg/gnome-session/usr/lib/systemd/user
Installing /home/pmos/build/src/gnome-session-46.0/data/gnome-session-wayland.target to /home/pmos/build/pkg/gnome-session/usr/lib/systemd/user
Installing /home/pmos/build/src/gnome-session-46.0/data/gnome-session-x11@.target to /home/pmos/build/pkg/gnome-session/usr/lib/systemd/user
Installing /home/pmos/build/src/gnome-session-46.0/data/gnome-session-x11.target to /home/pmos/build/pkg/gnome-session/usr/lib/systemd/user
Installing /home/pmos/build/src/gnome-session-46.0/data/gnome-session-x11-services.target to /home/pmos/build/pkg/gnome-session/usr/lib/systemd/user
Installing /home/pmos/build/src/gnome-session-46.0/data/gnome-session-x11-services-ready.target to /home/pmos/build/pkg/gnome-session/usr/lib/systemd/user
Installing /home/pmos/build/src/gnome-session-46.0/data/gnome-session@.target to /home/pmos/build/pkg/gnome-session/usr/lib/systemd/user
Installing /home/pmos/build/src/gnome-session-46.0/data/gnome-session.target to /home/pmos/build/pkg/gnome-session/usr/lib/systemd/user
Installing /home/pmos/build/src/gnome-session-46.0/data/gnome-session-pre.target to /home/pmos/build/pkg/gnome-session/usr/lib/systemd/user
Installing /home/pmos/build/src/gnome-session-46.0/data/gnome-session-manager.target to /home/pmos/build/pkg/gnome-session/usr/lib/systemd/user
Installing /home/pmos/build/src/gnome-session-46.0/data/gnome-session-initialized.target to /home/pmos/build/pkg/gnome-session/usr/lib/systemd/user
Installing /home/pmos/build/src/gnome-session-46.0/data/gnome-session-shutdown.target to /home/pmos/build/pkg/gnome-session/usr/lib/systemd/user
Installing /home/pmos/build/src/gnome-session-46.0/data/gnome-session-failed.target to /home/pmos/build/pkg/gnome-session/usr/lib/systemd/user
Installing /home/pmos/build/src/gnome-session-46.0/data/gnome-launched-override.scope.conf to /home/pmos/build/pkg/gnome-session/usr/lib/systemd/user/gnome-launched-.scope.d
Installing /home/pmos/build/src/gnome-session-46.0/output/data/gnome.session.conf to /home/pmos/build/pkg/gnome-session/usr/lib/systemd/user/gnome-session@gnome.target.d
Installing /home/pmos/build/src/gnome-session-46.0/data/hardware-compatibility to /home/pmos/build/pkg/gnome-session/usr/share/gnome-session
Installing /home/pmos/build/src/gnome-session-46.0/data/gnome-portals.conf to /home/pmos/build/pkg/gnome-session/usr/share/xdg-desktop-portal
Installing /home/pmos/build/src/gnome-session-46.0/doc/man/gnome-session.1 to /home/pmos/build/pkg/gnome-session/usr/share/man/man1
Installing /home/pmos/build/src/gnome-session-46.0/doc/man/gnome-session-quit.1 to /home/pmos/build/pkg/gnome-session/usr/share/man/man1
Running custom install script '/usr/bin/python3 /home/pmos/build/src/gnome-session-46.0/meson_post_install.py /usr/share'
Skipping custom install script because DESTDIR is set '/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas'
>>> gnome-session-lang*: Running split function lang...
>>> gnome-session-lang*: Preparing subpackage gnome-session-lang...
>>> gnome-session-lang*: Running postcheck for gnome-session-lang
>>> gnome-session-doc*: Running split function doc...
>>> gnome-session-doc*: Preparing subpackage gnome-session-doc...
>>> gnome-session-doc*: Running postcheck for gnome-session-doc
>>> gnome-session-systemd*: Running split function systemd...
'/home/pmos/build/pkg/gnome-session/usr/lib/systemd' -> '/home/pmos/build/pkg/gnome-session-systemd/usr/lib/systemd'
>>> gnome-session-systemd*: Preparing subpackage gnome-session-systemd...
>>> gnome-session-systemd*: Stripping binaries
>>> WARNING: gnome-session-systemd*: No arch specific binaries found so arch should probably be set to "noarch"
>>> gnome-session-systemd*: Running postcheck for gnome-session-systemd
>>> gnome-session*: Running postcheck for gnome-session
>>> gnome-session*: Preparing package gnome-session...
>>> gnome-session*: Stripping binaries
>>> gnome-session-doc*: Scanning shared objects
>>> gnome-session-lang*: Scanning shared objects
>>> gnome-session-systemd*: Scanning shared objects
>>> gnome-session*: Scanning shared objects
>>> gnome-session-doc*: Tracing dependencies...
>>> gnome-session-doc*: Package size: 100.0 KB
>>> gnome-session-doc*: Compressing data...
>>> gnome-session-doc*: Create checksum...
>>> gnome-session-doc*: Create gnome-session-doc-99946.0-r1.apk
>>> gnome-session-lang*: Tracing dependencies...
>>> gnome-session-lang*: Package size: 2.1 MB
>>> gnome-session-lang*: Compressing data...
>>> gnome-session-lang*: Create checksum...
>>> gnome-session-lang*: Create gnome-session-lang-99946.0-r1.apk
>>> gnome-session-systemd*: Tracing dependencies...
>>> gnome-session-systemd*: Package size: 108.0 KB
>>> gnome-session-systemd*: Compressing data...
>>> gnome-session-systemd*: Create checksum...
>>> gnome-session-systemd*: Create gnome-session-systemd-99946.0-r1.apk
>>> gnome-session*: Tracing dependencies...
alsa-plugins-pulse
bash
dconf
polkit
so:libEGL.so.1
so:libGL.so.1
so:libGLESv2.so.2
so:libICE.so.6
so:libSM.so.6
so:libX11.so.6
so:libXcomposite.so.1
so:libc.musl-x86_64.so.1
so:libepoxy.so.0
so:libgdk-3.so.0
so:libgio-2.0.so.0
so:libglib-2.0.so.0
so:libgnome-desktop-3.so.20
so:libgobject-2.0.so.0
so:libgtk-3.so.0
so:libintl.so.8
so:libjson-glib-1.0.so.0
so:libsystemd.so.0
>>> gnome-session*: Package size: 464.0 KB
>>> gnome-session*: Compressing data...
>>> gnome-session*: Create checksum...
>>> gnome-session*: Create gnome-session-99946.0-r1.apk
>>> gnome-session: Build complete at Tue, 03 Sep 2024 16:14:35 +0000 elapsed time 0h 0m 25s
>>> gnome-session: Cleaning up srcdir
>>> gnome-session: Cleaning up pkgdir
>>> gnome-session: Uninstalling dependencies...
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/476) Purging .makedepends-gnome-session (20240903.161411)
(2/476) Purging alsa-plugins-pulse (1.2.7.1-r3)
(3/476) Purging polkit-systemd (999124-r2)
(4/476) Purging meson-polkit (1.5.1-r0)
(5/476) Purging polkit (999124-r2)
(6/476) Purging gnome-desktop-dev (99944.0-r2)
(7/476) Purging libgnome-bg-4 (99944.0-r2)
(8/476) Purging libgnome-desktop-3 (99944.0-r2)
(9/476) Purging libgnome-desktop-4 (99944.0-r2)
(10/476) Purging bubblewrap (0.10.0-r0)
(11/476) Purging libgnome-rr-4 (99944.0-r2)
(12/476) Purging gnome-settings-daemon-dev (99946.0-r1)
(13/476) Purging alsa-lib-dev (1.2.12-r0)
(14/476) Purging colord-dev (1.4.7-r0)
(15/476) Purging dconf-dev (0.40.0-r5)
(16/476) Purging dconf (0.40.0-r5)
(17/476) Purging gobject-introspection-dev (1.80.1-r2)
(18/476) Purging libtool (2.4.7-r3)
(19/476) Purging py3-setuptools-pyc (70.3.0-r0)
(20/476) Purging py3-setuptools (70.3.0-r0)
(21/476) Purging sane-dev (1.3.1-r0)
(22/476) Purging sane-udev (1.3.1-r0)
(23/476) Purging sane (1.3.1-r0)
(24/476) Purging vala (0.56.16-r1)
(25/476) Purging colord-colorhug (1.4.7-r0)
(26/476) Purging libcolord (1.4.7-r0)
(27/476) Purging cups-dev (2.4.10-r0)
(28/476) Purging libgcrypt-dev (1.10.3-r0)
(29/476) Purging geoclue-dev (2.7.1-r1)
(30/476) Purging geoclue (2.7.1-r1)
(31/476) Purging lcms2-dev (2.16-r0)
(32/476) Purging lcms2-plugins (2.16-r0)
(33/476) Purging libcanberra-dev (0.30-r10)
(34/476) Purging libcanberra-gtk2 (0.30-r10)
(35/476) Purging libcanberra-gtk3 (0.30-r10)
(36/476) Purging libgweather4-dev (4.4.2-r0)
(37/476) Purging libgweather4 (4.4.2-r0)
(38/476) Purging libnotify-dev (0.8.3-r1)
(39/476) Purging libnotify (0.8.3-r1)
(40/476) Purging libwacom-dev (2.11.0-r0)
(41/476) Purging libwacom (2.11.0-r0)
(42/476) Purging modemmanager-dev (1.22.0-r0)
(43/476) Purging libmm-glib (1.22.0-r0)
(44/476) Purging networkmanager-dev (9991.48.2-r2)
(45/476) Purging networkmanager-systemd (9991.48.2-r2)
Executing networkmanager-systemd-9991.48.2-r2.pre-deinstall
Too few arguments.
ERROR: networkmanager-systemd-9991.48.2-r2.pre-deinstall: script exited with error 1
(46/476) Purging networkmanager (9991.48.2-r2)
(47/476) Purging libnm (9991.48.2-r2)
(48/476) Purging nss-dev (3.104-r0)
(49/476) Purging nss (3.104-r0)
(50/476) Purging polkit-dev (999124-r2)
(51/476) Purging polkit-libs (999124-r2)
(52/476) Purging pulseaudio-dev (17.0-r3)
(53/476) Purging libpulse-mainloop-glib (17.0-r3)
(54/476) Purging libpulse (17.0-r3)
(55/476) Purging gtk+3.0-dev (3.24.43-r0)
(56/476) Purging itstool (2.0.7-r2)
(57/476) Purging py3-libxml2-pyc (2.12.8-r0)
(58/476) Purging py3-libxml2 (2.12.8-r0)
(59/476) Purging meson-pyc (1.5.1-r0)
(60/476) Purging meson (1.5.1-r0)
(61/476) Purging samurai (1.2-r5)
(62/476) Purging upower-dev (9999-r3)
(63/476) Purging upower-systemd (9999-r3)
(64/476) Purging upower (9999-r3)
(65/476) Purging xmlto (0.0.29-r0)
(66/476) Purging perl-yaml-syck (1.34-r5)
(67/476) Purging perl-test-pod (1.52-r4)
(68/476) Purging bash (5.2.32-r0)
Executing bash-5.2.32-r0.pre-deinstall
(69/476) Purging agetty (2.40.2-r0)
(70/476) Purging avahi-dev (0.8-r18)
(71/476) Purging gdbm-dev (1.24-r0)
(72/476) Purging gdbm-tools (1.24-r0)
(73/476) Purging avahi-compat-howl (0.8-r18)
(74/476) Purging avahi-compat-libdns_sd (0.8-r18)
(75/476) Purging avahi-glib (0.8-r18)
(76/476) Purging avahi (0.8-r18)
(77/476) Purging blkid (2.40.2-r0)
(78/476) Purging cfdisk (2.40.2-r0)
(79/476) Purging dbus-daemon-launch-helper (9991.14.10-r3)
(80/476) Purging dbus-systemd (9991.14.10-r3)
(81/476) Purging dmesg (2.40.2-r0)
(82/476) Purging findmnt (2.40.2-r0)
(83/476) Purging flock (2.40.2-r0)
(84/476) Purging fstrim (2.40.2-r0)
(85/476) Purging geocode-glib-dev (3.26.4-r4)
(86/476) Purging geocode-glib (3.26.4-r4)
(87/476) Purging libgeocode-glib (3.26.4-r4)
(88/476) Purging git-perl (2.46.0-r0)
(89/476) Purging perl-git (2.46.0-r0)
(90/476) Purging perl-error (0.17029-r2)
(91/476) Purging gnutls-dev (3.8.5-r0)
(92/476) Purging gnutls-c++ (3.8.5-r0)
(93/476) Purging gobject-introspection (1.80.1-r2)
(94/476) Purging graphviz-dev (12.1.0-r0)
(95/476) Purging gd-dev (2.3.3-r9)
(96/476) Purging gd (2.3.3-r9)
(97/476) Purging libgd (2.3.3-r9)
(98/476) Purging libsm-dev (1.2.4-r4)
(99/476) Purging python3-dev (3.12.5-r1)
(100/476) Purging graphviz-libs (12.1.0-r0)
(101/476) Purging gsettings-desktop-schemas-dev (46.1-r0)
(102/476) Purging gstreamer-ptp-helper (1.24.7-r0)
(103/476) Purging gtk+2.0-dev (2.24.33-r11)
(104/476) Purging intltool (0.51.0-r8)
(105/476) Purging perl-xml-parser (2.47-r1)
(106/476) Purging perl-libwww (6.77-r0)
(107/476) Purging perl-http-cookies (6.11-r0)
(108/476) Purging perl-net-http (6.23-r1)
(109/476) Purging perl-html-parser (3.83-r0)
(110/476) Purging perl-html-tagset (3.24-r0)
(111/476) Purging perl-file-listing (6.16-r0)
(112/476) Purging perl-www-robotrules (6.02-r5)
(113/476) Purging perl-http-negotiate (6.01-r5)
(114/476) Purging perl-http-message (6.46-r0)
(115/476) Purging perl-clone (0.47-r0)
(116/476) Purging perl-http-date (6.06-r0)
(117/476) Purging perl-uri (5.28-r0)
(118/476) Purging perl-io-html (1.004-r1)
(119/476) Purging perl-lwp-mediatypes (6.04-r3)
(120/476) Purging perl-encode-locale (1.05-r5)
(121/476) Purging perl-try-tiny (0.32-r0)
(122/476) Purging perl (5.40.0-r2)
(123/476) Purging gtk4.0-dev (9999.4.14.4-r0)
(124/476) Purging at-spi2-core-dev (2.52.0-r0)
(125/476) Purging libepoxy-dev (1.5.10-r1)
(126/476) Purging libxinerama-dev (1.1.5-r4)
(127/476) Purging libxkbcommon-dev (1.7.0-r0)
(128/476) Purging libxkbcommon-x11 (1.7.0-r0)
(129/476) Purging wayland-protocols (1.37-r0)
(130/476) Purging hexdump (2.40.2-r0)
(131/476) Purging iso-codes-dev (4.16.0-r0)
(132/476) Purging libasyncns (0.8-r3)
(133/476) Purging libavif-dev (1.0.4-r0)
(134/476) Purging libavif (1.0.4-r0)
(135/476) Purging libcanberra-gstreamer (0.30-r10)
(136/476) Purging libdaemon (0.14-r4)
(137/476) Purging libdav1d (1.4.3-r0)
(138/476) Purging libevdev-dev (1.13.2-r0)
(139/476) Purging libevdev (1.13.2-r0)
(140/476) Purging libevent (2.1.12-r7)
(141/476) Purging libgpg-error-dev (1.50-r0)
(142/476) Purging libgudev-dev (238-r0)
(143/476) Purging libgusb-dev (0.4.9-r0)
(144/476) Purging libgusb (0.4.9-r0)
(145/476) Purging libice-dev (1.1.1-r6)
(146/476) Purging libndp (1.9-r1)
(147/476) Purging libseccomp-dev (2.5.5-r1)
(148/476) Purging libsoup (2.74.3-r2)
(149/476) Purging libsoup3-dev (3.6.0-r0)
(150/476) Purging libsoup3 (3.6.0-r0)
(151/476) Purging glib-networking (2.80.0-r0)
(152/476) Purging gsettings-desktop-schemas (46.1-r0)
(153/476) Purging libtasn1-dev (4.19.0-r2)
(154/476) Purging libtasn1-progs (4.19.0-r2)
(155/476) Purging libusb-dev (1.0.27-r0)
(156/476) Purging libxcomposite-dev (0.4.6-r5)
(157/476) Purging libxcursor-dev (1.2.2-r1)
(158/476) Purging libxml2-dev (2.12.8-r0)
(159/476) Purging libxpm-dev (3.5.17-r0)
(160/476) Purging libxpm (3.5.17-r0)
(161/476) Purging libxrandr-dev (1.5.4-r1)
(162/476) Purging libxt (1.3.0-r5)
(163/476) Purging libxtst-dev (1.2.5-r0)
(164/476) Purging logger (2.40.2-r0)
(165/476) Purging losetup (2.40.2-r0)
(166/476) Purging lsblk (2.40.2-r0)
(167/476) Purging mcookie (2.40.2-r0)
(168/476) Purging mesa-dev (24.1.5-r0)
(169/476) Purging libxdamage-dev (1.1.6-r5)
(170/476) Purging libxshmfence-dev (1.3.2-r6)
(171/476) Purging mesa-gles (24.1.5-r0)
(172/476) Purging mesa-osmesa (24.1.5-r0)
(173/476) Purging mesa-rusticl (24.1.5-r0)
(174/476) Purging clang18-headers (18.1.8-r0)
(175/476) Purging libclc (18.1.8-r1)
(176/476) Purging mesa-xatracker (24.1.5-r0)
(177/476) Purging mount (2.40.2-r0)
(178/476) Purging nettle-dev (3.10-r0)
(179/476) Purging gmp-dev (6.3.0-r2)
(180/476) Purging libgmpxx (6.3.0-r2)
(181/476) Purging nghttp2-dev (1.62.1-r0)
(182/476) Purging nspr-dev (4.35-r4)
(183/476) Purging nspr (4.35-r4)
(184/476) Purging p11-kit-dev (0.25.5-r0)
(185/476) Purging pango-dev (1.54.0-r0)
(186/476) Purging pango-tools (1.54.0-r0)
(187/476) Purging partx (2.40.2-r0)
(188/476) Purging py3-packaging-pyc (24.1-r0)
(189/476) Purging py3-parsing-pyc (3.1.2-r1)
(190/476) Purging python3-pyc (3.12.5-r1)
(191/476) Purging python3-pycache-pyc0 (3.12.5-r1)
(192/476) Purging xcb-proto-pyc (1.16.0-r1)
(193/476) Purging pyc (3.12.5-r1)
(194/476) Purging setpriv (2.40.2-r0)
(195/476) Purging sfdisk (2.40.2-r0)
(196/476) Purging soxr (0.1.3-r7)
(197/476) Purging speexdsp (1.2.1-r2)
(198/476) Purging spirv-llvm-translator-libs (18.1.3-r0)
(199/476) Purging spirv-tools (1.3.290.0-r0)
(200/476) Purging systemd-dev (256-r3)
(201/476) Purging tdb-libs (1.4.10-r0)
(202/476) Purging umount (2.40.2-r0)
(203/476) Purging util-linux-misc (2.40.2-r0)
(204/476) Purging setarch (2.40.2-r0)
(205/476) Purging uuidgen (2.40.2-r0)
(206/476) Purging vulkan-loader-dev (1.3.261.1-r0)
(207/476) Purging vulkan-headers (1.3.261.1-r0)
(208/476) Purging wayland-dev (1.23.1-r0)
(209/476) Purging wipefs (2.40.2-r0)
(210/476) Purging xkeyboard-config-dev (2.42-r0)
(211/476) Purging xz-dev (5.6.2-r0)
(212/476) Purging gtk4.0 (9999.4.14.4-r0)
(213/476) Purging tzdata (2024a-r1)
(214/476) Purging iso-codes (4.16.0-r0)
(215/476) Purging gst-plugins-bad (1.24.7-r0)
(216/476) Purging gst-plugins-base (1.24.7-r0)
(217/476) Purging flite (2.2-r3)
(218/476) Purging libsndfile (1.2.2-r0)
(219/476) Purging alsa-lib (1.2.12-r0)
(220/476) Purging aom-libs (3.10.0-r0)
(221/476) Purging gtk+3.0 (3.24.43-r0)
Executing gtk+3.0-3.24.43-r0.post-deinstall
(222/476) Purging libatk-bridge-2.0 (2.52.0-r0)
(223/476) Purging at-spi2-core (2.52.0-r0)
(224/476) Purging systemd-logind (256-r3)
(225/476) Purging dbus (9991.14.10-r3)
(226/476) Purging shadow (4.16.0-r0)
(227/476) Purging libgudev (238-r0)
(228/476) Purging libcanberra (0.30-r10)
(229/476) Purging sound-theme-freedesktop (0.8-r1)
(230/476) Purging systemd-udevd (256-r3)
(231/476) Purging systemd-journald (256-r3)
(232/476) Purging kbd (2.6.4-r2)
(233/476) Purging kbd-misc (2.6.4-r2)
(234/476) Purging kmod (32-r3)
(235/476) Purging systemd (256-r3)
(236/476) Purging util-linux-login (2.40.2-r0)
(237/476) Purging runuser (2.40.2-r0)
(238/476) Purging less (661-r0)
(239/476) Purging audit-libs (4.0.1-r0)
(240/476) Purging gtk+2.0 (2.24.33-r11)
Executing gtk+2.0-2.24.33-r11.post-deinstall
(241/476) Purging gtk-update-icon-cache (3.24.43-r0)
(242/476) Purging hicolor-icon-theme (0.18-r0)
(243/476) Purging cups-libs (2.4.10-r0)
(244/476) Purging avahi-libs (0.8-r18)
(245/476) Purging harfbuzz-dev (9.0.0-r0)
(246/476) Purging harfbuzz-cairo (9.0.0-r0)
(247/476) Purging harfbuzz-gobject (9.0.0-r0)
(248/476) Purging harfbuzz-icu (9.0.0-r0)
(249/476) Purging harfbuzz-subset (9.0.0-r0)
(250/476) Purging graphite2-dev (1.3.14-r6)
(251/476) Purging cairo-dev (1.18.2-r0)
(252/476) Purging cairo-tools (1.18.2-r0)
(253/476) Purging xcb-util-dev (0.4.1-r3)
(254/476) Purging util-macros (1.20.1-r0)
(255/476) Purging xcb-util (0.4.1-r3)
(256/476) Purging libxft-dev (2.3.8-r3)
(257/476) Purging fontconfig-dev (2.15.0-r1)
(258/476) Purging freetype-dev (2.13.2-r0)
(259/476) Purging brotli-dev (1.1.0-r2)
(260/476) Purging brotli (1.1.0-r2)
(261/476) Purging json-glib-dev (1.8.0-r1)
(262/476) Purging gdk-pixbuf-dev (2.42.11-r1)
(263/476) Purging graphene-dev (1.10.8-r4)
(264/476) Purging graphene (1.10.8-r4)
(265/476) Purging glib-dev (2.80.4-r0)
(266/476) Purging bzip2-dev (1.0.8-r6)
(267/476) Purging docbook-xsl (1.79.2-r9)
Executing docbook-xsl-1.79.2-r9.pre-deinstall
(268/476) Purging docbook-xml (4.5-r9)
Executing docbook-xml-4.5-r9.pre-deinstall
(269/476) Purging gettext-dev (0.22.5-r0)
(270/476) Purging xz (5.6.2-r0)
(271/476) Purging gettext-asprintf (0.22.5-r0)
(272/476) Purging gettext (0.22.5-r0)
(273/476) Purging gettext-envsubst (0.22.5-r0)
(274/476) Purging libxml2-utils (2.12.8-r0)
(275/476) Purging libxslt (1.1.39-r1)
(276/476) Purging py3-packaging (24.1-r0)
(277/476) Purging py3-parsing (3.1.2-r1)
(278/476) Purging pcre2-dev (10.43-r0)
(279/476) Purging libpcre2-16 (10.43-r0)
(280/476) Purging libpcre2-32 (10.43-r0)
(281/476) Purging libedit-dev (20240808.3.1-r0)
(282/476) Purging ncurses-dev (6.5_p20240601-r0)
(283/476) Purging libncurses++ (6.5_p20240601-r0)
(284/476) Purging libedit (20240808.3.1-r0)
(285/476) Purging bsd-compat-headers (0.7.2-r6)
(286/476) Purging neon (0.33.0-r0)
(287/476) Purging ca-certificates (20240705-r0)
Executing ca-certificates-20240705-r0.post-deinstall
(288/476) Purging librsvg (2.58.3-r0)
(289/476) Purging pango (1.54.0-r0)
Executing pango-1.54.0-r0.pre-deinstall
(290/476) Purging cairo-gobject (1.18.2-r0)
(291/476) Purging cairo (1.18.2-r0)
(292/476) Purging cdparanoia-libs (10.2-r14)
(293/476) Purging clang18-libs (18.1.8-r0)
(294/476) Purging cryptsetup-libs (2.7.4-r0)
(295/476) Purging dbus-dev (9991.14.10-r3)
(296/476) Purging util-linux-dev (2.40.2-r0)
(297/476) Purging libfdisk (2.40.2-r0)
(298/476) Purging libsmartcols (2.40.2-r0)
(299/476) Purging util-linux (2.40.2-r0)
(300/476) Purging libzbar (0.23.93-r1)
(301/476) Purging dbus-libs (9991.14.10-r3)
(302/476) Purging device-mapper-libs (2.03.23-r4)
(303/476) Purging directfb (1.7.7-r8)
(304/476) Purging libproxy (0.5.8-r0)
(305/476) Purging duktape (2.7.0-r1)
(306/476) Purging expat-dev (2.6.2-r0)
(307/476) Purging expat (2.6.2-r0)
(308/476) Purging faac (1.30-r5)
(309/476) Purging fdk-aac (2.0.2-r4)
(310/476) Purging libxft (2.3.8-r3)
(311/476) Purging libass (0.17.3-r0)
(312/476) Purging fontconfig (2.15.0-r1)
(313/476) Purging harfbuzz (9.0.0-r0)
(314/476) Purging freetype (2.13.2-r0)
(315/476) Purging fribidi-dev (1.0.15-r0)
(316/476) Purging fribidi (1.0.15-r0)
(317/476) Purging libxxf86vm-dev (1.1.5-r6)
(318/476) Purging libxrender-dev (0.9.11-r5)
(319/476) Purging libxi-dev (1.8.1-r4)
(320/476) Purging libxi (1.8.1-r4)
(321/476) Purging libxfixes-dev (6.0.1-r4)
(322/476) Purging libxext-dev (1.3.6-r2)
(323/476) Purging libx11-dev (1.8.10-r0)
(324/476) Purging xtrans (1.5.0-r0)
(325/476) Purging libxcb-dev (1.16.1-r0)
(326/476) Purging xcb-proto (1.16.0-r1)
(327/476) Purging python3 (3.12.5-r1)
(328/476) Purging gdbm (1.24-r0)
(329/476) Purging gdk-pixbuf (2.42.11-r1)
Executing gdk-pixbuf-2.42.11-r1.pre-deinstall
(330/476) Purging shared-mime-info (2.4-r0)
Executing shared-mime-info-2.4-r0.post-deinstall
(331/476) Purging gettext-libs (0.22.5-r0)
(332/476) Purging gstreamer (1.24.7-r0)
(333/476) Purging json-glib (1.8.0-r1)
(334/476) Purging libnice (0.1.22-r0)
(335/476) Purging libatk-1.0 (2.52.0-r0)
(336/476) Purging glib (2.80.4-r0)
(337/476) Purging libmicrohttpd (0.9.77-r0)
(338/476) Purging librtmp (2.4_git20190330-r4)
(339/476) Purging gnutls (3.8.5-r0)
(340/476) Purging graphite2 (1.3.14-r6)
(341/476) Purging gsm (1.0.22-r3)
(342/476) Purging libdrm-dev (2.4.123-r0)
(343/476) Purging libpciaccess-dev (0.18.1-r0)
(344/476) Purging mesa-gl (24.1.5-r0)
(345/476) Purging libva (2.21.0-r0)
(346/476) Purging mesa-egl (24.1.5-r0)
(347/476) Purging mesa-gbm (24.1.5-r0)
(348/476) Purging mesa (24.1.5-r0)
(349/476) Purging libdrm (2.4.123-r0)
(350/476) Purging libpciaccess (0.18.1-r0)
(351/476) Purging hwdata-pci (0.385-r0)
(352/476) Purging icu-dev (74.2-r0)
(353/476) Purging icu (74.2-r0)
(354/476) Purging icu-libs (74.2-r0)
(355/476) Purging icu-data-en (74.2-r0)
(356/476) Purging openexr-libopenexr (3.1.13-r1)
(357/476) Purging imath (3.1.11-r2)
(358/476) Purging json-c (0.17-r0)
(359/476) Purging kmod-libs (32-r3)
(360/476) Purging lcms2 (2.16-r0)
(361/476) Purging libapparmor (3.1.7-r3)
(362/476) Purging libmount (2.40.2-r0)
(363/476) Purging libblkid (2.40.2-r0)
(364/476) Purging libxdmcp-dev (1.1.5-r1)
(365/476) Purging libxv (1.0.12-r5)
(366/476) Purging libxrandr (1.5.4-r1)
(367/476) Purging libxinerama (1.1.5-r4)
(368/476) Purging libxtst (1.2.5-r0)
(369/476) Purging libxxf86vm (1.1.5-r6)
(370/476) Purging libxext (1.3.6-r2)
(371/476) Purging libxcursor (1.2.2-r1)
(372/476) Purging libxdamage (1.1.6-r5)
(373/476) Purging libxrender (0.9.11-r5)
(374/476) Purging libxcomposite (0.4.6-r5)
(375/476) Purging libxfixes (6.0.1-r4)
(376/476) Purging libx11 (1.8.10-r0)
(377/476) Purging libxcb (1.16.1-r0)
(378/476) Purging libxdmcp (1.1.5-r1)
(379/476) Purging libbsd (0.12.2-r0)
(380/476) Purging libbz2 (1.0.8-r6)
(381/476) Purging libcap-ng (0.8.5-r0)
(382/476) Purging libdc1394 (2.2.7-r0)
(383/476) Purging libde265 (1.0.15-r0)
(384/476) Purging libeconf (0.6.3-r0)
(385/476) Purging libelf (0.191-r0)
(386/476) Purging libepoxy (1.5.10-r1)
(387/476) Purging libffi-dev (3.4.6-r0)
(388/476) Purging linux-headers (6.6-r0)
(389/476) Purging llvm18-libs (18.1.8-r0)
(390/476) Purging wayland-libs-cursor (1.23.1-r0)
(391/476) Purging wayland-libs-client (1.23.1-r0)
(392/476) Purging p11-kit (0.25.5-r0)
(393/476) Purging wayland-libs-server (1.23.1-r0)
(394/476) Purging libffi (3.4.6-r0)
(395/476) Purging libflac (1.4.3-r1)
(396/476) Purging libformw (6.5_p20240601-r0)
(397/476) Purging libfreeaptx (0.1.1-r1)
(398/476) Purging libgcrypt (1.10.3-r0)
(399/476) Purging libgpg-error (1.50-r0)
(400/476) Purging libsm (1.2.4-r4)
(401/476) Purging libice (1.1.1-r6)
(402/476) Purging libpsl-dev (0.21.5-r2)
(403/476) Purging libpsl-utils (0.21.5-r2)
(404/476) Purging libidn2-dev (2.3.7-r0)
(405/476) Purging libintl (0.22.5-r0)
(406/476) Purging tiff-dev (4.6.0t-r0)
(407/476) Purging libtiffxx (4.6.0t-r0)
(408/476) Purging libjpeg-turbo-dev (3.0.3-r0)
(409/476) Purging libturbojpeg (3.0.3-r0)
(410/476) Purging spandsp (0.0.6-r5)
(411/476) Purging tiff (4.6.0t-r0)
(412/476) Purging libjpeg-turbo (3.0.3-r0)
(413/476) Purging libldac (2.0.2.3-r1)
(414/476) Purging libltdl (2.4.7-r3)
(415/476) Purging libmd (1.1.0-r0)
(416/476) Purging libmenuw (6.5_p20240601-r0)
(417/476) Purging libmodplug (0.8.9.0-r3)
(418/476) Purging libpanelw (6.5_p20240601-r0)
(419/476) Purging sqlite-dev (3.46.1-r0)
(420/476) Purging sqlite-libs (3.46.1-r0)
(421/476) Purging sqlite (3.46.1-r0)
(422/476) Purging readline (8.2.13-r0)
(423/476) Purging libncursesw (6.5_p20240601-r0)
(424/476) Purging ncurses-terminfo-base (6.5_p20240601-r0)
(425/476) Purging libtheora (1.1.1-r18)
(426/476) Purging libvorbis (1.3.7-r2)
(427/476) Purging libogg (1.3.5-r5)
(428/476) Purging libpng-dev (1.6.43-r0)
(429/476) Purging libpng (1.6.43-r0)
(430/476) Purging libraw1394 (2.1.2-r5)
(431/476) Purging libseccomp (2.5.5-r1)
(432/476) Purging libwebp-dev (1.4.0-r0)
(433/476) Purging libwebpdecoder (1.4.0-r0)
(434/476) Purging libwebpdemux (1.4.0-r0)
(435/476) Purging libwebpmux (1.4.0-r0)
(436/476) Purging libwebp (1.4.0-r0)
(437/476) Purging libsharpyuv (1.4.0-r0)
(438/476) Purging libsrtp (2.5.0-r1)
(439/476) Purging libtasn1 (4.19.0-r2)
(440/476) Purging libunibreak (6.1-r0)
(441/476) Purging libusb (1.0.27-r0)
(442/476) Purging libuuid (2.40.2-r0)
(443/476) Purging libxau-dev (1.0.11-r4)
(444/476) Purging libxau (1.0.11-r4)
(445/476) Purging libxkbcommon (1.7.0-r0)
(446/476) Purging xkeyboard-config (2.42-r0)
(447/476) Purging libxml2 (2.12.8-r0)
(448/476) Purging libxshmfence (1.3.2-r6)
(449/476) Purging linux-pam (1.6.1-r0)
(450/476) Purging mesa-glapi (24.1.5-r0)
(451/476) Purging mpdecimal (4.0.0-r0)
(452/476) Purging nettle (3.10-r0)
(453/476) Purging openal-soft-libs (1.23.1-r0)
(454/476) Purging openexr-libilmthread (3.1.13-r1)
(455/476) Purging openexr-libiex (3.1.13-r1)
(456/476) Purging openh264 (2.4.1-r0)
(457/476) Purging openjpeg (2.5.2-r0)
(458/476) Purging opus (1.5.2-r0)
(459/476) Purging orc (0.4.38-r0)
(460/476) Purging pixman-dev (0.43.4-r0)
(461/476) Purging pixman (0.43.4-r0)
(462/476) Purging sbc (2.0-r2)
(463/476) Purging utmps-libs (0.1.2.2-r1)
(464/476) Purging skalibs (2.14.2.0-r0)
(465/476) Purging soundtouch (2.3.3-r0)
(466/476) Purging systemd-libs (256-r3)
(467/476) Purging tslib (1.23-r0)
(468/476) Purging vo-aacenc (0.1.3-r3)
(469/476) Purging vo-amrwbenc (0.1.3-r3)
(470/476) Purging vulkan-loader (1.3.261.1-r0)
(471/476) Purging wayland-libs-egl (1.23.1-r0)
(472/476) Purging xorgproto (2024.1-r0)
(473/476) Purging xz-libs (5.6.2-r0)
(474/476) Purging zlib-dev (1.3.1-r1)
(475/476) Purging zstd-dev (1.5.6-r1)
(476/476) Purging zstd (1.5.6-r1)
Executing busybox-1.36.1-r31.trigger
OK: 262 MiB in 64 packages
>>> gnome-session: Updating the pmos/x86_64 repository index...
>>> gnome-session: Signing the index...
mv: can't preserve ownership of '/mnt/pmbootstrap/packages/x86_64/APKINDEX.tar.gz.2624': Operation not permitted
(002271) [16:14:36] (native) uninstall build dependencies
(002271) [16:14:36] (native) % cd /home/pmos/build; busybox su pmos -c SUDO_APK='abuild-apk --no-progress' HOME=/home/pmos abuild undeps
ERROR: No such package: .makedepends-gnome-session
(002271) [16:14:36] NOTE: chroot is still active (use 'pmbootstrap shutdown' as necessary)
(002271) [16:14:36] DONE!
|