1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179 |
This is a big file! Only the last 128KiB is shown. Click here to download the full log.
(002270) [21:48:52] % sudo mount --bind /home/build/.local/var/pmbootstrap/images_netboot /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/netboot
(002270) [21:48:52] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/packages
(002270) [21:48:52] % sudo mount --bind /home/build/.local/var/pmbootstrap/packages/edge /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/packages
(002270) [21:48:52] % sudo touch /home/build/.local/var/pmbootstrap/chroot_native/in-pmbootstrap
(002270) [21:48:52] APKINDEX outdated (file does not exist yet): http://build.postmarketos.org/wip/staging/systemd/master/x86_64/APKINDEX.tar.gz
(002270) [21:48:52] APKINDEX outdated (file does not exist yet): http://mirror.postmarketos.org/postmarketos/staging/systemd/master/x86_64/APKINDEX.tar.gz
(002270) [21:48:52] APKINDEX outdated (file does not exist yet): http://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
(002270) [21:48:52] APKINDEX outdated (file does not exist yet): http://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
(002270) [21:48:52] APKINDEX outdated (file does not exist yet): http://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz
(002270) [21:48:52] Update package index for x86_64 (5 file(s))
(002270) [21:48:52] Download http://build.postmarketos.org/wip/staging/systemd/master/x86_64/APKINDEX.tar.gz
(002270) [21:48:52] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_b0f19acb05d9df96d60540797b962d5233dafea685b8cac90117cf713723e658 /home/build/.local/var/pmbootstrap/cache_apk_x86_64/APKINDEX.0ea1b9a2.tar.gz
(002270) [21:48:52] Download http://mirror.postmarketos.org/postmarketos/staging/systemd/master/x86_64/APKINDEX.tar.gz
(002270) [21:48:52] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_b5bd2c7d5a3edf2cfb3d972e7e0cf8c1fd9351e9f5253c0bde6475de5e7b0dfc /home/build/.local/var/pmbootstrap/cache_apk_x86_64/APKINDEX.eeb1237f.tar.gz
(002270) [21:48:52] % rm /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_b36af8b1d7f948f0d2fcae5bd60c1b876620e69b987bc066e7a90c810687e76f
(002270) [21:48:52] Download http://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
(002270) [21:48:52] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_b36af8b1d7f948f0d2fcae5bd60c1b876620e69b987bc066e7a90c810687e76f /home/build/.local/var/pmbootstrap/cache_apk_x86_64/APKINDEX.066df28d.tar.gz
(002270) [21:48:52] % rm /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_0999dbfe3755729bd8aa3997d03dbd36a87187a19b61ce5cea2e01671a6305d6
(002270) [21:48:52] Download http://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
(002270) [21:48:52] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_0999dbfe3755729bd8aa3997d03dbd36a87187a19b61ce5cea2e01671a6305d6 /home/build/.local/var/pmbootstrap/cache_apk_x86_64/APKINDEX.b53994b4.tar.gz
(002270) [21:48:52] % rm /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_6ccac8825a1621fb204ad4b3e645b24ffd8fa9acfe97edc265646cafd18d3e4c
(002270) [21:48:52] Download http://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz
(002270) [21:48:52] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_6ccac8825a1621fb204ad4b3e645b24ffd8fa9acfe97edc265646cafd18d3e4c /home/build/.local/var/pmbootstrap/cache_apk_x86_64/APKINDEX.30e6f5af.tar.gz
(002270) [21:48:52] Download http://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/apk-tools-static-2.14.3-r1.apk
(002270) [21:48:52] sigfilename: sbin/apk.static.SIGN.RSA.alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002270) [21:48:52] sigkey: alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002270) [21:48:52] extracted: /tmp/pmbootstrapi2hl6ao7apk
(002270) [21:48:52] extracted: /tmp/pmbootstrapg_nrlcqrsig
(002270) [21:48:52] Verify apk.static signature with /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002270) [21:48:52] % openssl dgst -sha1 -verify /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub -signature /tmp/pmbootstrapg_nrlcqrsig /tmp/pmbootstrapi2hl6ao7apk
Verified OK
(002270) [21:48:52] Verify the version reported by the apk.static binary (must match the package version 2.14.3-r1)
(002270) [21:48:52] % /tmp/pmbootstrapi2hl6ao7apk --version
apk-tools 2.14.3, compiled for x86_64.
(002270) [21:48:52] (native) install alpine-base
(002270) [21:48:52] % sudo ln -s -f /var/cache/apk /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/cache
(002270) [21:48:52] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-616a9724.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-616a9724.rsa.pub
(002270) [21:48:52] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-5261cecb.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-5261cecb.rsa.pub
(002270) [21:48:52] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-616adfeb.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-616adfeb.rsa.pub
(002270) [21:48:52] % sudo cp /home/build/pmbootstrap/pmb/data/keys/build.postmarketos.org.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/build.postmarketos.org.rsa.pub
(002270) [21:48:52] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-616db30d.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-616db30d.rsa.pub
(002270) [21:48:52] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-61666e3f.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-61666e3f.rsa.pub
(002270) [21:48:52] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-58cbb476.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-58cbb476.rsa.pub
(002270) [21:48:52] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-58e4f17d.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-58e4f17d.rsa.pub
(002270) [21:48:52] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-616ae350.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-616ae350.rsa.pub
(002270) [21:48:52] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-616abc23.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-616abc23.rsa.pub
(002270) [21:48:52] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-58199dcc.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-58199dcc.rsa.pub
(002270) [21:48:52] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-5243ef4b.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-5243ef4b.rsa.pub
(002270) [21:48:52] % sudo cp /home/build/pmbootstrap/pmb/data/keys/wip.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/wip.rsa.pub
(002270) [21:48:52] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-60ac2099.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-60ac2099.rsa.pub
(002270) [21:48:52] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002270) [21:48:52] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-4a6a0840.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-4a6a0840.rsa.pub
(002270) [21:48:52] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-616ac3bc.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-616ac3bc.rsa.pub
(002270) [21:48:52] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-5e69ca50.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-5e69ca50.rsa.pub
(002270) [21:48:52] % sudo cp /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-524d27bb.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/alpine-devel@lists.alpinelinux.org-524d27bb.rsa.pub
(002270) [21:48:52] % sudo cp /etc/resolv.conf /home/build/.local/var/pmbootstrap/chroot_native/etc/resolv.conf
(002270) [21:48:52] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/etc/apk
(002270) [21:48:52] (native) update /etc/apk/repositories
(002270) [21:48:52] % sudo sh -c echo /mnt/pmbootstrap/packages >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002270) [21:48:52] % sudo sh -c echo http://build.postmarketos.org/wip/staging/systemd/master >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002270) [21:48:52] % sudo sh -c echo http://mirror.postmarketos.org/postmarketos/staging/systemd/master >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002270) [21:48:52] % sudo sh -c echo http://dl-cdn.alpinelinux.org/alpine/edge/main >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002270) [21:48:52] % sudo sh -c echo http://dl-cdn.alpinelinux.org/alpine/edge/community >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002270) [21:48:52] % sudo sh -c echo http://dl-cdn.alpinelinux.org/alpine/edge/testing >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002270) [21:48:52] % sudo mkdir -p /home/build/.local/var/pmbootstrap/tmp
(002270) [21:48:52] % sudo mkfifo /home/build/.local/var/pmbootstrap/tmp/apk_progress_fifo
(002270) [21:48:52] % sudo cat /home/build/.local/var/pmbootstrap/tmp/apk_progress_fifo
(002270) [21:48:52] % sudo sh -c exec 3>/home/build/.local/var/pmbootstrap/tmp/apk_progress_fifo; /home/build/.local/var/pmbootstrap/apk.static --no-progress --progress-fd 3 --root /home/build/.local/var/pmbootstrap/chroot_native --cache-dir /home/build/.local/var/pmbootstrap/cache_apk_x86_64 --initdb --arch x86_64 add alpine-base --no-interactive
(002270) [21:48:52] New background process: pid=2533, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
fetch http://build.postmarketos.org/wip/staging/systemd/master/x86_64/APKINDEX.tar.gz
WARNING: Permanently redirected to https://build.postmarketos.org:443/wip/staging/systemd/master/x86_64/APKINDEX.tar.gz
fetch http://mirror.postmarketos.org/postmarketos/staging/systemd/master/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz
(1/17) Installing alpine-baselayout-data (3.6.3-r0)
(2/17) Installing musl (1.2.5-r0)
(3/17) Installing busybox (1.36.1-r24)
Executing busybox-1.36.1-r24.post-install
(4/17) Installing busybox-binsh (1.36.1-r24)
(5/17) Installing alpine-baselayout (3.6.3-r0)
Executing alpine-baselayout-3.6.3-r0.pre-install
Executing alpine-baselayout-3.6.3-r0.post-install
(6/17) Installing alpine-keys (2.4-r1)
(7/17) Installing alpine-release (9999-r0)
(8/17) Installing ca-certificates-bundle (20240226-r0)
(9/17) Installing libcrypto3 (3.2.1-r1)
(10/17) Installing libssl3 (3.2.1-r1)
(11/17) Installing ssl_client (1.36.1-r24)
(12/17) Installing zlib (1.3.1-r0)
(13/17) Installing apk-tools (9992.14-r6)
(14/17) Installing busybox-suid (1.36.1-r24)
(15/17) Installing scanelf (1.3.7-r2)
(16/17) Installing musl-utils (1.2.5-r0)
(17/17) Installing alpine-base (9999-r0)
Executing busybox-1.36.1-r24.trigger
OK: 8 MiB in 17 packages
(002270) [21:48:53] (native) % adduser -D pmos -u 12345
(002270) [21:48:53] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/abuild-config /home/pmos/.abuild
(002270) [21:48:53] (native) % chown pmos:pmos /mnt/pmbootstrap/abuild-config
(002270) [21:48:53] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/ccache /home/pmos/.ccache
(002270) [21:48:53] (native) % chown pmos:pmos /mnt/pmbootstrap/ccache
(002270) [21:48:53] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/.cache
(002270) [21:48:53] (native) % mkdir -p /mnt/pmbootstrap/go/gocache
(002270) [21:48:53] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/go/gocache /home/pmos/.cache/go-build
(002270) [21:48:53] (native) % chown pmos:pmos /mnt/pmbootstrap/go/gocache
(002270) [21:48:53] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/go/pkg
(002270) [21:48:53] (native) % mkdir -p /mnt/pmbootstrap/go/gomodcache
(002270) [21:48:53] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/go/gomodcache /home/pmos/go/pkg/mod
(002270) [21:48:53] (native) % chown pmos:pmos /mnt/pmbootstrap/go/gomodcache
(002270) [21:48:53] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/packages
(002270) [21:48:53] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/packages /home/pmos/packages/pmos
(002270) [21:48:53] (native) % chown pmos:pmos /mnt/pmbootstrap/packages
(002270) [21:48:53] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/.cargo/git
(002270) [21:48:53] (native) % mkdir -p /mnt/pmbootstrap/rust/git/db
(002270) [21:48:53] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/rust/git/db /home/pmos/.cargo/git/db
(002270) [21:48:53] (native) % chown pmos:pmos /mnt/pmbootstrap/rust/git/db
(002270) [21:48:53] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/.cargo/registry
(002270) [21:48:53] (native) % mkdir -p /mnt/pmbootstrap/rust/registry/cache
(002270) [21:48:53] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/rust/registry/cache /home/pmos/.cargo/registry/cache
(002270) [21:48:53] (native) % chown pmos:pmos /mnt/pmbootstrap/rust/registry/cache
(002270) [21:48:53] (native) % mkdir -p /mnt/pmbootstrap/rust/registry/index
(002270) [21:48:53] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/rust/registry/index /home/pmos/.cargo/registry/index
(002270) [21:48:53] (native) % chown pmos:pmos /mnt/pmbootstrap/rust/registry/index
(002270) [21:48:53] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/sccache /home/pmos/.cache/sccache
(002270) [21:48:53] (native) % chown pmos:pmos /mnt/pmbootstrap/sccache
(002270) [21:48:53] (native) merge /usr
(002270) [21:48:53] % sudo sh -e /home/build/pmbootstrap/pmb/data/merge-usr.sh CALLED_FROM_PMB /home/build/.local/var/pmbootstrap/chroot_native
(002270) [21:48:53] (native) % apk --no-network upgrade -a
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/1) Purging ssl_client (1.36.1-r24)
Executing busybox-1.36.1-r24.trigger
OK: 8 MiB in 16 packages
(002270) [21:48:54] (native) calculate depends of qemu-aarch64 (pmbootstrap -v for details)
(002270) [21:48:54] (native) install qemu-aarch64
(002270) [21:48:54] % sudo mkfifo /home/build/.local/var/pmbootstrap/chroot_native/tmp/apk_progress_fifo
(002270) [21:48:54] (native) % cat /tmp/apk_progress_fifo
(002270) [21:48:54] (native) % sh -c exec 3>/tmp/apk_progress_fifo; apk --no-progress --progress-fd 3 add qemu-aarch64 --no-interactive
(002270) [21:48:54] New background process: pid=2636, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/2) Installing ssl_client (1.36.1-r24)
(2/2) Installing qemu-aarch64 (8.2.2-r0)
Executing busybox-1.36.1-r24.trigger
OK: 12 MiB in 18 packages
(002270) [21:48:55] Register qemu binfmt (aarch64)
(002270) [21:48:55] % sudo sh -c echo ":qemu-aarch64:M::\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\xb7\x00:\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff:/usr/bin/qemu-aarch64-static:C" > /proc/sys/fs/binfmt_misc/register
(002270) [21:48:55] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/usr/bin
(002270) [21:48:55] % sudo touch /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/usr/bin/qemu-aarch64-static
(002270) [21:48:55] % sudo mount --bind /home/build/.local/var/pmbootstrap/chroot_native/usr/bin/qemu-aarch64 /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/usr/bin/qemu-aarch64-static
(002270) [21:48:55] % sudo touch /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/in-pmbootstrap
(002270) [21:48:55] sigfilename: sbin/apk.static.SIGN.RSA.alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002270) [21:48:55] sigkey: alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002270) [21:48:55] extracted: /tmp/pmbootstraptw0bg26eapk
(002270) [21:48:55] extracted: /tmp/pmbootstrap9z6scqnasig
(002270) [21:48:55] Verify apk.static signature with /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002270) [21:48:55] % openssl dgst -sha1 -verify /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub -signature /tmp/pmbootstrap9z6scqnasig /tmp/pmbootstraptw0bg26eapk
Verified OK
(002270) [21:48:55] Verify the version reported by the apk.static binary (must match the package version 2.14.3-r1)
(002270) [21:48:55] % /tmp/pmbootstraptw0bg26eapk --version
apk-tools 2.14.3, compiled for x86_64.
(002270) [21:48:55] (buildroot_aarch64) install alpine-base
(002270) [21:48:55] % sudo ln -s -f /var/cache/apk /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/etc/apk/cache
(002270) [21:48:55] % sudo cp /etc/resolv.conf /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/etc/resolv.conf
(002270) [21:48:55] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/etc/apk
(002270) [21:48:55] (buildroot_aarch64) update /etc/apk/repositories
(002270) [21:48:55] % sudo sh -c echo /mnt/pmbootstrap/packages >> /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/etc/apk/repositories
(002270) [21:48:55] % sudo sh -c echo http://build.postmarketos.org/wip/staging/systemd/master >> /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/etc/apk/repositories
(002270) [21:48:55] % sudo sh -c echo http://mirror.postmarketos.org/postmarketos/staging/systemd/master >> /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/etc/apk/repositories
(002270) [21:48:55] % sudo sh -c echo http://dl-cdn.alpinelinux.org/alpine/edge/main >> /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/etc/apk/repositories
(002270) [21:48:55] % sudo sh -c echo http://dl-cdn.alpinelinux.org/alpine/edge/community >> /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/etc/apk/repositories
(002270) [21:48:55] % sudo sh -c echo http://dl-cdn.alpinelinux.org/alpine/edge/testing >> /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/etc/apk/repositories
(002270) [21:48:55] % sudo mkdir -p /home/build/.local/var/pmbootstrap/tmp
(002270) [21:48:55] % sudo rm -f /home/build/.local/var/pmbootstrap/tmp/apk_progress_fifo
(002270) [21:48:55] % sudo mkfifo /home/build/.local/var/pmbootstrap/tmp/apk_progress_fifo
(002270) [21:48:55] % sudo cat /home/build/.local/var/pmbootstrap/tmp/apk_progress_fifo
(002270) [21:48:55] % sudo sh -c exec 3>/home/build/.local/var/pmbootstrap/tmp/apk_progress_fifo; /home/build/.local/var/pmbootstrap/apk.static --no-progress --progress-fd 3 --root /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64 --cache-dir /home/build/.local/var/pmbootstrap/cache_apk_aarch64 --initdb --arch aarch64 add alpine-base --no-interactive
(002270) [21:48:55] New background process: pid=2678, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
fetch http://build.postmarketos.org/wip/staging/systemd/master/aarch64/APKINDEX.tar.gz
WARNING: Permanently redirected to https://build.postmarketos.org:443/wip/staging/systemd/master/aarch64/APKINDEX.tar.gz
fetch http://mirror.postmarketos.org/postmarketos/staging/systemd/master/aarch64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/edge/main/aarch64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/edge/community/aarch64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/edge/testing/aarch64/APKINDEX.tar.gz
(1/17) Installing alpine-baselayout-data (3.6.3-r0)
(2/17) Installing musl (1.2.5-r0)
(3/17) Installing busybox (1.36.1-r24)
Executing busybox-1.36.1-r24.post-install
(4/17) Installing busybox-binsh (1.36.1-r24)
(5/17) Installing alpine-baselayout (3.6.3-r0)
Executing alpine-baselayout-3.6.3-r0.pre-install
Executing alpine-baselayout-3.6.3-r0.post-install
(6/17) Installing alpine-keys (2.4-r1)
(7/17) Installing alpine-release (9999-r0)
(8/17) Installing ca-certificates-bundle (20240226-r0)
(9/17) Installing libcrypto3 (3.2.1-r1)
(10/17) Installing libssl3 (3.2.1-r1)
(11/17) Installing ssl_client (1.36.1-r24)
(12/17) Installing zlib (1.3.1-r0)
(13/17) Installing apk-tools (9992.14-r6)
(14/17) Installing busybox-suid (1.36.1-r24)
(15/17) Installing scanelf (1.3.7-r2)
(16/17) Installing musl-utils (1.2.5-r0)
(17/17) Installing alpine-base (9999-r0)
Executing busybox-1.36.1-r24.trigger
OK: 9 MiB in 17 packages
(002270) [21:48:56] (buildroot_aarch64) % adduser -D pmos -u 12345
(002270) [21:48:56] (buildroot_aarch64) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/abuild-config /home/pmos/.abuild
(002270) [21:48:56] (buildroot_aarch64) % chown pmos:pmos /mnt/pmbootstrap/abuild-config
(002270) [21:48:56] (buildroot_aarch64) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/ccache /home/pmos/.ccache
(002270) [21:48:56] (buildroot_aarch64) % chown pmos:pmos /mnt/pmbootstrap/ccache
(002270) [21:48:56] (buildroot_aarch64) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/.cache
(002270) [21:48:56] (buildroot_aarch64) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/go/gocache /home/pmos/.cache/go-build
(002270) [21:48:56] (buildroot_aarch64) % chown pmos:pmos /mnt/pmbootstrap/go/gocache
(002270) [21:48:56] (buildroot_aarch64) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/go/pkg
(002270) [21:48:56] (buildroot_aarch64) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/go/gomodcache /home/pmos/go/pkg/mod
(002270) [21:48:56] (buildroot_aarch64) % chown pmos:pmos /mnt/pmbootstrap/go/gomodcache
(002270) [21:48:56] (buildroot_aarch64) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/packages
(002270) [21:48:56] (buildroot_aarch64) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/packages /home/pmos/packages/pmos
(002270) [21:48:56] (buildroot_aarch64) % chown pmos:pmos /mnt/pmbootstrap/packages
(002270) [21:48:56] (buildroot_aarch64) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/.cargo/git
(002270) [21:48:56] (buildroot_aarch64) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/rust/git/db /home/pmos/.cargo/git/db
(002270) [21:48:57] (buildroot_aarch64) % chown pmos:pmos /mnt/pmbootstrap/rust/git/db
(002270) [21:48:57] (buildroot_aarch64) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/.cargo/registry
(002270) [21:48:57] (buildroot_aarch64) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/rust/registry/cache /home/pmos/.cargo/registry/cache
(002270) [21:48:57] (buildroot_aarch64) % chown pmos:pmos /mnt/pmbootstrap/rust/registry/cache
(002270) [21:48:57] (buildroot_aarch64) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/rust/registry/index /home/pmos/.cargo/registry/index
(002270) [21:48:57] (buildroot_aarch64) % chown pmos:pmos /mnt/pmbootstrap/rust/registry/index
(002270) [21:48:57] (buildroot_aarch64) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/sccache /home/pmos/.cache/sccache
(002270) [21:48:57] (buildroot_aarch64) % chown pmos:pmos /mnt/pmbootstrap/sccache
(002270) [21:48:57] (buildroot_aarch64) merge /usr
(002270) [21:48:57] % sudo sh -e /home/build/pmbootstrap/pmb/data/merge-usr.sh CALLED_FROM_PMB /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64
(002270) [21:48:57] (buildroot_aarch64) % apk --no-network upgrade -a
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/1) Purging ssl_client (1.36.1-r24)
Executing busybox-1.36.1-r24.trigger
OK: 9 MiB in 16 packages
(002270) [21:48:59] (buildroot_aarch64) calculate depends of abuild (pmbootstrap -v for details)
(002270) [21:48:59] (buildroot_aarch64) install abuild
(002270) [21:48:59] % sudo mkfifo /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/tmp/apk_progress_fifo
(002270) [21:48:59] (buildroot_aarch64) % cat /tmp/apk_progress_fifo
(002270) [21:48:59] (buildroot_aarch64) % sh -c exec 3>/tmp/apk_progress_fifo; apk --no-progress --progress-fd 3 add abuild --no-interactive
(002270) [21:48:59] New background process: pid=2879, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/25) Installing fakeroot (1.33-r0)
(2/25) Installing openssl (3.2.1-r1)
(3/25) Installing libattr (2.5.2-r0)
(4/25) Installing attr (2.5.2-r0)
(5/25) Installing libacl (2.3.2-r0)
(6/25) Installing tar (1.35-r2)
[USRMERGE] symlink would overwrite source /bin/tar -> usr/bin/tar
[USRMERGE] skipped installing symlink usr/bin/tar
(7/25) Installing pkgconf (2.2.0-r0)
(8/25) Installing patch (2.7.6-r10)
(9/25) Installing libgcc (13.2.1_git20240309-r0)
(10/25) Installing libstdc++ (13.2.1_git20240309-r0)
(11/25) Installing lzip (1.24.1-r0)
(12/25) Installing ssl_client (1.36.1-r24)
(13/25) Installing ca-certificates (20240226-r0)
(14/25) Installing brotli-libs (1.1.0-r1)
(15/25) Installing c-ares (1.27.0-r0)
(16/25) Installing libunistring (1.2-r0)
(17/25) Installing libidn2 (2.3.7-r0)
(18/25) Installing nghttp2-libs (1.60.0-r0)
(19/25) Installing libpsl (0.21.5-r1)
(20/25) Installing zstd-libs (1.5.6-r0)
(21/25) Installing libcurl (8.7.1-r0)
(22/25) Installing curl (8.7.1-r0)
(23/25) Installing libcap2 (2.69-r1)
(24/25) Installing libcap-getcap (2.69-r1)
(25/25) Installing abuild (99993.12.0-r1)
Executing abuild-99993.12.0-r1.pre-install
Executing busybox-1.36.1-r24.trigger
Executing ca-certificates-20240226-r0.trigger
OK: 20 MiB in 41 packages
(002270) [21:49:01] (buildroot_aarch64) % chown root:abuild /var/cache/distfiles
(002270) [21:49:01] (buildroot_aarch64) % chmod g+w /var/cache/distfiles
(002270) [21:49:01] (buildroot_aarch64) % adduser pmos abuild
(002270) [21:49:01] (buildroot_aarch64) calculate depends of abuild, build-base, ccache, git (pmbootstrap -v for details)
(002270) [21:49:01] so:libisl.so.23: has multiple providers (isl25, isl26), picked shortest: isl25
(002270) [21:49:01] (buildroot_aarch64) install abuild build-base ccache git
(002270) [21:49:01] % sudo rm -f /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/tmp/apk_progress_fifo
(002270) [21:49:01] % sudo mkfifo /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/tmp/apk_progress_fifo
(002270) [21:49:01] (buildroot_aarch64) % cat /tmp/apk_progress_fifo
(002270) [21:49:01] (buildroot_aarch64) % sh -c exec 3>/tmp/apk_progress_fifo; apk --no-progress --progress-fd 3 add abuild build-base ccache git --no-interactive
(002270) [21:49:01] New background process: pid=2933, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/24) Installing jansson (2.14-r4)
(2/24) Installing binutils (2.42-r0)
(3/24) Installing libmagic (5.45-r1)
(4/24) Installing file (5.45-r1)
(5/24) Installing libgomp (13.2.1_git20240309-r0)
(6/24) Installing libatomic (13.2.1_git20240309-r0)
(7/24) Installing gmp (6.3.0-r0)
(8/24) Installing isl26 (0.26-r1)
(9/24) Installing mpfr4 (4.2.1-r0)
(10/24) Installing mpc1 (1.3.1-r1)
(11/24) Installing gcc (13.2.1_git20240309-r0)
(12/24) Installing libstdc++-dev (13.2.1_git20240309-r0)
(13/24) Installing musl-dev (1.2.5-r0)
(14/24) Installing g++ (13.2.1_git20240309-r0)
(15/24) Installing make (4.4.1-r2)
(16/24) Installing fortify-headers (1.1-r3)
(17/24) Installing build-base (0.5-r3)
(18/24) Installing hiredis (1.2.0-r0)
(19/24) Installing libxxhash (0.8.2-r2)
(20/24) Installing ccache (4.9.1-r0)
(21/24) Installing libexpat (2.6.2-r0)
(22/24) Installing pcre2 (10.43-r0)
(23/24) Installing git (2.44.0-r1)
(24/24) Installing git-init-template (2.44.0-r1)
Executing busybox-1.36.1-r24.trigger
OK: 230 MiB in 65 packages
(002270) [21:49:06] (buildroot_aarch64) generate abuild keys
(002270) [21:49:06] (buildroot_aarch64) % busybox su pmos -c PACKAGER='pmos <pmos@local>' HOME=/home/pmos abuild-keygen -n -q -a
writing RSA key
(002270) [21:49:09] (buildroot_aarch64) % cp /mnt/pmbootstrap/abuild-config/pmos@local-660dced3.rsa.pub /etc/apk/keys/
(002270) [21:49:09] (buildroot_aarch64) % cp /tmp/apk_wrapper.sh /usr/local/bin/abuild-apk
(002270) [21:49:09] (buildroot_aarch64) % chmod +x /usr/local/bin/abuild-apk
(002270) [21:49:09] (buildroot_aarch64) % sed -i -e s/^CLEANUP=.*/CLEANUP=''/ /etc/abuild.conf
(002270) [21:49:09] (buildroot_aarch64) % sed -i -e s/^ERROR_CLEANUP=.*/ERROR_CLEANUP=''/ /etc/abuild.conf
(002270) [21:49:09] (buildroot_aarch64) % sed -i $ a\export JOBS=3 /etc/abuild.conf
(002270) [21:49:09] (native) calculate depends of ccache-cross-symlinks, abuild, gcc-aarch64, g++-aarch64, crossdirect (pmbootstrap -v for details)
(002270) [21:49:09] so:libisl.so.23: has multiple providers (isl25, isl26), picked shortest: isl25
(002270) [21:49:09] (native) install ccache-cross-symlinks abuild gcc-aarch64 g++-aarch64 crossdirect
(002270) [21:49:09] % sudo rm -f /home/build/.local/var/pmbootstrap/chroot_native/tmp/apk_progress_fifo
(002270) [21:49:09] % sudo mkfifo /home/build/.local/var/pmbootstrap/chroot_native/tmp/apk_progress_fifo
(002270) [21:49:09] (native) % cat /tmp/apk_progress_fifo
(002270) [21:49:09] (native) % sh -c exec 3>/tmp/apk_progress_fifo; apk --no-progress --progress-fd 3 add ccache-cross-symlinks abuild gcc-aarch64 g++-aarch64 crossdirect --no-interactive
(002270) [21:49:09] New background process: pid=3037, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/39) Installing fakeroot (1.33-r0)
(2/39) Installing openssl (3.2.1-r1)
(3/39) Installing libattr (2.5.2-r0)
(4/39) Installing attr (2.5.2-r0)
(5/39) Installing libacl (2.3.2-r0)
(6/39) Installing tar (1.35-r2)
[USRMERGE] symlink would overwrite source /bin/tar -> usr/bin/tar
[USRMERGE] skipped installing symlink usr/bin/tar
(7/39) Installing pkgconf (2.2.0-r0)
(8/39) Installing patch (2.7.6-r10)
(9/39) Installing libgcc (13.2.1_git20240309-r0)
(10/39) Installing libstdc++ (13.2.1_git20240309-r0)
(11/39) Installing lzip (1.24.1-r0)
(12/39) Installing ca-certificates (20240226-r0)
(13/39) Installing brotli-libs (1.1.0-r1)
(14/39) Installing c-ares (1.27.0-r0)
(15/39) Installing libunistring (1.2-r0)
(16/39) Installing libidn2 (2.3.7-r0)
(17/39) Installing nghttp2-libs (1.60.0-r0)
(18/39) Installing libpsl (0.21.5-r1)
(19/39) Installing zstd-libs (1.5.6-r0)
(20/39) Installing libcurl (8.7.1-r0)
(21/39) Installing curl (8.7.1-r0)
(22/39) Installing libcap2 (2.69-r1)
(23/39) Installing libcap-getcap (2.69-r1)
(24/39) Installing abuild (99993.12.0-r1)
Executing abuild-99993.12.0-r1.pre-install
(25/39) Installing hiredis (1.2.0-r0)
(26/39) Installing libxxhash (0.8.2-r2)
(27/39) Installing ccache (4.9.1-r0)
(28/39) Installing ccache-cross-symlinks (3-r0)
(29/39) Installing crossdirect (5.1.0-r0)
(30/39) Installing libstdc++-dev-aarch64 (13.2.1_git20240309-r0)
(31/39) Installing jansson (2.14-r4)
(32/39) Installing binutils-aarch64 (2.42-r0)
(33/39) Installing gmp (6.3.0-r0)
(34/39) Installing mpfr4 (4.2.1-r0)
(35/39) Installing mpc1 (1.3.1-r1)
(36/39) Installing isl26 (0.26-r1)
(37/39) Installing gcc-aarch64 (13.2.1_git20240309-r0)
(38/39) Installing musl-dev (1.2.5-r0)
(39/39) Installing g++-aarch64 (13.2.1_git20240309-r0)
Executing busybox-1.36.1-r24.trigger
Executing ca-certificates-20240226-r0.trigger
OK: 233 MiB in 57 packages
(002270) [21:49:11] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/native
(002270) [21:49:11] % sudo mount --bind /home/build/.local/var/pmbootstrap/chroot_native /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/native
(002270) [21:49:11] % sudo ln -s /native/lib/ld-musl-x86_64.so.1 /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/lib/ld-musl-x86_64.so.1
(002270) [21:49:11] % sudo ln -sf /native/bin/busybox /usr/local/bin/gzip
(002270) [21:49:11] (buildroot_aarch64) build aarch64/gnome-keyring-99942.1-r2.apk
(002270) [21:49:11] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/home/pmos/build
(002270) [21:49:11] % sudo cp -rL /home/build/pmaports/systemd/gnome-keyring/0001-build-Use-p11_module_configs-as-default-pkcs11-confi.patch /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/home/pmos/build/0001-build-Use-p11_module_configs-as-default-pkcs11-confi.patch
(002270) [21:49:11] % sudo cp -rL /home/build/pmaports/systemd/gnome-keyring/APKBUILD /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/home/pmos/build/APKBUILD
(002270) [21:49:11] (buildroot_aarch64) % chown -R pmos:pmos /home/pmos/build
(002270) [21:49:11] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/mnt/pmaports
(002270) [21:49:11] % sudo mount --bind /home/build/pmaports /home/build/.local/var/pmbootstrap/chroot_buildroot_aarch64/mnt/pmaports
(002270) [21:49:11] (buildroot_aarch64) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/build
(002270) [21:49:11] (buildroot_aarch64) % busybox su pmos -c HOME=/home/pmos ln -sf /mnt/pmaports/.git /home/pmos/build/.git
(002270) [21:49:11] (buildroot_aarch64) % cd /home/pmos/build; busybox su pmos -c CARCH=aarch64 SUDO_APK='abuild-apk --no-progress' PATH=/native/usr/lib/crossdirect/aarch64:/usr/lib/ccache/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin CCACHE_DISABLE=1 GOCACHE=/home/pmos/.cache/go-build HOME=/home/pmos abuild -D postmarketOS -r -f
>>> gnome-keyring: Building pmos/gnome-keyring 99942.1-r2 (using abuild 3.12.0-r1) started Wed, 03 Apr 2024 21:49:12 +0000
>>> gnome-keyring: Checking sanity of /home/pmos/build/APKBUILD...
>>> WARNING: gnome-keyring: No maintainer
>>> gnome-keyring: Analyzing dependencies...
>>> gnome-keyring: Installing for build: build-base gcr autoconf automake gcr-dev gobject-introspection-dev gtk+3.0-dev gtk-doc intltool libcap-ng-dev libgcrypt-dev libxslt linux-pam-dev openssh-client systemd-dev
WARNING: opening /home/pmos/packages//pmos: No such file or directory
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/270) Installing libgpg-error (1.48-r0)
(2/270) Installing libgcrypt (1.10.3-r0)
(3/270) Installing libffi (3.4.6-r0)
(4/270) Installing libintl (0.22.5-r0)
(5/270) Installing libblkid (2.39.3-r1)
(6/270) Installing libmount (2.39.3-r1)
(7/270) Installing glib (2.78.4-r1)
(8/270) Installing libtasn1 (4.19.0-r2)
(9/270) Installing p11-kit (0.25.3-r0)
(10/270) Installing gcr-base (3.41.2-r0)
(11/270) Installing libsecret (0.21.4-r0)
(12/270) Installing gcr-ssh-agent (3.41.2-r0)
(13/270) Installing libxau (1.0.11-r3)
(14/270) Installing libmd (1.1.0-r0)
(15/270) Installing libbsd (0.12.2-r0)
(16/270) Installing libxdmcp (1.1.5-r0)
(17/270) Installing libxcb (1.16.1-r0)
(18/270) Installing libx11 (1.8.7-r0)
(19/270) Installing libxext (1.3.6-r1)
(20/270) Installing libxrender (0.9.11-r4)
(21/270) Installing libbz2 (1.0.8-r6)
(22/270) Installing libpng (1.6.43-r0)
(23/270) Installing freetype (2.13.2-r0)
(24/270) Installing fontconfig (2.15.0-r0)
(25/270) Installing pixman (0.43.2-r0)
(26/270) Installing cairo (1.18.0-r0)
(27/270) Installing xz-libs (5.6.1-r2)
(28/270) Installing libxml2 (2.12.6-r0)
(29/270) Installing shared-mime-info (2.4-r0)
(30/270) Installing hicolor-icon-theme (0.17-r2)
(31/270) Installing libjpeg-turbo (3.0.2-r0)
(32/270) Installing libsharpyuv (1.3.2-r0)
(33/270) Installing libwebp (1.3.2-r0)
(34/270) Installing tiff (4.6.0-r0)
(35/270) Installing gdk-pixbuf (2.42.10-r6)
(36/270) Installing gtk-update-icon-cache (3.24.41-r0)
(37/270) Installing libxcomposite (0.4.6-r4)
(38/270) Installing libxfixes (6.0.1-r3)
(39/270) Installing libxcursor (1.2.2-r0)
(40/270) Installing libxdamage (1.1.6-r4)
(41/270) Installing libxi (1.8.1-r3)
(42/270) Installing libxinerama (1.1.5-r3)
(43/270) Installing libxrandr (1.5.4-r0)
(44/270) Installing libatk-1.0 (2.52.0-r0)
(45/270) Installing libxtst (1.2.4-r5)
(46/270) Installing lz4-libs (1.9.4-r5)
(47/270) Installing systemd-libs (255.2-r0)
(48/270) Installing dbus-libs (9991.14.10-r1)
(49/270) Installing at-spi2-core (2.52.0-r0)
(50/270) Installing libatk-bridge-2.0 (2.52.0-r0)
(51/270) Installing cairo-gobject (1.18.0-r0)
(52/270) Installing avahi-libs (0.8-r16)
(53/270) Installing nettle (3.9.1-r0)
(54/270) Installing gnutls (3.8.3-r0)
(55/270) Installing cups-libs (2.4.7-r3)
(56/270) Installing libepoxy (1.5.10-r1)
(57/270) Installing fribidi (1.0.13-r0)
(58/270) Installing graphite2 (1.3.14-r6)
(59/270) Installing harfbuzz (8.4.0-r0)
(60/270) Installing libxft (2.3.8-r2)
(61/270) Installing pango (1.52.2-r0)
(62/270) Installing wayland-libs-client (1.22.0-r4)
(63/270) Installing wayland-libs-cursor (1.22.0-r4)
(64/270) Installing wayland-libs-egl (1.22.0-r4)
(65/270) Installing xkeyboard-config (2.41-r0)
(66/270) Installing libxkbcommon (1.7.0-r0)
(67/270) Installing gtk+3.0 (9999_git20231113-r0)
Executing gtk+3.0-9999_git20231113-r0.post-install
(68/270) Installing gcr (3.41.2-r0)
(69/270) Installing m4 (1.4.19-r3)
(70/270) Installing perl (5.38.2-r0)
(71/270) Installing autoconf (2.72-r0)
(72/270) Installing automake (1.16.5-r2)
(73/270) Installing bzip2-dev (1.0.8-r6)
(74/270) Installing libxml2-utils (2.12.6-r0)
(75/270) Installing docbook-xml (4.5-r8)
Executing docbook-xml-4.5-r8.post-install
(76/270) Installing libxslt (1.1.39-r1)
(77/270) Installing docbook-xsl (1.79.2-r8)
Executing docbook-xsl-1.79.2-r8.post-install
(78/270) Installing xz (5.6.1-r2)
(79/270) Installing gettext-asprintf (0.22.5-r0)
(80/270) Installing ncurses-terminfo-base (6.4_p20240309-r0)
(81/270) Installing libncursesw (6.4_p20240309-r0)
(82/270) Installing gettext-libs (0.22.5-r0)
(83/270) Installing gettext-envsubst (0.22.5-r0)
(84/270) Installing gettext (0.22.5-r0)
(85/270) Installing gettext-dev (0.22.5-r0)
(86/270) Installing gdbm (1.23-r1)
(87/270) Installing mpdecimal (4.0.0-r0)
(88/270) Installing libpanelw (6.4_p20240309-r0)
(89/270) Installing readline (8.2.10-r0)
(90/270) Installing sqlite-libs (3.45.2-r0)
(91/270) Installing python3 (3.11.8-r0)
(92/270) Installing python3-pycache-pyc0 (3.11.8-r0)
(93/270) Installing pyc (3.11.8-r0)
(94/270) Installing python3-pyc (3.11.8-r0)
(95/270) Installing linux-headers (6.6-r0)
(96/270) Installing libffi-dev (3.4.6-r0)
(97/270) Installing bsd-compat-headers (0.7.2-r6)
(98/270) Installing libformw (6.4_p20240309-r0)
(99/270) Installing libmenuw (6.4_p20240309-r0)
(100/270) Installing libncurses++ (6.4_p20240309-r0)
(101/270) Installing ncurses-dev (6.4_p20240309-r0)
(102/270) Installing libedit (20230828.3.1-r4)
(103/270) Installing libedit-dev (20230828.3.1-r4)
(104/270) Installing zlib-dev (1.3.1-r0)
(105/270) Installing libpcre2-16 (10.43-r0)
(106/270) Installing libpcre2-32 (10.43-r0)
(107/270) Installing pcre2-dev (10.43-r0)
(108/270) Installing libuuid (2.39.3-r1)
(109/270) Installing libfdisk (2.39.3-r1)
(110/270) Installing libsmartcols (2.39.3-r1)
(111/270) Installing util-linux-dev (2.39.3-r1)
(112/270) Installing glib-dev (2.78.4-r1)
(113/270) Installing dbus-dev (9991.14.10-r1)
(114/270) Installing xorgproto (2023.2-r0)
(115/270) Installing libxau-dev (1.0.11-r3)
(116/270) Installing xcb-proto (1.16.0-r0)
(117/270) Installing xcb-proto-pyc (1.16.0-r0)
(118/270) Installing libxdmcp-dev (1.1.5-r0)
(119/270) Installing libxcb-dev (1.16.1-r0)
(120/270) Installing xtrans (1.5.0-r0)
(121/270) Installing libx11-dev (1.8.7-r0)
(122/270) Installing libxext-dev (1.3.6-r1)
(123/270) Installing libxfixes-dev (6.0.1-r3)
(124/270) Installing libxi-dev (1.8.1-r3)
(125/270) Installing libxtst-dev (1.2.4-r5)
(126/270) Installing at-spi2-core-dev (2.52.0-r0)
(127/270) Installing libturbojpeg (3.0.2-r0)
(128/270) Installing libjpeg-turbo-dev (3.0.2-r0)
(129/270) Installing libpng-dev (1.6.43-r0)
(130/270) Installing zstd (1.5.6-r0)
(131/270) Installing zstd-dev (1.5.6-r0)
(132/270) Installing libtiffxx (4.6.0-r0)
(133/270) Installing libwebpdecoder (1.3.2-r0)
(134/270) Installing libwebpdemux (1.3.2-r0)
(135/270) Installing libwebpmux (1.3.2-r0)
(136/270) Installing libwebp-dev (1.3.2-r0)
(137/270) Installing tiff-dev (4.6.0-r0)
(138/270) Installing gdk-pixbuf-dev (2.42.10-r6)
(139/270) Installing hwdata-pci (0.380-r0)
(140/270) Installing libpciaccess (0.18.1-r0)
(141/270) Installing libdrm (2.4.120-r0)
(142/270) Installing libpciaccess-dev (0.18.1-r0)
(143/270) Installing libdrm-dev (2.4.120-r0)
(144/270) Installing libxdamage-dev (1.1.6-r4)
(145/270) Installing libxshmfence (1.3.2-r5)
(146/270) Installing libxshmfence-dev (1.3.2-r5)
(147/270) Installing mesa (24.0.4-r0)
(148/270) Installing wayland-libs-server (1.22.0-r4)
(149/270) Installing mesa-gbm (24.0.4-r0)
(150/270) Installing mesa-glapi (24.0.4-r0)
(151/270) Installing mesa-egl (24.0.4-r0)
(152/270) Installing libxxf86vm (1.1.5-r5)
(153/270) Installing mesa-gl (24.0.4-r0)
(154/270) Installing mesa-gles (24.0.4-r0)
(155/270) Installing llvm17-libs (17.0.6-r0)
(156/270) Installing mesa-osmesa (24.0.4-r0)
(157/270) Installing clang17-headers (17.0.6-r0)
(158/270) Installing libclc (17.0.6-r0)
(159/270) Installing spirv-llvm-translator-libs (17.0.0-r0)
(160/270) Installing spirv-tools (1.3.261.1-r0)
(161/270) Installing clang17-libs (17.0.6-r0)
(162/270) Installing libelf (0.191-r0)
(163/270) Installing mesa-rusticl (24.0.4-r0)
(164/270) Installing mesa-xatracker (24.0.4-r0)
(165/270) Installing libxxf86vm-dev (1.1.5-r5)
(166/270) Installing mesa-dev (24.0.4-r0)
(167/270) Installing libepoxy-dev (1.5.10-r1)
(168/270) Installing libxinerama-dev (1.1.5-r3)
(169/270) Installing wayland-protocols (1.34-r0)
(170/270) Installing libxkbcommon-x11 (1.7.0-r0)
(171/270) Installing xz-dev (5.6.1-r2)
(172/270) Installing libxml2-dev (2.12.6-r0)
(173/270) Installing libxkbcommon-dev (1.7.0-r0)
(174/270) Installing cairo-tools (1.18.0-r0)
(175/270) Installing expat (2.6.2-r0)
(176/270) Installing expat-dev (2.6.2-r0)
(177/270) Installing brotli (1.1.0-r1)
(178/270) Installing brotli-dev (1.1.0-r1)
(179/270) Installing freetype-dev (2.13.2-r0)
(180/270) Installing fontconfig-dev (2.15.0-r0)
(181/270) Installing libxrender-dev (0.9.11-r4)
(182/270) Installing pixman-dev (0.43.2-r0)
(183/270) Installing util-macros (1.20.0-r0)
(184/270) Installing xcb-util (0.4.1-r3)
(185/270) Installing xcb-util-dev (0.4.1-r3)
(186/270) Installing cairo-dev (1.18.0-r0)
(187/270) Installing fribidi-dev (1.0.13-r0)
(188/270) Installing pango-tools (1.52.2-r0)
(189/270) Installing harfbuzz-cairo (8.4.0-r0)
(190/270) Installing harfbuzz-gobject (8.4.0-r0)
(191/270) Installing icu-data-en (74.2-r0)
Executing icu-data-en-74.2-r0.post-install
*
* If you need ICU with non-English locales and legacy charset support, install
* package icu-data-full.
*
(192/270) Installing icu-libs (74.2-r0)
(193/270) Installing harfbuzz-icu (8.4.0-r0)
(194/270) Installing harfbuzz-subset (8.4.0-r0)
(195/270) Installing graphite2-dev (1.3.14-r6)
(196/270) Installing icu (74.2-r0)
(197/270) Installing icu-dev (74.2-r0)
(198/270) Installing harfbuzz-dev (8.4.0-r0)
(199/270) Installing libxft-dev (2.3.8-r2)
(200/270) Installing pango-dev (1.52.2-r0)
(201/270) Installing wayland-dev (1.22.0-r4)
(202/270) Installing libxcomposite-dev (0.4.6-r4)
(203/270) Installing libxcursor-dev (1.2.2-r0)
(204/270) Installing libxrandr-dev (1.5.4-r0)
(205/270) Installing gtk+3.0-dev (9999_git20231113-r0)
(206/270) Installing p11-kit-dev (0.25.3-r0)
(207/270) Installing gcr-dev (3.41.2-r0)
(208/270) Installing libltdl (2.4.7-r3)
(209/270) Installing libtool (2.4.7-r3)
(210/270) Installing gobject-introspection (1.78.1-r0)
(211/270) Installing gobject-introspection-dev (1.78.1-r0)
(212/270) Installing py3-pygments (2.17.2-r0)
(213/270) Installing py3-pygments-pyc (2.17.2-r0)
(214/270) Installing gtk-doc (1.33.2-r3)
(215/270) Installing perl-http-date (6.06-r0)
(216/270) Installing perl-clone (0.46-r2)
(217/270) Installing perl-uri (5.28-r0)
(218/270) Installing perl-io-html (1.004-r1)
(219/270) Installing perl-encode-locale (1.05-r5)
(220/270) Installing perl-lwp-mediatypes (6.04-r3)
(221/270) Installing perl-http-message (6.45-r0)
(222/270) Installing perl-http-cookies (6.11-r0)
(223/270) Installing perl-net-http (6.23-r1)
(224/270) Installing perl-html-tagset (3.24-r0)
(225/270) Installing perl-html-parser (3.82-r0)
(226/270) Installing perl-file-listing (6.16-r0)
(227/270) Installing perl-www-robotrules (6.02-r5)
(228/270) Installing perl-http-negotiate (6.01-r5)
(229/270) Installing perl-try-tiny (0.31-r2)
(230/270) Installing perl-libwww (6.77-r0)
(231/270) Installing perl-xml-parser (2.47-r0)
(232/270) Installing intltool (0.51.0-r8)
(233/270) Installing libcap-ng (0.8.4-r0)
(234/270) Installing libcap-ng-dev (0.8.4-r0)
(235/270) Installing libgpg-error-dev (1.48-r0)
(236/270) Installing libgcrypt-dev (1.10.3-r0)
(237/270) Installing skalibs (2.14.1.1-r0)
(238/270) Installing utmps-libs (0.1.2.2-r1)
(239/270) Installing linux-pam (1.6.0-r0)
(240/270) Installing linux-pam-dev (1.6.0-r0)
(241/270) Installing openssh-keygen (9.7_p1-r2)
(242/270) Installing openssh-client-common (9.7_p1-r2)
(243/270) Installing openssh-client-default (9.7_p1-r2)
(244/270) Installing kmod (31-r4)
[ENTRY] Normalised /sbin/../bin/kmod as /bin//kmod
[ENTRY] Normalised /sbin/../bin/kmod as /bin//kmod
[ENTRY] Normalised /sbin/../bin/kmod as /bin//kmod
[ENTRY] Normalised /sbin/../bin/kmod as /bin//kmod
[ENTRY] Normalised /sbin/../bin/kmod as /bin//kmod
[ENTRY] Normalised /sbin/../bin/kmod as /bin//kmod
(245/270) Installing kmod-libs (31-r4)
(246/270) Installing libmicrohttpd (0.9.77-r0)
(247/270) Installing systemd-journald (255.2-r0)
(248/270) Installing libeconf (0.6.2-r0)
(249/270) Installing runuser (2.39.3-r1)
(250/270) Installing util-linux-login (2.39.3-r1)
(251/270) Installing less (643-r1)
(252/270) Installing libapparmor (3.1.7-r0)
(253/270) Installing audit-libs (4.0.1-r0)
(254/270) Installing argon2-libs (20190702-r5)
(255/270) Installing device-mapper-libs (2.03.23-r2)
(256/270) Installing json-c (0.17-r0)
(257/270) Installing cryptsetup-libs (2.7.1-r0)
(258/270) Installing libseccomp (2.5.5-r0)
(259/270) Installing dbus (9991.14.10-r1)
Executing dbus-9991.14.10-r1.pre-install
Executing dbus-9991.14.10-r1.post-install
(260/270) Installing dbus-daemon-launch-helper (9991.14.10-r1)
(261/270) Installing dbus-service (9991.14.10-r1)
(262/270) Installing shadow (4.15.1-r0)
(263/270) Installing systemd-logind (255.2-r0)
(264/270) Installing systemd (255.2-r0)
Executing systemd-255.2-r0.post-install
Created symlink /etc/systemd/system/sysinit.target.wants/debug-shell.service → /usr/lib/systemd/system/debug-shell.service.
(265/270) Installing systemd-udevd (255.2-r0)
(266/270) Installing systemd-dev (255.2-r0)
(267/270) Installing .makedepends-gnome-keyring (20240403.214916)
(268/270) Installing perl-error (0.17029-r2)
(269/270) Installing perl-git (2.44.0-r1)
(270/270) Installing git-perl (2.44.0-r1)
Executing busybox-1.36.1-r24.trigger
Executing glib-2.78.4-r1.trigger
Executing shared-mime-info-2.4-r0.trigger
Executing gdk-pixbuf-2.42.10-r6.trigger
Executing gtk-update-icon-cache-3.24.41-r0.trigger
Executing dbus-9991.14.10-r1.trigger
OK: 902 MiB in 335 packages
>>> gnome-keyring: Cleaning up srcdir
>>> gnome-keyring: Cleaning up pkgdir
>>> gnome-keyring: Cleaning up tmpdir
>>> gnome-keyring: Fetching https://download.gnome.org/sources/gnome-keyring/42/gnome-keyring-42.1.tar.xz
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 1314k 100 1314k 0 0 1546k 0 --:--:-- --:--:-- --:--:-- 1546k
>>> gnome-keyring: Fetching https://download.gnome.org/sources/gnome-keyring/42/gnome-keyring-42.1.tar.xz
>>> gnome-keyring: Checking sha512sums...
gnome-keyring-42.1.tar.xz: OK
0001-build-Use-p11_module_configs-as-default-pkcs11-confi.patch: OK
>>> gnome-keyring: Unpacking /var/cache/distfiles/gnome-keyring-42.1.tar.xz...
>>> gnome-keyring: 0001-build-Use-p11_module_configs-as-default-pkcs11-confi.patch
patching file configure.ac
patching file pkcs11/rpc-layer/Makefile.am
sh: invalid number ''
sh: invalid number ''
sh: invalid number ''
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a race-free mkdir -p... ./build/install-sh -c -d
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether make supports nested variables... (cached) yes
checking whether build environment is sane... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking whether make supports the include directive... yes (GNU style)
checking for aarch64-alpine-linux-musl-gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether gcc accepts -g... yes
checking for gcc option to enable C11 features... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... gcc3
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for wchar.h... yes
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking whether _XOPEN_SOURCE should be defined... no
checking for library containing strerror... none required
checking for aarch64-alpine-linux-musl-gcc... (cached) gcc
checking whether the compiler supports GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to enable C11 features... (cached) none needed
checking whether gcc understands -c and -o together... (cached) yes
checking dependency style of gcc... (cached) gcc3
checking how to run the C preprocessor... gcc -E
checking whether ln -s works... yes
checking whether make sets $(MAKE)... (cached) yes
checking build system type... aarch64-alpine-linux-musl
checking host system type... aarch64-alpine-linux-musl
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/sbin/sed
checking for grep that handles long lines and -e... /usr/sbin/grep
checking for egrep... /usr/sbin/grep -E
checking for fgrep... /usr/sbin/grep -F
checking for ld used by gcc... /usr/aarch64-alpine-linux-musl/bin/ld
checking if the linker (/usr/aarch64-alpine-linux-musl/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/sbin/nm -B
checking the name lister (/usr/sbin/nm -B) interface... BSD nm
checking the maximum length of command line arguments... 98304
checking how to convert aarch64-alpine-linux-musl file names to aarch64-alpine-linux-musl format... func_convert_file_noop
checking how to convert aarch64-alpine-linux-musl file names to toolchain format... func_convert_file_noop
checking for /usr/aarch64-alpine-linux-musl/bin/ld option to reload object files... -r
checking for aarch64-alpine-linux-musl-objdump... no
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for aarch64-alpine-linux-musl-dlltool... no
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for aarch64-alpine-linux-musl-ar... no
checking for ar... ar
checking for archiver @FILE support... @
checking for aarch64-alpine-linux-musl-strip... no
checking for strip... strip
checking for aarch64-alpine-linux-musl-ranlib... no
checking for ranlib... ranlib
checking command to parse /usr/sbin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /usr/sbin/dd
checking how to truncate binary pipes... /usr/sbin/dd bs=4096 count=1
checking for aarch64-alpine-linux-musl-mt... no
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/aarch64-alpine-linux-musl/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking for aarch64-alpine-linux-musl-pkg-config... no
checking for pkg-config... /usr/sbin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for pid_t... yes
checking return type of signal handlers... void
checking for size_t... yes
checking for uid_t in sys/types.h... yes
checking for GLIB... yes
checking for GMODULE... yes
checking for GOBJECT... yes
checking for GIO... yes
checking whether NLS is requested... yes
checking for msgfmt... /usr/sbin/msgfmt
checking for gmsgfmt... /usr/sbin/msgfmt
checking for xgettext... /usr/sbin/xgettext
checking for msgmerge... /usr/sbin/msgmerge
checking for ld used by gcc... /usr/aarch64-alpine-linux-musl/bin/ld
checking if the linker (/usr/aarch64-alpine-linux-musl/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... no
checking for iconv... yes
checking for working iconv... yes
checking for GNU gettext in libintl... yes
checking whether to use NLS... yes
checking where the gettext function comes from... external libintl
checking how to link with libintl... /usr/lib/libintl.so
checking for glib-genmarshal... /usr/sbin/glib-genmarshal
checking for aarch64-alpine-linux-musl-pkg-config... /usr/sbin/pkg-config
checking pkg-config is at least version 0.16... yes
checking whether socklen_t is defined... yes
checking for struct cmsgcred... no
checking for getpeerucred... no
checking for getpeereid... no
checking for flock... yes
checking for timegm... yes
checking whether stat file-mode macros are broken... no
checking for inttypes.h... yes
checking for stdint.h... yes
checking for fcntl.h... yes
checking for sys/time.h... yes
checking for time.h... yes
checking for unistd.h... (cached) yes
checking for gettimeofday... yes
checking for fsync... yes
checking for mlock... yes
checking for socket in -lsocket... no
checking for socket... yes
checking for GCK... yes
checking for GCR... yes
checking for GCR_BASE... yes
checking for security/pam_modules.h... yes
checking for pam_start in -lpam... yes
checking for dlopen... yes
checking for dlsym... yes
checking where to put pkcs11 module configuration... /usr/share/p11-kit/modules
checking module path to install pkcs11 modules... /usr/lib/pkcs11
checking for ssh-agent... /usr/sbin/ssh-agent
checking for ssh-add... /usr/sbin/ssh-add
checking for libgcrypt-config... /usr/sbin/libgcrypt-config
checking for LIBGCRYPT - version >= 1.2.2... yes (1.10.3)
checking LIBGCRYPT API version... okay
checking for LIBSYSTEMD... yes
checking for P11_TESTS... no
checking whether to build documentation... yes
checking for xsltproc... /usr/sbin/xsltproc
checking for debug mode... default (-g, debug output, testable)
checking for more warnings... yes
checking whether gcc understands -Wno-strict-aliasing... yes
checking whether gcc understands -Wno-sign-compare... yes
checking build strict... no (quick tests, non-fatal warnings)
checking whether to build with gcov testing... no
checking valgrind... no
checking that generated files are newer than configure... done
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating pkcs11/rpc-layer/gnome-keyring.module
config.status: creating po/Makefile.in
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing po-directories commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
OPTIONAL DEPENDENCIES
PAM: yes (/usr/lib/security)
Linux capabilities: no
SELinux: no
systemd: yes
CONFIGURATION
SSH Agent: yes
BUILD
Debug Build: default (-g, debug output, testable)
Strict Compilation: no (quick tests, non-fatal warnings)
Valgrind: no
PKCS#11 Tests no
Test Coverage: no
Documentation: yes
CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh '/home/pmos/build/src/gnome-keyring-42.1/build/missing' aclocal-1.16 -I build/m4
CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh '/home/pmos/build/src/gnome-keyring-42.1/build/missing' autoconf
cd . && /bin/sh /home/pmos/build/src/gnome-keyring-42.1/build/missing automake-1.16 --foreign
configure.ac:38: warning: The macro 'AC_GNU_SOURCE' is obsolete.
configure.ac:38: You should run autoupdate.
./lib/autoconf/specific.m4:489: AC_GNU_SOURCE is expanded from...
configure.ac:38: the top level
configure.ac:39: warning: The macro 'AC_ISC_POSIX' is obsolete.
configure.ac:39: You should run autoupdate.
./lib/autoconf/specific.m4:732: AC_ISC_POSIX is expanded from...
configure.ac:39: the top level
configure.ac:46: warning: The macro 'AM_DISABLE_STATIC' is obsolete.
configure.ac:46: You should run autoupdate.
build/m4/ltoptions.m4:260: AM_DISABLE_STATIC is expanded from...
configure.ac:46: the top level
configure.ac:47: warning: The macro 'AM_PROG_LIBTOOL' is obsolete.
configure.ac:47: You should run autoupdate.
build/m4/libtool.m4:100: AM_PROG_LIBTOOL is expanded from...
configure.ac:47: the top level
configure.ac:51: warning: The macro 'AC_TYPE_SIGNAL' is obsolete.
configure.ac:51: You should run autoupdate.
./lib/autoconf/types.m4:805: AC_TYPE_SIGNAL is expanded from...
configure.ac:51: the top level
configure.ac:94: warning: The macro 'AC_TRY_COMPILE' is obsolete.
configure.ac:94: You should run autoupdate.
./lib/autoconf/general.m4:2845: AC_TRY_COMPILE is expanded from...
configure.ac:94: the top level
configure.ac:114: warning: The macro 'AC_TRY_COMPILE' is obsolete.
configure.ac:114: You should run autoupdate.
./lib/autoconf/general.m4:2845: AC_TRY_COMPILE is expanded from...
configure.ac:114: the top level
configure.ac:152: warning: The macro 'AC_STAT_MACROS_BROKEN' is obsolete.
configure.ac:152: You should run autoupdate.
./lib/autoconf/oldnames.m4:74: AC_STAT_MACROS_BROKEN is expanded from...
configure.ac:152: the top level
configure.ac:153: warning: The macro 'AC_TRY_COMPILE' is obsolete.
configure.ac:153: You should run autoupdate.
./lib/autoconf/general.m4:2845: AC_TRY_COMPILE is expanded from...
lib/m4sugar/m4sh.m4:690: _AS_IF_ELSE is expanded from...
lib/m4sugar/m4sh.m4:697: AS_IF is expanded from...
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
configure.ac:153: the top level
configure.ac:165: warning: The macro 'AC_TRY_COMPILE' is obsolete.
configure.ac:165: You should run autoupdate.
./lib/autoconf/general.m4:2845: AC_TRY_COMPILE is expanded from...
lib/m4sugar/m4sh.m4:690: _AS_IF_ELSE is expanded from...
lib/m4sugar/m4sh.m4:697: AS_IF is expanded from...
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
configure.ac:165: the top level
configure.ac:229: warning: The macro 'AC_HELP_STRING' is obsolete.
configure.ac:229: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
./lib/autoconf/general.m4:1553: AC_ARG_WITH is expanded from...
configure.ac:229: the top level
configure.ac:244: warning: The macro 'AC_HELP_STRING' is obsolete.
configure.ac:244: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
configure.ac:244: the top level
configure.ac:292: warning: The macro 'AC_HELP_STRING' is obsolete.
configure.ac:292: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
./lib/autoconf/general.m4:1553: AC_ARG_WITH is expanded from...
configure.ac:292: the top level
configure.ac:308: warning: The macro 'AC_HELP_STRING' is obsolete.
configure.ac:308: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
./lib/autoconf/general.m4:1553: AC_ARG_WITH is expanded from...
configure.ac:308: the top level
configure.ac:329: warning: The macro 'AC_HELP_STRING' is obsolete.
configure.ac:329: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
./lib/autoconf/general.m4:1553: AC_ARG_WITH is expanded from...
configure.ac:329: the top level
configure.ac:347: warning: The macro 'AC_HELP_STRING' is obsolete.
configure.ac:347: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
configure.ac:347: the top level
configure.ac:394: warning: The macro 'AC_HELP_STRING' is obsolete.
configure.ac:394: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
./lib/autoconf/general.m4:1553: AC_ARG_WITH is expanded from...
configure.ac:394: the top level
configure.ac:425: warning: The macro 'AC_HELP_STRING' is obsolete.
configure.ac:425: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
configure.ac:425: the top level
configure.ac:473: warning: The macro 'AC_HELP_STRING' is obsolete.
configure.ac:473: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
configure.ac:473: the top level
configure.ac:494: warning: The macro 'AC_HELP_STRING' is obsolete.
configure.ac:494: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
configure.ac:494: the top level
configure.ac:526: warning: The macro 'AC_HELP_STRING' is obsolete.
configure.ac:526: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
configure.ac:526: the top level
configure.ac:561: warning: The macro 'AC_TRY_COMPILE' is obsolete.
configure.ac:561: You should run autoupdate.
./lib/autoconf/general.m4:2845: AC_TRY_COMPILE is expanded from...
configure.ac:561: the top level
configure.ac:640: warning: The macro 'AC_HELP_STRING' is obsolete.
configure.ac:640: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
configure.ac:640: the top level
configure.ac:674: warning: AC_OUTPUT should be used without arguments.
configure.ac:674: You should run autoupdate.
/bin/sh ./config.status --recheck
running CONFIG_SHELL=/bin/sh /bin/sh ./configure --build=aarch64-alpine-linux-musl --host=aarch64-alpine-linux-musl --prefix=/usr --sysconfdir=/etc --with-pam-dir=/usr/lib/security --disable-selinux --with-libcap-ng=no build_alias=aarch64-alpine-linux-musl host_alias=aarch64-alpine-linux-musl CC=gcc CFLAGS=-Os -fstack-clash-protection -Wformat -Werror=format-security LDFLAGS=-Wl,--as-needed,-O1,--sort-common -lintl --no-create --no-recursion
sh: invalid number ''
sh: invalid number ''
sh: invalid number ''
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a race-free mkdir -p... /usr/sbin/mkdir -p
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether make supports nested variables... (cached) yes
checking whether build environment is sane... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking whether make supports the include directive... yes (GNU style)
checking for aarch64-alpine-linux-musl-gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether gcc accepts -g... yes
checking for gcc option to enable C11 features... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... gcc3
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for wchar.h... yes
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking whether _XOPEN_SOURCE should be defined... no
checking for library containing strerror... none required
checking for aarch64-alpine-linux-musl-gcc... (cached) gcc
checking whether the compiler supports GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to enable C11 features... (cached) none needed
checking whether gcc understands -c and -o together... (cached) yes
checking dependency style of gcc... (cached) gcc3
checking how to run the C preprocessor... gcc -E
checking whether ln -s works... yes
checking whether make sets $(MAKE)... (cached) yes
checking build system type... aarch64-alpine-linux-musl
checking host system type... aarch64-alpine-linux-musl
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/sbin/sed
checking for grep that handles long lines and -e... /usr/sbin/grep
checking for egrep... /usr/sbin/grep -E
checking for fgrep... /usr/sbin/grep -F
checking for ld used by gcc... /usr/aarch64-alpine-linux-musl/bin/ld
checking if the linker (/usr/aarch64-alpine-linux-musl/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/sbin/nm -B
checking the name lister (/usr/sbin/nm -B) interface... BSD nm
checking the maximum length of command line arguments... 98304
checking how to convert aarch64-alpine-linux-musl file names to aarch64-alpine-linux-musl format... func_convert_file_noop
checking how to convert aarch64-alpine-linux-musl file names to toolchain format... func_convert_file_noop
checking for /usr/aarch64-alpine-linux-musl/bin/ld option to reload object files... -r
checking for aarch64-alpine-linux-musl-objdump... no
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for aarch64-alpine-linux-musl-dlltool... no
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for aarch64-alpine-linux-musl-ar... no
checking for ar... ar
checking for archiver @FILE support... @
checking for aarch64-alpine-linux-musl-strip... no
checking for strip... strip
checking for aarch64-alpine-linux-musl-ranlib... no
checking for ranlib... ranlib
checking command to parse /usr/sbin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /usr/sbin/dd
checking how to truncate binary pipes... /usr/sbin/dd bs=4096 count=1
checking for aarch64-alpine-linux-musl-mt... no
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/aarch64-alpine-linux-musl/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking for aarch64-alpine-linux-musl-pkg-config... no
checking for pkg-config... /usr/sbin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for pid_t... yes
checking return type of signal handlers... void
checking for size_t... yes
checking for uid_t... yes
checking for gid_t... yes
checking for glib-2.0 >= 2.44.0... yes
checking for gmodule-no-export-2.0... yes
checking for glib-2.0 gobject-2.0... yes
checking for glib-2.0 gio-2.0 gio-unix-2.0... yes
checking whether NLS is requested... yes
checking for msgfmt... /usr/sbin/msgfmt
checking for gmsgfmt... /usr/sbin/msgfmt
checking for xgettext... /usr/sbin/xgettext
checking for msgmerge... /usr/sbin/msgmerge
checking for ld used by gcc... /usr/aarch64-alpine-linux-musl/bin/ld
checking if the linker (/usr/aarch64-alpine-linux-musl/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking for egrep -e... (cached) /usr/sbin/grep -E
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... no
checking for iconv... yes
checking for working iconv... yes
checking for GNU gettext in libintl... yes
checking whether to use NLS... yes
checking where the gettext function comes from... external libintl
checking how to link with libintl... /usr/lib/libintl.so
checking for glib-genmarshal... /usr/sbin/glib-genmarshal
checking for aarch64-alpine-linux-musl-pkg-config... /usr/sbin/pkg-config
checking pkg-config is at least version 0.16... yes
checking whether socklen_t is defined... yes
checking for struct cmsgcred... no
checking for getpeerucred... no
checking for getpeereid... no
checking for flock... yes
checking for timegm... yes
checking whether stat file-mode macros are broken... no
checking for inttypes.h... yes
checking for stdint.h... yes
checking for fcntl.h... yes
checking for sys/time.h... yes
checking for time.h... yes
checking for unistd.h... (cached) yes
checking for gettimeofday... yes
checking for fsync... yes
checking for mlock... yes
checking for socket in -lsocket... no
checking for socket... yes
checking for gck-1 >= 3.3.4... yes
checking for gcr-3 >= 3.27.90... yes
checking for gcr-base-3 >= 3.27.90... yes
checking for security/pam_modules.h... yes
checking for pam_start in -lpam... yes
checking for dlopen... yes
checking for dlsym... yes
checking where to put pkcs11 module configuration... /usr/share/p11-kit/modules
checking module path to install pkcs11 modules... /usr/lib/pkcs11
checking for ssh-agent... /usr/sbin/ssh-agent
checking for ssh-add... /usr/sbin/ssh-add
checking for libgcrypt-config... /usr/sbin/libgcrypt-config
checking for LIBGCRYPT - version >= 1.2.2... yes (1.10.3)
checking LIBGCRYPT API version... okay
checking for libsystemd... yes
checking for p11-tests >= 0.1... no
checking whether to build documentation... yes
checking for xsltproc... /usr/sbin/xsltproc
checking for debug mode... default (-g, debug output, testable)
checking for more warnings... yes
checking whether gcc understands -Wno-strict-aliasing... yes
checking whether gcc understands -Wno-sign-compare... yes
checking build strict... no (quick tests, non-fatal warnings)
checking whether to build with gcov testing... no
checking valgrind... no
checking that generated files are newer than configure... done
checking that generated files are newer than configure... done
configure: creating ./config.status
OPTIONAL DEPENDENCIES
PAM: yes (/usr/lib/security)
Linux capabilities: no
SELinux: no
systemd: yes
CONFIGURATION
SSH Agent: yes
BUILD
Debug Build: default (-g, debug output, testable)
Strict Compilation: no (quick tests, non-fatal warnings)
Valgrind: no
PKCS#11 Tests no
Test Coverage: no
Documentation: yes
/bin/sh ./config.status
config.status: creating Makefile
config.status: creating pkcs11/rpc-layer/gnome-keyring.module
config.status: creating po/Makefile.in
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing po-directories commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
echo "#include \"gkm-marshal.h\"" > gkm-marshal.c && \
/usr/sbin/glib-genmarshal pkcs11/gkm/gkm-marshal.list --body --prefix=gkm_marshal >> gkm-marshal.c
/usr/sbin/glib-genmarshal pkcs11/gkm/gkm-marshal.list --header --prefix=gkm_marshal > gkm-marshal.h
INFO: Reading pkcs11/gkm/gkm-marshal.list...
INFO: Reading pkcs11/gkm/gkm-marshal.list...
(CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh '/home/pmos/build/src/gnome-keyring-42.1/build/missing' autoheader)
rm -f stamp-h1
touch config.h.in
cd . && /bin/sh ./config.status config.h
config.status: creating config.h
/usr/sbin/make all-recursive
make[1]: Entering directory '/home/pmos/build/src/gnome-keyring-42.1'
Making all in .
make[2]: Entering directory '/home/pmos/build/src/gnome-keyring-42.1'
CC libgkd_dbus_la-gkm-marshal.lo
CC libgkm_la-gkm-marshal.lo
CC egg/egg-buffer.lo
CC egg/egg-unix-credentials.lo
CC egg/test-asn1.o
CC egg/test-asn1x.o
CC egg/libegg_asn1x_la-egg-asn1x.lo
CC egg/libegg_asn1x_la-egg-asn1-defs.lo
CC egg/test-dn.o
CC egg/test-cleanup.o
CC egg/test-hex.o
CC egg/test-hkdf.o
In function 'anode_decode_sequence_or_set_of',
inlined from 'anode_decode_structured' at egg/egg-asn1x.c:1154:10,
inlined from 'anode_decode_one_without_tag' at egg/egg-asn1x.c:1182:9:
egg/egg-asn1x.c:1027:44: warning: 'tag' may be used uninitialized [-Wmaybe-uninitialized]
1027 | else if (tag != G_MAXULONG && ctlv->tag != tag)
| ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
egg/egg-asn1x.c: In function 'anode_decode_one_without_tag':
egg/egg-asn1x.c:1015:16: note: 'tag' was declared here
1015 | gulong tag;
| ^~~
CC egg/test-oid.o
CC egg/test-secmem.o
CC egg/test-padding.o
CC egg/test-symkey.o
CC egg/test-armor.o
CC egg/test-openssl.o
CC egg/test-dh.o
CC egg/test-file-tracker.o
CC daemon/test-startup.o
CC daemon/gkd-test.lo
CC egg/libegg_test_la-egg-testing.lo
CC egg/libegg_test_la-mock-interaction.lo
CC daemon/test_shutdown-test-shutdown.o
CC daemon/dbus/test_dbus_util-test-dbus-util.o
CC daemon/dbus/test-service.lo
CC daemon/dbus/test-dbus-search.o
CC daemon/dbus/test-dbus-items.o
CC daemon/dbus/test_dbus_signals-test-dbus-signals.o
CC daemon/dbus/test-dbus-lock.o
CC daemon/dbus/test_dbus_portal-test-dbus-portal.o
CC daemon/ssh-agent/test_gkd_ssh_agent_interaction-test-gkd-ssh-agent-interaction.o
CC daemon/ssh-agent/libgkd_ssh_agent_test_la-test-common.lo
CC daemon/ssh-agent/test_gkd_ssh_agent_preload-test-gkd-ssh-agent-preload.o
CC daemon/ssh-agent/test_gkd_ssh_agent_process-test-gkd-ssh-agent-process.o
CC daemon/ssh-agent/test_gkd_ssh_agent_service-test-gkd-ssh-agent-service.o
CC daemon/ssh-agent/test_gkd_ssh_agent_util-test-gkd-ssh-agent-util.o
CC pkcs11/gkm/test-attributes.o
CC pkcs11/gkm/mock-module.o
CC pkcs11/gkm/mock-locked-object.o
CC pkcs11/gkm/test-credential.o
CC pkcs11/gkm/test-data-asn1.o
CC pkcs11/gkm/test-data-der.o
CC pkcs11/gkm/test-memory-store.o
CC pkcs11/gkm/test-object.o
CC pkcs11/gkm/test-certificate.o
CC pkcs11/gkm/test-secret.o
CC pkcs11/gkm/test-sexp.o
CC pkcs11/gkm/test-store.o
CC pkcs11/gkm/test-timer.o
CC pkcs11/gkm/test-transaction.o
CC pkcs11/gnome2-store/test-gnome2-file.o
CC pkcs11/gnome2-store/test-gnome2-storage.o
CC pkcs11/gnome2-store/mock-gnome2-module.o
CC pkcs11/gnome2-store/test-gnome2-private-key.o
CC pkcs11/gnome2-store/test_import-test-import.o
CC pkcs11/rpc-layer/test_initialize-test-initialize.o
CC pkcs11/secret-store/test-secret-compat.o
CC pkcs11/secret-store/mock-secret-module.o
CC pkcs11/secret-store/test-secret-fields.o
CC pkcs11/secret-store/test-secret-data.o
CC pkcs11/secret-store/test-secret-object.o
CC pkcs11/secret-store/test-secret-collection.o
CC pkcs11/secret-store/test-secret-item.o
CC pkcs11/secret-store/test-secret-schema.o
CC pkcs11/secret-store/test-secret-search.o
CC pkcs11/secret-store/test-secret-textual.o
CC pkcs11/secret-store/test-secret-binary.o
CC pkcs11/ssh-store/test-ssh-openssh.o
CC pkcs11/ssh-store/mock-ssh-module.o
CC pkcs11/ssh-store/test-private-key.o
CC pkcs11/wrap-layer/test_create_credential-test-create-credential.o
CC pkcs11/wrap-layer/mock-secret-store.o
CC pkcs11/wrap-layer/test_init_pin-test-init-pin.o
CC pkcs11/wrap-layer/test_login_auto-test-login-auto.o
CC pkcs11/wrap-layer/test-login-hints.o
CC pkcs11/wrap-layer/test-login-keyring.o
CC pkcs11/wrap-layer/test_login_specific-test-login-specific.o
CC pkcs11/wrap-layer/test_login_user-test-login-user.o
CC pkcs11/wrap-layer/test_set_pin-test-set-pin.o
CC pkcs11/xdg-store/test-xdg-module.o
CC pkcs11/xdg-store/mock-xdg-module.o
CC pkcs11/xdg-store/test-xdg-trust.o
CC daemon/control/frob-control-change.o
CC egg/egg-secure-memory.lo
CC daemon/control/frob-control-init.o
CC daemon/control/frob-control-unlock.o
CC daemon/control/frob-control-quit.o
CC pkcs11/gnome2-store/frob-gnome2-file.o
CC pkcs11/rpc-layer/gkm_rpc_daemon_standalone-gkm-rpc-daemon-standalone.o
CC pkcs11/secret-store/dump-keyring0-format.o
CC pkcs11/xdg-store/frob-trust-file.o
CC pkcs11/xdg-store/dump-trust-file.o
CC pkcs11/gnome2-store/gkm-gnome2-standalone.lo
CC pkcs11/secret-store/gkm-secret-standalone.lo
CC pkcs11/ssh-store/gkm-ssh-standalone.lo
CC pkcs11/xdg-store/gkm-xdg-standalone.lo
CC egg/libegg_prompt_la-egg-dh.lo
CC egg/libegg_prompt_la-egg-hex.lo
CC egg/libegg_prompt_la-egg-hkdf.lo
CC egg/libegg_prompt_la-egg-libgcrypt.lo
CC egg/libegg_prompt_la-egg-padding.lo
CC egg/libegg_prompt_la-egg-secure-memory.lo
CC egg/libegg_hex_la-egg-hex.lo
CC pam/mock-pam.lo
CC pam/gnome_keyring_la-gkr-pam-client.lo
CC pam/gnome_keyring_la-gkr-pam-module.lo
CC pam/gnome_keyring_la-gkr-pam-stubs.lo
CC pkcs11/rpc-layer/gkm-rpc-module.lo
CC pkcs11/rpc-layer/gkm-rpc-message.lo
CC pkcs11/rpc-layer/gkm-rpc-util.lo
GEN docs/gnome-keyring-daemon.1
Note: namesp. add : added namespace before processing gnome-keyring-daemon
GEN docs/gnome-keyring.1
SED daemon/gnome-keyring-pkcs11.desktop
SED daemon/gnome-keyring-secrets.desktop
SED daemon/gnome-keyring-ssh.desktop
GEN gschemas.compiled
No schema files found: doing nothing.
SED daemon/org.gnome.keyring.service
SED daemon/org.freedesktop.secrets.service
SED daemon/org.freedesktop.impl.portal.Secret.service
GEN daemon/gnome-keyring-daemon.service
/usr/sbin/mkdir -p ./daemon
/usr/sbin/mkdir -p ./schema
GEN schema/org.gnome.crypto.cache.gschema.valid
CC daemon/gnome_keyring_daemon-gkd-glue.o
Note: namesp. add : added namespace before processing gnome-keyring
CC daemon/gnome_keyring_daemon-gkd-main.o
CC daemon/gnome_keyring_daemon-gkd-capability.o
CC daemon/gnome_keyring_daemon-gkd-pkcs11.o
CC daemon/gnome_keyring_daemon-gkd-util.o
CC daemon/dbus/libgkd_dbus_la-gkd-daemon-generated.lo
CC daemon/dbus/libgkd_dbus_la-gkd-internal-generated.lo
CC daemon/dbus/libgkd_dbus_la-gkd-secrets-generated.lo
CC daemon/dbus/libgkd_dbus_la-gkd-portal-generated.lo
CC daemon/dbus/libgkd_dbus_la-gkd-portal-request-generated.lo
CC daemon/dbus/libgkd_dbus_la-gkd-dbus.lo
CC daemon/dbus/libgkd_dbus_la-gkd-dbus-environment.lo
CC daemon/dbus/libgkd_dbus_la-gkd-dbus-secrets.lo
CC daemon/dbus/libgkd_dbus_la-gkd-dbus-session.lo
CC daemon/dbus/libgkd_dbus_la-gkd-secret-change.lo
CC daemon/dbus/libgkd_dbus_la-gkd-secret-create.lo
CC daemon/dbus/libgkd_dbus_la-gkd-secret-dispatch.lo
CC daemon/dbus/libgkd_dbus_la-gkd-secret-error.lo
CC daemon/dbus/libgkd_dbus_la-gkd-secret-exchange.lo
CC daemon/dbus/libgkd_dbus_la-gkd-secret-lock.lo
CC daemon/dbus/libgkd_dbus_la-gkd-secret-objects.lo
CC daemon/dbus/libgkd_dbus_la-gkd-secret-portal.lo
CC daemon/dbus/libgkd_dbus_la-gkd-secret-property.lo
CC daemon/dbus/libgkd_dbus_la-gkd-secret-prompt.lo
CC daemon/dbus/libgkd_dbus_la-gkd-secret-secret.lo
CC daemon/dbus/libgkd_dbus_la-gkd-secret-service.lo
CC daemon/dbus/libgkd_dbus_la-gkd-secret-session.lo
CC daemon/dbus/libgkd_dbus_la-gkd-secret-unlock.lo
CC daemon/dbus/libgkd_dbus_la-gkd-secret-util.lo
CC daemon/control/gkd-control-server.lo
CC daemon/control/gkd-control-client.lo
CC daemon/ssh-agent/libgkd_ssh_agent_la-gkd-ssh-agent-interaction.lo
CC daemon/ssh-agent/libgkd_ssh_agent_la-gkd-ssh-agent-process.lo
CC daemon/ssh-agent/libgkd_ssh_agent_la-gkd-ssh-agent-preload.lo
CC daemon/ssh-agent/libgkd_ssh_agent_la-gkd-ssh-agent-service.lo
CC daemon/ssh-agent/libgkd_ssh_agent_la-gkd-ssh-agent-util.lo
CC daemon/login/libgkd_login_la-gkd-login.lo
CC daemon/login/libgkd_login_la-gkd-login-interaction.lo
CC daemon/login/libgkd_login_la-gkd-login-password.lo
CC pkcs11/wrap-layer/libgkm_wrap_layer_la-gkm-wrap-layer.lo
CC pkcs11/wrap-layer/libgkm_wrap_layer_la-gkm-wrap-login.lo
CC pkcs11/wrap-layer/libgkm_wrap_layer_la-gkm-wrap-prompt.lo
CC pkcs11/gkm/libgkm_la-gkm-aes-key.lo
CC pkcs11/gkm/libgkm_la-gkm-aes-mechanism.lo
CC pkcs11/gkm/libgkm_la-gkm-assertion.lo
CC pkcs11/gkm/libgkm_la-gkm-attributes.lo
CC pkcs11/gkm/libgkm_la-gkm-certificate.lo
CC pkcs11/gkm/libgkm_la-gkm-certificate-key.lo
CC pkcs11/gkm/libgkm_la-gkm-credential.lo
CC pkcs11/gkm/libgkm_la-gkm-crypto.lo
CC pkcs11/gkm/libgkm_la-gkm-data-asn1.lo
CC pkcs11/gkm/libgkm_la-gkm-data-der.lo
CC pkcs11/gkm/libgkm_la-gkm-debug.lo
CC pkcs11/gkm/libgkm_la-gkm-dh-key.lo
CC pkcs11/gkm/libgkm_la-gkm-dh-mechanism.lo
CC pkcs11/gkm/libgkm_la-gkm-dh-private-key.lo
CC pkcs11/gkm/libgkm_la-gkm-dh-public-key.lo
CC pkcs11/gkm/libgkm_la-gkm-dsa-mechanism.lo
CC pkcs11/gkm/libgkm_la-gkm-ecdsa-mechanism.lo
CC pkcs11/gkm/libgkm_la-gkm-factory.lo
CC pkcs11/gkm/libgkm_la-gkm-generic-key.lo
CC pkcs11/gkm/libgkm_la-gkm-hkdf-mechanism.lo
CC pkcs11/gkm/libgkm_la-gkm-log.lo
CC pkcs11/gkm/libgkm_la-gkm-manager.lo
CC pkcs11/gkm/libgkm_la-gkm-memory-store.lo
CC pkcs11/gkm/libgkm_la-gkm-mock.lo
CC pkcs11/gkm/libgkm_la-gkm-module.lo
CC pkcs11/gkm/libgkm_la-gkm-null-key.lo
CC pkcs11/gkm/libgkm_la-gkm-null-mechanism.lo
CC pkcs11/gkm/libgkm_la-gkm-object.lo
CC pkcs11/gkm/libgkm_la-gkm-private-xsa-key.lo
CC pkcs11/gkm/libgkm_la-gkm-public-xsa-key.lo
CC pkcs11/gkm/libgkm_la-gkm-rsa-mechanism.lo
CC pkcs11/gkm/libgkm_la-gkm-secret.lo
CC pkcs11/gkm/libgkm_la-gkm-secret-key.lo
CC pkcs11/gkm/libgkm_la-gkm-serializable.lo
CC pkcs11/gkm/libgkm_la-gkm-session.lo
CC pkcs11/gkm/libgkm_la-gkm-sexp.lo
CC pkcs11/gkm/libgkm_la-gkm-sexp-key.lo
CC pkcs11/gkm/libgkm_la-gkm-store.lo
CC pkcs11/gkm/libgkm_la-gkm-test.lo
CC pkcs11/gkm/libgkm_la-gkm-timer.lo
CC pkcs11/gkm/libgkm_la-gkm-transaction.lo
CC pkcs11/gkm/libgkm_la-gkm-trust.lo
CC pkcs11/gkm/libgkm_la-gkm-util.lo
CC egg/libegg_la-dotlock.lo
CC egg/libegg_la-egg-armor.lo
CC egg/libegg_la-egg-asn1x.lo
CC egg/libegg_la-egg-asn1-defs.lo
In function 'anode_decode_sequence_or_set_of',
inlined from 'anode_decode_structured' at egg/egg-asn1x.c:1154:10,
inlined from 'anode_decode_one_without_tag' at egg/egg-asn1x.c:1182:9:
egg/egg-asn1x.c:1027:44: warning: 'tag' may be used uninitialized [-Wmaybe-uninitialized]
1027 | else if (tag != G_MAXULONG && ctlv->tag != tag)
| ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
egg/egg-asn1x.c: In function 'anode_decode_one_without_tag':
egg/egg-asn1x.c:1015:16: note: 'tag' was declared here
1015 | gulong tag;
| ^~~
CC egg/libegg_la-egg-buffer.lo
CC egg/libegg_la-egg-byte-array.lo
CC egg/libegg_la-egg-cleanup.lo
CC egg/libegg_la-egg-dh.lo
CC egg/libegg_la-egg-dn.lo
CC egg/libegg_la-egg-file-tracker.lo
CC egg/libegg_la-egg-hex.lo
CC egg/libegg_la-egg-hkdf.lo
CC egg/libegg_la-egg-libgcrypt.lo
CC egg/libegg_la-egg-oid.lo
CC egg/libegg_la-egg-padding.lo
CC egg/libegg_la-egg-openssl.lo
CC egg/libegg_la-egg-unix-credentials.lo
CC egg/libegg_la-egg-secure-memory.lo
CC egg/libegg_la-egg-symkey.lo
CC egg/libegg_la-egg-testing.lo
CC egg/libegg_la-egg-timegm.lo
CC pkcs11/rpc-layer/libgkm_rpc_layer_la-gkm-rpc-dispatch.lo
CC pkcs11/rpc-layer/libgkm_rpc_layer_la-gkm-rpc-message.lo
CC pkcs11/rpc-layer/libgkm_rpc_layer_la-gkm-rpc-util.lo
CCLD libegg-buffer.la
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
CCLD libegg-creds.la
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
CC pkcs11/secret-store/libgkm_secret_store_la-gkm-secret-binary.lo
CC pkcs11/secret-store/libgkm_secret_store_la-gkm-secret-collection.lo
CC pkcs11/secret-store/libgkm_secret_store_la-gkm-secret-compat.lo
CC pkcs11/secret-store/libgkm_secret_store_la-gkm-secret-data.lo
CC pkcs11/secret-store/libgkm_secret_store_la-gkm-secret-fields.lo
CC pkcs11/secret-store/libgkm_secret_store_la-gkm-secret-item.lo
CC pkcs11/secret-store/libgkm_secret_store_la-gkm-secret-module.lo
CC pkcs11/secret-store/libgkm_secret_store_la-gkm-secret-object.lo
CC pkcs11/secret-store/libgkm_secret_store_la-gkm-secret-search.lo
CC pkcs11/secret-store/libgkm_secret_store_la-gkm-secret-textual.lo
CC pkcs11/ssh-store/gkm-ssh-module.lo
CC pkcs11/ssh-store/gkm-ssh-openssh.lo
CC pkcs11/ssh-store/gkm-ssh-private-key.lo
CC pkcs11/ssh-store/gkm-ssh-public-key.lo
CC pkcs11/gnome2-store/gkm-gnome2-file.lo
CC pkcs11/gnome2-store/gkm-gnome2-module.lo
CC pkcs11/gnome2-store/gkm-gnome2-private-key.lo
CC pkcs11/gnome2-store/gkm-gnome2-public-key.lo
CC pkcs11/gnome2-store/gkm-gnome2-storage.lo
CC pkcs11/xdg-store/gkm-xdg-asn1-defs.lo
CC pkcs11/xdg-store/gkm-xdg-assertion.lo
CC pkcs11/xdg-store/gkm-xdg-module.lo
CC pkcs11/xdg-store/gkm-xdg-trust.lo
CC tool/gnome_keyring_3-gkr-tool.o
CC tool/gnome_keyring_3-gkr-tool-import.o
CC tool/gnome_keyring_3-gkr-tool-trust.o
CC tool/gnome_keyring_3-gkr-tool-version.o
CCLD libegg-asn1x.la
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
CCLD libgkd-control-client.la
CCLD libgkd-test.la
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
CCLD libegg-test.la
CCLD libtestservice.la
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
AR libgkm-mock.a
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
AR libgkm-mock-secret-module.a
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
AR libgkm-mock-ssh-module.a
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
AR libgkm-mock-secret-store.a
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
AR libgkm-mock-xdg-module.a
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
CC pam/test_pam-test-pam.o
CCLD libegg-secure.la
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
CCLD libegg-prompt.la
CCLD libegg-hex.la
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
CCLD pam_mock.la
CCLD pam_gnome_keyring.la
CCLD gnome-keyring-pkcs11.la
CCLD libgkd-dbus.la
CCLD libgkd-control.la
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
CCLD libgkd-ssh-agent.la
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
CCLD libgkd-login.la
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
CCLD libegg.la
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
CCLD libgkm-rpc-layer.la
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
CCLD libgkm-secret-store.la
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
CCLD libgkm-ssh-store.la
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
CCLD libgkm-gnome2-store.la
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
CCLD libgkm-xdg-store.la
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
CCLD gnome-keyring-3
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
CCLD test-asn1
CCLD test-asn1x
CCLD test-dn
CCLD test-cleanup
CCLD test-hex
CCLD test-hkdf
CCLD test-oid
CCLD test-secmem
CCLD test-padding
CCLD test-symkey
CCLD test-armor
CCLD test-openssl
CCLD test-dh
CCLD test-file-tracker
CCLD test-startup
CCLD test-shutdown
CCLD test-dbus-util
CCLD test-dbus-search
CCLD test-dbus-items
CCLD test-dbus-signals
CCLD test-dbus-lock
CCLD test-dbus-portal
CCLD test-initialize
CCLD test-pam
CCLD frob-control-change
CCLD frob-control-init
CCLD frob-control-unlock
CCLD frob-control-quit
CCLD gkm-rpc-daemon-standalone
CCLD libgkm.la
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
CCLD libgkm-wrap-layer.la
CCLD test-attributes
CCLD test-credential
CCLD test-data-asn1
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
CCLD test-data-der
CCLD test-memory-store
CCLD test-object
CCLD test-certificate
CCLD test-secret
CCLD test-sexp
CCLD test-store
CCLD test-timer
CCLD test-transaction
CCLD test-gnome2-file
CCLD test-gnome2-storage
CCLD test-gnome2-private-key
CCLD test-import
CCLD test-secret-compat
CCLD test-secret-fields
CCLD test-secret-data
CCLD test-secret-object
CCLD test-secret-collection
CCLD test-secret-item
CCLD test-secret-schema
CCLD test-secret-search
CCLD test-secret-textual
CCLD test-secret-binary
CCLD test-ssh-openssh
CCLD test-private-key
CCLD test-create-credential
CCLD test-init-pin
CCLD test-login-auto
CCLD test-login-hints
CCLD test-login-keyring
CCLD test-login-specific
CCLD test-login-user
CCLD test-set-pin
CCLD test-xdg-module
CCLD test-xdg-trust
CCLD frob-gnome2-file
CCLD dump-keyring0-format
CCLD frob-trust-file
CCLD dump-trust-file
CCLD gkm-gnome2-store-standalone.la
CCLD gkm-secret-store-standalone.la
CCLD gkm-ssh-store-standalone.la
CCLD gkm-xdg-store-standalone.la
CCLD gnome-keyring-daemon
CCLD libgkd-ssh-agent-test.la
/usr/sbin/ar: `u' modifier ignored since `D' is the default (see `U')
CCLD test-gkd-ssh-agent-preload
CCLD test-gkd-ssh-agent-interaction
CCLD test-gkd-ssh-agent-process
CCLD test-gkd-ssh-agent-service
CCLD test-gkd-ssh-agent-util
make[2]: Leaving directory '/home/pmos/build/src/gnome-keyring-42.1'
Making all in po
make[2]: Entering directory '/home/pmos/build/src/gnome-keyring-42.1/po'
make[2]: Nothing to be done for 'all'.
make[2]: Leaving directory '/home/pmos/build/src/gnome-keyring-42.1/po'
make[1]: Leaving directory '/home/pmos/build/src/gnome-keyring-42.1'
>>> gnome-keyring: Entering fakeroot...
/usr/sbin/make install-recursive
make[1]: Entering directory '/home/pmos/build/src/gnome-keyring-42.1'
Making install in .
make[2]: Entering directory '/home/pmos/build/src/gnome-keyring-42.1'
GEN gschemas.compiled
/usr/sbin/mkdir -p ./daemon
/usr/sbin/mkdir -p ./schema
No schema files found: doing nothing.
make[3]: Entering directory '/home/pmos/build/src/gnome-keyring-42.1'
/usr/sbin/mkdir -p '/home/pmos/build/pkg/gnome-keyring/usr/share/GConf/gsettings'
/usr/sbin/mkdir -p '/home/pmos/build/pkg/gnome-keyring/etc/xdg/autostart'
/usr/bin/install -c -m 644 schema/org.gnome.crypto.cache.convert '/home/pmos/build/pkg/gnome-keyring/usr/share/GConf/gsettings'
/usr/bin/install -c -m 644 daemon/gnome-keyring-pkcs11.desktop daemon/gnome-keyring-secrets.desktop daemon/gnome-keyring-ssh.desktop '/home/pmos/build/pkg/gnome-keyring/etc/xdg/autostart'
/usr/sbin/mkdir -p '/home/pmos/build/pkg/gnome-keyring/usr/share/xdg-desktop-portal/portals'
/usr/sbin/mkdir -p '/home/pmos/build/pkg/gnome-keyring/usr/share/man/man1'
/usr/bin/install -c -m 644 daemon/gnome-keyring.portal '/home/pmos/build/pkg/gnome-keyring/usr/share/xdg-desktop-portal/portals'
/usr/sbin/mkdir -p '/home/pmos/build/pkg/gnome-keyring/usr/share/p11-kit/modules'
/usr/bin/install -c -m 644 docs/gnome-keyring-daemon.1 docs/gnome-keyring.1 docs/gnome-keyring-3.1 '/home/pmos/build/pkg/gnome-keyring/usr/share/man/man1'
/usr/bin/install -c -m 644 pkcs11/rpc-layer/gnome-keyring.module '/home/pmos/build/pkg/gnome-keyring/usr/share/p11-kit/modules'
/usr/sbin/mkdir -p '/home/pmos/build/pkg/gnome-keyring/usr/share/dbus-1/services'
/usr/sbin/mkdir -p '/home/pmos/build/pkg/gnome-keyring/usr/lib/systemd/user'
/usr/bin/install -c -m 644 daemon/org.gnome.keyring.service daemon/org.freedesktop.secrets.service daemon/org.freedesktop.impl.portal.Secret.service '/home/pmos/build/pkg/gnome-keyring/usr/share/dbus-1/services'
/usr/bin/install -c -m 644 daemon/gnome-keyring-daemon.socket daemon/gnome-keyring-daemon.service '/home/pmos/build/pkg/gnome-keyring/usr/lib/systemd/user'
if test -n "schema/org.gnome.crypto.cache.gschema.xml"; then \
test -z "/usr/share/glib-2.0/schemas" || /usr/sbin/mkdir -p "/home/pmos/build/pkg/gnome-keyring/usr/share/glib-2.0/schemas"; \
/usr/bin/install -c -m 644 schema/org.gnome.crypto.cache.gschema.xml "/home/pmos/build/pkg/gnome-keyring/usr/share/glib-2.0/schemas"; \
test -n "/home/pmos/build/pkg/gnome-keyring" || /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas; \
fi
/usr/sbin/mkdir -p '/home/pmos/build/pkg/gnome-keyring/usr/bin'
/bin/sh ./libtool --mode=install /usr/bin/install -c gnome-keyring-daemon gnome-keyring-3 '/home/pmos/build/pkg/gnome-keyring/usr/bin'
/usr/sbin/mkdir -p '/home/pmos/build/pkg/gnome-keyring/usr/lib/gnome-keyring/devel'
/bin/sh ./libtool --mode=install /usr/bin/install -c gkm-gnome2-store-standalone.la gkm-secret-store-standalone.la gkm-ssh-store-standalone.la gkm-xdg-store-standalone.la '/home/pmos/build/pkg/gnome-keyring/usr/lib/gnome-keyring/devel'
libtool: install: /usr/bin/install -c .libs/gkm-gnome2-store-standalone.so /home/pmos/build/pkg/gnome-keyring/usr/lib/gnome-keyring/devel/gkm-gnome2-store-standalone.so
libtool: install: /usr/bin/install -c gnome-keyring-daemon /home/pmos/build/pkg/gnome-keyring/usr/bin/gnome-keyring-daemon
libtool: install: /usr/bin/install -c .libs/gkm-gnome2-store-standalone.lai /home/pmos/build/pkg/gnome-keyring/usr/lib/gnome-keyring/devel/gkm-gnome2-store-standalone.la
libtool: install: /usr/bin/install -c .libs/gkm-secret-store-standalone.so /home/pmos/build/pkg/gnome-keyring/usr/lib/gnome-keyring/devel/gkm-secret-store-standalone.so
libtool: install: /usr/bin/install -c gnome-keyring-3 /home/pmos/build/pkg/gnome-keyring/usr/bin/gnome-keyring-3
libtool: install: /usr/bin/install -c .libs/gkm-secret-store-standalone.lai /home/pmos/build/pkg/gnome-keyring/usr/lib/gnome-keyring/devel/gkm-secret-store-standalone.la
/usr/sbin/mkdir -p '/home/pmos/build/pkg/gnome-keyring/usr/lib/security'
/bin/sh ./libtool --mode=install /usr/bin/install -c pam_gnome_keyring.la '/home/pmos/build/pkg/gnome-keyring/usr/lib/security'
libtool: install: /usr/bin/install -c .libs/gkm-ssh-store-standalone.so /home/pmos/build/pkg/gnome-keyring/usr/lib/gnome-keyring/devel/gkm-ssh-store-standalone.so
libtool: install: /usr/bin/install -c .libs/gkm-ssh-store-standalone.lai /home/pmos/build/pkg/gnome-keyring/usr/lib/gnome-keyring/devel/gkm-ssh-store-standalone.la
libtool: install: /usr/bin/install -c .libs/gkm-xdg-store-standalone.so /home/pmos/build/pkg/gnome-keyring/usr/lib/gnome-keyring/devel/gkm-xdg-store-standalone.so
libtool: install: /usr/bin/install -c .libs/gkm-xdg-store-standalone.lai /home/pmos/build/pkg/gnome-keyring/usr/lib/gnome-keyring/devel/gkm-xdg-store-standalone.la
libtool: install: /usr/bin/install -c .libs/pam_gnome_keyring.so /home/pmos/build/pkg/gnome-keyring/usr/lib/security/pam_gnome_keyring.so
libtool: warning: remember to run 'libtool --finish /usr/lib/gnome-keyring/devel'
/usr/sbin/mkdir -p '/home/pmos/build/pkg/gnome-keyring/usr/lib/pkcs11'
libtool: install: /usr/bin/install -c .libs/pam_gnome_keyring.lai /home/pmos/build/pkg/gnome-keyring/usr/lib/security/pam_gnome_keyring.la
/bin/sh ./libtool --mode=install /usr/bin/install -c gnome-keyring-pkcs11.la '/home/pmos/build/pkg/gnome-keyring/usr/lib/pkcs11'
libtool: warning: remember to run 'libtool --finish /usr/lib/security'
/usr/sbin/make install-exec-hook
libtool: install: /usr/bin/install -c .libs/gnome-keyring-pkcs11.so /home/pmos/build/pkg/gnome-keyring/usr/lib/pkcs11/gnome-keyring-pkcs11.so
libtool: install: /usr/bin/install -c .libs/gnome-keyring-pkcs11.lai /home/pmos/build/pkg/gnome-keyring/usr/lib/pkcs11/gnome-keyring-pkcs11.la
libtool: warning: remember to run 'libtool --finish /usr/lib/pkcs11'
make[4]: Entering directory '/home/pmos/build/src/gnome-keyring-42.1'
make[4]: Leaving directory '/home/pmos/build/src/gnome-keyring-42.1'
make[3]: Leaving directory '/home/pmos/build/src/gnome-keyring-42.1'
make[2]: Leaving directory '/home/pmos/build/src/gnome-keyring-42.1'
Making install in po
make[2]: Entering directory '/home/pmos/build/src/gnome-keyring-42.1/po'
installing af.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/af/LC_MESSAGES/gnome-keyring.mo
installing ar.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/ar/LC_MESSAGES/gnome-keyring.mo
installing as.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/as/LC_MESSAGES/gnome-keyring.mo
installing ast.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/ast/LC_MESSAGES/gnome-keyring.mo
installing az.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/az/LC_MESSAGES/gnome-keyring.mo
installing be.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/be/LC_MESSAGES/gnome-keyring.mo
installing be@latin.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/be@latin/LC_MESSAGES/gnome-keyring.mo
installing bg.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/bg/LC_MESSAGES/gnome-keyring.mo
installing bn.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/bn/LC_MESSAGES/gnome-keyring.mo
installing bn_IN.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/bn_IN/LC_MESSAGES/gnome-keyring.mo
installing bs.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/bs/LC_MESSAGES/gnome-keyring.mo
installing ca.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/ca/LC_MESSAGES/gnome-keyring.mo
installing ca@valencia.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/ca@valencia/LC_MESSAGES/gnome-keyring.mo
installing ckb.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/ckb/LC_MESSAGES/gnome-keyring.mo
installing cs.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/cs/LC_MESSAGES/gnome-keyring.mo
installing cy.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/cy/LC_MESSAGES/gnome-keyring.mo
installing da.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/da/LC_MESSAGES/gnome-keyring.mo
installing de.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/de/LC_MESSAGES/gnome-keyring.mo
installing dz.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/dz/LC_MESSAGES/gnome-keyring.mo
installing el.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/el/LC_MESSAGES/gnome-keyring.mo
installing en_CA.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/en_CA/LC_MESSAGES/gnome-keyring.mo
installing en_GB.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/en_GB/LC_MESSAGES/gnome-keyring.mo
installing en@shaw.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/en@shaw/LC_MESSAGES/gnome-keyring.mo
installing eo.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/eo/LC_MESSAGES/gnome-keyring.mo
installing es.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/es/LC_MESSAGES/gnome-keyring.mo
installing et.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/et/LC_MESSAGES/gnome-keyring.mo
installing eu.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/eu/LC_MESSAGES/gnome-keyring.mo
installing fa.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/fa/LC_MESSAGES/gnome-keyring.mo
installing fi.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/fi/LC_MESSAGES/gnome-keyring.mo
installing fr.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/fr/LC_MESSAGES/gnome-keyring.mo
installing fur.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/fur/LC_MESSAGES/gnome-keyring.mo
installing ga.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/ga/LC_MESSAGES/gnome-keyring.mo
installing gd.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/gd/LC_MESSAGES/gnome-keyring.mo
installing gl.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/gl/LC_MESSAGES/gnome-keyring.mo
installing gu.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/gu/LC_MESSAGES/gnome-keyring.mo
installing he.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/he/LC_MESSAGES/gnome-keyring.mo
installing hi.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/hi/LC_MESSAGES/gnome-keyring.mo
installing hr.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/hr/LC_MESSAGES/gnome-keyring.mo
installing hu.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/hu/LC_MESSAGES/gnome-keyring.mo
installing id.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/id/LC_MESSAGES/gnome-keyring.mo
installing is.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/is/LC_MESSAGES/gnome-keyring.mo
installing it.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/it/LC_MESSAGES/gnome-keyring.mo
installing ja.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/ja/LC_MESSAGES/gnome-keyring.mo
installing ka.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/ka/LC_MESSAGES/gnome-keyring.mo
installing kk.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/kk/LC_MESSAGES/gnome-keyring.mo
installing km.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/km/LC_MESSAGES/gnome-keyring.mo
installing kn.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/kn/LC_MESSAGES/gnome-keyring.mo
installing ko.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/ko/LC_MESSAGES/gnome-keyring.mo
installing lt.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/lt/LC_MESSAGES/gnome-keyring.mo
installing lv.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/lv/LC_MESSAGES/gnome-keyring.mo
installing mai.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/mai/LC_MESSAGES/gnome-keyring.mo
installing mg.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/mg/LC_MESSAGES/gnome-keyring.mo
installing mjw.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/mjw/LC_MESSAGES/gnome-keyring.mo
installing mk.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/mk/LC_MESSAGES/gnome-keyring.mo
installing ml.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/ml/LC_MESSAGES/gnome-keyring.mo
installing mn.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/mn/LC_MESSAGES/gnome-keyring.mo
installing mr.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/mr/LC_MESSAGES/gnome-keyring.mo
installing ms.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/ms/LC_MESSAGES/gnome-keyring.mo
installing nb.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/nb/LC_MESSAGES/gnome-keyring.mo
installing ne.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/ne/LC_MESSAGES/gnome-keyring.mo
installing nl.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/nl/LC_MESSAGES/gnome-keyring.mo
installing nn.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/nn/LC_MESSAGES/gnome-keyring.mo
installing oc.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/oc/LC_MESSAGES/gnome-keyring.mo
installing or.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/or/LC_MESSAGES/gnome-keyring.mo
installing pa.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/pa/LC_MESSAGES/gnome-keyring.mo
installing pl.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/pl/LC_MESSAGES/gnome-keyring.mo
installing pt.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/pt/LC_MESSAGES/gnome-keyring.mo
installing pt_BR.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/pt_BR/LC_MESSAGES/gnome-keyring.mo
installing ro.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/ro/LC_MESSAGES/gnome-keyring.mo
installing ru.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/ru/LC_MESSAGES/gnome-keyring.mo
installing rw.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/rw/LC_MESSAGES/gnome-keyring.mo
installing si.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/si/LC_MESSAGES/gnome-keyring.mo
installing sk.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/sk/LC_MESSAGES/gnome-keyring.mo
installing sl.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/sl/LC_MESSAGES/gnome-keyring.mo
installing sq.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/sq/LC_MESSAGES/gnome-keyring.mo
installing sr.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/sr/LC_MESSAGES/gnome-keyring.mo
installing sr@latin.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/sr@latin/LC_MESSAGES/gnome-keyring.mo
installing sv.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/sv/LC_MESSAGES/gnome-keyring.mo
installing ta.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/ta/LC_MESSAGES/gnome-keyring.mo
installing te.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/te/LC_MESSAGES/gnome-keyring.mo
installing tg.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/tg/LC_MESSAGES/gnome-keyring.mo
installing th.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/th/LC_MESSAGES/gnome-keyring.mo
installing tr.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/tr/LC_MESSAGES/gnome-keyring.mo
installing ug.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/ug/LC_MESSAGES/gnome-keyring.mo
installing uk.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/uk/LC_MESSAGES/gnome-keyring.mo
installing vi.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/vi/LC_MESSAGES/gnome-keyring.mo
installing xh.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/xh/LC_MESSAGES/gnome-keyring.mo
installing zh_CN.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/zh_CN/LC_MESSAGES/gnome-keyring.mo
installing zh_HK.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/zh_HK/LC_MESSAGES/gnome-keyring.mo
installing zh_TW.gmo as /home/pmos/build/pkg/gnome-keyring/usr/share/locale/zh_TW/LC_MESSAGES/gnome-keyring.mo
if test "gnome-keyring" = "gettext-tools"; then \
/usr/sbin/mkdir -p /home/pmos/build/pkg/gnome-keyring/usr/share/gettext/po; \
for file in Makefile.in.in remove-potcdate.sin quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot Makevars.template; do \
/usr/bin/install -c -m 644 ./$file \
/home/pmos/build/pkg/gnome-keyring/usr/share/gettext/po/$file; \
done; \
for file in Makevars; do \
rm -f /home/pmos/build/pkg/gnome-keyring/usr/share/gettext/po/$file; \
done; \
else \
: ; \
fi
make[2]: Leaving directory '/home/pmos/build/src/gnome-keyring-42.1/po'
make[1]: Leaving directory '/home/pmos/build/src/gnome-keyring-42.1'
>>> gnome-keyring-lang*: Running split function lang...
>>> gnome-keyring-lang*: Preparing subpackage gnome-keyring-lang...
>>> gnome-keyring-lang*: Running postcheck for gnome-keyring-lang
>>> gnome-keyring-doc*: Running split function doc...
>>> gnome-keyring-doc*: Preparing subpackage gnome-keyring-doc...
>>> gnome-keyring-doc*: Running postcheck for gnome-keyring-doc
>>> gnome-keyring*: Running postcheck for gnome-keyring
>>> gnome-keyring*: Preparing package gnome-keyring...
>>> gnome-keyring*: Stripping binaries
>>> gnome-keyring-doc*: Scanning shared objects
>>> gnome-keyring-lang*: Scanning shared objects
>>> gnome-keyring*: Scanning shared objects
>>> gnome-keyring-doc*: Tracing dependencies...
>>> gnome-keyring-doc*: Package size: 32.0 KB
>>> gnome-keyring-doc*: Compressing data...
>>> gnome-keyring-doc*: Create checksum...
>>> gnome-keyring-doc*: Create gnome-keyring-doc-99942.1-r2.apk
>>> gnome-keyring-lang*: Tracing dependencies...
>>> gnome-keyring-lang*: Package size: 1.7 MB
>>> gnome-keyring-lang*: Compressing data...
>>> gnome-keyring-lang*: Create checksum...
>>> gnome-keyring-lang*: Create gnome-keyring-lang-99942.1-r2.apk
>>> gnome-keyring*: Tracing dependencies...
gcr
so:libc.musl-aarch64.so.1
so:libgck-1.so.0
so:libgcr-base-3.so.1
so:libgcrypt.so.20
so:libgio-2.0.so.0
so:libglib-2.0.so.0
so:libgmodule-2.0.so.0
so:libgobject-2.0.so.0
so:libintl.so.8
so:libpam.so.0
so:libsystemd.so.0
>>> gnome-keyring*: Package size: 3.6 MB
>>> gnome-keyring*: Compressing data...
>>> gnome-keyring*: Create checksum...
>>> gnome-keyring*: Create gnome-keyring-99942.1-r2.apk
>>> gnome-keyring: Build complete at Wed, 03 Apr 2024 21:55:47 +0000 elapsed time 0h 6m 35s
>>> gnome-keyring: Cleaning up srcdir
>>> gnome-keyring: Cleaning up pkgdir
>>> gnome-keyring: Uninstalling dependencies...
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/270) Purging .makedepends-gnome-keyring (20240403.214916)
(2/270) Purging autoconf (2.72-r0)
(3/270) Purging m4 (1.4.19-r3)
(4/270) Purging automake (1.16.5-r2)
(5/270) Purging gcr-dev (3.41.2-r0)
(6/270) Purging gcr (3.41.2-r0)
(7/270) Purging gcr-ssh-agent (3.41.2-r0)
(8/270) Purging gobject-introspection-dev (1.78.1-r0)
(9/270) Purging libtool (2.4.7-r3)
(10/270) Purging libltdl (2.4.7-r3)
(11/270) Purging gtk+3.0-dev (9999_git20231113-r0)
(12/270) Purging wayland-protocols (1.34-r0)
(13/270) Purging gtk+3.0 (9999_git20231113-r0)
Executing gtk+3.0-9999_git20231113-r0.post-deinstall
(14/270) Purging gtk-update-icon-cache (3.24.41-r0)
(15/270) Purging hicolor-icon-theme (0.17-r2)
(16/270) Purging gtk-doc (1.33.2-r3)
(17/270) Purging py3-pygments-pyc (2.17.2-r0)
(18/270) Purging py3-pygments (2.17.2-r0)
(19/270) Purging intltool (0.51.0-r8)
(20/270) Purging perl-xml-parser (2.47-r0)
(21/270) Purging perl-libwww (6.77-r0)
(22/270) Purging perl-http-cookies (6.11-r0)
(23/270) Purging perl-net-http (6.23-r1)
(24/270) Purging perl-html-parser (3.82-r0)
(25/270) Purging perl-html-tagset (3.24-r0)
(26/270) Purging perl-file-listing (6.16-r0)
(27/270) Purging perl-www-robotrules (6.02-r5)
(28/270) Purging perl-http-negotiate (6.01-r5)
(29/270) Purging perl-http-message (6.45-r0)
(30/270) Purging perl-clone (0.46-r2)
(31/270) Purging perl-http-date (6.06-r0)
(32/270) Purging perl-uri (5.28-r0)
(33/270) Purging perl-io-html (1.004-r1)
(34/270) Purging perl-lwp-mediatypes (6.04-r3)
(35/270) Purging perl-encode-locale (1.05-r5)
(36/270) Purging perl-try-tiny (0.31-r2)
(37/270) Purging libcap-ng-dev (0.8.4-r0)
(38/270) Purging libgcrypt-dev (1.10.3-r0)
(39/270) Purging linux-pam-dev (1.6.0-r0)
(40/270) Purging systemd-dev (255.2-r0)
(41/270) Purging at-spi2-core-dev (2.52.0-r0)
(42/270) Purging libatk-bridge-2.0 (2.52.0-r0)
(43/270) Purging cups-libs (2.4.7-r3)
(44/270) Purging dbus-daemon-launch-helper (9991.14.10-r1)
(45/270) Purging dbus-dev (9991.14.10-r1)
(46/270) Purging dbus-service (9991.14.10-r1)
(47/270) Purging gcr-base (3.41.2-r0)
(48/270) Purging gdk-pixbuf-dev (2.42.10-r6)
(49/270) Purging gdk-pixbuf (2.42.10-r6)
Executing gdk-pixbuf-2.42.10-r6.pre-deinstall
(50/270) Purging git-perl (2.44.0-r1)
(51/270) Purging perl-git (2.44.0-r1)
(52/270) Purging perl-error (0.17029-r2)
(53/270) Purging perl (5.38.2-r0)
(54/270) Purging gobject-introspection (1.78.1-r0)
(55/270) Purging libatk-1.0 (2.52.0-r0)
(56/270) Purging libepoxy-dev (1.5.10-r1)
(57/270) Purging libepoxy (1.5.10-r1)
(58/270) Purging libgpg-error-dev (1.48-r0)
(59/270) Purging libsecret (0.21.4-r0)
(60/270) Purging libxcomposite-dev (0.4.6-r4)
(61/270) Purging libxcomposite (0.4.6-r4)
(62/270) Purging libxcursor-dev (1.2.2-r0)
(63/270) Purging libxcursor (1.2.2-r0)
(64/270) Purging libxinerama-dev (1.1.5-r3)
(65/270) Purging libxinerama (1.1.5-r3)
(66/270) Purging libxkbcommon-dev (1.7.0-r0)
(67/270) Purging libxkbcommon-x11 (1.7.0-r0)
(68/270) Purging libxkbcommon (1.7.0-r0)
(69/270) Purging xkeyboard-config (2.41-r0)
(70/270) Purging libxml2-dev (2.12.6-r0)
(71/270) Purging libxrandr-dev (1.5.4-r0)
(72/270) Purging libxrandr (1.5.4-r0)
(73/270) Purging libxtst-dev (1.2.4-r5)
(74/270) Purging mesa-dev (24.0.4-r0)
(75/270) Purging libxdamage-dev (1.1.6-r4)
(76/270) Purging libxdamage (1.1.6-r4)
(77/270) Purging libxshmfence-dev (1.3.2-r5)
(78/270) Purging mesa-egl (24.0.4-r0)
(79/270) Purging mesa-gbm (24.0.4-r0)
(80/270) Purging mesa-gl (24.0.4-r0)
(81/270) Purging mesa-gles (24.0.4-r0)
(82/270) Purging mesa-osmesa (24.0.4-r0)
(83/270) Purging mesa-rusticl (24.0.4-r0)
(84/270) Purging clang17-headers (17.0.6-r0)
(85/270) Purging libclc (17.0.6-r0)
(86/270) Purging mesa-xatracker (24.0.4-r0)
(87/270) Purging mesa (24.0.4-r0)
(88/270) Purging mesa-glapi (24.0.4-r0)
(89/270) Purging openssh-client-default (9.7_p1-r2)
(90/270) Purging openssh-keygen (9.7_p1-r2)
(91/270) Purging openssh-client-common (9.7_p1-r2)
(92/270) Purging p11-kit-dev (0.25.3-r0)
(93/270) Purging pango-dev (1.52.2-r0)
(94/270) Purging pango-tools (1.52.2-r0)
(95/270) Purging pango (1.52.2-r0)
Executing pango-1.52.2-r0.pre-deinstall
(96/270) Purging python3-pyc (3.11.8-r0)
(97/270) Purging python3-pycache-pyc0 (3.11.8-r0)
(98/270) Purging xcb-proto-pyc (1.16.0-r0)
(99/270) Purging pyc (3.11.8-r0)
(100/270) Purging shared-mime-info (2.4-r0)
Executing shared-mime-info-2.4-r0.post-deinstall
(101/270) Purging spirv-llvm-translator-libs (17.0.0-r0)
(102/270) Purging spirv-tools (1.3.261.1-r0)
(103/270) Purging tiff-dev (4.6.0-r0)
(104/270) Purging libtiffxx (4.6.0-r0)
(105/270) Purging tiff (4.6.0-r0)
(106/270) Purging wayland-dev (1.22.0-r4)
(107/270) Purging wayland-libs-cursor (1.22.0-r4)
(108/270) Purging wayland-libs-egl (1.22.0-r4)
(109/270) Purging wayland-libs-server (1.22.0-r4)
(110/270) Purging wayland-libs-client (1.22.0-r4)
(111/270) Purging xz-dev (5.6.1-r2)
(112/270) Purging zstd-dev (1.5.6-r0)
(113/270) Purging zstd (1.5.6-r0)
(114/270) Purging systemd-logind (255.2-r0)
(115/270) Purging dbus (9991.14.10-r1)
(116/270) Purging shadow (4.15.1-r0)
(117/270) Purging systemd-udevd (255.2-r0)
(118/270) Purging systemd-journald (255.2-r0)
(119/270) Purging kmod (31-r4)
(120/270) Purging systemd (255.2-r0)
(121/270) Purging util-linux-login (2.39.3-r1)
(122/270) Purging runuser (2.39.3-r1)
(123/270) Purging less (643-r1)
(124/270) Purging cryptsetup-libs (2.7.1-r0)
(125/270) Purging argon2-libs (20190702-r5)
(126/270) Purging at-spi2-core (2.52.0-r0)
(127/270) Purging audit-libs (4.0.1-r0)
(128/270) Purging avahi-libs (0.8-r16)
(129/270) Purging harfbuzz-dev (8.4.0-r0)
(130/270) Purging harfbuzz-cairo (8.4.0-r0)
(131/270) Purging harfbuzz-gobject (8.4.0-r0)
(132/270) Purging harfbuzz-icu (8.4.0-r0)
(133/270) Purging harfbuzz-subset (8.4.0-r0)
(134/270) Purging harfbuzz (8.4.0-r0)
(135/270) Purging graphite2-dev (1.3.14-r6)
(136/270) Purging graphite2 (1.3.14-r6)
(137/270) Purging cairo-dev (1.18.0-r0)
(138/270) Purging cairo-tools (1.18.0-r0)
(139/270) Purging xcb-util-dev (0.4.1-r3)
(140/270) Purging util-macros (1.20.0-r0)
(141/270) Purging xcb-util (0.4.1-r3)
(142/270) Purging cairo-gobject (1.18.0-r0)
(143/270) Purging cairo (1.18.0-r0)
(144/270) Purging libxft-dev (2.3.8-r2)
(145/270) Purging libxft (2.3.8-r2)
(146/270) Purging fontconfig-dev (2.15.0-r0)
(147/270) Purging fontconfig (2.15.0-r0)
(148/270) Purging freetype-dev (2.13.2-r0)
(149/270) Purging freetype (2.13.2-r0)
(150/270) Purging brotli-dev (1.1.0-r1)
(151/270) Purging brotli (1.1.0-r1)
(152/270) Purging glib-dev (2.78.4-r1)
(153/270) Purging bzip2-dev (1.0.8-r6)
(154/270) Purging docbook-xsl (1.79.2-r8)
Executing docbook-xsl-1.79.2-r8.post-deinstall
(155/270) Purging docbook-xml (4.5-r8)
Executing docbook-xml-4.5-r8.post-deinstall
(156/270) Purging gettext-dev (0.22.5-r0)
(157/270) Purging xz (5.6.1-r2)
(158/270) Purging gettext-asprintf (0.22.5-r0)
(159/270) Purging gettext (0.22.5-r0)
(160/270) Purging gettext-envsubst (0.22.5-r0)
(161/270) Purging libxml2-utils (2.12.6-r0)
(162/270) Purging libxslt (1.1.39-r1)
(163/270) Purging pcre2-dev (10.43-r0)
(164/270) Purging libpcre2-16 (10.43-r0)
(165/270) Purging libpcre2-32 (10.43-r0)
(166/270) Purging libedit-dev (20230828.3.1-r4)
(167/270) Purging ncurses-dev (6.4_p20240309-r0)
(168/270) Purging libncurses++ (6.4_p20240309-r0)
(169/270) Purging libedit (20230828.3.1-r4)
(170/270) Purging bsd-compat-headers (0.7.2-r6)
(171/270) Purging clang17-libs (17.0.6-r0)
(172/270) Purging dbus-libs (9991.14.10-r1)
(173/270) Purging device-mapper-libs (2.03.23-r2)
(174/270) Purging expat-dev (2.6.2-r0)
(175/270) Purging expat (2.6.2-r0)
(176/270) Purging fribidi-dev (1.0.13-r0)
(177/270) Purging fribidi (1.0.13-r0)
(178/270) Purging libxxf86vm-dev (1.1.5-r5)
(179/270) Purging libxxf86vm (1.1.5-r5)
(180/270) Purging libxrender-dev (0.9.11-r4)
(181/270) Purging libxrender (0.9.11-r4)
(182/270) Purging libxi-dev (1.8.1-r3)
(183/270) Purging libxi (1.8.1-r3)
(184/270) Purging libxfixes-dev (6.0.1-r3)
(185/270) Purging libxfixes (6.0.1-r3)
(186/270) Purging libxext-dev (1.3.6-r1)
(187/270) Purging libx11-dev (1.8.7-r0)
(188/270) Purging xtrans (1.5.0-r0)
(189/270) Purging libxcb-dev (1.16.1-r0)
(190/270) Purging xcb-proto (1.16.0-r0)
(191/270) Purging python3 (3.11.8-r0)
(192/270) Purging gdbm (1.23-r1)
(193/270) Purging gettext-libs (0.22.5-r0)
(194/270) Purging glib (2.78.4-r1)
(195/270) Purging libmicrohttpd (0.9.77-r0)
(196/270) Purging gnutls (3.8.3-r0)
(197/270) Purging libdrm-dev (2.4.120-r0)
(198/270) Purging libdrm (2.4.120-r0)
(199/270) Purging libpciaccess-dev (0.18.1-r0)
(200/270) Purging libpciaccess (0.18.1-r0)
(201/270) Purging hwdata-pci (0.380-r0)
(202/270) Purging icu-dev (74.2-r0)
(203/270) Purging icu (74.2-r0)
(204/270) Purging icu-libs (74.2-r0)
(205/270) Purging icu-data-en (74.2-r0)
(206/270) Purging json-c (0.17-r0)
(207/270) Purging kmod-libs (31-r4)
(208/270) Purging libapparmor (3.1.7-r0)
(209/270) Purging util-linux-dev (2.39.3-r1)
(210/270) Purging libfdisk (2.39.3-r1)
(211/270) Purging libmount (2.39.3-r1)
(212/270) Purging libsmartcols (2.39.3-r1)
(213/270) Purging libuuid (2.39.3-r1)
(214/270) Purging libblkid (2.39.3-r1)
(215/270) Purging libxdmcp-dev (1.1.5-r0)
(216/270) Purging libxtst (1.2.4-r5)
(217/270) Purging libxext (1.3.6-r1)
(218/270) Purging libx11 (1.8.7-r0)
(219/270) Purging libxcb (1.16.1-r0)
(220/270) Purging libxdmcp (1.1.5-r0)
(221/270) Purging libbsd (0.12.2-r0)
(222/270) Purging libbz2 (1.0.8-r6)
(223/270) Purging libcap-ng (0.8.4-r0)
(224/270) Purging libeconf (0.6.2-r0)
(225/270) Purging libelf (0.191-r0)
(226/270) Purging libffi-dev (3.4.6-r0)
(227/270) Purging linux-headers (6.6-r0)
(228/270) Purging llvm17-libs (17.0.6-r0)
(229/270) Purging p11-kit (0.25.3-r0)
(230/270) Purging libffi (3.4.6-r0)
(231/270) Purging libformw (6.4_p20240309-r0)
(232/270) Purging systemd-libs (255.2-r0)
(233/270) Purging libgcrypt (1.10.3-r0)
(234/270) Purging libgpg-error (1.48-r0)
(235/270) Purging libintl (0.22.5-r0)
(236/270) Purging libjpeg-turbo-dev (3.0.2-r0)
(237/270) Purging libturbojpeg (3.0.2-r0)
(238/270) Purging libjpeg-turbo (3.0.2-r0)
(239/270) Purging libmd (1.1.0-r0)
(240/270) Purging libmenuw (6.4_p20240309-r0)
(241/270) Purging libpanelw (6.4_p20240309-r0)
(242/270) Purging readline (8.2.10-r0)
(243/270) Purging libncursesw (6.4_p20240309-r0)
(244/270) Purging ncurses-terminfo-base (6.4_p20240309-r0)
(245/270) Purging libpng-dev (1.6.43-r0)
(246/270) Purging libpng (1.6.43-r0)
(247/270) Purging libseccomp (2.5.5-r0)
(248/270) Purging libwebp-dev (1.3.2-r0)
(249/270) Purging libwebpdecoder (1.3.2-r0)
(250/270) Purging libwebpdemux (1.3.2-r0)
(251/270) Purging libwebpmux (1.3.2-r0)
(252/270) Purging libwebp (1.3.2-r0)
(253/270) Purging libsharpyuv (1.3.2-r0)
(254/270) Purging libtasn1 (4.19.0-r2)
(255/270) Purging libxau-dev (1.0.11-r3)
(256/270) Purging libxau (1.0.11-r3)
(257/270) Purging libxml2 (2.12.6-r0)
(258/270) Purging libxshmfence (1.3.2-r5)
(259/270) Purging linux-pam (1.6.0-r0)
(260/270) Purging lz4-libs (1.9.4-r5)
(261/270) Purging mpdecimal (4.0.0-r0)
(262/270) Purging nettle (3.9.1-r0)
(263/270) Purging pixman-dev (0.43.2-r0)
(264/270) Purging pixman (0.43.2-r0)
(265/270) Purging utmps-libs (0.1.2.2-r1)
(266/270) Purging skalibs (2.14.1.1-r0)
(267/270) Purging sqlite-libs (3.45.2-r0)
(268/270) Purging xorgproto (2023.2-r0)
(269/270) Purging xz-libs (5.6.1-r2)
(270/270) Purging zlib-dev (1.3.1-r0)
Executing busybox-1.36.1-r24.trigger
OK: 230 MiB in 65 packages
>>> gnome-keyring: Updating the pmos/aarch64 repository index...
>>> gnome-keyring: Signing the index...
mv: can't preserve ownership of '/mnt/pmbootstrap/packages/aarch64/APKINDEX.tar.gz.3082': Operation not permitted
(002270) [21:55:50] (buildroot_aarch64) uninstall build dependencies
(002270) [21:55:50] (buildroot_aarch64) % cd /home/pmos/build; busybox su pmos -c SUDO_APK='abuild-apk --no-progress' HOME=/home/pmos abuild undeps
ERROR: No such package: .makedepends-gnome-keyring
(002270) [21:55:52] NOTE: chroot is still active (use 'pmbootstrap shutdown' as necessary)
(002270) [21:55:52] DONE!
|