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 |
This is a big file! Only the last 128KiB is shown. Click here to download the full log.
(232/559) Installing libproxy (0.4.18-r2)
(233/559) Installing glib-networking (2.76.0-r1)
(234/559) Installing libpsl (0.21.2-r0)
(235/559) Installing libsoup3 (3.4.2-r0)
(236/559) Installing libwoff2common (1.0.2-r2)
(237/559) Installing libwoff2enc (1.0.2-r2)
(238/559) Installing libxslt (1.1.38-r0)
(239/559) Installing webkit2gtk-4.1 (2.40.1-r2)
(240/559) Installing krb5-conf (1.0-r2)
(241/559) Installing libcom_err (1.47.0-r2)
(242/559) Installing keyutils-libs (1.6.3-r3)
(243/559) Installing libverto (0.3.2-r2)
(244/559) Installing krb5-libs (1.20.1-r1)
(245/559) Installing rest1 (0.9.1-r1)
(246/559) Installing gnome-online-accounts (3.48.0-r1)
(247/559) Installing libgtop (2.40.0-r1)
(248/559) Installing libmm-glib (1.20.6-r1)
(249/559) Installing nspr (4.35-r2)
(250/559) Installing nss (3.89.1-r0)
(251/559) Installing libnm (1.42.6-r0)
(252/559) Installing mobile-broadband-provider-info (20230416-r0)
(253/559) Installing libnma (1.10.6-r1)
(254/559) Installing libpulse-mainloop-glib (9999_git20220621-r0)
(255/559) Installing cracklib-words (2.9.11-r2)
(256/559) Installing cracklib (2.9.11-r2)
(257/559) Installing libpwquality (1.4.5-r0)
(258/559) Installing talloc (2.4.0-r1)
(259/559) Installing tevent (0.14.1-r1)
(260/559) Installing samba-util-libs (4.18.2-r0)
(261/559) Installing jansson (2.14-r3)
(262/559) Installing libsasl (2.1.28-r4)
(263/559) Installing libldap (2.6.4-r3)
(264/559) Installing lmdb (0.9.30-r2)
(265/559) Installing ldb (2.7.2-r1)
(266/559) Installing popt (1.19-r2)
(267/559) Installing libwbclient (4.18.2-r0)
(268/559) Installing samba-libs (4.18.2-r0)
(269/559) Installing libsmbclient (4.18.2-r0)
(270/559) Installing udisks2-libs (2.9.4-r1)
(271/559) Installing udev-init-scripts (35-r1)
(272/559) Installing udev-init-scripts-openrc (35-r1)
(273/559) Installing kmod-libs (30-r3)
(274/559) Installing eudev (3.2.11-r8)
(275/559) Installing eudev-openrc (3.2.11-r8)
(276/559) Installing libwacom (2.6.0-r1)
Executing libwacom-2.6.0-r1.post-install
(277/559) Installing gnome-control-center (44.1-r2)
Executing gnome-control-center-44.1-r2.pre-install
*
* Note that the privacy settings in GNOME settings isn't respected by geoclue
* for applications that are not sandboxed (running in flatpak), so it will
* provide location information to any application that asks it, and will not
* show any applications BUT ones run via flatpak
*
* This is working as intended by geoclue upstream[1] and applications that
* are not sandboxed have other methods of acquiring information provided
* by geoclue
*
* GNOME settings also tracks what they want to do with their privacy panel
* in regards to the problem above here[2]
*
* [1] https://gitlab.freedesktop.org/geoclue/geoclue/issues/111
* [2] https://gitlab.gnome.org/GNOME/gnome-control-center/-/issues/805
*
(278/559) Installing perl (5.36.1-r2)
(279/559) Installing font-util (1.4.0-r1)
(280/559) Installing font-adobe-source-code-pro (2.040-r0)
(281/559) Installing font-cantarell (0.303.1-r1)
(282/559) Installing adwaita-icon-theme (44.0-r0)
(283/559) Installing unzip (6.0-r14)
(284/559) Installing cairo-tools (1.17.8-r1)
(285/559) Installing expat (2.5.0-r1)
(286/559) Installing expat-dev (2.5.0-r1)
(287/559) Installing brotli (1.0.9-r14)
(288/559) Installing brotli-dev (1.0.9-r14)
(289/559) Installing zlib-dev (1.2.13-r1)
(290/559) Installing libpng-dev (1.6.39-r3)
(291/559) Installing freetype-dev (2.13.0-r5)
(292/559) Installing fontconfig-dev (2.14.2-r3)
(293/559) Installing xorgproto (2022.2-r0)
(294/559) Installing libxau-dev (1.0.11-r2)
(295/559) Installing xcb-proto (1.15.2-r2)
(296/559) Installing xcb-proto-pyc (1.15.2-r2)
(297/559) Installing libxdmcp-dev (1.1.4-r2)
(298/559) Installing libxcb-dev (1.15-r1)
(299/559) Installing xtrans (1.4.0-r3)
(300/559) Installing libx11-dev (1.8.4-r3)
(301/559) Installing libxext-dev (1.3.5-r2)
(302/559) Installing libxrender-dev (0.9.11-r3)
(303/559) Installing pixman-dev (0.42.2-r1)
(304/559) Installing util-macros (1.20.0-r0)
(305/559) Installing xcb-util (0.4.1-r2)
(306/559) Installing xcb-util-dev (0.4.1-r2)
(307/559) Installing bzip2-dev (1.0.8-r5)
(308/559) Installing libxml2-utils (2.11.4-r0)
(309/559) Installing docbook-xml (4.5-r8)
Executing docbook-xml-4.5-r8.post-install
(310/559) Installing docbook-xsl (1.79.2-r8)
Executing docbook-xsl-1.79.2-r8.post-install
(311/559) Installing xz (5.4.3-r0)
(312/559) Installing gettext-asprintf (0.21.1-r7)
(313/559) Installing gettext-libs (0.21.1-r7)
(314/559) Installing gettext-envsubst (0.21.1-r7)
(315/559) Installing gettext (0.21.1-r7)
(316/559) Installing gettext-dev (0.21.1-r7)
(317/559) Installing linux-headers (6.3-r0)
(318/559) Installing libffi-dev (3.4.4-r2)
(319/559) Installing bsd-compat-headers (0.7.2-r5)
(320/559) Installing libformw (6.4_p20230506-r0)
(321/559) Installing libmenuw (6.4_p20230506-r0)
(322/559) Installing libncurses++ (6.4_p20230506-r0)
(323/559) Installing ncurses-dev (6.4_p20230506-r0)
(324/559) Installing libedit (20221030.3.1-r1)
(325/559) Installing libedit-dev (20221030.3.1-r1)
(326/559) Installing libpcre2-16 (10.42-r1)
(327/559) Installing libpcre2-32 (10.42-r1)
(328/559) Installing pcre2-dev (10.42-r1)
(329/559) Installing libuuid (2.38.1-r7)
(330/559) Installing libfdisk (2.38.1-r7)
(331/559) Installing libsmartcols (2.38.1-r7)
(332/559) Installing util-linux-dev (2.38.1-r7)
(333/559) Installing glib-dev (2.76.3-r0)
(334/559) Installing cairo-dev (1.17.8-r1)
(335/559) Installing libtool (2.4.7-r2)
(336/559) Installing gobject-introspection-dev (1.76.1-r3)
(337/559) Installing gsettings-desktop-schemas-dev (44.0-r0)
(338/559) Installing libgnome-desktop-3 (44.0-r1)
(339/559) Installing libjpeg-turbo-dev (2.1.5.1-r2)
(340/559) Installing zstd (1.5.5-r4)
(341/559) Installing zstd-dev (1.5.5-r4)
(342/559) Installing libtiffxx (4.5.0-r6)
(343/559) Installing libwebp-dev (1.3.0-r2)
(344/559) Installing tiff-dev (4.5.0-r6)
(345/559) Installing gdk-pixbuf-dev (2.42.10-r5)
(346/559) Installing dbus-dev (1.14.6-r3)
(347/559) Installing libxfixes-dev (6.0.1-r2)
(348/559) Installing libxi-dev (1.8.1-r0)
(349/559) Installing libxtst-dev (1.2.4-r2)
(350/559) Installing at-spi2-core-dev (2.48.2-r0)
(351/559) Installing libpciaccess-dev (0.17-r2)
(352/559) Installing libdrm-dev (2.4.115-r4)
(353/559) Installing libxdamage-dev (1.1.6-r2)
(354/559) Installing libxshmfence-dev (1.3.2-r2)
(355/559) Installing mesa-gles (23.0.3-r3)
(356/559) Installing llvm15-libs (15.0.7-r6)
(357/559) Installing mesa-osmesa (23.0.3-r3)
(358/559) Installing mesa-xatracker (23.0.3-r3)
(359/559) Installing libxxf86vm-dev (1.1.5-r3)
(360/559) Installing mesa-dev (23.0.3-r3)
(361/559) Installing libepoxy-dev (1.5.10-r1)
(362/559) Installing libxinerama-dev (1.1.5-r2)
(363/559) Installing wayland-protocols (1.31-r1)
(364/559) Installing libxkbcommon-x11 (1.5.0-r2)
(365/559) Installing xz-dev (5.4.3-r0)
(366/559) Installing libxml2-dev (2.11.4-r0)
(367/559) Installing libxkbcommon-dev (1.5.0-r2)
(368/559) Installing fribidi-dev (1.0.13-r0)
(369/559) Installing pango-tools (1.50.14-r1)
(370/559) Installing harfbuzz-cairo (7.3.0-r0)
(371/559) Installing harfbuzz-gobject (7.3.0-r0)
(372/559) Installing harfbuzz-subset (7.3.0-r0)
(373/559) Installing graphite2-dev (1.3.14-r5)
(374/559) Installing icu (73.1-r1)
(375/559) Installing icu-dev (73.1-r1)
(376/559) Installing harfbuzz-dev (7.3.0-r0)
(377/559) Installing libxft-dev (2.3.8-r1)
(378/559) Installing pango-dev (1.50.14-r1)
(379/559) Installing wayland-dev (1.22.0-r2)
(380/559) Installing libxcomposite-dev (0.4.6-r3)
(381/559) Installing libxcursor-dev (1.2.1-r2)
(382/559) Installing libxrandr-dev (1.5.3-r2)
(383/559) Installing gtk+3.0-dev (9999_git20210602-r4)
(384/559) Installing vulkan-headers (1.3.243.0-r0)
(385/559) Installing graphene-dev (1.10.8-r2)
(386/559) Installing gtk4.0-dev (4.10.3-r1)
(387/559) Installing iso-codes-dev (4.15.0-r0)
(388/559) Installing libseccomp-dev (2.5.4-r2)
(389/559) Installing eudev-dev (3.2.11-r8)
(390/559) Installing xkeyboard-config-dev (2.38-r0)
(391/559) Installing gnome-desktop-dev (44.0-r1)
(392/559) Installing libcanberra-gtk2 (0.30-r9)
(393/559) Installing libcanberra-gtk3 (0.30-r9)
(394/559) Installing perl-http-date (6.05-r1)
(395/559) Installing perl-clone (0.46-r1)
(396/559) Installing perl-uri (5.19-r0)
(397/559) Installing perl-io-html (1.004-r0)
(398/559) Installing perl-encode-locale (1.05-r4)
(399/559) Installing perl-lwp-mediatypes (6.04-r2)
(400/559) Installing perl-http-message (6.44-r0)
(401/559) Installing perl-http-cookies (6.10-r0)
(402/559) Installing perl-net-http (6.22-r0)
(403/559) Installing perl-html-tagset (3.20-r4)
(404/559) Installing perl-html-parser (3.81-r1)
(405/559) Installing perl-file-listing (6.15-r0)
(406/559) Installing perl-www-robotrules (6.02-r3)
(407/559) Installing perl-http-negotiate (6.01-r3)
(408/559) Installing perl-try-tiny (0.31-r1)
(409/559) Installing perl-libwww (6.68-r1)
(410/559) Installing perl-xml-parser (2.46-r5)
(411/559) Installing intltool (0.51.0-r8)
(412/559) Installing gtk+2.0-dev (2.24.33-r9)
(413/559) Installing libcanberra-dev (0.30-r9)
(414/559) Installing libice (1.1.1-r2)
(415/559) Installing libsm (1.2.4-r1)
(416/559) Installing libice-dev (1.1.1-r2)
(417/559) Installing libsm-dev (1.2.4-r1)
(418/559) Installing startup-notification (0.12-r5)
(419/559) Installing startup-notification-dev (0.12-r5)
(420/559) Installing nghttp2-dev (1.53.0-r0)
(421/559) Installing libpsl-utils (0.21.2-r0)
(422/559) Installing libidn2-dev (2.3.4-r1)
(423/559) Installing libpsl-dev (0.21.2-r0)
(424/559) Installing sqlite (3.41.2-r2)
(425/559) Installing sqlite-dev (3.41.2-r2)
(426/559) Installing libsoup3-dev (3.4.2-r0)
(427/559) Installing polkit-common (122-r5)
Executing polkit-common-122-r5.pre-install
(428/559) Installing polkit-openrc (122-r5)
(429/559) Installing dbus-glib (0.112-r5)
(430/559) Installing dbus-glib-dev (0.112-r5)
(431/559) Installing polkit-dev (122-r5)
(432/559) Installing perl-error (0.17029-r1)
(433/559) Installing perl-git (2.40.1-r0)
(434/559) Installing git-perl (2.40.1-r0)
(435/559) Installing p11-kit-dev (0.24.1-r2)
(436/559) Installing gcr4-dev (4.1.0-r0)
(437/559) Installing mozjs102 (102.11.0-r0)
(438/559) Installing gjs (1.76.0-r1)
(439/559) Installing nspr-dev (4.35-r2)
(440/559) Installing mozjs102-dev (102.11.0-r0)
(441/559) Installing gjs-dev (1.76.0-r1)
(442/559) Installing fftw-single-libs (3.3.10-r2)
(443/559) Installing pulseaudio (9999_git20220621-r0)
Executing pulseaudio-9999_git20220621-r0.post-install
(444/559) Installing pulseaudio-bluez (9999_git20220621-r0)
(445/559) Installing pulseaudio-alsa (9999_git20220621-r0)
(446/559) Installing dialog (1.3.20230209-r1)
(447/559) Installing alsa-ucm-conf (1.2.9-r0)
(448/559) Installing alsa-utils (1.2.9-r0)
(449/559) Installing alsa-utils-openrc (1.2.9-r0)
(450/559) Installing pulseaudio-openrc (9999_git20220621-r0)
(451/559) Installing libcanberra-pulse (0.30-r9)
(452/559) Installing avahi-glib (0.8-r13)
(453/559) Installing geoclue (2.7.0-r2)
Executing geoclue-2.7.0-r2.pre-install
(454/559) Installing geocode-glib (3.26.4-r3)
(455/559) Installing libgweather4 (4.2.0-r1)
(456/559) Installing gnome-settings-daemon (44.1-r0)
(457/559) Installing mutter-mobile-schemas (44_git20230405-r0)
(458/559) Installing xorg-server-common (21.1.8-r0)
(459/559) Installing xkbcomp (1.4.6-r1)
(460/559) Installing libfontenc (1.1.7-r2)
(461/559) Installing libxfont2 (2.0.6-r0)
(462/559) Installing libtirpc-conf (1.3.3-r2)
(463/559) Installing libtirpc-nokrb (1.3.3-r2)
(464/559) Installing libxcvt (0.1.2-r0)
(465/559) Installing xwayland (23.1.1-r0)
(466/559) Installing mtdev (1.1.6-r2)
(467/559) Installing libinput-libs (1.23.0-r0)
(468/559) Installing libinput-udev (1.23.0-r0)
(469/559) Installing pipewire-libs (0.3.70-r1)
(470/559) Installing mutter-mobile (44_git20230405-r0)
(471/559) Installing json-glib-dev (1.6.6-r1)
(472/559) Installing mutter-mobile-dev (44_git20230405-r0)
(473/559) Installing pulseaudio-dev (9999_git20220621-r0)
(474/559) Installing gcr-dev (3.41.1-r3)
(475/559) Installing libsoup (2.74.3-r1)
(476/559) Installing libgdata (0.18.1-r3)
(477/559) Installing gnome-online-accounts-dev (3.48.0-r1)
(478/559) Installing libsoup-dev (2.74.3-r1)
(479/559) Installing libgdata-dev (0.18.1-r3)
(480/559) Installing abseil-cpp-city (20230125.3-r1)
(481/559) Installing abseil-cpp-low-level-hash (20230125.3-r1)
(482/559) Installing abseil-cpp-hash (20230125.3-r1)
(483/559) Installing abseil-cpp-raw-hash-set (20230125.3-r1)
(484/559) Installing abseil-cpp-raw-logging-internal (20230125.3-r1)
(485/559) Installing abseil-cpp-strings-internal (20230125.3-r1)
(486/559) Installing abseil-cpp-strings (20230125.3-r1)
(487/559) Installing abseil-cpp-spinlock-wait (20230125.3-r1)
(488/559) Installing abseil-cpp-base (20230125.3-r1)
(489/559) Installing abseil-cpp-malloc-internal (20230125.3-r1)
(490/559) Installing abseil-cpp-debugging-internal (20230125.3-r1)
(491/559) Installing abseil-cpp-stacktrace (20230125.3-r1)
(492/559) Installing abseil-cpp-symbolize (20230125.3-r1)
(493/559) Installing abseil-cpp-int128 (20230125.3-r1)
(494/559) Installing abseil-cpp-time-zone (20230125.3-r1)
(495/559) Installing abseil-cpp-time (20230125.3-r1)
(496/559) Installing abseil-cpp-synchronization (20230125.3-r1)
(497/559) Installing boost1.82-thread (1.82.0-r1)
(498/559) Installing libprotobuf (3.21.12-r2)
(499/559) Installing libphonenumber (8.13.12-r0)
(500/559) Installing webkit2gtk-6.0 (2.40.1-r2)
(501/559) Installing evolution-data-server (3.48.1-r1)
(502/559) Installing libical-dev (3.0.16-r4)
(503/559) Installing libgpg-error-dev (1.47-r1)
(504/559) Installing libgcrypt-dev (1.10.2-r1)
(505/559) Installing libsecret-dev (0.20.5-r3)
(506/559) Installing evolution-data-server-dev (3.48.1-r1)
(507/559) Installing lua5.4-libs (5.4.6-r0)
(508/559) Installing highlight (4.5-r2)
(509/559) Installing libcmark (0.30.3-r1)
(510/559) Installing lz4-libs (1.9.4-r4)
(511/559) Installing libarchive (3.6.2-r2)
(512/559) Installing gnome-autoar (0.4.4-r0)
(513/559) Installing gspell (1.12.1-r0)
(514/559) Installing evolution (3.48.1-r1)
(515/559) Installing enchant2-dev (2.3.4-r4)
(516/559) Installing py3-libxml2 (2.11.4-r0)
(517/559) Installing py3-libxml2-pyc (2.11.4-r0)
(518/559) Installing itstool (2.0.7-r1)
(519/559) Installing libgeocode-glib (3.26.4-r3)
(520/559) Installing geocode-glib-dev (3.26.4-r3)
(521/559) Installing libgweather4-dev (4.2.0-r1)
(522/559) Installing libnotify-dev (0.8.2-r0)
(523/559) Installing cyrus-sasl-dev (2.1.28-r4)
(524/559) Installing libevent (2.1.12-r6)
(525/559) Installing libevent-dev (2.1.12-r6)
(526/559) Installing libsodium (1.0.18-r3)
(527/559) Installing libsodium-dev (1.0.18-r3)
(528/559) Installing openldap-dev (2.6.4-r3)
(529/559) Installing webkit2gtk-4.1-dev (2.40.1-r2)
(530/559) Installing evolution-dev (3.48.1-r1)
(531/559) Installing samurai (1.2-r3)
(532/559) Installing meson (1.1.0-r1)
(533/559) Installing meson-pyc (1.1.0-r1)
(534/559) Installing ibus-dev (1.5.27-r2)
(535/559) Installing libsass (3.6.5-r0)
(536/559) Installing sassc (3.6.2-r1)
(537/559) Installing networkmanager-common (1.42.6-r0)
(538/559) Installing networkmanager-openrc (1.42.6-r0)
(539/559) Installing libndp (1.8-r1)
(540/559) Installing networkmanager (1.42.6-r0)
Executing networkmanager-1.42.6-r0.pre-install
Executing networkmanager-1.42.6-r0.post-install
*
* To modify system network connections without the root password, add your user
* account to the 'plugdev' group.
*
* If you use wifi, bluetooth, ppp, wwan (mobile broadband), adsl or ovs (Open
* vSwitch), install the corresponding plugin: apk add networkmanager-<name>.
*
* If you use NetworkManager features which require dnsmasq, you need to install
* dnsmasq support: apk add networkmanager-dnsmasq
*
(541/559) Installing networkmanager-dev (1.42.6-r0)
(542/559) Installing libnma-dev (1.10.6-r1)
(543/559) Installing gnome-control-center-dev (44.1-r2)
(544/559) Installing py3-parsing (3.0.9-r2)
(545/559) Installing py3-parsing-pyc (3.0.9-r2)
(546/559) Installing py3-packaging (23.1-r1)
(547/559) Installing py3-packaging-pyc (23.1-r1)
(548/559) Installing py3-setuptools (67.7.2-r0)
(549/559) Installing py3-setuptools-pyc (67.7.2-r0)
(550/559) Installing libadwaita-dev (1.3.2-r0)
(551/559) Installing gnome-bluetooth-dev (42.5-r0)
(552/559) Installing gstreamer-dev (1.22.3-r0)
(553/559) Installing libarchive-dev (3.6.2-r2)
(554/559) Installing gnome-autoar-dev (0.4.4-r0)
(555/559) Installing asciidoc (10.2.0-r3)
(556/559) Installing asciidoc-pyc (10.2.0-r3)
(557/559) Installing elogind-dev (246.10-r9)
(558/559) Installing pipewire-dev (0.3.70-r1)
(559/559) Installing .makedepends-gnome-shell-mobile (20230524.111235)
Executing busybox-1.36.0-r9.trigger
Executing glib-2.76.3-r0.trigger
Executing shared-mime-info-2.2-r5.trigger
Executing gdk-pixbuf-2.42.10-r5.trigger
Executing gtk-update-icon-cache-3.24.38-r0.trigger
Executing fontconfig-2.14.2-r3.trigger
Executing dbus-1.14.6-r3.trigger
Executing cracklib-2.9.11-r2.trigger
Executing eudev-3.2.11-r8.trigger
OK: 1308 MiB in 626 packages
>>> gnome-shell-mobile: Cleaning up srcdir
>>> gnome-shell-mobile: Cleaning up pkgdir
>>> gnome-shell-mobile: Fetching gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b.tar.gz::https://gitlab.gnome.org/verdre/gnome-shell/-/archive/7244a2d0ba30ff4927da14f2611db0dc777c668b/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b.tar.gz
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 8996 0 8996 0 0 11733 0 --:--:-- --:--:-- --:--:-- 11728
100 1792k 0 1792k 0 0 1334k 0 --:--:-- 0:00:01 --:--:-- 1334k
100 3464k 0 3464k 0 0 2200k 0 --:--:-- 0:00:01 --:--:-- 2199k
>>> gnome-shell-mobile: Fetching libgnome-volume-control-8e7a5a4c3e51007ce6579292642517e3d3eb9c50.tar.gz::https://gitlab.gnome.org/GNOME/libgnome-volume-control/-/archive/8e7a5a4c3e51007ce6579292642517e3d3eb9c50/gnome-shell-8e7a5a4c3e51007ce6579292642517e3d3eb9c50.tar.gz
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 46471 0 46471 0 0 156k 0 --:--:-- --:--:-- --:--:-- 157k
>>> gnome-shell-mobile: Fetching gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b.tar.gz::https://gitlab.gnome.org/verdre/gnome-shell/-/archive/7244a2d0ba30ff4927da14f2611db0dc777c668b/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b.tar.gz
>>> gnome-shell-mobile: Fetching libgnome-volume-control-8e7a5a4c3e51007ce6579292642517e3d3eb9c50.tar.gz::https://gitlab.gnome.org/GNOME/libgnome-volume-control/-/archive/8e7a5a4c3e51007ce6579292642517e3d3eb9c50/gnome-shell-8e7a5a4c3e51007ce6579292642517e3d3eb9c50.tar.gz
>>> gnome-shell-mobile: Checking sha512sums...
gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b.tar.gz: OK
libgnome-volume-control-8e7a5a4c3e51007ce6579292642517e3d3eb9c50.tar.gz: OK
disable-telepathy-integration.patch: OK
gsh.patch: OK
>>> gnome-shell-mobile: Unpacking /var/cache/distfiles/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b.tar.gz...
>>> gnome-shell-mobile: Unpacking /var/cache/distfiles/libgnome-volume-control-8e7a5a4c3e51007ce6579292642517e3d3eb9c50.tar.gz...
>>> gnome-shell-mobile: disable-telepathy-integration.patch
patching file js/ui/components/telepathyClient.js
Hunk #1 succeeded at 23 (offset 5 lines).
>>> gnome-shell-mobile: gsh.patch
patching file src/main.c
The Meson build system
Version: 1.1.0
Source dir: /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b
Build dir: /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output
Build type: native build
Project name: gnome-shell
Project version: 44.0
C compiler for the host machine: gcc (gcc 12.2.1 "gcc (Alpine 12.2.1_git20220924-r10) 12.2.1 20220924")
C linker for the host machine: gcc ld.bfd 2.40
Host machine cpu family: x86_64
Host machine cpu: x86_64
Found pkg-config: /usr/bin/pkg-config (1.9.5)
Run-time dependency gnome-keybindings found: YES 44.1
Run-time dependency atk-bridge-2.0 found: YES 2.48.2
Run-time dependency libecal-2.0 found: YES 3.48.1
Run-time dependency libedataserver-1.2 found: YES 3.48.1
Run-time dependency gcr-4 found: YES 4.1.0
Run-time dependency gdk-x11-3.0 found: YES 3.90.99
Run-time dependency gdk-pixbuf-2.0 found: YES 2.42.10
Run-time dependency gobject-introspection-1.0 found: YES 1.76.1
Run-time dependency gio-2.0 found: YES 2.76.3
Run-time dependency gio-unix-2.0 found: YES 2.76.3
Run-time dependency gjs-1.0 found: YES 1.76.0
Run-time dependency gtk+-3.0 found: YES 3.90.99
Run-time dependency libxml-2.0 found: YES 2.11.4
Run-time dependency mutter-clutter-12 found: YES 44.0
Run-time dependency mutter-cogl-12 found: YES 44.0
Run-time dependency mutter-cogl-pango-12 found: YES 44.0
Run-time dependency libmutter-12 found: YES 44.0
Run-time dependency polkit-agent-1 found: YES 122
Run-time dependency libstartup-notification-1.0 found: YES 0.12
Run-time dependency ibus-1.0 found: YES 1.5.27
Run-time dependency x11 found: YES 1.8.4
Run-time dependency gsettings-desktop-schemas found: YES 44.0
Run-time dependency gnome-desktop-4 found: YES 44.0
Run-time dependency libnm found: YES 1.42.6
Run-time dependency libsecret-1 found: YES 0.20.5
Program a2x found: YES (/usr/bin/a2x)
Program python3 found: YES (/usr/bin/python3)
Program gjs found: YES (/usr/bin/gjs)
Library m found: YES
Checking for function "g_desktop_app_info_launch_uris_as_manager_with_fds" with dependency gio-2.0: YES
Checking for function "fdwalk" : NO
Checking for function "mallinfo" : NO
Checking for function "mallinfo2" : NO
Has header "sys/resource.h" : YES
Has header "elf.h" : YES
Has header "link.h" : YES
Header "langinfo.h" has symbol "_NL_TIME_FIRST_WEEKDAY" : NO
Checking for function "fdwalk" : NO (cached)
Configuring config.h using configuration
Executing subproject gvc
gvc| Project name: gvc
gvc| Project version: undefined
gvc| C compiler for the host machine: gcc (gcc 12.2.1 "gcc (Alpine 12.2.1_git20220924-r10) 12.2.1 20220924")
gvc| C linker for the host machine: gcc ld.bfd 2.40
gvc| Program glib-mkenums found: YES (/usr/bin/glib-mkenums)
gvc| Program glib-mkenums found: YES (/usr/bin/glib-mkenums)
gvc| Dependency gio-2.0 found: YES 2.76.3 (cached)
gvc| Run-time dependency gobject-2.0 found: YES 2.76.3
gvc| Run-time dependency libpulse found: YES 16.1
gvc| Run-time dependency libpulse-mainloop-glib found: YES 16.1
gvc| Dependency gobject-introspection-1.0 found: YES 1.76.1 (cached)
gvc| Dependency gobject-introspection-1.0 found: YES 1.76.1 (cached)
gvc| Program g-ir-scanner found: YES (/usr/bin/g-ir-scanner)
gvc| Dependency gobject-introspection-1.0 found: YES 1.76.1 (cached)
gvc| Program g-ir-compiler found: YES (/usr/bin/g-ir-compiler)
gvc| Configuring config.h using configuration
gvc| Build targets in project: 6
gvc| Subproject gvc finished.
Executing subproject shew
shew| Project name: shew
shew| Project version: 44.0
shew| C compiler for the host machine: gcc (gcc 12.2.1 "gcc (Alpine 12.2.1_git20220924-r10) 12.2.1 20220924")
shew| C linker for the host machine: gcc ld.bfd 2.40
shew| Run-time dependency gtk4 found: YES 4.10.3
shew| Dependency x11 found: YES 1.8.4 (cached)
shew| Build targets in project: 9
shew| Subproject shew finished.
Executing subproject extensions-tool
extensions-tool| Project name: gnome-extensions-tool
extensions-tool| Project version: 44.0
extensions-tool| C compiler for the host machine: gcc (gcc 12.2.1 "gcc (Alpine 12.2.1_git20220924-r10) 12.2.1 20220924")
extensions-tool| C linker for the host machine: gcc ld.bfd 2.40
extensions-tool| Dependency gio-2.0 found: YES 2.76.3 (cached)
extensions-tool| Dependency gio-unix-2.0 found: YES 2.76.3 (cached)
extensions-tool| Run-time dependency gnome-autoar-0 found: YES 0.4.4
extensions-tool| Run-time dependency json-glib-1.0 found: YES 1.6.6
extensions-tool| Did not find CMake 'cmake'
extensions-tool| Found CMake: NO
extensions-tool| Run-time dependency bash-completion found: NO (tried pkgconfig and cmake)
extensions-tool| Checking for function "bind_textdomain_codeset" : YES
extensions-tool| Configuring config.h using configuration
extensions-tool| Program msgfmt found: YES (/usr/bin/msgfmt)
extensions-tool| Found pkg-config: /usr/bin/pkg-config (1.9.5)
extensions-tool| Program glib-compile-resources found: YES (/usr/bin/glib-compile-resources)
extensions-tool| Program a2x found: YES (/usr/bin/a2x)
extensions-tool| Build targets in project: 15
extensions-tool| Subproject extensions-tool finished.
Executing subproject extensions-app
extensions-app| Project name: gnome-extensions-app
extensions-app| Project version: 44.0
extensions-app| Program gjs found: YES (/usr/bin/gjs)
extensions-app| Program appstream-util found: NO
extensions-app| Program desktop-file-validate found: NO
extensions-app| Configuring org.gnome.Extensions.data.gresource.xml using configuration
extensions-app| Program glib-compile-resources found: YES (/usr/bin/glib-compile-resources)
extensions-app| Configuring org.gnome.Extensions.desktop.in using configuration
extensions-app| Configuring org.gnome.Extensions.service using configuration
extensions-app| Configuring gnome-extensions-app using configuration
extensions-app| Configuring org.gnome.Extensions using configuration
extensions-app| Configuring org.gnome.Extensions.src.gresource.xml using configuration
extensions-app| Program glib-compile-resources found: YES (/usr/bin/glib-compile-resources)
extensions-app| Build targets in project: 19
extensions-app| Subproject extensions-app finished.
Configuring config.js using configuration
Configuring org.gnome.Shell.Extensions using configuration
Configuring org.gnome.Shell.Extensions.service using configuration
Program glib-compile-resources found: YES (/usr/bin/glib-compile-resources)
Configuring org.gnome.Shell.Notifications using configuration
Configuring org.gnome.Shell.Notifications.service using configuration
Program glib-compile-resources found: YES (/usr/bin/glib-compile-resources)
Configuring org.gnome.Shell.SensorDaemon using configuration
Configuring org.gnome.Shell.SensorDaemon.service using configuration
Program glib-compile-resources found: YES (/usr/bin/glib-compile-resources)
Configuring org.gnome.Shell.Screencast using configuration
Configuring org.gnome.Shell.Screencast.service using configuration
Program glib-compile-resources found: YES (/usr/bin/glib-compile-resources)
Configuring org.gnome.ScreenSaver using configuration
Configuring org.gnome.ScreenSaver.service using configuration
Program glib-compile-resources found: YES (/usr/bin/glib-compile-resources)
Program glib-compile-resources found: YES (/usr/bin/glib-compile-resources)
Program glib-compile-resources found: YES (/usr/bin/glib-compile-resources)
Configuring org.gnome.Shell.CalendarServer.service using configuration
Configuring org.gnome.Shell.HotplugSniffer.service using configuration
Configuring st.h using configuration
Program glib-mkenums found: YES (/usr/bin/glib-mkenums)
Program glib-mkenums found: YES (/usr/bin/glib-mkenums)
Program /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/src/data-to-c.pl found: YES (/home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/src/data-to-c.pl)
Configuring gnome-shell-perf-tool using configuration
Configuring gnome-shell-extension-tool using configuration
Program glib-mkenums found: YES (/usr/bin/glib-mkenums)
Program glib-mkenums found: YES (/usr/bin/glib-mkenums)
Program gdbus-codegen found: YES (/usr/bin/gdbus-codegen)
Program gdbus-codegen found: YES (/usr/bin/gdbus-codegen)
Program msginit found: YES (/usr/bin/msginit)
Program msgmerge found: YES (/usr/bin/msgmerge)
Program xgettext found: YES (/usr/bin/xgettext)
Configuring org.gnome.Shell.desktop.in using configuration
Configuring org.gnome.Shell.Extensions.desktop.in using configuration
Configuring org.gnome.Shell.PortalHelper.desktop.in using configuration
Configuring org.gnome.Shell.PortalHelper.service using configuration
Program sassc found: YES (/usr/bin/sassc)
Program sassc found: YES (/usr/bin/sassc)
Program glib-compile-resources found: YES (/usr/bin/glib-compile-resources)
Program glib-compile-resources found: YES (/usr/bin/glib-compile-resources)
Program glib-compile-resources found: YES (/usr/bin/glib-compile-resources)
Program glib-compile-resources found: YES (/usr/bin/glib-compile-resources)
Configuring perf-background.xml using configuration
Configuring org.gnome.shell.gschema.xml using configuration
Program glib-compile-schemas found: YES (/usr/bin/glib-compile-schemas)
Dependency gio-2.0 found: YES 2.76.3 (cached)
Program glib-compile-schemas found: YES (/usr/bin/glib-compile-schemas)
Program gtk4-update-icon-cache found: YES (/usr/bin/gtk4-update-icon-cache)
Build targets in project: 152
gnome-shell 44.0
Directories
prefix : /usr
bindir : bin
libdir : lib
libexecdir : libexec
datadir : share
sysconfdir : /etc
mandir : share/man
Build Configuration
buildtype : plain
debug : False
Build Options
networkmanager : True
systemd : False
extensions_app : True
extensions_tool: True
man : True
gtk_doc : False
Subprojects
extensions-app : YES
extensions-tool: YES
gvc : YES
shew : YES
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
wrap_mode : nodownload
b_lto : false
b_pie : true
b_staticpic : true
systemd : false
tests : false
Found ninja-1.9 at /usr/bin/ninja
INFO: autodetecting backend as ninja
INFO: calculating backend command to run: /usr/bin/ninja -C /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output -j 3
ninja: entering directory '/home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output'
[1/281] Generating data/compile-schemas with a custom command
[2/281] Generating data/theme/gnome-shell.css with a custom command
[3/281] Generating data/theme/gnome-shell-high-contrast.css with a custom command
[4/281] Generating data/gnome-shell-osk-layouts_gresource with a custom command
[5/281] Generating data/gnome-shell-icons_gresource with a custom command
[6/281] Generating data/gnome-shell-dbus-interfaces_gresource with a custom command
[7/281] Generating data/org.gnome.Shell.PortalHelper.desktop with a custom command
[8/281] Generating data/gnome-shell-theme_gresource with a custom command
[9/281] Generating data/org.gnome.Shell.Extensions.desktop with a custom command
../data/dbus-interfaces/org.gnome.Calls.Call.xml:29: namespace error : Namespace prefix doc on doc is not defined
<doc:doc>
^
../data/dbus-interfaces/org.gnome.Calls.Call.xml:30: namespace error : Namespace prefix doc on summary is not defined
<doc:summary>A one character string. One of: 0-9,A-D,* or #.</doc:summ
^
../data/dbus-interfaces/org.gnome.Calls.Call.xml:37: namespace error : Namespace prefix doc on doc is not defined
<doc:doc>
^
../data/dbus-interfaces/org.gnome.Calls.Call.xml:38: namespace error : Namespace prefix doc on description is not defined
<doc:description>
^
../data/dbus-interfaces/org.gnome.Calls.Call.xml:39: namespace error : Namespace prefix doc on para is not defined
<doc:para>The Id identifying the call, e.g. a phone number</doc:para>
^
../data/dbus-interfaces/org.gnome.Calls.Call.xml:44: namespace error : Namespace prefix doc on doc is not defined
<doc:doc>
^
../data/dbus-interfaces/org.gnome.Calls.Call.xml:45: namespace error : Namespace prefix doc on description is not defined
<doc:description>
^
../data/dbus-interfaces/org.gnome.Calls.Call.xml:46: namespace error : Namespace prefix doc on para is not defined
<doc:para>The DisplayName of the calling party, e.g. from address book
^
../data/dbus-interfaces/org.gnome.Calls.Call.xml:51: namespace error : Namespace prefix doc on doc is not defined
<doc:doc>
^
../data/dbus-interfaces/org.gnome.Calls.Call.xml:52: namespace error : Namespace prefix doc on description is not defined
<doc:description>
^
../data/dbus-interfaces/org.gnome.Calls.Call.xml:53: namespace error : Namespace prefix doc on para is not defined
<doc:para>The path to an image to display for this call.</doc:para>
^
../data/dbus-interfaces/org.gnome.Calls.Call.xml:58: namespace error : Namespace prefix doc on doc is not defined
<doc:doc>
^
../data/dbus-interfaces/org.gnome.Calls.Call.xml:59: namespace error : Namespace prefix doc on description is not defined
<doc:description>
^
../data/dbus-interfaces/org.gnome.Calls.Call.xml:60: namespace error : Namespace prefix doc on para is not defined
<doc:para>The protocol used for this call</doc:para>
^
../data/dbus-interfaces/org.gnome.Calls.Call.xml:65: namespace error : Namespace prefix doc on doc is not defined
<doc:doc>
^
../data/dbus-interfaces/org.gnome.Calls.Call.xml:66: namespace error : Namespace prefix doc on description is not defined
<doc:description>
^
../data/dbus-interfaces/org.gnome.Calls.Call.xml:67: namespace error : Namespace prefix doc on para is not defined
<doc:para>Whether the call is encrypted. This does not indicate anythi
^
../data/dbus-interfaces/org.gnome.Calls.Call.xml:73: namespace error : Namespace prefix doc on doc is not defined
<doc:doc>
^
../data/dbus-interfaces/org.gnome.Calls.Call.xml:74: namespace error : Namespace prefix doc on description is not defined
<doc:description>
^
../data/dbus-interfaces/org.gnome.Calls.Call.xml:75: namespace error : Namespace prefix doc on para is not defined
<doc:para>Whether the call can do DTMF</doc:para>
^
[10/281] Generating data/org.gnome.Shell.desktop with a custom command
[11/281] Generating po/zh_TW/LC_MESSAGES/gnome-shell-zh_TW.mo with a custom command
[12/281] Generating po/zh_HK/LC_MESSAGES/gnome-shell-zh_HK.mo with a custom command
[13/281] Generating po/zh_CN/LC_MESSAGES/gnome-shell-zh_CN.mo with a custom command
[14/281] Generating po/vi/LC_MESSAGES/gnome-shell-vi.mo with a custom command
[15/281] Generating po/uz@cyrillic/LC_MESSAGES/gnome-shell-uz@cyrillic.mo with a custom command
[16/281] Generating po/uk/LC_MESSAGES/gnome-shell-uk.mo with a custom command
[17/281] Generating po/ug/LC_MESSAGES/gnome-shell-ug.mo with a custom command
[18/281] Generating po/tr/LC_MESSAGES/gnome-shell-tr.mo with a custom command
[19/281] Generating po/th/LC_MESSAGES/gnome-shell-th.mo with a custom command
[20/281] Generating po/tg/LC_MESSAGES/gnome-shell-tg.mo with a custom command
[21/281] Generating po/te/LC_MESSAGES/gnome-shell-te.mo with a custom command
[22/281] Generating po/ta/LC_MESSAGES/gnome-shell-ta.mo with a custom command
[23/281] Generating po/sv/LC_MESSAGES/gnome-shell-sv.mo with a custom command
[24/281] Generating po/sr@latin/LC_MESSAGES/gnome-shell-sr@latin.mo with a custom command
[25/281] Generating po/sr/LC_MESSAGES/gnome-shell-sr.mo with a custom command
[26/281] Generating po/sl/LC_MESSAGES/gnome-shell-sl.mo with a custom command
[27/281] Generating po/sk/LC_MESSAGES/gnome-shell-sk.mo with a custom command
[28/281] Generating po/si/LC_MESSAGES/gnome-shell-si.mo with a custom command
[29/281] Generating po/ru/LC_MESSAGES/gnome-shell-ru.mo with a custom command
[30/281] Generating po/ro/LC_MESSAGES/gnome-shell-ro.mo with a custom command
[31/281] Generating po/pt_BR/LC_MESSAGES/gnome-shell-pt_BR.mo with a custom command
[32/281] Generating po/pt/LC_MESSAGES/gnome-shell-pt.mo with a custom command
[33/281] Generating po/pl/LC_MESSAGES/gnome-shell-pl.mo with a custom command
[34/281] Generating po/pa/LC_MESSAGES/gnome-shell-pa.mo with a custom command
[35/281] Generating po/os/LC_MESSAGES/gnome-shell-os.mo with a custom command
[36/281] Generating po/or/LC_MESSAGES/gnome-shell-or.mo with a custom command
[37/281] Generating po/oc/LC_MESSAGES/gnome-shell-oc.mo with a custom command
[38/281] Generating po/nn/LC_MESSAGES/gnome-shell-nn.mo with a custom command
[39/281] Generating po/nl/LC_MESSAGES/gnome-shell-nl.mo with a custom command
[40/281] Generating po/ne/LC_MESSAGES/gnome-shell-ne.mo with a custom command
[41/281] Generating po/nb/LC_MESSAGES/gnome-shell-nb.mo with a custom command
[42/281] Generating po/ms/LC_MESSAGES/gnome-shell-ms.mo with a custom command
[43/281] Generating po/mr/LC_MESSAGES/gnome-shell-mr.mo with a custom command
[44/281] Generating po/ml/LC_MESSAGES/gnome-shell-ml.mo with a custom command
[45/281] Generating po/mk/LC_MESSAGES/gnome-shell-mk.mo with a custom command
[46/281] Generating po/mjw/LC_MESSAGES/gnome-shell-mjw.mo with a custom command
[47/281] Generating po/lv/LC_MESSAGES/gnome-shell-lv.mo with a custom command
[48/281] Generating po/lt/LC_MESSAGES/gnome-shell-lt.mo with a custom command
[49/281] Generating po/ky/LC_MESSAGES/gnome-shell-ky.mo with a custom command
[50/281] Generating po/ku/LC_MESSAGES/gnome-shell-ku.mo with a custom command
[51/281] Generating po/ko/LC_MESSAGES/gnome-shell-ko.mo with a custom command
[52/281] Generating po/kn/LC_MESSAGES/gnome-shell-kn.mo with a custom command
[53/281] Generating po/km/LC_MESSAGES/gnome-shell-km.mo with a custom command
[54/281] Generating po/kk/LC_MESSAGES/gnome-shell-kk.mo with a custom command
[55/281] Generating po/kab/LC_MESSAGES/gnome-shell-kab.mo with a custom command
[56/281] Generating po/ka/LC_MESSAGES/gnome-shell-ka.mo with a custom command
[57/281] Generating po/ja/LC_MESSAGES/gnome-shell-ja.mo with a custom command
[58/281] Generating po/it/LC_MESSAGES/gnome-shell-it.mo with a custom command
[59/281] Generating po/is/LC_MESSAGES/gnome-shell-is.mo with a custom command
[60/281] Generating po/ie/LC_MESSAGES/gnome-shell-ie.mo with a custom command
[61/281] Generating po/id/LC_MESSAGES/gnome-shell-id.mo with a custom command
[62/281] Generating po/ia/LC_MESSAGES/gnome-shell-ia.mo with a custom command
[63/281] Generating po/hu/LC_MESSAGES/gnome-shell-hu.mo with a custom command
[64/281] Generating po/hr/LC_MESSAGES/gnome-shell-hr.mo with a custom command
[65/281] Generating po/hi/LC_MESSAGES/gnome-shell-hi.mo with a custom command
[66/281] Generating po/he/LC_MESSAGES/gnome-shell-he.mo with a custom command
[67/281] Generating po/gu/LC_MESSAGES/gnome-shell-gu.mo with a custom command
[68/281] Generating po/gl/LC_MESSAGES/gnome-shell-gl.mo with a custom command
[69/281] Generating po/gd/LC_MESSAGES/gnome-shell-gd.mo with a custom command
[70/281] Generating po/ga/LC_MESSAGES/gnome-shell-ga.mo with a custom command
[71/281] Generating po/fy/LC_MESSAGES/gnome-shell-fy.mo with a custom command
[72/281] Generating po/fur/LC_MESSAGES/gnome-shell-fur.mo with a custom command
[73/281] Generating po/fr/LC_MESSAGES/gnome-shell-fr.mo with a custom command
[74/281] Generating po/fi/LC_MESSAGES/gnome-shell-fi.mo with a custom command
[75/281] Generating po/fa/LC_MESSAGES/gnome-shell-fa.mo with a custom command
[76/281] Generating po/eu/LC_MESSAGES/gnome-shell-eu.mo with a custom command
[77/281] Generating po/et/LC_MESSAGES/gnome-shell-et.mo with a custom command
[78/281] Generating po/es/LC_MESSAGES/gnome-shell-es.mo with a custom command
[79/281] Generating po/eo/LC_MESSAGES/gnome-shell-eo.mo with a custom command
[80/281] Generating po/en_GB/LC_MESSAGES/gnome-shell-en_GB.mo with a custom command
[81/281] Generating po/el/LC_MESSAGES/gnome-shell-el.mo with a custom command
[82/281] Generating po/de/LC_MESSAGES/gnome-shell-de.mo with a custom command
[83/281] Generating po/da/LC_MESSAGES/gnome-shell-da.mo with a custom command
[84/281] Generating po/cs/LC_MESSAGES/gnome-shell-cs.mo with a custom command
[85/281] Generating po/ckb/LC_MESSAGES/gnome-shell-ckb.mo with a custom command
[86/281] Generating po/ca@valencia/LC_MESSAGES/gnome-shell-ca@valencia.mo with a custom command
[87/281] Generating po/ca/LC_MESSAGES/gnome-shell-ca.mo with a custom command
[88/281] Generating po/bs/LC_MESSAGES/gnome-shell-bs.mo with a custom command
[89/281] Generating po/bn_IN/LC_MESSAGES/gnome-shell-bn_IN.mo with a custom command
[90/281] Generating po/bn/LC_MESSAGES/gnome-shell-bn.mo with a custom command
[91/281] Generating po/bg/LC_MESSAGES/gnome-shell-bg.mo with a custom command
[92/281] Generating po/be/LC_MESSAGES/gnome-shell-be.mo with a custom command
[93/281] Generating po/ast/LC_MESSAGES/gnome-shell-ast.mo with a custom command
[94/281] Generating po/as/LC_MESSAGES/gnome-shell-as.mo with a custom command
[95/281] Generating po/ar/LC_MESSAGES/gnome-shell-ar.mo with a custom command
[96/281] Generating po/an/LC_MESSAGES/gnome-shell-an.mo with a custom command
[97/281] Generating po/af/LC_MESSAGES/gnome-shell-af.mo with a custom command
[98/281] Generating po/ab/LC_MESSAGES/gnome-shell-ab.mo with a custom command
[99/281] Compiling C object src/run-js-test.p/run-js-test.c.o
[100/281] Compiling C object src/gnome-shell-perf-helper.p/shell-perf-helper.c.o
[101/281] Generating src/shell-enum-types.h with a custom command (wrapped by meson because command contains newlines, to capture output)
[102/281] Generating src/shell-enum-types.c with a custom command (wrapped by meson because command contains newlines, to capture output)
[103/281] Generating src/switcheroo-control.h with a custom command
[104/281] Generating src/switcheroo-control.c with a custom command
[105/281] Generating src/org-gtk-application.h with a custom command
[106/281] Linking target src/gnome-shell-perf-helper
[107/281] Generating src/org-gtk-application.c with a custom command
[108/281] Compiling C object src/libgnome-shell-menu.so.p/gtkactionobserver.c.o
[109/281] Compiling C object src/libgnome-shell-menu.so.p/gtkactionobservable.c.o
[110/281] Compiling C object src/libgnome-shell-menu.so.p/gtkactionmuxer.c.o
[111/281] Compiling C object src/tray/libtray.a.p/na-xembed.c.o
[112/281] Compiling C object src/tray/libtray.a.p/na-tray-manager.c.o
[113/281] Compiling C object src/tray/libtray.a.p/na-tray-child.c.o
[114/281] Linking target src/libgnome-shell-menu.so
[115/281] Generating src/st/scroll-view-fade-glsl with a custom command (wrapped by meson to capture output)
[116/281] Generating src/st/st-enum-types.h with a custom command (wrapped by meson because command contains newlines, to capture output)
[117/281] Generating symbol file src/libgnome-shell-menu.so.p/libgnome-shell-menu.so.symbols
[118/281] Generating src/st/st-enum-types.c with a custom command (wrapped by meson because command contains newlines, to capture output)
[119/281] Compiling C object src/gnome-shell.p/main.c.o
[120/281] Compiling C object src/st/libst-12.so.p/meson-generated_.._st-enum-types.c.o
[121/281] Linking static target src/tray/libtray.a
[122/281] Compiling C object src/st/libst-12.so.p/croco_cr-utils.c.o
[123/281] Compiling C object src/st/libst-12.so.p/croco_cr-token.c.o
[124/281] Compiling C object src/st/libst-12.so.p/croco_cr-tknzr.c.o
[125/281] Compiling C object src/st/libst-12.so.p/croco_cr-term.c.o
[126/281] Compiling C object src/st/libst-12.so.p/croco_cr-stylesheet.c.o
[127/281] Compiling C object src/st/libst-12.so.p/croco_cr-string.c.o
[128/281] Compiling C object src/st/libst-12.so.p/croco_cr-statement.c.o
[129/281] Compiling C object src/st/libst-12.so.p/croco_cr-simple-sel.c.o
[130/281] Compiling C object src/st/libst-12.so.p/croco_cr-selector.c.o
[131/281] Compiling C object src/st/libst-12.so.p/croco_cr-rgb.c.o
[132/281] Compiling C object src/st/libst-12.so.p/croco_cr-pseudo.c.o
[133/281] Compiling C object src/st/libst-12.so.p/croco_cr-prop-list.c.o
[134/281] Compiling C object src/st/libst-12.so.p/croco_cr-parsing-location.c.o
[135/281] Compiling C object src/st/libst-12.so.p/croco_cr-parser.c.o
[136/281] Compiling C object src/st/libst-12.so.p/croco_cr-om-parser.c.o
[137/281] Compiling C object src/st/libst-12.so.p/croco_cr-num.c.o
[138/281] Compiling C object src/st/libst-12.so.p/croco_cr-input.c.o
[139/281] Compiling C object src/st/libst-12.so.p/croco_cr-fonts.c.o
[140/281] Compiling C object src/st/libst-12.so.p/croco_cr-enc-handler.c.o
[141/281] Compiling C object src/st/libst-12.so.p/croco_cr-doc-handler.c.o
[142/281] Compiling C object src/st/libst-12.so.p/croco_cr-declaration.c.o
[143/281] Compiling C object src/st/libst-12.so.p/croco_cr-cascade.c.o
[144/281] Compiling C object src/st/libst-12.so.p/croco_cr-attr-sel.c.o
[145/281] Compiling C object src/st/libst-12.so.p/croco_cr-additional-sel.c.o
[146/281] Compiling C object src/st/libst-12.so.p/st-widget.c.o
[147/281] Compiling C object src/st/libst-12.so.p/st-viewport.c.o
[148/281] Compiling C object src/st/libst-12.so.p/st-theme-node-transition.c.o
[149/281] Compiling C object src/st/libst-12.so.p/st-theme-node-drawing.c.o
[150/281] Compiling C object src/st/libst-12.so.p/st-theme-node.c.o
[151/281] Compiling C object src/st/libst-12.so.p/st-theme-context.c.o
[152/281] Compiling C object src/st/libst-12.so.p/st-theme.c.o
[153/281] Compiling C object src/st/libst-12.so.p/st-texture-cache.c.o
[154/281] Compiling C object src/st/libst-12.so.p/st-shadow.c.o
[155/281] Compiling C object src/st/libst-12.so.p/st-settings.c.o
[156/281] Compiling C object src/st/libst-12.so.p/st-scroll-view-fade.c.o
[157/281] Compiling C object src/st/libst-12.so.p/st-scroll-view.c.o
[158/281] Compiling C object src/st/libst-12.so.p/st-scroll-bar.c.o
[159/281] Compiling C object src/st/libst-12.so.p/st-scrollable.c.o
[160/281] Compiling C object src/st/libst-12.so.p/st-private.c.o
[161/281] Compiling C object src/st/libst-12.so.p/st-password-entry.c.o
[162/281] Compiling C object src/st/libst-12.so.p/st-label.c.o
[163/281] Compiling C object src/st/libst-12.so.p/st-image-content.c.o
[164/281] Compiling C object src/st/libst-12.so.p/st-icon-theme.c.o
[165/281] Compiling C object src/st/libst-12.so.p/st-icon-colors.c.o
[166/281] Compiling C object src/st/libst-12.so.p/st-icon-cache.c.o
[167/281] Compiling C object src/st/libst-12.so.p/st-icon.c.o
[168/281] Compiling C object src/st/libst-12.so.p/st-generic-accessible.c.o
[169/281] Compiling C object src/st/libst-12.so.p/st-focus-manager.c.o
[170/281] Compiling C object src/st/libst-12.so.p/st-entry.c.o
[171/281] Compiling C object src/st/libst-12.so.p/st-drawing-area.c.o
[172/281] Compiling C object src/st/libst-12.so.p/st-clipboard.c.o
[173/281] Compiling C object src/st/libst-12.so.p/st-button.c.o
[174/281] Compiling C object src/st/libst-12.so.p/st-box-layout.c.o
[175/281] Compiling C object src/st/libst-12.so.p/st-border-image.c.o
[176/281] Compiling C object src/st/libst-12.so.p/st-bin.c.o
[177/281] Compiling C object src/st/libst-12.so.p/st-adjustment.c.o
[178/281] Compiling C object src/hotplug-sniffer/gnome-shell-hotplug-sniffer.p/hotplug-sniffer.c.o
[179/281] Compiling C object src/hotplug-sniffer/gnome-shell-hotplug-sniffer.p/shell-mime-sniffer.c.o
[180/281] Compiling C object src/calendar-server/gnome-shell-calendar-server.p/calendar-sources.c.o
[181/281] Linking target src/st/libst-12.so
[182/281] Linking target src/hotplug-sniffer/gnome-shell-hotplug-sniffer
[183/281] Generating src/st/St-12.gir with a custom command (wrapped by meson to set env)
[184/281] Generating symbol file src/st/libst-12.so.p/libst-12.so.symbols
[185/281] Compiling C object src/calendar-server/gnome-shell-calendar-server.p/gnome-shell-calendar-server.c.o
[186/281] Generating js/portal-resources_h with a custom command
[187/281] Compiling C object src/gnome-shell-portal-helper.p/gnome-shell-portal-helper.c.o
[188/281] Generating js/portal-resources_c with a custom command
[189/281] Compiling C object src/gnome-shell-portal-helper.p/meson-generated_.._.._js_portal-resources.c.o
[190/281] Linking target src/gnome-shell-portal-helper
[191/281] Generating js/js-resources_h with a custom command
[192/281] Compiling C object src/libshell-12.so.p/shell-app-cache.c.o
[193/281] Linking target src/calendar-server/gnome-shell-calendar-server
[194/281] Compiling C object src/libshell-12.so.p/shell-network-agent.c.o
[195/281] Compiling C object src/libshell-12.so.p/shell-workspace-background.c.o
../src/shell-workspace-background.c: In function 'shell_workspace_background_allocate':
../src/shell-workspace-background.c:182:60: warning: passing argument 1 of 'st_bin_get_child' from incompatible pointer type [-Wincompatible-pointer-types]
182 | clutter_actor_set_scale (st_bin_get_child (self->bottom_panel), x_scale, 1);
| ~~~~^~~~~~~~~~~~~~
| |
| ClutterActor * {aka struct _ClutterActor *}
In file included from src/st/st.h:3,
from ../src/shell-workspace-background.h:4,
from ../src/shell-workspace-background.c:3:
../src/st/st-bin.h:49:51: note: expected 'StBin *' {aka 'struct _StBin *'} but argument is of type 'ClutterActor *' {aka 'struct _ClutterActor *'}
49 | ClutterActor *st_bin_get_child (StBin *bin);
| ~~~~~~~~~~~~~~^~~
[196/281] Compiling C object src/libshell-12.so.p/shell-wm.c.o
[197/281] Compiling C object src/libshell-12.so.p/shell-window-tracker.c.o
[198/281] Compiling C object src/libshell-12.so.p/shell-window-preview-layout.c.o
[199/281] Compiling C object src/libshell-12.so.p/shell-window-preview.c.o
/usr/include/glib-2.0/glib/gutils.h:378: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 0); if (nth_bit < -1) G_PASTE (_g_boolean_var_, 0) = 1; else G_PASTE (_g_boolean_var_, 0) = 0; G_PASTE (_g_boolean_var_, 0); }), 0)))' at '0'
/usr/include/glib-2.0/glib/gutils.h:393: syntax error, unexpected INTEGER, expecting identifier in ' if (nth_bit < 0 || (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 1); if (nth_bit > 8 * 8) G_PASTE (_g_boolean_var_, 1) = 1; else G_PASTE (_g_boolean_var_, 1) = 0; G_PASTE (_g_boolean_var_, 1); }), 0)))' at '1'
/usr/include/glib-2.0/glib/gutils.h:408: syntax error, unexpected INTEGER, expecting identifier in ' return (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 2); if (number) G_PASTE (_g_boolean_var_, 2) = 1; else G_PASTE (_g_boolean_var_, 2) = 0; G_PASTE (_g_boolean_var_, 2); }), 1)) ?' at '2'
/usr/include/glib-2.0/glib/gstring.h:196: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 3); if (gstring != ' at '3'
/usr/include/glib-2.0/glib/gstring.h:218: syntax error, unexpected INTEGER, expecting identifier in ' if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 4); if (gstring == ' at '4'
/usr/include/glib-2.0/glib/gstring.h:221: syntax error, unexpected INTEGER, expecting identifier in ' if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 5); if (val == ' at '5'
/usr/include/glib-2.0/glib/gstring.h:229: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 6); if (gstring->len + len_unsigned < gstring->allocated_len) G_PASTE (_g_boolean_var_, 6) = 1; else G_PASTE (_g_boolean_var_, 6) = 0; G_PASTE (_g_boolean_var_, 6); }), 1)))' at '6'
/usr/include/glib-2.0/glib/gstring.h:232: syntax error, unexpected IF in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 7); if (val + len_unsigned <= end || val > end + len_unsigned) G_PASTE (_g_boolean_var_, 7) = 1; else G_PASTE (_g_boolean_var_, 7) = 0; G_PASTE (_g_boolean_var_, 7); }), 1)))' at 'if'
/usr/include/glib-2.0/glib/gstring.h:232: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 7); if (val + len_unsigned <= end || val > end + len_unsigned) G_PASTE (_g_boolean_var_, 7) = 1; else G_PASTE (_g_boolean_var_, 7) = 0; G_PASTE (_g_boolean_var_, 7); }), 1)))' at '7'
/usr/include/glib-2.0/gobject/gobject.h:819: syntax error, unexpected INTEGER, expecting identifier in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 8); if ((((g_type_check_instance_is_fundamentally_a ((GTypeInstance*) ((weak_pointer)), (((GType) ((20) << (2))))))))) G_PASTE (_g_boolean_var_, 8) = 1; else G_PASTE (_g_boolean_var_, 8) = 0; G_PASTE (_g_boolean_var_, 8); }), 1)) ; else g_assertion_message (((gchar*) 0), "/usr/include/glib-2.0/gobject/gobject.h", 819, ((const char*) (__func__)), "'" "G_IS_OBJECT (weak_pointer)" "' should be TRUE"); } while (0);' at '8'
/usr/include/glib-2.0/gobject/gobject.h:819: syntax error, unexpected ')', expecting identifier or '(' in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 8); if ((((g_type_check_instance_is_fundamentally_a ((GTypeInstance*) ((weak_pointer)), (((GType) ((20) << (2))))))))) G_PASTE (_g_boolean_var_, 8) = 1; else G_PASTE (_g_boolean_var_, 8) = 0; G_PASTE (_g_boolean_var_, 8); }), 1)) ; else g_assertion_message (((gchar*) 0), "/usr/include/glib-2.0/gobject/gobject.h", 819, ((const char*) (__func__)), "'" "G_IS_OBJECT (weak_pointer)" "' should be TRUE"); } while (0);' at ')'
/usr/include/glib-2.0/gobject/gobject.h:822: syntax error, unexpected INTEGER, expecting identifier in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 9); if ((weak_pointer) == ' at '9'
/usr/include/glib-2.0/gobject/gobject.h:822: syntax error, unexpected ')', expecting identifier or '(' in '# 822 "/usr/include/glib-2.0/gobject/gobject.h"' at ')'
[200/281] Generating src/st/St-12.typelib with a custom command
[201/281] Compiling C object src/libshell-12.so.p/shell-util.c.o
[202/281] Compiling C object src/libshell-12.so.p/shell-tray-manager.c.o
[203/281] Compiling C object src/libshell-12.so.p/shell-tray-icon.c.o
[204/281] Compiling C object src/libshell-12.so.p/shell-stack.c.o
[205/281] Compiling C object src/libshell-12.so.p/shell-square-bin.c.o
[206/281] Compiling C object src/libshell-12.so.p/shell-secure-text-buffer.c.o
[207/281] Compiling C object src/libshell-12.so.p/shell-screenshot.c.o
[208/281] Compiling C object src/libshell-12.so.p/shell-polkit-authentication-agent.c.o
[209/281] Compiling C object src/libshell-12.so.p/shell-perf-log.c.o
[210/281] Compiling C object src/libshell-12.so.p/shell-mount-operation.c.o
[211/281] Compiling C object src/libshell-12.so.p/shell-keyring-prompt.c.o
[212/281] Compiling C object src/libshell-12.so.p/shell-invert-lightness-effect.c.o
[213/281] Compiling C object src/libshell-12.so.p/shell-glsl-effect.c.o
[214/281] Compiling C object src/libshell-12.so.p/shell-global.c.o
[215/281] Compiling C object src/libshell-12.so.p/shell-blur-effect.c.o
[216/281] Compiling C object src/libshell-12.so.p/shell-app-usage.c.o
[217/281] Compiling C object src/libshell-12.so.p/shell-app-system.c.o
[218/281] Compiling C object src/libshell-12.so.p/shell-app.c.o
[219/281] Compiling C object src/libshell-12.so.p/gnome-shell-plugin.c.o
[220/281] Compiling C object src/libshell-12.so.p/meson-generated_.._switcheroo-control.c.o
[221/281] Compiling C object src/libshell-12.so.p/meson-generated_.._org-gtk-application.c.o
[222/281] Compiling C object src/libshell-12.so.p/meson-generated_.._shell-enum-types.c.o
[223/281] Generating js/js-resources_c with a custom command
[224/281] Generating js/dbusServices/org.gnome.ScreenSaver.src_gresource with a custom command
[225/281] Generating js/dbusServices/org.gnome.Shell.Screencast.src_gresource with a custom command
[226/281] Generating js/dbusServices/org.gnome.Shell.SensorDaemon.src_gresource with a custom command
[227/281] Generating js/dbusServices/org.gnome.Shell.Notifications.src_gresource with a custom command
[228/281] Generating js/dbusServices/org.gnome.Shell.Extensions.src_gresource with a custom command
[229/281] Generating subprojects/extensions-app/js/org.gnome.Extensions.src_gresource with a custom command
[230/281] Generating subprojects/extensions-app/data/metainfo/org.gnome.Extensions.metainfo.xml with a custom command
[231/281] Generating subprojects/extensions-app/data/org.gnome.Extensions.desktop with a custom command
[232/281] Compiling C object src/libshell-12.so.p/meson-generated_.._.._js_js-resources.c.o
[233/281] Generating subprojects/extensions-app/data/org.gnome.Extensions.data_gresource with a custom command
[234/281] Generating subprojects/extensions-tool/man/gnome-extensions.1 with a custom command
[235/281] Linking target src/libshell-12.so
[236/281] Generating subprojects/extensions-tool/src/templates/indicator.desktop with a custom command
[237/281] Generating symbol file src/libshell-12.so.p/libshell-12.so.symbols
[238/281] Linking target src/run-js-test
[239/281] Linking target src/gnome-shell
[240/281] Generating subprojects/extensions-tool/src/templates/00-plain.desktop with a custom command
[241/281] Compiling C object subprojects/shew/src/libshew-0.so.p/shew-window-exporter.c.o
[242/281] Compiling C object subprojects/shew/src/libshew-0.so.p/shew-external-window.c.o
[243/281] Generating subprojects/extensions-tool/src/resources_h with a custom command
[244/281] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/main.c.o
[245/281] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/command-uninstall.c.o
[246/281] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/command-reset.c.o
[247/281] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/command-prefs.c.o
[248/281] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/command-pack.c.o
[249/281] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/command-list.c.o
[250/281] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/command-install.c.o
[251/281] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/command-info.c.o
[252/281] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/command-enable.c.o
[253/281] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/command-disable.c.o
[254/281] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/command-create.c.o
[255/281] Generating subprojects/extensions-tool/src/resources_c with a custom command
[256/281] Compiling C object subprojects/extensions-tool/src/gnome-extensions.p/meson-generated_.._resources.c.o
[257/281] Compiling C object subprojects/shew/src/libshew-0.so.p/shew-external-window-x11.c.o
[258/281] Compiling C object subprojects/shew/src/libshew-0.so.p/shew-external-window-wayland.c.o
[259/281] Linking target subprojects/extensions-tool/src/gnome-extensions
[260/281] Generating subprojects/gvc/gvc-enum-types.h with a custom command (wrapped by meson because command contains newlines, to capture output)
[261/281] Compiling C object subprojects/gvc/libgvc.so.p/gvc-mixer-ui-device.c.o
[262/281] Compiling C object subprojects/gvc/libgvc.so.p/gvc-mixer-stream.c.o
[263/281] Linking target subprojects/shew/src/libshew-0.so
[264/281] Generating subprojects/shew/src/Shew-0.gir with a custom command (wrapped by meson to set env)
[265/281] Compiling C object subprojects/gvc/libgvc.so.p/gvc-mixer-source-output.c.o
[266/281] Compiling C object subprojects/gvc/libgvc.so.p/gvc-mixer-source.c.o
[267/281] Compiling C object subprojects/gvc/libgvc.so.p/gvc-mixer-sink-input.c.o
[268/281] Compiling C object subprojects/gvc/libgvc.so.p/gvc-mixer-sink.c.o
[269/281] Compiling C object subprojects/gvc/libgvc.so.p/gvc-mixer-event-role.c.o
[270/281] Compiling C object subprojects/gvc/libgvc.so.p/gvc-mixer-control.c.o
[271/281] Compiling C object subprojects/gvc/libgvc.so.p/gvc-mixer-card.c.o
[272/281] Compiling C object subprojects/gvc/libgvc.so.p/gvc-channel-map.c.o
/usr/include/glib-2.0/glib/gutils.h:378: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 0); if (nth_bit < -1) G_PASTE (_g_boolean_var_, 0) = 1; else G_PASTE (_g_boolean_var_, 0) = 0; G_PASTE (_g_boolean_var_, 0); }), 0)))' at '0'
/usr/include/glib-2.0/glib/gutils.h:393: syntax error, unexpected INTEGER, expecting identifier in ' if (nth_bit < 0 || (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 1); if (nth_bit > 8 * 8) G_PASTE (_g_boolean_var_, 1) = 1; else G_PASTE (_g_boolean_var_, 1) = 0; G_PASTE (_g_boolean_var_, 1); }), 0)))' at '1'
/usr/include/glib-2.0/glib/gutils.h:408: syntax error, unexpected INTEGER, expecting identifier in ' return (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 2); if (number) G_PASTE (_g_boolean_var_, 2) = 1; else G_PASTE (_g_boolean_var_, 2) = 0; G_PASTE (_g_boolean_var_, 2); }), 1)) ?' at '2'
/usr/include/glib-2.0/glib/gstring.h:196: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 3); if (gstring != ' at '3'
/usr/include/glib-2.0/glib/gstring.h:218: syntax error, unexpected INTEGER, expecting identifier in ' if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 4); if (gstring == ' at '4'
/usr/include/glib-2.0/glib/gstring.h:221: syntax error, unexpected INTEGER, expecting identifier in ' if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 5); if (val == ' at '5'
/usr/include/glib-2.0/glib/gstring.h:229: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 6); if (gstring->len + len_unsigned < gstring->allocated_len) G_PASTE (_g_boolean_var_, 6) = 1; else G_PASTE (_g_boolean_var_, 6) = 0; G_PASTE (_g_boolean_var_, 6); }), 1)))' at '6'
/usr/include/glib-2.0/glib/gstring.h:232: syntax error, unexpected IF in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 7); if (val + len_unsigned <= end || val > end + len_unsigned) G_PASTE (_g_boolean_var_, 7) = 1; else G_PASTE (_g_boolean_var_, 7) = 0; G_PASTE (_g_boolean_var_, 7); }), 1)))' at 'if'
/usr/include/glib-2.0/glib/gstring.h:232: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 7); if (val + len_unsigned <= end || val > end + len_unsigned) G_PASTE (_g_boolean_var_, 7) = 1; else G_PASTE (_g_boolean_var_, 7) = 0; G_PASTE (_g_boolean_var_, 7); }), 1)))' at '7'
/usr/include/glib-2.0/gobject/gobject.h:819: syntax error, unexpected INTEGER, expecting identifier in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 8); if ((((g_type_check_instance_is_fundamentally_a ((GTypeInstance*) ((weak_pointer)), (((GType) ((20) << (2))))))))) G_PASTE (_g_boolean_var_, 8) = 1; else G_PASTE (_g_boolean_var_, 8) = 0; G_PASTE (_g_boolean_var_, 8); }), 1)) ; else g_assertion_message (((gchar*) 0), "/usr/include/glib-2.0/gobject/gobject.h", 819, ((const char*) (__func__)), "'" "G_IS_OBJECT (weak_pointer)" "' should be TRUE"); } while (0);' at '8'
/usr/include/glib-2.0/gobject/gobject.h:819: syntax error, unexpected ')', expecting identifier or '(' in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 8); if ((((g_type_check_instance_is_fundamentally_a ((GTypeInstance*) ((weak_pointer)), (((GType) ((20) << (2))))))))) G_PASTE (_g_boolean_var_, 8) = 1; else G_PASTE (_g_boolean_var_, 8) = 0; G_PASTE (_g_boolean_var_, 8); }), 1)) ; else g_assertion_message (((gchar*) 0), "/usr/include/glib-2.0/gobject/gobject.h", 819, ((const char*) (__func__)), "'" "G_IS_OBJECT (weak_pointer)" "' should be TRUE"); } while (0);' at ')'
/usr/include/glib-2.0/gobject/gobject.h:822: syntax error, unexpected INTEGER, expecting identifier in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 9); if ((weak_pointer) == ' at '9'
/usr/include/glib-2.0/gobject/gobject.h:822: syntax error, unexpected ')', expecting identifier or '(' in '# 822 "/usr/include/glib-2.0/gobject/gobject.h"' at ')'
[273/281] Generating subprojects/shew/src/Shew-0.typelib with a custom command
[274/281] Generating subprojects/gvc/gvc-enum-types.c with a custom command (wrapped by meson because command contains newlines, to capture output)
[275/281] Compiling C object subprojects/gvc/libgvc.so.p/meson-generated_.._gvc-enum-types.c.o
[276/281] Generating man/man page with a custom command
[277/281] Linking target subprojects/gvc/libgvc.so
[278/281] Generating subprojects/gvc/Gvc-1.0.gir with a custom command (wrapped by meson to set env)
/usr/include/glib-2.0/glib/gutils.h:378: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 0); if (nth_bit < -1) G_PASTE (_g_boolean_var_, 0) = 1; else G_PASTE (_g_boolean_var_, 0) = 0; G_PASTE (_g_boolean_var_, 0); }), 0)))' at '0'
/usr/include/glib-2.0/glib/gutils.h:393: syntax error, unexpected INTEGER, expecting identifier in ' if (nth_bit < 0 || (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 1); if (nth_bit > 8 * 8) G_PASTE (_g_boolean_var_, 1) = 1; else G_PASTE (_g_boolean_var_, 1) = 0; G_PASTE (_g_boolean_var_, 1); }), 0)))' at '1'
/usr/include/glib-2.0/glib/gutils.h:408: syntax error, unexpected INTEGER, expecting identifier in ' return (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 2); if (number) G_PASTE (_g_boolean_var_, 2) = 1; else G_PASTE (_g_boolean_var_, 2) = 0; G_PASTE (_g_boolean_var_, 2); }), 1)) ?' at '2'
/usr/include/glib-2.0/glib/gstring.h:196: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 3); if (gstring != ' at '3'
/usr/include/glib-2.0/glib/gstring.h:218: syntax error, unexpected INTEGER, expecting identifier in ' if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 4); if (gstring == ' at '4'
/usr/include/glib-2.0/glib/gstring.h:221: syntax error, unexpected INTEGER, expecting identifier in ' if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 5); if (val == ' at '5'
/usr/include/glib-2.0/glib/gstring.h:229: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 6); if (gstring->len + len_unsigned < gstring->allocated_len) G_PASTE (_g_boolean_var_, 6) = 1; else G_PASTE (_g_boolean_var_, 6) = 0; G_PASTE (_g_boolean_var_, 6); }), 1)))' at '6'
/usr/include/glib-2.0/glib/gstring.h:232: syntax error, unexpected IF in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 7); if (val + len_unsigned <= end || val > end + len_unsigned) G_PASTE (_g_boolean_var_, 7) = 1; else G_PASTE (_g_boolean_var_, 7) = 0; G_PASTE (_g_boolean_var_, 7); }), 1)))' at 'if'
/usr/include/glib-2.0/glib/gstring.h:232: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 7); if (val + len_unsigned <= end || val > end + len_unsigned) G_PASTE (_g_boolean_var_, 7) = 1; else G_PASTE (_g_boolean_var_, 7) = 0; G_PASTE (_g_boolean_var_, 7); }), 1)))' at '7'
/usr/include/glib-2.0/gobject/gobject.h:819: syntax error, unexpected INTEGER, expecting identifier in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 8); if ((((g_type_check_instance_is_fundamentally_a ((GTypeInstance*) ((weak_pointer)), (((GType) ((20) << (2))))))))) G_PASTE (_g_boolean_var_, 8) = 1; else G_PASTE (_g_boolean_var_, 8) = 0; G_PASTE (_g_boolean_var_, 8); }), 1)) ; else g_assertion_message (((gchar*) 0), "/usr/include/glib-2.0/gobject/gobject.h", 819, ((const char*) (__func__)), "'" "G_IS_OBJECT (weak_pointer)" "' should be TRUE"); } while (0);' at '8'
/usr/include/glib-2.0/gobject/gobject.h:819: syntax error, unexpected ')', expecting identifier or '(' in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 8); if ((((g_type_check_instance_is_fundamentally_a ((GTypeInstance*) ((weak_pointer)), (((GType) ((20) << (2))))))))) G_PASTE (_g_boolean_var_, 8) = 1; else G_PASTE (_g_boolean_var_, 8) = 0; G_PASTE (_g_boolean_var_, 8); }), 1)) ; else g_assertion_message (((gchar*) 0), "/usr/include/glib-2.0/gobject/gobject.h", 819, ((const char*) (__func__)), "'" "G_IS_OBJECT (weak_pointer)" "' should be TRUE"); } while (0);' at ')'
/usr/include/glib-2.0/gobject/gobject.h:822: syntax error, unexpected INTEGER, expecting identifier in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 9); if ((weak_pointer) == ' at '9'
/usr/include/glib-2.0/gobject/gobject.h:822: syntax error, unexpected ')', expecting identifier or '(' in '# 822 "/usr/include/glib-2.0/gobject/gobject.h"' at ')'
[279/281] Generating src/Shell-12.gir with a custom command (wrapped by meson to set env)
[280/281] Generating subprojects/gvc/Gvc-1.0.typelib with a custom command
/usr/include/glib-2.0/glib/gutils.h:378: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 0); if (nth_bit < -1) G_PASTE (_g_boolean_var_, 0) = 1; else G_PASTE (_g_boolean_var_, 0) = 0; G_PASTE (_g_boolean_var_, 0); }), 0)))' at '0'
/usr/include/glib-2.0/glib/gutils.h:393: syntax error, unexpected INTEGER, expecting identifier in ' if (nth_bit < 0 || (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 1); if (nth_bit > 8 * 8) G_PASTE (_g_boolean_var_, 1) = 1; else G_PASTE (_g_boolean_var_, 1) = 0; G_PASTE (_g_boolean_var_, 1); }), 0)))' at '1'
/usr/include/glib-2.0/glib/gutils.h:408: syntax error, unexpected INTEGER, expecting identifier in ' return (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 2); if (number) G_PASTE (_g_boolean_var_, 2) = 1; else G_PASTE (_g_boolean_var_, 2) = 0; G_PASTE (_g_boolean_var_, 2); }), 1)) ?' at '2'
/usr/include/glib-2.0/glib/gstring.h:196: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 3); if (gstring != ' at '3'
/usr/include/glib-2.0/glib/gstring.h:218: syntax error, unexpected INTEGER, expecting identifier in ' if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 4); if (gstring == ' at '4'
/usr/include/glib-2.0/glib/gstring.h:221: syntax error, unexpected INTEGER, expecting identifier in ' if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 5); if (val == ' at '5'
/usr/include/glib-2.0/glib/gstring.h:229: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 6); if (gstring->len + len_unsigned < gstring->allocated_len) G_PASTE (_g_boolean_var_, 6) = 1; else G_PASTE (_g_boolean_var_, 6) = 0; G_PASTE (_g_boolean_var_, 6); }), 1)))' at '6'
/usr/include/glib-2.0/glib/gstring.h:232: syntax error, unexpected IF in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 7); if (val + len_unsigned <= end || val > end + len_unsigned) G_PASTE (_g_boolean_var_, 7) = 1; else G_PASTE (_g_boolean_var_, 7) = 0; G_PASTE (_g_boolean_var_, 7); }), 1)))' at 'if'
/usr/include/glib-2.0/glib/gstring.h:232: syntax error, unexpected INTEGER, expecting identifier in ' if ((__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 7); if (val + len_unsigned <= end || val > end + len_unsigned) G_PASTE (_g_boolean_var_, 7) = 1; else G_PASTE (_g_boolean_var_, 7) = 0; G_PASTE (_g_boolean_var_, 7); }), 1)))' at '7'
/usr/include/glib-2.0/gobject/gobject.h:819: syntax error, unexpected INTEGER, expecting identifier in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 8); if ((((g_type_check_instance_is_fundamentally_a ((GTypeInstance*) ((weak_pointer)), (((GType) ((20) << (2))))))))) G_PASTE (_g_boolean_var_, 8) = 1; else G_PASTE (_g_boolean_var_, 8) = 0; G_PASTE (_g_boolean_var_, 8); }), 1)) ; else g_assertion_message (((gchar*) 0), "/usr/include/glib-2.0/gobject/gobject.h", 819, ((const char*) (__func__)), "'" "G_IS_OBJECT (weak_pointer)" "' should be TRUE"); } while (0);' at '8'
/usr/include/glib-2.0/gobject/gobject.h:819: syntax error, unexpected ')', expecting identifier or '(' in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 8); if ((((g_type_check_instance_is_fundamentally_a ((GTypeInstance*) ((weak_pointer)), (((GType) ((20) << (2))))))))) G_PASTE (_g_boolean_var_, 8) = 1; else G_PASTE (_g_boolean_var_, 8) = 0; G_PASTE (_g_boolean_var_, 8); }), 1)) ; else g_assertion_message (((gchar*) 0), "/usr/include/glib-2.0/gobject/gobject.h", 819, ((const char*) (__func__)), "'" "G_IS_OBJECT (weak_pointer)" "' should be TRUE"); } while (0);' at ')'
/usr/include/glib-2.0/gobject/gobject.h:822: syntax error, unexpected INTEGER, expecting identifier in ' do { if (__builtin_expect (__extension__ ({ int G_PASTE (_g_boolean_var_, 9); if ((weak_pointer) == ' at '9'
/usr/include/glib-2.0/gobject/gobject.h:822: syntax error, unexpected ')', expecting identifier or '(' in '# 822 "/usr/include/glib-2.0/gobject/gobject.h"' at ')'
[281/281] Generating src/Shell-12.typelib with a custom command
>>> gnome-shell-mobile: Entering fakeroot...
Installing subdir /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/subprojects/extensions-app/data/icons/hicolor to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/icons/hicolor
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/subprojects/extensions-app/data/icons/hicolor/scalable/apps/org.gnome.Extensions.svg to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/icons/hicolor/scalable/apps
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/subprojects/extensions-app/data/icons/hicolor/scalable/apps/org.gnome.Extensions.Devel.svg to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/icons/hicolor/scalable/apps
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/subprojects/extensions-app/data/icons/hicolor/symbolic/apps/org.gnome.Extensions-symbolic.svg to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/icons/hicolor/symbolic/apps
Installing subdir /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/data/icons/hicolor to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/icons/hicolor
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/data/icons/hicolor/scalable/apps/org.gnome.Shell.Extensions.svg to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/icons/hicolor/scalable/apps
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/data/icons/hicolor/symbolic/apps/org.gnome.Shell.Extensions-symbolic.svg to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/icons/hicolor/symbolic/apps
Installing man/gnome-shell.1 to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/man/man1
Installing subprojects/gvc/libgvc.so to /home/pmos/build/pkg/gnome-shell-mobile/usr/lib/gnome-shell
Installing subprojects/gvc/Gvc-1.0.gir to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell
Installing subprojects/gvc/Gvc-1.0.typelib to /home/pmos/build/pkg/gnome-shell-mobile/usr/lib/gnome-shell
Installing subprojects/shew/src/libshew-0.so to /home/pmos/build/pkg/gnome-shell-mobile/usr/lib/gnome-shell
Installing subprojects/shew/src/Shew-0.gir to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell/gir-1.0
Installing subprojects/shew/src/Shew-0.typelib to /home/pmos/build/pkg/gnome-shell-mobile/usr/lib/gnome-shell/girepository-1.0
Installing subprojects/extensions-tool/src/gnome-extensions to /home/pmos/build/pkg/gnome-shell-mobile/usr/bin
Installing subprojects/extensions-tool/man/gnome-extensions.1 to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/man/man1
Installing subprojects/extensions-app/data/org.gnome.Extensions.data.gresource to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell
Installing subprojects/extensions-app/data/org.gnome.Extensions.desktop to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/applications
Installing subprojects/extensions-app/data/metainfo/org.gnome.Extensions.metainfo.xml to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/metainfo
Installing subprojects/extensions-app/js/org.gnome.Extensions.src.gresource to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell
Installing js/dbusServices/org.gnome.Shell.Extensions.src.gresource to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell
Installing js/dbusServices/org.gnome.Shell.Notifications.src.gresource to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell
Installing js/dbusServices/org.gnome.Shell.SensorDaemon.src.gresource to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell
Installing js/dbusServices/org.gnome.Shell.Screencast.src.gresource to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell
Installing js/dbusServices/org.gnome.ScreenSaver.src.gresource to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell
Installing src/calendar-server/gnome-shell-calendar-server to /home/pmos/build/pkg/gnome-shell-mobile/usr/libexec
Installing src/hotplug-sniffer/gnome-shell-hotplug-sniffer to /home/pmos/build/pkg/gnome-shell-mobile/usr/libexec
Installing src/st/libst-12.so to /home/pmos/build/pkg/gnome-shell-mobile/usr/lib/gnome-shell
Installing src/st/St-12.gir to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell
Installing src/st/St-12.typelib to /home/pmos/build/pkg/gnome-shell-mobile/usr/lib/gnome-shell
Installing src/libgnome-shell-menu.so to /home/pmos/build/pkg/gnome-shell-mobile/usr/lib/gnome-shell
Installing src/libshell-12.so to /home/pmos/build/pkg/gnome-shell-mobile/usr/lib/gnome-shell
Installing src/Shell-12.gir to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell
Installing src/Shell-12.typelib to /home/pmos/build/pkg/gnome-shell-mobile/usr/lib/gnome-shell
Installing src/gnome-shell to /home/pmos/build/pkg/gnome-shell-mobile/usr/bin
Installing src/gnome-shell-portal-helper to /home/pmos/build/pkg/gnome-shell-mobile/usr/libexec
Installing src/gnome-shell-perf-helper to /home/pmos/build/pkg/gnome-shell-mobile/usr/libexec
Installing po/ab/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/ab/LC_MESSAGES
Installing po/af/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/af/LC_MESSAGES
Installing po/an/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/an/LC_MESSAGES
Installing po/ar/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/ar/LC_MESSAGES
Installing po/as/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/as/LC_MESSAGES
Installing po/ast/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/ast/LC_MESSAGES
Installing po/be/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/be/LC_MESSAGES
Installing po/bg/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/bg/LC_MESSAGES
Installing po/bn/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/bn/LC_MESSAGES
Installing po/bn_IN/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/bn_IN/LC_MESSAGES
Installing po/bs/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/bs/LC_MESSAGES
Installing po/ca/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/ca/LC_MESSAGES
Installing po/ca@valencia/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/ca@valencia/LC_MESSAGES
Installing po/ckb/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/ckb/LC_MESSAGES
Installing po/cs/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/cs/LC_MESSAGES
Installing po/da/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/da/LC_MESSAGES
Installing po/de/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/de/LC_MESSAGES
Installing po/el/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/el/LC_MESSAGES
Installing po/en_GB/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/en_GB/LC_MESSAGES
Installing po/eo/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/eo/LC_MESSAGES
Installing po/es/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/es/LC_MESSAGES
Installing po/et/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/et/LC_MESSAGES
Installing po/eu/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/eu/LC_MESSAGES
Installing po/fa/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/fa/LC_MESSAGES
Installing po/fi/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/fi/LC_MESSAGES
Installing po/fr/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/fr/LC_MESSAGES
Installing po/fur/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/fur/LC_MESSAGES
Installing po/fy/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/fy/LC_MESSAGES
Installing po/ga/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/ga/LC_MESSAGES
Installing po/gd/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/gd/LC_MESSAGES
Installing po/gl/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/gl/LC_MESSAGES
Installing po/gu/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/gu/LC_MESSAGES
Installing po/he/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/he/LC_MESSAGES
Installing po/hi/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/hi/LC_MESSAGES
Installing po/hr/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/hr/LC_MESSAGES
Installing po/hu/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/hu/LC_MESSAGES
Installing po/ia/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/ia/LC_MESSAGES
Installing po/id/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/id/LC_MESSAGES
Installing po/ie/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/ie/LC_MESSAGES
Installing po/is/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/is/LC_MESSAGES
Installing po/it/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/it/LC_MESSAGES
Installing po/ja/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/ja/LC_MESSAGES
Installing po/ka/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/ka/LC_MESSAGES
Installing po/kab/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/kab/LC_MESSAGES
Installing po/kk/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/kk/LC_MESSAGES
Installing po/km/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/km/LC_MESSAGES
Installing po/kn/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/kn/LC_MESSAGES
Installing po/ko/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/ko/LC_MESSAGES
Installing po/ku/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/ku/LC_MESSAGES
Installing po/ky/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/ky/LC_MESSAGES
Installing po/lt/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/lt/LC_MESSAGES
Installing po/lv/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/lv/LC_MESSAGES
Installing po/mjw/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/mjw/LC_MESSAGES
Installing po/mk/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/mk/LC_MESSAGES
Installing po/ml/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/ml/LC_MESSAGES
Installing po/mr/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/mr/LC_MESSAGES
Installing po/ms/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/ms/LC_MESSAGES
Installing po/nb/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/nb/LC_MESSAGES
Installing po/ne/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/ne/LC_MESSAGES
Installing po/nl/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/nl/LC_MESSAGES
Installing po/nn/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/nn/LC_MESSAGES
Installing po/oc/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/oc/LC_MESSAGES
Installing po/or/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/or/LC_MESSAGES
Installing po/os/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/os/LC_MESSAGES
Installing po/pa/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/pa/LC_MESSAGES
Installing po/pl/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/pl/LC_MESSAGES
Installing po/pt/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/pt/LC_MESSAGES
Installing po/pt_BR/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/pt_BR/LC_MESSAGES
Installing po/ro/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/ro/LC_MESSAGES
Installing po/ru/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/ru/LC_MESSAGES
Installing po/si/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/si/LC_MESSAGES
Installing po/sk/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/sk/LC_MESSAGES
Installing po/sl/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/sl/LC_MESSAGES
Installing po/sr/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/sr/LC_MESSAGES
Installing po/sr@latin/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/sr@latin/LC_MESSAGES
Installing po/sv/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/sv/LC_MESSAGES
Installing po/ta/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/ta/LC_MESSAGES
Installing po/te/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/te/LC_MESSAGES
Installing po/tg/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/tg/LC_MESSAGES
Installing po/th/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/th/LC_MESSAGES
Installing po/tr/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/tr/LC_MESSAGES
Installing po/ug/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/ug/LC_MESSAGES
Installing po/uk/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/uk/LC_MESSAGES
Installing po/uz@cyrillic/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/uz@cyrillic/LC_MESSAGES
Installing po/vi/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/vi/LC_MESSAGES
Installing po/zh_CN/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/zh_CN/LC_MESSAGES
Installing po/zh_HK/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/zh_HK/LC_MESSAGES
Installing po/zh_TW/LC_MESSAGES/gnome-shell.mo to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/locale/zh_TW/LC_MESSAGES
Installing data/org.gnome.Shell.desktop to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/applications
Installing data/org.gnome.Shell.Extensions.desktop to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/applications
Installing data/org.gnome.Shell.PortalHelper.desktop to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/applications
Installing data/gnome-shell-dbus-interfaces.gresource to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell
Installing data/gnome-shell-icons.gresource to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell
Installing data/gnome-shell-osk-layouts.gresource to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell
Installing data/gnome-shell-theme.gresource to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output/subprojects/extensions-app/data/org.gnome.Extensions.service to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/dbus-1/services
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output/subprojects/extensions-app/js/gnome-extensions-app to /home/pmos/build/pkg/gnome-shell-mobile/usr/bin
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output/subprojects/extensions-app/js/org.gnome.Extensions to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output/js/dbusServices/org.gnome.Shell.Extensions to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output/js/dbusServices/org.gnome.Shell.Extensions.service to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/dbus-1/services
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output/js/dbusServices/org.gnome.Shell.Notifications to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output/js/dbusServices/org.gnome.Shell.Notifications.service to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/dbus-1/services
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output/js/dbusServices/org.gnome.Shell.SensorDaemon to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output/js/dbusServices/org.gnome.Shell.SensorDaemon.service to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/dbus-1/services
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output/js/dbusServices/org.gnome.Shell.Screencast to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output/js/dbusServices/org.gnome.Shell.Screencast.service to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/dbus-1/services
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output/js/dbusServices/org.gnome.ScreenSaver to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output/js/dbusServices/org.gnome.ScreenSaver.service to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/dbus-1/services
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output/src/calendar-server/org.gnome.Shell.CalendarServer.service to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/dbus-1/services
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output/src/hotplug-sniffer/org.gnome.Shell.HotplugSniffer.service to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/dbus-1/services
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output/src/gnome-shell-perf-tool to /home/pmos/build/pkg/gnome-shell-mobile/usr/bin
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output/src/gnome-shell-extension-tool to /home/pmos/build/pkg/gnome-shell-mobile/usr/bin
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/src/gnome-shell-extension-prefs to /home/pmos/build/pkg/gnome-shell-mobile/usr/bin
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output/data/org.gnome.Shell.PortalHelper.service to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/dbus-1/services
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/data/dbus-interfaces/org.gnome.Shell.Extensions.xml to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/dbus-1/interfaces
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/data/dbus-interfaces/org.gnome.Shell.Introspect.xml to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/dbus-1/interfaces
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/data/dbus-interfaces/org.gnome.Shell.PadOsd.xml to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/dbus-1/interfaces
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/data/dbus-interfaces/org.gnome.Shell.Screencast.xml to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/dbus-1/interfaces
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/data/dbus-interfaces/org.gnome.Shell.Screenshot.xml to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/dbus-1/interfaces
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/data/dbus-interfaces/org.gnome.ShellSearchProvider.xml to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/dbus-1/interfaces
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/data/dbus-interfaces/org.gnome.ShellSearchProvider2.xml to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/dbus-1/interfaces
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output/data/perf-background.xml to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-shell
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/data/gnome-shell.portal to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/xdg-desktop-portal/portals
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/data/50-gnome-shell-launchers.xml to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-control-center/keybindings
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/data/50-gnome-shell-screenshots.xml to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-control-center/keybindings
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/data/50-gnome-shell-system.xml to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-control-center/keybindings
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/output/data/org.gnome.shell.gschema.xml to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/glib-2.0/schemas
Installing /home/pmos/build/src/gnome-shell-7244a2d0ba30ff4927da14f2611db0dc777c668b/data/00_org.gnome.shell.gschema.override to /home/pmos/build/pkg/gnome-shell-mobile/usr/share/glib-2.0/schemas
Skipping custom install script because DESTDIR is set '/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas'
Skipping custom install script because DESTDIR is set '/usr/bin/gtk4-update-icon-cache -q -t -f /usr/share/icons/hicolor'
>>> gnome-shell-mobile-dbg*: Running split function dbg...
>>> gnome-shell-mobile-dbg*: Preparing subpackage gnome-shell-mobile-dbg...
>>> gnome-shell-mobile-dbg*: Running postcheck for gnome-shell-mobile-dbg
>>> gnome-shell-mobile-doc*: Running split function doc...
>>> gnome-shell-mobile-doc*: Preparing subpackage gnome-shell-mobile-doc...
>>> gnome-shell-mobile-doc*: Running postcheck for gnome-shell-mobile-doc
>>> gnome-shell-mobile-lang*: Running split function lang...
>>> gnome-shell-mobile-lang*: Preparing subpackage gnome-shell-mobile-lang...
>>> gnome-shell-mobile-lang*: Running postcheck for gnome-shell-mobile-lang
>>> gnome-shell-mobile-schemas*: Running split function schemas...
'/home/pmos/build/pkg/gnome-shell-mobile/usr/share/glib-2.0/schemas' -> '/home/pmos/build/pkg/gnome-shell-mobile-schemas/usr/share/glib-2.0/schemas'
'/home/pmos/build/pkg/gnome-shell-mobile/usr/share/gnome-control-center/keybindings' -> '/home/pmos/build/pkg/gnome-shell-mobile-schemas/usr/share/gnome-control-center/keybindings'
>>> gnome-shell-mobile-schemas*: Preparing subpackage gnome-shell-mobile-schemas...
>>> gnome-shell-mobile-schemas*: Running postcheck for gnome-shell-mobile-schemas
>>> gnome-shell-mobile*: Running postcheck for gnome-shell-mobile
>>> gnome-shell-mobile*: Preparing package gnome-shell-mobile...
>>> gnome-shell-mobile-dbg*: Scanning shared objects
>>> gnome-shell-mobile-doc*: Scanning shared objects
>>> gnome-shell-mobile-lang*: Scanning shared objects
>>> gnome-shell-mobile-schemas*: Scanning shared objects
>>> gnome-shell-mobile*: Scanning shared objects
>>> gnome-shell-mobile-dbg*: Tracing dependencies...
>>> gnome-shell-mobile-dbg*: Package size: 6.2 MB
>>> gnome-shell-mobile-dbg*: Compressing data...
>>> gnome-shell-mobile-dbg*: Create checksum...
>>> gnome-shell-mobile-dbg*: Create gnome-shell-mobile-dbg-44_git20230405-r0.apk
>>> gnome-shell-mobile-doc*: Tracing dependencies...
>>> gnome-shell-mobile-doc*: Package size: 28.0 KB
>>> gnome-shell-mobile-doc*: Compressing data...
>>> gnome-shell-mobile-doc*: Create checksum...
>>> gnome-shell-mobile-doc*: Create gnome-shell-mobile-doc-44_git20230405-r0.apk
>>> gnome-shell-mobile-lang*: Tracing dependencies...
>>> gnome-shell-mobile-lang*: Package size: 4.7 MB
>>> gnome-shell-mobile-lang*: Compressing data...
>>> gnome-shell-mobile-lang*: Create checksum...
>>> gnome-shell-mobile-lang*: Create gnome-shell-mobile-lang-44_git20230405-r0.apk
>>> gnome-shell-mobile-schemas*: Tracing dependencies...
>>> gnome-shell-mobile-schemas*: Package size: 60.0 KB
>>> gnome-shell-mobile-schemas*: Compressing data...
>>> gnome-shell-mobile-schemas*: Create checksum...
>>> gnome-shell-mobile-schemas*: Create gnome-shell-mobile-schemas-44_git20230405-r0.apk
>>> gnome-shell-mobile*: Tracing dependencies...
accountsservice
caribou
elogind
gcr4
gsettings-desktop-schemas
gst-plugins-good
upower
ibus
librsvg
gnome-bluetooth
gnome-control-center
gnome-shell-mobile-schemas
font-adobe-source-code-pro
font-cantarell
adwaita-icon-theme
unzip
so:libGLESv2.so.2
so:libX11.so.6
so:libXfixes.so.3
so:libatk-1.0.so.0
so:libatk-bridge-2.0.so.0
so:libc.musl-x86_64.so.1
so:libcairo.so.2
so:libecal-2.0.so.2
so:libedataserver-1.2.so.27
so:libgcr-4.so.4
so:libgdk-3.so.0
so:libgdk_pixbuf-2.0.so.0
so:libgio-2.0.so.0
so:libgirepository-1.0.so.1
so:libgjs.so.0
so:libglib-2.0.so.0
so:libgnome-autoar-0.so.0
so:libgnome-desktop-4.so.2
so:libgobject-2.0.so.0
so:libgraphene-1.0.so.0
so:libgtk-3.so.0
so:libgtk-4.so.1
so:libical-glib.so.3
so:libintl.so.8
so:libjson-glib-1.0.so.0
so:libmutter-12.so.0
so:libmutter-clutter-12.so.0
so:libmutter-cogl-12.so.0
so:libmutter-cogl-pango-12.so.0
so:libnm.so.0
so:libpango-1.0.so.0
so:libpolkit-agent-1.so.0
so:libpolkit-gobject-1.so.0
so:libpulse-mainloop-glib.so.0
so:libpulse.so.0
so:libsecret-1.so.0
>>> gnome-shell-mobile*: Package size: 8.6 MB
>>> gnome-shell-mobile*: Compressing data...
>>> gnome-shell-mobile*: Create checksum...
>>> gnome-shell-mobile*: Create gnome-shell-mobile-44_git20230405-r0.apk
>>> gnome-shell-mobile: Build complete at Wed, 24 May 2023 11:14:46 +0000 elapsed time 0h 2m 12s
>>> gnome-shell-mobile: Cleaning up srcdir
>>> gnome-shell-mobile: Cleaning up pkgdir
>>> gnome-shell-mobile: Uninstalling dependencies...
WARNING: opening /mnt/pmbootstrap-packages: No such file or directory
WARNING: opening from cache http://mirror.postmarketos.org/postmarketos/v23.06: No such file or directory
(1/559) Purging .makedepends-gnome-shell-mobile (20230524.111235)
(2/559) Purging caribou-pyc (0.4.21-r11)
(3/559) Purging caribou (0.4.21-r11)
(4/559) Purging elogind-openrc (246.10-r9)
(5/559) Purging elogind (246.10-r9)
(6/559) Purging shadow (4.13-r2)
(7/559) Purging busctl (246.10-r9)
(8/559) Purging gcr4 (4.1.0-r0)
(9/559) Purging gst-plugins-good (1.22.3-r0)
(10/559) Purging gnome-bluetooth (42.5-r0)
(11/559) Purging bluez-obexd (5.66-r5)
(12/559) Purging bluez-openrc (5.66-r5)
(13/559) Purging pulseaudio-bluez (9999_git20220621-r0)
(14/559) Purging bluez (5.66-r5)
(15/559) Purging gnome-control-center (44.1-r2)
(16/559) Purging accountsservice (23.13.9-r2)
(17/559) Purging colord (1.4.6-r4)
(18/559) Purging cups-pk-helper (0.2.7-r2)
(19/559) Purging openrc-settingsd-openrc (1.2.0-r1)
(20/559) Purging openrc-settingsd (1.2.0-r1)
(21/559) Purging font-adobe-source-code-pro (2.040-r0)
(22/559) Purging font-util (1.4.0-r1)
(23/559) Purging font-cantarell (0.303.1-r1)
(24/559) Purging adwaita-icon-theme (44.0-r0)
(25/559) Purging unzip (6.0-r14)
(26/559) Purging startup-notification-dev (0.12-r5)
(27/559) Purging libsm-dev (1.2.4-r1)
(28/559) Purging polkit-dev (122-r5)
(29/559) Purging polkit-openrc (122-r5)
(30/559) Purging polkit-common (122-r5)
(31/559) Purging dbus-glib-dev (0.112-r5)
(32/559) Purging gcr4-dev (4.1.0-r0)
(33/559) Purging gjs-dev (1.76.0-r1)
(34/559) Purging gjs (1.76.0-r1)
(35/559) Purging mutter-mobile-dev (44_git20230405-r0)
(36/559) Purging mutter-mobile (44_git20230405-r0)
(37/559) Purging gnome-settings-daemon (44.1-r0)
(38/559) Purging pulseaudio-openrc (9999_git20220621-r0)
(39/559) Purging alsa-utils (1.2.9-r0)
(40/559) Purging dialog (1.3.20230209-r1)
(41/559) Purging alsa-ucm-conf (1.2.9-r0)
(42/559) Purging alsa-utils-openrc (1.2.9-r0)
(43/559) Purging libcanberra-pulse (0.30-r9)
(44/559) Purging pulseaudio-alsa (9999_git20220621-r0)
(45/559) Purging pulseaudio (9999_git20220621-r0)
(46/559) Purging mutter-mobile-schemas (44_git20230405-r0)
(47/559) Purging xwayland (23.1.1-r0)
(48/559) Purging xorg-server-common (21.1.8-r0)
(49/559) Purging xkbcomp (1.4.6-r1)
(50/559) Purging pulseaudio-dev (9999_git20220621-r0)
(51/559) Purging libpulse-mainloop-glib (9999_git20220621-r0)
(52/559) Purging libpulse (9999_git20220621-r0)
(53/559) Purging evolution-dev (3.48.1-r1)
(54/559) Purging evolution (3.48.1-r1)
(55/559) Purging highlight (4.5-r2)
(56/559) Purging enchant2-dev (2.3.4-r4)
(57/559) Purging itstool (2.0.7-r1)
(58/559) Purging py3-libxml2-pyc (2.11.4-r0)
(59/559) Purging py3-libxml2 (2.11.4-r0)
(60/559) Purging libcanberra-dev (0.30-r9)
(61/559) Purging libcanberra-gtk2 (0.30-r9)
(62/559) Purging libgweather4-dev (4.2.0-r1)
(63/559) Purging libnotify-dev (0.8.2-r0)
(64/559) Purging openldap-dev (2.6.4-r3)
(65/559) Purging cyrus-sasl-dev (2.1.28-r4)
(66/559) Purging libevent-dev (2.1.12-r6)
(67/559) Purging libevent (2.1.12-r6)
(68/559) Purging libsodium-dev (1.0.18-r3)
(69/559) Purging libsodium (1.0.18-r3)
(70/559) Purging meson-pyc (1.1.0-r1)
(71/559) Purging meson (1.1.0-r1)
(72/559) Purging samurai (1.2-r3)
(73/559) Purging ibus-dev (1.5.27-r2)
(74/559) Purging ibus-pyc (1.5.27-r2)
(75/559) Purging ibus (1.5.27-r2)
(76/559) Purging py3-gobject3 (3.44.1-r2)
(77/559) Purging sassc (3.6.2-r1)
(78/559) Purging libnma-dev (1.10.6-r1)
(79/559) Purging libnma (1.10.6-r1)
(80/559) Purging mobile-broadband-provider-info (20230416-r0)
(81/559) Purging gnome-control-center-dev (44.1-r2)
(82/559) Purging py3-setuptools-pyc (67.7.2-r0)
(83/559) Purging py3-setuptools (67.7.2-r0)
(84/559) Purging py3-packaging-pyc (23.1-r1)
(85/559) Purging py3-packaging (23.1-r1)
(86/559) Purging py3-parsing-pyc (3.0.9-r2)
(87/559) Purging py3-parsing (3.0.9-r2)
(88/559) Purging gnome-bluetooth-dev (42.5-r0)
(89/559) Purging gnome-bluetooth-libs (42.5-r0)
(90/559) Purging gstreamer-dev (1.22.3-r0)
(91/559) Purging gnome-autoar-dev (0.4.4-r0)
(92/559) Purging gnome-autoar (0.4.4-r0)
(93/559) Purging asciidoc-pyc (10.2.0-r3)
(94/559) Purging asciidoc (10.2.0-r3)
(95/559) Purging elogind-dev (246.10-r9)
(96/559) Purging pipewire-dev (0.3.70-r1)
(97/559) Purging colord-gtk (0.3.0-r2)
(98/559) Purging dbus-daemon-launch-helper (1.14.6-r3)
(99/559) Purging dbus-glib (0.112-r5)
(100/559) Purging dbus-openrc (1.14.6-r3)
(101/559) Purging dconf (0.40.0-r4)
(102/559) Purging elogind-common (246.10-r9)
(103/559) Purging eudev-openrc (3.2.11-r8)
(104/559) Purging evolution-data-server-dev (3.48.1-r1)
(105/559) Purging libgdata-dev (0.18.1-r3)
(106/559) Purging libgdata (0.18.1-r3)
(107/559) Purging evolution-data-server (3.48.1-r1)
(108/559) Purging fftw-single-libs (3.3.10-r2)
(109/559) Purging gcr-dev (3.41.1-r3)
(110/559) Purging gcr4-base (4.1.0-r0)
(111/559) Purging geoclue (2.7.0-r2)
(112/559) Purging geocode-glib-dev (3.26.4-r3)
(113/559) Purging libgeocode-glib (3.26.4-r3)
(114/559) Purging git-perl (2.40.1-r0)
(115/559) Purging perl-git (2.40.1-r0)
(116/559) Purging perl-error (0.17029-r1)
(117/559) Purging gnome-desktop-dev (44.0-r1)
(118/559) Purging libgnome-bg-4 (44.0-r1)
(119/559) Purging libgnome-desktop-3 (44.0-r1)
(120/559) Purging libgnome-desktop-4 (44.0-r1)
(121/559) Purging libgnome-rr-4 (44.0-r1)
(122/559) Purging webkit2gtk-6.0 (2.40.1-r2)
(123/559) Purging gnome-online-accounts-dev (3.48.0-r1)
(124/559) Purging gnome-online-accounts (3.48.0-r1)
(125/559) Purging webkit2gtk-4.1-dev (2.40.1-r2)
(126/559) Purging webkit2gtk-4.1 (2.40.1-r2)
(127/559) Purging bubblewrap (0.8.0-r1)
(128/559) Purging xdg-dbus-proxy (0.1.4-r0)
(129/559) Purging gnome-keyring (42.1-r1)
(130/559) Purging gcr (3.41.1-r3)
(131/559) Purging gcr-ssh-agent (3.41.1-r3)
(132/559) Purging gsettings-desktop-schemas-dev (44.0-r0)
(133/559) Purging gsound (1.0.3-r1)
(134/559) Purging gspell (1.12.1-r0)
(135/559) Purging gtk+2.0-dev (2.24.33-r9)
(136/559) Purging intltool (0.51.0-r8)
(137/559) Purging perl-xml-parser (2.46-r5)
(138/559) Purging perl-libwww (6.68-r1)
(139/559) Purging perl-http-cookies (6.10-r0)
(140/559) Purging perl-net-http (6.22-r0)
(141/559) Purging perl-html-parser (3.81-r1)
(142/559) Purging perl-html-tagset (3.20-r4)
(143/559) Purging perl-file-listing (6.15-r0)
(144/559) Purging perl-www-robotrules (6.02-r3)
(145/559) Purging perl-http-negotiate (6.01-r3)
(146/559) Purging perl-http-message (6.44-r0)
(147/559) Purging perl-clone (0.46-r1)
(148/559) Purging perl-http-date (6.05-r1)
(149/559) Purging perl-uri (5.19-r0)
(150/559) Purging perl-io-html (1.004-r0)
(151/559) Purging perl-lwp-mediatypes (6.04-r2)
(152/559) Purging perl-encode-locale (1.05-r4)
(153/559) Purging perl-try-tiny (0.31-r1)
(154/559) Purging perl (5.36.1-r2)
(155/559) Purging gtk+3.0-dev (9999_git20210602-r4)
(156/559) Purging hyphen (2.8.8-r2)
(157/559) Purging iso-codes-dev (4.15.0-r0)
(158/559) Purging jack (1.9.22-r4)
(159/559) Purging json-c (0.16-r3)
(160/559) Purging json-glib-dev (1.6.6-r1)
(161/559) Purging krb5-libs (1.20.1-r1)
(162/559) Purging krb5-conf (1.0-r2)
(163/559) Purging lame-libs (3.100-r5)
(164/559) Purging libaccountsservice (23.13.9-r2)
(165/559) Purging libadwaita-dev (1.3.2-r0)
(166/559) Purging libadwaita (1.3.2-r0)
(167/559) Purging libarchive-dev (3.6.2-r2)
(168/559) Purging libarchive (3.6.2-r2)
(169/559) Purging libasyncns (0.8-r1)
(170/559) Purging libavc1394 (0.5.4-r3)
(171/559) Purging libavif (0.11.1-r2)
(172/559) Purging libcaca (0.99_beta20-r0)
(173/559) Purging libcanberra-gstreamer (0.30-r9)
(174/559) Purging libcanberra-gtk3 (0.30-r9)
(175/559) Purging libcmark (0.30.3-r1)
(176/559) Purging libcolord (1.4.6-r4)
(177/559) Purging libcom_err (1.47.0-r2)
(178/559) Purging libdaemon (0.14-r4)
(179/559) Purging libdav1d (1.2.0-r0)
(180/559) Purging libdv (1.0.0-r7)
(181/559) Purging libelogind (246.10-r9)
(182/559) Purging libgee (0.20.6-r0)
(183/559) Purging libgtop (2.40.0-r1)
(184/559) Purging libgusb (0.4.5-r0)
(185/559) Purging libgweather4 (4.2.0-r1)
(186/559) Purging libical-dev (3.0.16-r4)
(187/559) Purging gobject-introspection-dev (1.76.1-r3)
(188/559) Purging libtool (2.4.7-r2)
(189/559) Purging libical (3.0.16-r4)
(190/559) Purging libice-dev (1.1.1-r2)
(191/559) Purging libiec61883 (1.2.0-r3)
(192/559) Purging libinput-udev (1.23.0-r0)
(193/559) Purging libinput-libs (1.23.0-r0)
(194/559) Purging libmanette (0.2.6-r2)
(195/559) Purging libmm-glib (1.20.6-r1)
(196/559) Purging libnotify (0.8.2-r0)
(197/559) Purging libphonenumber (8.13.12-r0)
(198/559) Purging libprotobuf (3.21.12-r2)
(199/559) Purging libpwquality (1.4.5-r0)
(200/559) Purging cracklib-words (2.9.11-r2)
(201/559) Purging libsamplerate (0.2.2-r2)
(202/559) Purging libsass (3.6.5-r0)
(203/559) Purging libseccomp-dev (2.5.4-r2)
(204/559) Purging libseccomp (2.5.4-r2)
(205/559) Purging libsecret-dev (0.20.5-r3)
(206/559) Purging libsecret (0.20.5-r3)
(207/559) Purging libshout (2.4.6-r2)
(208/559) Purging libsm (1.2.4-r1)
(209/559) Purging libsmbclient (4.18.2-r0)
(210/559) Purging libsoup-dev (2.74.3-r1)
(211/559) Purging libsoup (2.74.3-r1)
(212/559) Purging libsoup3-dev (3.4.2-r0)
(213/559) Purging libtirpc-nokrb (1.3.3-r2)
(214/559) Purging libtirpc-conf (1.3.3-r2)
(215/559) Purging libverto (0.3.2-r2)
(216/559) Purging libvpx (1.13.0-r1)
(217/559) Purging libwacom (2.6.0-r1)
(218/559) Purging libwoff2enc (1.0.2-r2)
(219/559) Purging libwpebackend-fdo (1.14.2-r0)
(220/559) Purging libxcomposite-dev (0.4.6-r3)
(221/559) Purging libxcursor-dev (1.2.1-r2)
(222/559) Purging libxcvt (0.1.2-r0)
(223/559) Purging libxfont2 (2.0.6-r0)
(224/559) Purging libxklavier (5.4-r7)
(225/559) Purging libxrandr-dev (1.5.3-r2)
(226/559) Purging lua5.4-libs (5.4.6-r0)
(227/559) Purging lz4-libs (1.9.4-r4)
(228/559) Purging mozjs102-dev (102.11.0-r0)
(229/559) Purging mozjs102 (102.11.0-r0)
(230/559) Purging mpg123-libs (1.31.3-r1)
(231/559) Purging mtdev (1.1.6-r2)
(232/559) Purging networkmanager-dev (1.42.6-r0)
(233/559) Purging networkmanager (1.42.6-r0)
(234/559) Purging networkmanager-openrc (1.42.6-r0)
(235/559) Purging networkmanager-common (1.42.6-r0)
(236/559) Purging dbus (1.14.6-r3)
(237/559) Purging libnm (1.42.6-r0)
(238/559) Purging nghttp2-dev (1.53.0-r0)
(239/559) Purging nspr-dev (4.35-r2)
(240/559) Purging nss (3.89.1-r0)
(241/559) Purging p11-kit-dev (0.24.1-r2)
(242/559) Purging pipewire-libs (0.3.70-r1)
(243/559) Purging polkit-noelogind-libs (122-r5)
(244/559) Purging python3-pyc (3.11.3-r11)
(245/559) Purging python3-pycache-pyc0 (3.11.3-r11)
(246/559) Purging xcb-proto-pyc (1.15.2-r2)
(247/559) Purging pyc (0.1-r0)
(248/559) Purging rest1 (0.9.1-r1)
(249/559) Purging samba-libs (4.18.2-r0)
(250/559) Purging samba-util-libs (4.18.2-r0)
(251/559) Purging soxr (0.1.3-r5)
(252/559) Purging speex (1.2.1-r1)
(253/559) Purging speexdsp (1.2.1-r1)
(254/559) Purging sqlite-dev (3.41.2-r2)
(255/559) Purging sqlite (3.41.2-r2)
(256/559) Purging startup-notification (0.12-r5)
(257/559) Purging taglib (1.13-r0)
(258/559) Purging udev-init-scripts-openrc (35-r1)
(259/559) Purging udisks2-libs (2.9.4-r1)
(260/559) Purging upower (1.90.0-r2)
(261/559) Purging v4l-utils-libs (1.24.1-r0)
(262/559) Purging wavpack (5.6.0-r0)
(263/559) Purging xkeyboard-config-dev (2.38-r0)
(264/559) Purging abseil-cpp-synchronization (20230125.3-r1)
(265/559) Purging abseil-cpp-time (20230125.3-r1)
(266/559) Purging abseil-cpp-malloc-internal (20230125.3-r1)
(267/559) Purging abseil-cpp-base (20230125.3-r1)
(268/559) Purging abseil-cpp-hash (20230125.3-r1)
(269/559) Purging abseil-cpp-city (20230125.3-r1)
(270/559) Purging abseil-cpp-stacktrace (20230125.3-r1)
(271/559) Purging abseil-cpp-debugging-internal (20230125.3-r1)
(272/559) Purging abseil-cpp-int128 (20230125.3-r1)
(273/559) Purging abseil-cpp-low-level-hash (20230125.3-r1)
(274/559) Purging abseil-cpp-raw-hash-set (20230125.3-r1)
(275/559) Purging abseil-cpp-strings (20230125.3-r1)
(276/559) Purging abseil-cpp-strings-internal (20230125.3-r1)
(277/559) Purging abseil-cpp-raw-logging-internal (20230125.3-r1)
(278/559) Purging abseil-cpp-spinlock-wait (20230125.3-r1)
(279/559) Purging abseil-cpp-symbolize (20230125.3-r1)
(280/559) Purging abseil-cpp-time-zone (20230125.3-r1)
(281/559) Purging gtk4.0-dev (4.10.3-r1)
(282/559) Purging at-spi2-core-dev (2.48.2-r0)
(283/559) Purging libepoxy-dev (1.5.10-r1)
(284/559) Purging libxinerama-dev (1.1.5-r2)
(285/559) Purging libxkbcommon-dev (1.5.0-r2)
(286/559) Purging libxkbcommon-x11 (1.5.0-r2)
(287/559) Purging vulkan-headers (1.3.243.0-r0)
(288/559) Purging wayland-dev (1.22.0-r2)
(289/559) Purging wayland-protocols (1.31-r1)
(290/559) Purging gtk4.0 (4.10.3-r1)
Executing gtk4.0-4.10.3-r1.post-deinstall
(291/559) Purging tzdata (2023c-r1)
(292/559) Purging iso-codes (4.15.0-r0)
(293/559) Purging gst-plugins-bad (1.22.3-r0)
(294/559) Purging gst-plugins-base (1.22.3-r0)
(295/559) Purging flite (2.2-r2)
(296/559) Purging libsndfile (1.2.0-r2)
(297/559) Purging alsa-lib (1.2.9-r0)
(298/559) Purging aom-libs (3.6.1-r0)
(299/559) Purging gtk+3.0 (9999_git20210602-r4)
Executing gtk+3.0-9999_git20210602-r4.post-deinstall
(300/559) Purging libatk-bridge-2.0 (2.48.2-r0)
(301/559) Purging at-spi2-core (2.48.2-r0)
(302/559) Purging avahi-glib (0.8-r13)
(303/559) Purging gtk+2.0 (2.24.33-r9)
Executing gtk+2.0-2.24.33-r9.post-deinstall
(304/559) Purging gtk-update-icon-cache (3.24.38-r0)
(305/559) Purging hicolor-icon-theme (0.17-r2)
(306/559) Purging cups-libs (2.4.2-r6)
(307/559) Purging avahi-libs (0.8-r13)
(308/559) Purging openexr-libopenexr (3.1.7-r1)
(309/559) Purging imath (3.1.7-r1)
(310/559) Purging boost1.82-python3 (1.82.0-r1)
(311/559) Purging boost1.82-thread (1.82.0-r1)
(312/559) Purging pango-dev (1.50.14-r1)
(313/559) Purging pango-tools (1.50.14-r1)
(314/559) Purging harfbuzz-dev (7.3.0-r0)
(315/559) Purging harfbuzz-cairo (7.3.0-r0)
(316/559) Purging harfbuzz-gobject (7.3.0-r0)
(317/559) Purging harfbuzz-icu (7.3.0-r0)
(318/559) Purging harfbuzz-subset (7.3.0-r0)
(319/559) Purging graphite2-dev (1.3.14-r5)
(320/559) Purging cairo-dev (1.17.8-r1)
(321/559) Purging cairo-tools (1.17.8-r1)
(322/559) Purging xcb-util-dev (0.4.1-r2)
(323/559) Purging util-macros (1.20.0-r0)
(324/559) Purging xcb-util (0.4.1-r2)
(325/559) Purging libxft-dev (2.3.8-r1)
(326/559) Purging fontconfig-dev (2.14.2-r3)
(327/559) Purging freetype-dev (2.13.0-r5)
(328/559) Purging brotli-dev (1.0.9-r14)
(329/559) Purging brotli (1.0.9-r14)
(330/559) Purging gdk-pixbuf-dev (2.42.10-r5)
(331/559) Purging graphene-dev (1.10.8-r2)
(332/559) Purging graphene (1.10.8-r2)
(333/559) Purging glib-dev (2.76.3-r0)
(334/559) Purging bzip2-dev (1.0.8-r5)
(335/559) Purging docbook-xsl (1.79.2-r8)
Executing docbook-xsl-1.79.2-r8.post-deinstall
(336/559) Purging docbook-xml (4.5-r8)
Executing docbook-xml-4.5-r8.post-deinstall
(337/559) Purging gettext-dev (0.21.1-r7)
(338/559) Purging gettext-asprintf (0.21.1-r7)
(339/559) Purging gettext (0.21.1-r7)
(340/559) Purging gettext-envsubst (0.21.1-r7)
(341/559) Purging libxslt (1.1.38-r0)
(342/559) Purging pcre2-dev (10.42-r1)
(343/559) Purging libpcre2-16 (10.42-r1)
(344/559) Purging libpcre2-32 (10.42-r1)
(345/559) Purging libedit-dev (20221030.3.1-r1)
(346/559) Purging ncurses-dev (6.4_p20230506-r0)
(347/559) Purging libncurses++ (6.4_p20230506-r0)
(348/559) Purging libedit (20221030.3.1-r1)
(349/559) Purging bsd-compat-headers (0.7.2-r5)
(350/559) Purging librsvg (2.56.0-r5)
(351/559) Purging pango (1.50.14-r1)
Executing pango-1.50.14-r1.pre-deinstall
(352/559) Purging cairo-gobject (1.17.8-r1)
(353/559) Purging cairo (1.17.8-r1)
(354/559) Purging cdparanoia-libs (10.2-r14)
(355/559) Purging cracklib (2.9.11-r2)
(356/559) Purging dbus-dev (1.14.6-r3)
(357/559) Purging util-linux-dev (2.38.1-r7)
(358/559) Purging libfdisk (2.38.1-r7)
(359/559) Purging libsmartcols (2.38.1-r7)
(360/559) Purging libuuid (2.38.1-r7)
(361/559) Purging libzbar (0.23.92-r2)
(362/559) Purging dbus-libs (1.14.6-r3)
(363/559) Purging directfb (1.7.7-r6)
(364/559) Purging enchant2-libs (2.3.4-r4)
(365/559) Purging eudev-dev (3.2.11-r8)
(366/559) Purging eudev (3.2.11-r8)
(367/559) Purging udev-init-scripts (35-r1)
(368/559) Purging libgudev (237-r1)
(369/559) Purging libcanberra (0.30-r9)
(370/559) Purging sound-theme-freedesktop (0.8-r0)
(371/559) Purging eudev-libs (3.2.11-r8)
(372/559) Purging expat-dev (2.5.0-r1)
(373/559) Purging expat (2.5.0-r1)
(374/559) Purging faac (1.30-r4)
(375/559) Purging fdk-aac (2.0.2-r2)
(376/559) Purging flac-libs (1.4.2-r2)
(377/559) Purging libxft (2.3.8-r1)
(378/559) Purging libass (0.17.1-r0)
(379/559) Purging fontconfig (2.14.2-r3)
(380/559) Purging harfbuzz (7.3.0-r0)
(381/559) Purging freetype (2.13.0-r5)
(382/559) Purging fribidi-dev (1.0.13-r0)
(383/559) Purging fribidi (1.0.13-r0)
(384/559) Purging gcr-base (3.41.1-r3)
(385/559) Purging libldap (2.6.4-r3)
(386/559) Purging libsasl (2.1.28-r4)
(387/559) Purging mesa-dev (23.0.3-r3)
(388/559) Purging libxdamage-dev (1.1.6-r2)
(389/559) Purging libxdamage (1.1.6-r2)
(390/559) Purging libxshmfence-dev (1.3.2-r2)
(391/559) Purging mesa-egl (23.0.3-r3)
(392/559) Purging mesa-gbm (23.0.3-r3)
(393/559) Purging mesa-gl (23.0.3-r3)
(394/559) Purging mesa-gles (23.0.3-r3)
(395/559) Purging mesa-osmesa (23.0.3-r3)
(396/559) Purging mesa-xatracker (23.0.3-r3)
(397/559) Purging mesa (23.0.3-r3)
(398/559) Purging libxxf86vm-dev (1.1.5-r3)
(399/559) Purging libxxf86vm (1.1.5-r3)
(400/559) Purging libxrender-dev (0.9.11-r3)
(401/559) Purging libxtst-dev (1.2.4-r2)
(402/559) Purging libxtst (1.2.4-r2)
(403/559) Purging libxi-dev (1.8.1-r0)
(404/559) Purging libxi (1.8.1-r0)
(405/559) Purging libxfixes-dev (6.0.1-r2)
(406/559) Purging libxext-dev (1.3.5-r2)
(407/559) Purging libx11-dev (1.8.4-r3)
(408/559) Purging xtrans (1.4.0-r3)
(409/559) Purging libxcb-dev (1.15-r1)
(410/559) Purging xcb-proto (1.15.2-r2)
(411/559) Purging python3 (3.11.3-r11)
(412/559) Purging gdbm (1.23-r1)
(413/559) Purging gdk-pixbuf (2.42.10-r5)
Executing gdk-pixbuf-2.42.10-r5.pre-deinstall
(414/559) Purging shared-mime-info (2.2-r5)
Executing shared-mime-info-2.2-r5.post-deinstall
(415/559) Purging geocode-glib (3.26.4-r3)
(416/559) Purging gettext-libs (0.21.1-r7)
(417/559) Purging gstreamer (1.22.3-r0)
(418/559) Purging json-glib (1.6.6-r1)
(419/559) Purging libsoup3 (3.4.2-r0)
(420/559) Purging glib-networking (2.76.0-r1)
(421/559) Purging gsettings-desktop-schemas (44.0-r0)
(422/559) Purging gobject-introspection (1.76.1-r3)
(423/559) Purging libnice (0.1.21-r0)
(424/559) Purging libatk-1.0 (2.48.2-r0)
(425/559) Purging glib (2.76.3-r0)
(426/559) Purging librtmp (2.4_git20190330-r3)
(427/559) Purging gnutls (3.8.0-r2)
(428/559) Purging graphite2 (1.3.14-r5)
(429/559) Purging gsm (1.0.22-r3)
(430/559) Purging libdrm-dev (2.4.115-r4)
(431/559) Purging libpciaccess-dev (0.17-r2)
(432/559) Purging libva (2.18.0-r1)
(433/559) Purging libdrm (2.4.115-r4)
(434/559) Purging libpciaccess (0.17-r2)
(435/559) Purging hwdata-pci (0.370-r0)
(436/559) Purging icu-dev (73.1-r1)
(437/559) Purging icu (73.1-r1)
(438/559) Purging icu-libs (73.1-r1)
(439/559) Purging icu-data-en (73.1-r1)
(440/559) Purging jansson (2.14-r3)
(441/559) Purging keyutils-libs (1.6.3-r3)
(442/559) Purging kmod-libs (30-r3)
(443/559) Purging lcms2 (2.15-r2)
(444/559) Purging ldb (2.7.2-r1)
(445/559) Purging libmount (2.38.1-r7)
(446/559) Purging libblkid (2.38.1-r7)
(447/559) Purging libxdmcp-dev (1.1.4-r2)
(448/559) Purging libxv (1.0.12-r3)
(449/559) Purging libxrandr (1.5.3-r2)
(450/559) Purging libxinerama (1.1.5-r2)
(451/559) Purging libxext (1.3.5-r2)
(452/559) Purging libxcursor (1.2.1-r2)
(453/559) Purging libxrender (0.9.11-r3)
(454/559) Purging libxkbfile (1.1.2-r2)
(455/559) Purging libxcomposite (0.4.6-r3)
(456/559) Purging libxfixes (6.0.1-r2)
(457/559) Purging libx11 (1.8.4-r3)
(458/559) Purging libxcb (1.15-r1)
(459/559) Purging libxdmcp (1.1.4-r2)
(460/559) Purging libbsd (0.11.7-r1)
(461/559) Purging libbz2 (1.0.8-r5)
(462/559) Purging libdc1394 (2.2.6-r1)
(463/559) Purging libde265 (1.0.11-r2)
(464/559) Purging libepoxy (1.5.10-r1)
(465/559) Purging libevdev (1.13.1-r0)
(466/559) Purging libffi-dev (3.4.4-r2)
(467/559) Purging linux-headers (6.3-r0)
(468/559) Purging llvm15-libs (15.0.7-r6)
(469/559) Purging wayland-libs-cursor (1.22.0-r2)
(470/559) Purging wayland-libs-client (1.22.0-r2)
(471/559) Purging p11-kit (0.24.1-r2)
(472/559) Purging wayland-libs-server (1.22.0-r2)
(473/559) Purging libffi (3.4.4-r2)
(474/559) Purging libfontenc (1.1.7-r2)
(475/559) Purging libformw (6.4_p20230506-r0)
(476/559) Purging libfreeaptx (0.1.1-r1)
(477/559) Purging libgcrypt-dev (1.10.2-r1)
(478/559) Purging libgcrypt (1.10.2-r1)
(479/559) Purging libgpg-error-dev (1.47-r1)
(480/559) Purging libgpg-error (1.47-r1)
(481/559) Purging libice (1.1.1-r2)
(482/559) Purging libpsl-dev (0.21.2-r0)
(483/559) Purging libpsl-utils (0.21.2-r0)
(484/559) Purging libpsl (0.21.2-r0)
(485/559) Purging libidn2-dev (2.3.4-r1)
(486/559) Purging libintl (0.21.1-r7)
(487/559) Purging tiff-dev (4.5.0-r6)
(488/559) Purging libtiffxx (4.5.0-r6)
(489/559) Purging libjpeg-turbo-dev (2.1.5.1-r2)
(490/559) Purging spandsp (0.0.6-r5)
(491/559) Purging tiff (4.5.0-r6)
(492/559) Purging libjpeg-turbo (2.1.5.1-r2)
(493/559) Purging libldac (2.0.2.3-r1)
(494/559) Purging libltdl (2.4.7-r2)
(495/559) Purging libmd (1.0.4-r2)
(496/559) Purging libmenuw (6.4_p20230506-r0)
(497/559) Purging libmodplug (0.8.9.0-r2)
(498/559) Purging libpanelw (6.4_p20230506-r0)
(499/559) Purging readline (8.2.1-r1)
(500/559) Purging libncursesw (6.4_p20230506-r0)
(501/559) Purging ncurses-terminfo-base (6.4_p20230506-r0)
(502/559) Purging libndp (1.8-r1)
(503/559) Purging libtheora (1.1.1-r17)
(504/559) Purging libvorbis (1.3.7-r1)
(505/559) Purging libogg (1.3.5-r4)
(506/559) Purging libpng-dev (1.6.39-r3)
(507/559) Purging libpng (1.6.39-r3)
(508/559) Purging libproxy (0.4.18-r2)
(509/559) Purging libraw1394 (2.1.2-r4)
(510/559) Purging libsrtp (2.5.0-r1)
(511/559) Purging libtasn1 (4.19.0-r1)
(512/559) Purging libunibreak (5.1-r0)
(513/559) Purging libusb (1.0.26-r2)
(514/559) Purging libwbclient (4.18.2-r0)
(515/559) Purging libwebp-dev (1.3.0-r2)
(516/559) Purging libwebp (1.3.0-r2)
(517/559) Purging libwoff2common (1.0.2-r2)
(518/559) Purging libwpe (1.14.1-r0)
(519/559) Purging libxau-dev (1.0.11-r2)
(520/559) Purging libxau (1.0.11-r2)
(521/559) Purging libxkbcommon (1.5.0-r2)
(522/559) Purging xkeyboard-config (2.38-r0)
(523/559) Purging libxml2-dev (2.11.4-r0)
(524/559) Purging zlib-dev (1.2.13-r1)
(525/559) Purging xz-dev (5.4.3-r0)
(526/559) Purging xz (5.4.3-r0)
(527/559) Purging libxml2-utils (2.11.4-r0)
(528/559) Purging libxml2 (2.11.4-r0)
(529/559) Purging libxshmfence (1.3.2-r2)
(530/559) Purging linux-pam (1.5.2-r10)
(531/559) Purging lmdb (0.9.30-r2)
(532/559) Purging mesa-glapi (23.0.3-r3)
(533/559) Purging mpdecimal (2.5.1-r2)
(534/559) Purging neon (0.32.5-r1)
(535/559) Purging nettle (3.8.1-r2)
(536/559) Purging nspr (4.35-r2)
(537/559) Purging openal-soft-libs (1.23.1-r0)
(538/559) Purging openexr-libilmthread (3.1.7-r1)
(539/559) Purging openexr-libiex (3.1.7-r1)
(540/559) Purging openjpeg (2.5.0-r3)
(541/559) Purging opus (1.4-r0)
(542/559) Purging orc (0.4.33-r1)
(543/559) Purging pixman-dev (0.42.2-r1)
(544/559) Purging pixman (0.42.2-r1)
(545/559) Purging popt (1.19-r2)
(546/559) Purging sbc (2.0-r0)
(547/559) Purging soundtouch (2.3.2-r2)
(548/559) Purging sqlite-libs (3.41.2-r2)
(549/559) Purging tevent (0.14.1-r1)
(550/559) Purging talloc (2.4.0-r1)
(551/559) Purging tdb-libs (1.4.8-r1)
(552/559) Purging tslib (1.22-r1)
(553/559) Purging vo-aacenc (0.1.3-r1)
(554/559) Purging vo-amrwbenc (0.1.3-r1)
(555/559) Purging wayland-libs-egl (1.22.0-r2)
(556/559) Purging xorgproto (2022.2-r0)
(557/559) Purging xz-libs (5.4.3-r0)
(558/559) Purging zstd-dev (1.5.5-r4)
(559/559) Purging zstd (1.5.5-r4)
Executing busybox-1.36.0-r9.trigger
OK: 259 MiB in 67 packages
>>> gnome-shell-mobile: Updating the pmos/x86_64 repository index...
>>> gnome-shell-mobile: Signing the index...
mv: can't preserve ownership of '/mnt/pmbootstrap-packages/x86_64/APKINDEX.tar.gz.2155': Operation not permitted
(001967) [11:14:48] (native) uninstall build dependencies
(001967) [11:14:48] (native) % cd /home/pmos/build; busybox su pmos -c SUDO_APK='abuild-apk --no-progress' HOME=/home/pmos abuild undeps
WARNING: opening from cache http://mirror.postmarketos.org/postmarketos/v23.06: No such file or directory
ERROR: No such package: .makedepends-gnome-shell-mobile
(001967) [11:14:48] NOTE: chroot is still active (use 'pmbootstrap shutdown' as necessary)
(001967) [11:14:48] DONE!
|