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 |
+ export BPO_JOB_ID=1055572
+ BPO_JOB_ID=1055572
+ pmbootstrap -m http://dl-cdn.alpinelinux.org/alpine/ -mp http://build.postmarketos.org/wip/ -mp http://mirror.postmarketos.org/postmarketos/ --aports=/home/build/pmaports --no-ccache --timeout 900 --details-to-stdout build --no-depends --strict --arch x86_64 --force phosh-mobile-settings
(002018) [15:30:42] % cd /home/build/pmaports; git remote -v
origin https://gitlab.com/postmarketOS/pmaports.git/ (fetch)
origin https://gitlab.com/postmarketOS/pmaports.git/ (push)
(002018) [15:30:42] % cd /home/build/pmaports; git show origin/master:channels.cfg
# Reference: https://postmarketos.org/channels.cfg
[channels.cfg]
recommended=edge
[edge]
description=Rolling release / Most devices / Occasional breakage: https://postmarketos.org/edge
branch_pmaports=master
branch_aports=master
mirrordir_alpine=edge
[v23.06]
description=Latest release / Recommended for best stability
branch_pmaports=v23.06
branch_aports=3.18-stable
mirrordir_alpine=v3.18
[v22.12]
description=Old release (unsupported)
branch_pmaports=v22.12
branch_aports=3.17-stable
mirrordir_alpine=v3.17
[v22.06]
description=Old release (unsupported)
branch_pmaports=v22.06
branch_aports=3.16-stable
mirrordir_alpine=v3.16
[v21.12]
description=Old release (unsupported)
branch_pmaports=v21.12
branch_aports=3.15-stable
mirrordir_alpine=v3.15
[v21.06]
description=Old release (unsupported)
branch_pmaports=v21.06
branch_aports=3.14-stable
mirrordir_alpine=v3.14
[v21.03]
description=Old release (unsupported)
branch_pmaports=v21.03
branch_aports=3.13-stable
mirrordir_alpine=v3.13
[v20.05]
description=Old release (unsupported)
branch_pmaports=v20.05
branch_aports=3.12-stable
mirrordir_alpine=v3.12
(002018) [15:30:42] Shutdown complete
(002018) [15:30:42] Calculate work folder size
(002018) [15:30:42] % sudo du -ks /home/build/.local/var/pmbootstrap
20 /home/build/.local/var/pmbootstrap
(002018) [15:30:42] Shutdown complete
(002018) [15:30:42] % sudo du -ks /home/build/.local/var/pmbootstrap
20 /home/build/.local/var/pmbootstrap
(002018) [15:30:42] Cleared up ~0 MB of space
(002018) [15:30:42] APKINDEX outdated (file does not exist yet): http://build.postmarketos.org/wip/v23.06/x86_64/APKINDEX.tar.gz
(002018) [15:30:42] APKINDEX outdated (file does not exist yet): http://mirror.postmarketos.org/postmarketos/v23.06/x86_64/APKINDEX.tar.gz
(002018) [15:30:42] APKINDEX outdated (file does not exist yet): http://dl-cdn.alpinelinux.org/alpine/v3.18/main/x86_64/APKINDEX.tar.gz
(002018) [15:30:42] APKINDEX outdated (file does not exist yet): http://dl-cdn.alpinelinux.org/alpine/v3.18/community/x86_64/APKINDEX.tar.gz
(002018) [15:30:42] Update package index for x86_64 (4 file(s))
(002018) [15:30:42] % mkdir -p /home/build/.local/var/pmbootstrap/cache_http
(002018) [15:30:42] Download http://build.postmarketos.org/wip/v23.06/x86_64/APKINDEX.tar.gz
(002018) [15:30:42] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_411954fd095b2b9be729baeeaa368f894078370b51d6c4b9658c3f0d0d518fc8 /home/build/.local/var/pmbootstrap/cache_apk_x86_64/APKINDEX.8bfe0421.tar.gz
(002018) [15:30:43] Download http://mirror.postmarketos.org/postmarketos/v23.06/x86_64/APKINDEX.tar.gz
(002018) [15:30:43] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_bd43633c57e23d0883a7891fa31c728c01ed4fc9e79bec961d643649f5950a8a /home/build/.local/var/pmbootstrap/cache_apk_x86_64/APKINDEX.1d747f28.tar.gz
(002018) [15:30:43] Download http://dl-cdn.alpinelinux.org/alpine/v3.18/main/x86_64/APKINDEX.tar.gz
(002018) [15:30:43] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_33d9b8e7f4d819eb01593e9ecfc108559f684f4e5d7cfb81f5bb2dde02ef2c09 /home/build/.local/var/pmbootstrap/cache_apk_x86_64/APKINDEX.257f6e09.tar.gz
(002018) [15:30:43] Download http://dl-cdn.alpinelinux.org/alpine/v3.18/community/x86_64/APKINDEX.tar.gz
(002018) [15:30:44] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_2c3eaa40a62625a4ba80422a148ce82cd6019f8810c0fad3a285bb268b6ddc4b /home/build/.local/var/pmbootstrap/cache_apk_x86_64/APKINDEX.bddb353e.tar.gz
(002018) [15:30:45] Build is necessary for package 'phosh-mobile-settings': Binary package out of date (binary: 0.27.0-r0, aport: 0.30.0-r0)
(002018) [15:30:45] NOTE: Skipped apk version check for chroot 'native', because it is not installed yet!
(002018) [15:30:45] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/dev
(002018) [15:30:45] % sudo mount -t tmpfs -o size=1M,noexec,dev tmpfs /home/build/.local/var/pmbootstrap/chroot_native/dev
(002018) [15:30:45] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/dev/pts /home/build/.local/var/pmbootstrap/chroot_native/dev/shm
(002018) [15:30:45] % sudo mount -t tmpfs -o nodev,nosuid,noexec tmpfs /home/build/.local/var/pmbootstrap/chroot_native/dev/shm
(002018) [15:30:45] % sudo mknod -m 666 /home/build/.local/var/pmbootstrap/chroot_native/dev/null c 1 3
(002018) [15:30:45] % sudo mknod -m 666 /home/build/.local/var/pmbootstrap/chroot_native/dev/zero c 1 5
(002018) [15:30:45] % sudo mknod -m 666 /home/build/.local/var/pmbootstrap/chroot_native/dev/full c 1 7
(002018) [15:30:45] % sudo mknod -m 644 /home/build/.local/var/pmbootstrap/chroot_native/dev/random c 1 8
(002018) [15:30:45] % sudo mknod -m 644 /home/build/.local/var/pmbootstrap/chroot_native/dev/urandom c 1 9
(002018) [15:30:45] % sudo ln -sf /proc/self/fd /home/build/.local/var/pmbootstrap/chroot_native/dev/
(002018) [15:30:45] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/proc
(002018) [15:30:45] % sudo mount --bind /proc /home/build/.local/var/pmbootstrap/chroot_native/proc
(002018) [15:30:45] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/var/cache/apk
(002018) [15:30:45] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_apk_x86_64 /home/build/.local/var/pmbootstrap/chroot_native/var/cache/apk
(002018) [15:30:45] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_appstream/x86_64/v23.06
(002018) [15:30:45] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/appstream-data
(002018) [15:30:45] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_appstream/x86_64/v23.06 /home/build/.local/var/pmbootstrap/chroot_native/mnt/appstream-data
(002018) [15:30:45] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_ccache_x86_64
(002018) [15:30:45] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/ccache
(002018) [15:30:45] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_ccache_x86_64 /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/ccache
(002018) [15:30:45] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_distfiles
(002018) [15:30:45] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/var/cache/distfiles
(002018) [15:30:45] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_distfiles /home/build/.local/var/pmbootstrap/chroot_native/var/cache/distfiles
(002018) [15:30:45] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/git
(002018) [15:30:45] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_git /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/git
(002018) [15:30:45] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_go
(002018) [15:30:45] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/go
(002018) [15:30:45] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_go /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/go
(002018) [15:30:45] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_rust
(002018) [15:30:45] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/rust
(002018) [15:30:45] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_rust /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/rust
(002018) [15:30:45] % sudo mkdir -p /home/build/.local/var/pmbootstrap/config_abuild
(002018) [15:30:45] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/abuild-config
(002018) [15:30:45] % sudo mount --bind /home/build/.local/var/pmbootstrap/config_abuild /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/abuild-config
(002018) [15:30:45] % sudo mkdir -p /home/build/.local/var/pmbootstrap/config_apk_keys
(002018) [15:30:45] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/keys
(002018) [15:30:45] % sudo mount --bind /home/build/.local/var/pmbootstrap/config_apk_keys /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/keys
(002018) [15:30:46] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_sccache
(002018) [15:30:46] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/sccache
(002018) [15:30:46] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_sccache /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/sccache
(002018) [15:30:46] % sudo mkdir -p /home/build/.local/var/pmbootstrap/images_netboot
(002018) [15:30:46] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/netboot
(002018) [15:30:46] % sudo mount --bind /home/build/.local/var/pmbootstrap/images_netboot /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/netboot
(002018) [15:30:46] % sudo mkdir -p /home/build/.local/var/pmbootstrap/packages/v23.06
(002018) [15:30:46] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/packages
(002018) [15:30:46] % sudo mount --bind /home/build/.local/var/pmbootstrap/packages/v23.06 /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/packages
(002018) [15:30:46] % sudo touch /home/build/.local/var/pmbootstrap/chroot_native/in-pmbootstrap
(002018) [15:30:46] Download http://dl-cdn.alpinelinux.org/alpine/v3.18/main/x86_64/apk-tools-static-2.14.0-r2.apk
(002018) [15:30:46] sigfilename: sbin/apk.static.SIGN.RSA.alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002018) [15:30:46] sigkey: alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002018) [15:30:46] extracted: /tmp/pmbootstrapgxjxn028apk
(002018) [15:30:46] extracted: /tmp/pmbootstrap3i7oef97sig
(002018) [15:30:46] Verify apk.static signature with /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002018) [15:30:46] % openssl dgst -sha1 -verify /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub -signature /tmp/pmbootstrap3i7oef97sig /tmp/pmbootstrapgxjxn028apk
Verified OK
(002018) [15:30:46] Verify the version reported by the apk.static binary (must match the package version 2.14.0-r2)
(002018) [15:30:46] % /tmp/pmbootstrapgxjxn028apk --version
apk-tools 2.14.0, compiled for x86_64.
(002018) [15:30:46] (native) install alpine-base
(002018) [15:30:46] % sudo ln -s -f /var/cache/apk /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/cache
(002018) [15:30:46] % 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
(002018) [15:30:46] % sudo cp /home/build/pmbootstrap/pmb/data/keys/wip.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/wip.rsa.pub
(002018) [15:30:46] % 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
(002018) [15:30:46] % 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
(002018) [15:30:46] % 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
(002018) [15:30:46] % 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
(002018) [15:30:46] % 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
(002018) [15:30:46] % 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
(002018) [15:30:46] % 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
(002018) [15:30:46] % 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
(002018) [15:30:46] % 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
(002018) [15:30:46] % 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
(002018) [15:30:46] % 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
(002018) [15:30:46] % 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
(002018) [15:30:46] % 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
(002018) [15:30:46] % 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
(002018) [15:30:46] % 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
(002018) [15:30:46] % 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
(002018) [15:30:46] % 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
(002018) [15:30:46] % sudo cp /etc/resolv.conf /home/build/.local/var/pmbootstrap/chroot_native/etc/resolv.conf
(002018) [15:30:46] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/etc/apk
(002018) [15:30:46] (native) update /etc/apk/repositories
(002018) [15:30:46] % sudo sh -c echo /mnt/pmbootstrap/packages >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002018) [15:30:46] % sudo sh -c echo http://build.postmarketos.org/wip/v23.06 >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002018) [15:30:46] % sudo sh -c echo http://mirror.postmarketos.org/postmarketos/v23.06 >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002018) [15:30:46] % sudo sh -c echo http://dl-cdn.alpinelinux.org/alpine/v3.18/main >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002018) [15:30:46] % sudo sh -c echo http://dl-cdn.alpinelinux.org/alpine/v3.18/community >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002018) [15:30:46] % sudo mkdir -p /home/build/.local/var/pmbootstrap/tmp
(002018) [15:30:46] % sudo mkfifo /home/build/.local/var/pmbootstrap/tmp/apk_progress_fifo
(002018) [15:30:46] % sudo cat /home/build/.local/var/pmbootstrap/tmp/apk_progress_fifo
(002018) [15:30:46] % 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
(002018) [15:30:46] New background process: pid=2107, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/25) Installing alpine-baselayout-data (3.4.3-r1)
(2/25) Installing musl (1.2.4-r1)
(3/25) Installing busybox (1.36.1-r2)
Executing busybox-1.36.1-r2.post-install
(4/25) Installing busybox-binsh (1.36.1-r2)
(5/25) Installing alpine-baselayout (3.4.3-r1)
Executing alpine-baselayout-3.4.3-r1.pre-install
Executing alpine-baselayout-3.4.3-r1.post-install
(6/25) Installing ifupdown-ng (0.12.1-r2)
(7/25) Installing libcap2 (2.69-r0)
(8/25) Installing openrc (0.48-r0)
Executing openrc-0.48-r0.post-install
(9/25) Installing mdev-conf (4.5-r0)
(10/25) Installing busybox-mdev-openrc (1.36.1-r2)
(11/25) Installing alpine-conf (3.16.2-r0)
(12/25) Installing alpine-keys (2.4-r1)
(13/25) Installing alpine-release (3.18.3-r0)
(14/25) Installing ca-certificates-bundle (20230506-r0)
(15/25) Installing libcrypto3 (3.1.2-r0)
(16/25) Installing libssl3 (3.1.2-r0)
(17/25) Installing ssl_client (1.36.1-r2)
(18/25) Installing zlib (1.2.13-r1)
(19/25) Installing apk-tools (2.14.0-r2)
(20/25) Installing busybox-openrc (1.36.1-r2)
(21/25) Installing busybox-suid (1.36.1-r2)
(22/25) Installing scanelf (1.3.7-r1)
(23/25) Installing musl-utils (1.2.4-r1)
(24/25) Installing libc-utils (0.7.2-r5)
(25/25) Installing alpine-base (3.18.3-r0)
Executing busybox-1.36.1-r2.trigger
OK: 10 MiB in 25 packages
(002018) [15:30:49] (native) % adduser -D pmos -u 12345
(002018) [15:30:49] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/abuild-config /home/pmos/.abuild
(002018) [15:30:49] (native) % chown pmos:pmos /mnt/pmbootstrap/abuild-config
(002018) [15:30:49] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/ccache /home/pmos/.ccache
(002018) [15:30:49] (native) % chown pmos:pmos /mnt/pmbootstrap/ccache
(002018) [15:30:49] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/.cache
(002018) [15:30:49] (native) % mkdir -p /mnt/pmbootstrap/go/gocache
(002018) [15:30:49] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/go/gocache /home/pmos/.cache/go-build
(002018) [15:30:49] (native) % chown pmos:pmos /mnt/pmbootstrap/go/gocache
(002018) [15:30:49] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/go/pkg
(002018) [15:30:49] (native) % mkdir -p /mnt/pmbootstrap/go/gomodcache
(002018) [15:30:49] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/go/gomodcache /home/pmos/go/pkg/mod
(002018) [15:30:49] (native) % chown pmos:pmos /mnt/pmbootstrap/go/gomodcache
(002018) [15:30:49] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/packages
(002018) [15:30:49] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/packages /home/pmos/packages/pmos
(002018) [15:30:49] (native) % chown pmos:pmos /mnt/pmbootstrap/packages
(002018) [15:30:49] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/.cargo/git
(002018) [15:30:49] (native) % mkdir -p /mnt/pmbootstrap/rust/git/db
(002018) [15:30:49] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/rust/git/db /home/pmos/.cargo/git/db
(002018) [15:30:49] (native) % chown pmos:pmos /mnt/pmbootstrap/rust/git/db
(002018) [15:30:49] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/.cargo/registry
(002018) [15:30:49] (native) % mkdir -p /mnt/pmbootstrap/rust/registry/cache
(002018) [15:30:49] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/rust/registry/cache /home/pmos/.cargo/registry/cache
(002018) [15:30:49] (native) % chown pmos:pmos /mnt/pmbootstrap/rust/registry/cache
(002018) [15:30:49] (native) % mkdir -p /mnt/pmbootstrap/rust/registry/index
(002018) [15:30:49] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/rust/registry/index /home/pmos/.cargo/registry/index
(002018) [15:30:49] (native) % chown pmos:pmos /mnt/pmbootstrap/rust/registry/index
(002018) [15:30:49] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/sccache /home/pmos/.cache/sccache
(002018) [15:30:49] (native) % chown pmos:pmos /mnt/pmbootstrap/sccache
(002018) [15:30:49] (native) calculate depends of abuild (pmbootstrap -v for details)
(002018) [15:30:49] (native) install abuild
(002018) [15:30:49] % sudo mkfifo /home/build/.local/var/pmbootstrap/chroot_native/tmp/apk_progress_fifo
(002018) [15:30:49] (native) % cat /tmp/apk_progress_fifo
(002018) [15:30:49] (native) % sh -c exec 3>/tmp/apk_progress_fifo; apk --no-progress --progress-fd 3 add abuild
(002018) [15:30:49] New background process: pid=2153, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/19) Installing fakeroot (1.31-r2)
(2/19) Installing openssl (3.1.2-r0)
(3/19) Installing libattr (2.5.1-r4)
(4/19) Installing attr (2.5.1-r4)
(5/19) Installing libacl (2.3.1-r3)
(6/19) Installing tar (1.34-r3)
(7/19) Installing pkgconf (1.9.5-r0)
(8/19) Installing patch (2.7.6-r10)
(9/19) Installing libgcc (12.2.1_git20220924-r10)
(10/19) Installing libstdc++ (12.2.1_git20220924-r10)
(11/19) Installing lzip (1.23-r1)
(12/19) Installing ca-certificates (20230506-r0)
(13/19) Installing brotli-libs (1.0.9-r14)
(14/19) Installing libunistring (1.1-r1)
(15/19) Installing libidn2 (2.3.4-r1)
(16/19) Installing nghttp2-libs (1.55.1-r0)
(17/19) Installing libcurl (8.2.1-r0)
(18/19) Installing curl (8.2.1-r0)
(19/19) Installing abuild (3.11.1-r0)
Executing abuild-3.11.1-r0.pre-install
Executing busybox-1.36.1-r2.trigger
Executing ca-certificates-20230506-r0.trigger
OK: 19 MiB in 44 packages
(002018) [15:30:52] (native) % chown root:abuild /var/cache/distfiles
(002018) [15:30:52] (native) % chmod g+w /var/cache/distfiles
(002018) [15:30:52] (native) % adduser pmos abuild
(002018) [15:30:52] (native) calculate depends of abuild, build-base, ccache, git (pmbootstrap -v for details)
(002018) [15:30:52] so:libisl.so.23: has multiple providers (isl25, isl26), picked shortest: isl25
(002018) [15:30:52] (native) install abuild build-base ccache git
(002018) [15:30:52] % sudo rm -f /home/build/.local/var/pmbootstrap/chroot_native/tmp/apk_progress_fifo
(002018) [15:30:52] % sudo mkfifo /home/build/.local/var/pmbootstrap/chroot_native/tmp/apk_progress_fifo
(002018) [15:30:52] (native) % cat /tmp/apk_progress_fifo
(002018) [15:30:52] (native) % sh -c exec 3>/tmp/apk_progress_fifo; apk --no-progress --progress-fd 3 add abuild build-base ccache git
(002018) [15:30:52] New background process: pid=2169, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/23) Installing zstd-libs (1.5.5-r4)
(2/23) Installing binutils (2.40-r7)
(3/23) Installing libmagic (5.45-r0)
(4/23) Installing file (5.45-r0)
(5/23) Installing libgomp (12.2.1_git20220924-r10)
(6/23) Installing libatomic (12.2.1_git20220924-r10)
(7/23) Installing gmp (6.2.1-r3)
(8/23) Installing isl26 (0.26-r1)
(9/23) Installing mpfr4 (4.2.0_p12-r0)
(10/23) Installing mpc1 (1.3.1-r1)
(11/23) Installing gcc (12.2.1_git20220924-r10)
(12/23) Installing libstdc++-dev (12.2.1_git20220924-r10)
(13/23) Installing musl-dev (1.2.4-r1)
(14/23) Installing libc-dev (0.7.2-r5)
(15/23) Installing g++ (12.2.1_git20220924-r10)
(16/23) Installing make (4.4.1-r1)
(17/23) Installing fortify-headers (1.1-r3)
(18/23) Installing build-base (0.5-r3)
(19/23) Installing hiredis (1.1.0-r2)
(20/23) Installing ccache (4.8.2-r0)
(21/23) Installing libexpat (2.5.0-r1)
(22/23) Installing pcre2 (10.42-r1)
(23/23) Installing git (2.40.1-r0)
Executing busybox-1.36.1-r2.trigger
OK: 260 MiB in 67 packages
(002018) [15:31:23] (native) generate abuild keys
(002018) [15:31:23] (native) % busybox su pmos -c PACKAGER='pmos <pmos@local>' HOME=/home/pmos abuild-keygen -n -q -a
writing RSA key
(002018) [15:31:25] (native) % cp /mnt/pmbootstrap/abuild-config/pmos@local-64fde14b.rsa.pub /etc/apk/keys/
(002018) [15:31:25] (native) % cp /tmp/gzip_wrapper.sh /usr/local/bin/gzip
(002018) [15:31:25] (native) % chmod +x /usr/local/bin/gzip
(002018) [15:31:25] (native) % sed -i -e s/^CLEANUP=.*/CLEANUP=''/ /etc/abuild.conf
(002018) [15:31:25] (native) % sed -i -e s/^ERROR_CLEANUP=.*/ERROR_CLEANUP=''/ /etc/abuild.conf
(002018) [15:31:25] (native) % sed -i $ a\export JOBS=3 /etc/abuild.conf
(002018) [15:31:25] (native) build x86_64/phosh-mobile-settings-0.30.0-r0.apk
(002018) [15:31:25] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/home/pmos/build
(002018) [15:31:25] % sudo cp -rL /home/build/pmaports/temp/phosh-mobile-settings/APKBUILD /home/build/.local/var/pmbootstrap/chroot_native/home/pmos/build/APKBUILD
(002018) [15:31:25] (native) % chown -R pmos:pmos /home/pmos/build
(002018) [15:31:25] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmaports
(002018) [15:31:25] % sudo mount --bind /home/build/pmaports /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmaports
(002018) [15:31:25] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/build
(002018) [15:31:25] (native) % busybox su pmos -c HOME=/home/pmos ln -sf /mnt/pmaports/.git /home/pmos/build/.git
(002018) [15:31:25] (native) % cd /home/pmos/build; busybox su pmos -c CARCH=x86_64 SUDO_APK='abuild-apk --no-progress' CCACHE_DISABLE=1 GOCACHE=/home/pmos/.cache/go-build HOME=/home/pmos abuild -D postmarketOS -r -f
>>> phosh-mobile-settings: Building pmos/phosh-mobile-settings 0.30.0-r0 (using abuild 3.11.1-r0) started Sun, 10 Sep 2023 15:31:25 +0000
>>> phosh-mobile-settings: Checking sanity of /home/pmos/build/APKBUILD...
>>> WARNING: phosh-mobile-settings: No maintainer
>>> phosh-mobile-settings: Analyzing dependencies...
>>> phosh-mobile-settings: Installing for build: build-base desktop-file-utils glib-dev>=2.62 gsound-dev gtk4.0-dev libadwaita-dev lm-sensors-dev meson phosh-dev
WARNING: opening /home/pmos/packages//pmos: No such file or directory
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/284) Installing libffi (3.4.4-r2)
(2/284) Installing libintl (0.21.1-r7)
(3/284) Installing libblkid (2.38.1-r8)
(4/284) Installing libmount (2.38.1-r8)
(5/284) Installing glib (2.76.4-r0)
(6/284) Installing desktop-file-utils (0.26-r3)
(7/284) Installing libbz2 (1.0.8-r5)
(8/284) Installing bzip2-dev (1.0.8-r5)
(9/284) Installing xz-libs (5.4.3-r0)
(10/284) Installing libxml2 (2.11.4-r0)
(11/284) Installing libxml2-utils (2.11.4-r0)
(12/284) Installing docbook-xml (4.5-r8)
Executing docbook-xml-4.5-r8.post-install
(13/284) Installing libgpg-error (1.47-r1)
(14/284) Installing libgcrypt (1.10.2-r1)
(15/284) Installing libxslt (1.1.38-r0)
(16/284) Installing docbook-xsl (1.79.2-r8)
Executing docbook-xsl-1.79.2-r8.post-install
(17/284) Installing xz (5.4.3-r0)
(18/284) Installing gettext-asprintf (0.21.1-r7)
(19/284) Installing ncurses-terminfo-base (6.4_p20230506-r0)
(20/284) Installing libncursesw (6.4_p20230506-r0)
(21/284) Installing gettext-libs (0.21.1-r7)
(22/284) Installing gettext-envsubst (0.21.1-r7)
(23/284) Installing gettext (0.21.1-r7)
(24/284) Installing gettext-dev (0.21.1-r7)
(25/284) Installing gdbm (1.23-r1)
(26/284) Installing mpdecimal (2.5.1-r2)
(27/284) Installing libpanelw (6.4_p20230506-r0)
(28/284) Installing readline (8.2.1-r1)
(29/284) Installing sqlite-libs (3.41.2-r2)
(30/284) Installing python3 (3.11.5-r0)
(31/284) Installing python3-pycache-pyc0 (3.11.5-r0)
(32/284) Installing pyc (0.1-r0)
(33/284) Installing python3-pyc (3.11.5-r0)
(34/284) Installing linux-headers (6.3-r0)
(35/284) Installing libffi-dev (3.4.4-r2)
(36/284) Installing bsd-compat-headers (0.7.2-r5)
(37/284) Installing libformw (6.4_p20230506-r0)
(38/284) Installing libmenuw (6.4_p20230506-r0)
(39/284) Installing libncurses++ (6.4_p20230506-r0)
(40/284) Installing ncurses-dev (6.4_p20230506-r0)
(41/284) Installing libedit (20221030.3.1-r1)
(42/284) Installing libedit-dev (20221030.3.1-r1)
(43/284) Installing zlib-dev (1.2.13-r1)
(44/284) Installing libpcre2-16 (10.42-r1)
(45/284) Installing libpcre2-32 (10.42-r1)
(46/284) Installing pcre2-dev (10.42-r1)
(47/284) Installing libuuid (2.38.1-r8)
(48/284) Installing libfdisk (2.38.1-r8)
(49/284) Installing libsmartcols (2.38.1-r8)
(50/284) Installing util-linux-dev (2.38.1-r8)
(51/284) Installing glib-dev (2.76.4-r0)
(52/284) Installing sound-theme-freedesktop (0.8-r0)
(53/284) Installing libltdl (2.4.7-r2)
(54/284) Installing eudev-libs (3.2.11-r8)
(55/284) Installing libogg (1.3.5-r4)
(56/284) Installing libvorbis (1.3.7-r1)
(57/284) Installing libcanberra (0.30-r9)
(58/284) Installing gsound (1.0.3-r1)
(59/284) Installing libxau (1.0.11-r2)
(60/284) Installing libmd (1.0.4-r2)
(61/284) Installing libbsd (0.11.7-r1)
(62/284) Installing libxdmcp (1.1.4-r2)
(63/284) Installing libxcb (1.15-r1)
(64/284) Installing libx11 (1.8.4-r4)
(65/284) Installing shared-mime-info (2.2-r5)
(66/284) Installing hicolor-icon-theme (0.17-r2)
(67/284) Installing libjpeg-turbo (2.1.5.1-r3)
(68/284) Installing libpng (1.6.39-r3)
(69/284) Installing libwebp (1.3.1-r0)
(70/284) Installing tiff (4.5.1-r0)
(71/284) Installing gdk-pixbuf (2.42.10-r5)
(72/284) Installing gtk-update-icon-cache (3.24.38-r1)
(73/284) Installing libxcomposite (0.4.6-r3)
(74/284) Installing libxfixes (6.0.1-r2)
(75/284) Installing libxrender (0.9.11-r3)
(76/284) Installing libxcursor (1.2.1-r2)
(77/284) Installing libxdamage (1.1.6-r2)
(78/284) Installing libxext (1.3.5-r2)
(79/284) Installing libxi (1.8.1-r0)
(80/284) Installing libxrandr (1.5.3-r2)
(81/284) Installing libatk-1.0 (2.48.3-r0)
(82/284) Installing freetype (2.13.0-r5)
(83/284) Installing fontconfig (2.14.2-r3)
(84/284) Installing pixman (0.42.2-r1)
(85/284) Installing cairo (1.17.8-r1)
(86/284) Installing dbus-libs (1.14.8-r0)
(87/284) Installing avahi-libs (0.8-r13)
(88/284) Installing nettle (3.8.1-r2)
(89/284) Installing p11-kit (0.24.1-r2)
(90/284) Installing libtasn1 (4.19.0-r1)
(91/284) Installing gnutls (3.8.0-r2)
(92/284) Installing cups-libs (2.4.6-r0)
(93/284) Installing libxft (2.3.8-r1)
(94/284) Installing fribidi (1.0.13-r0)
(95/284) Installing graphite2 (1.3.14-r5)
(96/284) Installing harfbuzz (7.3.0-r0)
(97/284) Installing pango (1.50.14-r1)
(98/284) Installing gtk+2.0 (2.24.33-r9)
Executing gtk+2.0-2.24.33-r9.post-install
(99/284) Installing libcanberra-gtk2 (0.30-r9)
(100/284) Installing libxinerama (1.1.5-r2)
(101/284) Installing libxtst (1.2.4-r2)
(102/284) Installing at-spi2-core (2.48.3-r0)
(103/284) Installing libatk-bridge-2.0 (2.48.3-r0)
(104/284) Installing cairo-gobject (1.17.8-r1)
(105/284) Installing libepoxy (1.5.10-r1)
(106/284) Installing wayland-libs-client (1.22.0-r2)
(107/284) Installing wayland-libs-cursor (1.22.0-r2)
(108/284) Installing wayland-libs-egl (1.22.0-r2)
(109/284) Installing xkeyboard-config (2.38-r0)
(110/284) Installing libxkbcommon (1.5.0-r2)
(111/284) Installing gtk+3.0 (9999_git20230719-r1)
Executing gtk+3.0-9999_git20230719-r1.post-install
(112/284) Installing libcanberra-gtk3 (0.30-r9)
(113/284) Installing dbus-dev (1.14.8-r0)
(114/284) Installing xorgproto (2022.2-r0)
(115/284) Installing libxau-dev (1.0.11-r2)
(116/284) Installing xcb-proto (1.15.2-r2)
(117/284) Installing xcb-proto-pyc (1.15.2-r2)
(118/284) Installing libxdmcp-dev (1.1.4-r2)
(119/284) Installing libxcb-dev (1.15-r1)
(120/284) Installing xtrans (1.4.0-r3)
(121/284) Installing libx11-dev (1.8.4-r4)
(122/284) Installing libxext-dev (1.3.5-r2)
(123/284) Installing libxfixes-dev (6.0.1-r2)
(124/284) Installing libxi-dev (1.8.1-r0)
(125/284) Installing libxtst-dev (1.2.4-r2)
(126/284) Installing at-spi2-core-dev (2.48.3-r0)
(127/284) Installing cairo-tools (1.17.8-r1)
(128/284) Installing expat (2.5.0-r1)
(129/284) Installing expat-dev (2.5.0-r1)
(130/284) Installing brotli (1.0.9-r14)
(131/284) Installing brotli-dev (1.0.9-r14)
(132/284) Installing libpng-dev (1.6.39-r3)
(133/284) Installing freetype-dev (2.13.0-r5)
(134/284) Installing fontconfig-dev (2.14.2-r3)
(135/284) Installing libxrender-dev (0.9.11-r3)
(136/284) Installing pixman-dev (0.42.2-r1)
(137/284) Installing util-macros (1.20.0-r0)
(138/284) Installing xcb-util (0.4.1-r2)
(139/284) Installing xcb-util-dev (0.4.1-r2)
(140/284) Installing cairo-dev (1.17.8-r1)
(141/284) Installing perl (5.36.1-r2)
(142/284) Installing perl-http-date (6.05-r1)
(143/284) Installing perl-clone (0.46-r1)
(144/284) Installing perl-uri (5.19-r0)
(145/284) Installing perl-io-html (1.004-r0)
(146/284) Installing perl-encode-locale (1.05-r4)
(147/284) Installing perl-lwp-mediatypes (6.04-r2)
(148/284) Installing perl-http-message (6.44-r0)
(149/284) Installing perl-http-cookies (6.10-r0)
(150/284) Installing perl-net-http (6.22-r0)
(151/284) Installing perl-html-tagset (3.20-r4)
(152/284) Installing perl-html-parser (3.81-r1)
(153/284) Installing perl-file-listing (6.15-r0)
(154/284) Installing perl-www-robotrules (6.02-r3)
(155/284) Installing perl-http-negotiate (6.01-r3)
(156/284) Installing perl-try-tiny (0.31-r1)
(157/284) Installing perl-libwww (6.68-r1)
(158/284) Installing perl-xml-parser (2.46-r5)
(159/284) Installing intltool (0.51.0-r8)
(160/284) Installing libxdamage-dev (1.1.6-r2)
(161/284) Installing pango-tools (1.50.14-r1)
(162/284) Installing fribidi-dev (1.0.13-r0)
(163/284) Installing harfbuzz-cairo (7.3.0-r0)
(164/284) Installing harfbuzz-gobject (7.3.0-r0)
(165/284) Installing icu-data-en (73.2-r2)
Executing icu-data-en-73.2-r2.post-install
*
* If you need ICU with non-English locales and legacy charset support, install
* package icu-data-full.
*
(166/284) Installing icu-libs (73.2-r2)
(167/284) Installing harfbuzz-icu (7.3.0-r0)
(168/284) Installing harfbuzz-subset (7.3.0-r0)
(169/284) Installing graphite2-dev (1.3.14-r5)
(170/284) Installing icu (73.2-r2)
(171/284) Installing icu-dev (73.2-r2)
(172/284) Installing harfbuzz-dev (7.3.0-r0)
(173/284) Installing libxft-dev (2.3.8-r1)
(174/284) Installing pango-dev (1.50.14-r1)
(175/284) Installing libjpeg-turbo-dev (2.1.5.1-r3)
(176/284) Installing zstd (1.5.5-r4)
(177/284) Installing zstd-dev (1.5.5-r4)
(178/284) Installing libtiffxx (4.5.1-r0)
(179/284) Installing libwebp-dev (1.3.1-r0)
(180/284) Installing tiff-dev (4.5.1-r0)
(181/284) Installing gdk-pixbuf-dev (2.42.10-r5)
(182/284) Installing gtk+2.0-dev (2.24.33-r9)
(183/284) Installing hwdata-pci (0.370-r0)
(184/284) Installing libpciaccess (0.17-r2)
(185/284) Installing libdrm (2.4.115-r4)
(186/284) Installing libpciaccess-dev (0.17-r2)
(187/284) Installing libdrm-dev (2.4.115-r4)
(188/284) Installing libxshmfence (1.3.2-r2)
(189/284) Installing libxshmfence-dev (1.3.2-r2)
(190/284) Installing mesa (23.0.4-r0)
(191/284) Installing wayland-libs-server (1.22.0-r2)
(192/284) Installing mesa-gbm (23.0.4-r0)
(193/284) Installing mesa-glapi (23.0.4-r0)
(194/284) Installing mesa-egl (23.0.4-r0)
(195/284) Installing libxxf86vm (1.1.5-r3)
(196/284) Installing mesa-gl (23.0.4-r0)
(197/284) Installing mesa-gles (23.0.4-r0)
(198/284) Installing llvm15-libs (15.0.7-r6)
(199/284) Installing mesa-osmesa (23.0.4-r0)
(200/284) Installing mesa-xatracker (23.0.4-r0)
(201/284) Installing libxxf86vm-dev (1.1.5-r3)
(202/284) Installing mesa-dev (23.0.4-r0)
(203/284) Installing libepoxy-dev (1.5.10-r1)
(204/284) Installing libxinerama-dev (1.1.5-r2)
(205/284) Installing wayland-protocols (1.31-r1)
(206/284) Installing libxkbcommon-x11 (1.5.0-r2)
(207/284) Installing xz-dev (5.4.3-r0)
(208/284) Installing libxml2-dev (2.11.4-r0)
(209/284) Installing libxkbcommon-dev (1.5.0-r2)
(210/284) Installing wayland-dev (1.22.0-r2)
(211/284) Installing libxcomposite-dev (0.4.6-r3)
(212/284) Installing libxcursor-dev (1.2.1-r2)
(213/284) Installing libxrandr-dev (1.5.3-r2)
(214/284) Installing gtk+3.0-dev (9999_git20230719-r1)
(215/284) Installing libcanberra-dev (0.30-r9)
(216/284) Installing gsound-dev (1.0.3-r1)
(217/284) Installing vulkan-headers (1.3.243.0-r0)
(218/284) Installing tzdata (2023c-r1)
(219/284) Installing iso-codes (4.15.0-r0)
(220/284) Installing graphene (1.10.8-r2)
(221/284) Installing libxv (1.0.12-r3)
(222/284) Installing alsa-lib (1.2.9-r1)
(223/284) Installing cdparanoia-libs (10.2-r14)
(224/284) Installing gstreamer (1.22.5-r0)
(225/284) Installing libcanberra-gstreamer (0.30-r9)
(226/284) Installing opus (1.4-r0)
(227/284) Installing orc (0.4.34-r0)
(228/284) Installing libtheora (1.1.1-r17)
(229/284) Installing gst-plugins-base (1.22.5-r0)
(230/284) Installing openexr-libiex (3.1.9-r0)
(231/284) Installing boost1.82-python3 (1.82.0-r1)
(232/284) Installing imath (3.1.7-r1)
(233/284) Installing openexr-libilmthread (3.1.9-r0)
(234/284) Installing openexr-libopenexr (3.1.9-r0)
(235/284) Installing soundtouch (2.3.2-r2)
(236/284) Installing aom-libs (3.6.1-r0)
(237/284) Installing libunibreak (5.1-r0)
(238/284) Installing libass (0.17.1-r0)
(239/284) Installing libraw1394 (2.1.2-r4)
(240/284) Installing libusb (1.0.26-r2)
(241/284) Installing libdc1394 (2.2.6-r1)
(242/284) Installing libde265 (1.0.12-r0)
(243/284) Installing tslib (1.22-r1)
(244/284) Installing directfb (1.7.7-r6)
(245/284) Installing faac (1.30-r4)
(246/284) Installing fdk-aac (2.0.2-r2)
(247/284) Installing flite (2.2-r2)
(248/284) Installing libfreeaptx (0.1.1-r1)
(249/284) Installing gsm (1.0.22-r3)
(250/284) Installing libgudev (237-r1)
(251/284) Installing lcms2 (2.15-r2)
(252/284) Installing libldac (2.0.2.3-r1)
(253/284) Installing libmodplug (0.8.9.0-r2)
(254/284) Installing neon (0.32.5-r1)
(255/284) Installing libnice (0.1.21-r0)
(256/284) Installing openal-soft-libs (1.23.1-r0)
(257/284) Installing openjpeg (2.5.0-r3)
(258/284) Installing librsvg (2.56.3-r0)
(259/284) Installing librtmp (2.4_git20190330-r3)
(260/284) Installing sbc (2.0-r0)
(261/284) Installing flac-libs (1.4.3-r0)
(262/284) Installing libsndfile (1.2.0-r2)
(263/284) Installing spandsp (0.0.6-r5)
(264/284) Installing libsrtp (2.5.0-r1)
(265/284) Installing libva (2.18.0-r1)
(266/284) Installing vo-aacenc (0.1.3-r1)
(267/284) Installing vo-amrwbenc (0.1.3-r1)
(268/284) Installing libzbar (0.23.92-r2)
(269/284) Installing gst-plugins-bad (1.22.5-r0)
(270/284) Installing gtk4.0 (4.10.4-r0)
Executing gtk4.0-4.10.4-r0.post-install
(271/284) Installing graphene-dev (1.10.8-r2)
(272/284) Installing gtk4.0-dev (4.10.4-r0)
(273/284) Installing libadwaita (1.3.3-r0)
(274/284) Installing libadwaita-dev (1.3.3-r0)
(275/284) Installing lm-sensors-libs (3.6.0-r5)
(276/284) Installing lm-sensors-dev (3.6.0-r5)
(277/284) Installing samurai (1.2-r3)
(278/284) Installing meson (1.1.0-r1)
(279/284) Installing meson-pyc (1.1.0-r1)
(280/284) Installing phosh-dev (0.30.0-r2)
(281/284) Installing .makedepends-phosh-mobile-settings (20230910.153126)
(282/284) Installing perl-error (0.17029-r1)
(283/284) Installing perl-git (2.40.1-r0)
(284/284) Installing git-perl (2.40.1-r0)
Executing busybox-1.36.1-r2.trigger
Executing glib-2.76.4-r0.trigger
Executing desktop-file-utils-0.26-r3.trigger
Executing shared-mime-info-2.2-r5.trigger
Executing gdk-pixbuf-2.42.10-r5.trigger
Executing gtk-update-icon-cache-3.24.38-r1.trigger
OK: 798 MiB in 351 packages
>>> phosh-mobile-settings: Cleaning up srcdir
>>> phosh-mobile-settings: Cleaning up pkgdir
>>> phosh-mobile-settings: Fetching https://gitlab.gnome.org/guidog/phosh-mobile-settings/-/archive/v0.30.0/phosh-mobile-settings-v0.30.0.tar.gz
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 171k 0 171k 0 0 695k 0 --:--:-- --:--:-- --:--:-- 697k
>>> phosh-mobile-settings: Fetching https://gitlab.gnome.org/guidog/phosh-mobile-settings/-/archive/v0.30.0/phosh-mobile-settings-v0.30.0.tar.gz
>>> phosh-mobile-settings: Checking sha512sums...
phosh-mobile-settings-v0.30.0.tar.gz: OK
>>> phosh-mobile-settings: Unpacking /var/cache/distfiles/phosh-mobile-settings-v0.30.0.tar.gz...
The Meson build system
Version: 1.1.0
Source dir: /home/pmos/build/src/phosh-mobile-settings-v0.30.0
Build dir: /home/pmos/build/src/phosh-mobile-settings-v0.30.0/output
Build type: native build
Project name: phosh-mobile-settings
Project version: 0.30.0
C compiler for the host machine: gcc (gcc 12.2.1 "gcc (Alpine 12.2.1_git20220924-r10) 12.2.1 20220924")
C linker for the host machine: gcc ld.bfd 2.40
Host machine cpu family: x86_64
Host machine cpu: x86_64
Found pkg-config: /usr/bin/pkg-config (1.9.5)
Run-time dependency glib-2.0 found: YES 2.76.4
Run-time dependency gio-2.0 found: YES 2.76.4
Run-time dependency gio-unix-2.0 found: YES 2.76.4
Run-time dependency gmodule-2.0 found: YES 2.76.4
Run-time dependency gsound found: YES 1.0.3
Run-time dependency gtk4 found: YES 4.10.4
Run-time dependency gtk4-wayland found: YES 4.10.4
Run-time dependency libadwaita-1 found: YES 1.3.3
Run-time dependency phosh-plugins found: YES 0.30.0
Run-time dependency wayland-client found: YES 1.22.0
Run-time dependency wayland-protocols found: YES 1.31
Compiler for C supports arguments -Wcast-align: YES
Compiler for C supports arguments -Wdate-time: YES
Compiler for C supports arguments -Wdeclaration-after-statement: YES
Compiler for C supports arguments -Werror=format-security -Werror=format=2: YES
Compiler for C supports arguments -Wendif-labels: YES
Compiler for C supports arguments -Werror=incompatible-pointer-types: YES
Compiler for C supports arguments -Werror=missing-declarations: YES
Compiler for C supports arguments -Werror=overflow: YES
Compiler for C supports arguments -Werror=return-type: YES
Compiler for C supports arguments -Werror=shift-count-overflow: YES
Compiler for C supports arguments -Werror=shift-overflow=2: YES
Compiler for C supports arguments -Werror=implicit-fallthrough=3: YES
Compiler for C supports arguments -Wfloat-equal: YES
Compiler for C supports arguments -Wformat-nonliteral: YES
Compiler for C supports arguments -Wformat-security: YES
Compiler for C supports arguments -Winit-self: YES
Compiler for C supports arguments -Wmaybe-uninitialized: YES
Compiler for C supports arguments -Wmissing-field-initializers: YES
Compiler for C supports arguments -Wmissing-include-dirs: YES
Compiler for C supports arguments -Wmissing-noreturn: YES
Compiler for C supports arguments -Wnested-externs: YES
Compiler for C supports arguments -Wno-missing-field-initializers: YES
Compiler for C supports arguments -Wno-sign-compare: YES
Compiler for C supports arguments -Wno-strict-aliasing: YES
Compiler for C supports arguments -Wno-unused-parameter: YES
Compiler for C supports arguments -Wold-style-definition: YES
Compiler for C supports arguments -Wpointer-arith: YES
Compiler for C supports arguments -Wredundant-decls: YES
Compiler for C supports arguments -Wshadow: YES
Compiler for C supports arguments -Wstrict-prototypes: YES
Compiler for C supports arguments -Wswitch-default: YES
Compiler for C supports arguments -Wswitch-enum: YES
Compiler for C supports arguments -Wtype-limits: YES
Compiler for C supports arguments -Wundef: YES
Compiler for C supports arguments -Wunused-function: YES
Configuring mobile-settings-config.h using configuration
Program msgfmt found: YES (/usr/bin/msgfmt)
Program appstreamcli found: NO
Program glib-compile-schemas found: YES (/usr/bin/glib-compile-schemas)
Program wayland-scanner found: YES (/usr/bin/wayland-scanner)
Program gdbus-codegen found: YES (/usr/bin/gdbus-codegen)
Found pkg-config: /usr/bin/pkg-config (1.9.5)
Program glib-mkenums found: YES (/usr/bin/glib-mkenums)
Program glib-mkenums found: YES (/usr/bin/glib-mkenums)
Program glib-compile-resources found: YES (/usr/bin/glib-compile-resources)
Program gdbus-codegen found: YES (/usr/bin/gdbus-codegen)
Library sensors found: YES
Program glib-compile-resources found: YES (/usr/bin/glib-compile-resources)
Program msginit found: YES (/usr/bin/msginit)
Program msgmerge found: YES (/usr/bin/msgmerge)
Program xgettext found: YES (/usr/bin/xgettext)
Dependency gio-2.0 found: YES 2.76.4 (cached)
Program glib-compile-schemas found: YES (/usr/bin/glib-compile-schemas)
Program gtk4-update-icon-cache found: YES (/usr/bin/gtk4-update-icon-cache)
Program update-desktop-database found: YES (/usr/bin/update-desktop-database)
Build targets in project: 23
phosh-mobile-settings 0.30.0
User defined options
auto_features : auto
bindir : /usr/bin
buildtype : plain
datadir : /usr/share
includedir : /usr/include
infodir : /usr/share/info
libdir : /usr/lib
libexecdir : /usr/libexec
localedir : /usr/share/locale
localstatedir : /var
mandir : /usr/share/man
prefix : /usr
sbindir : /usr/sbin
sharedstatedir: /var/lib
sysconfdir : /etc
wrap_mode : nodownload
b_lto : true
b_pie : true
b_staticpic : true
Found ninja-1.9 at /usr/bin/ninja
INFO: autodetecting backend as ninja
INFO: calculating backend command to run: /usr/bin/ninja -C /home/pmos/build/src/phosh-mobile-settings-v0.30.0/output
ninja: entering directory '/home/pmos/build/src/phosh-mobile-settings-v0.30.0/output'
[1/53] Generating po/de/LC_MESSAGES/phosh-mobile-settings-de.mo with a custom command
[2/53] Generating plugins/librem5/ms-plugin-librem5-resources_h with a custom command
[3/53] Generating plugins/librem5/ms-plugin-librem5-resources_c with a custom command
[4/53] Generating plugins/librem5/dbus/login1-manager-dbus.h with a custom command
[5/53] Generating plugins/librem5/dbus/login1-manager-dbus.c with a custom command
[6/53] Compiling C object plugins/librem5/libms-plugin-librem5.so.p/ms-plugin-librem5-panel.c.o
[7/53] Compiling C object plugins/librem5/libms-plugin-librem5.so.p/meson-generated_.._dbus_login1-manager-dbus.c.o
[8/53] Compiling C object plugins/librem5/libms-plugin-librem5.so.p/ms-plugin-librem5.c.o
[9/53] Compiling C object plugins/librem5/libms-plugin-librem5.so.p/meson-generated_.._ms-plugin-librem5-resources.c.o
[10/53] Compiling C object src/libmobile-settings-plugin.a.p/ms-plugin-panel.c.o
[11/53] Compiling C object src/libmobile-settings-plugin.a.p/mobile-settings-plugin.c.o
[12/53] Generating protocols/wlr-output-management-unstable-v1 source with a custom command
[13/53] Generating protocols/wlr-foreign-toplevel-management-unstable-v1 source with a custom command
[14/53] Generating src/ms-enum-types.c with a custom command (wrapped by meson because command contains newlines, to capture output)
[15/53] Linking static target src/libmobile-settings-plugin.a
[16/53] Linking target plugins/librem5/libms-plugin-librem5.so
[17/53] Generating src/ms-enum-types.h with a custom command (wrapped by meson because command contains newlines, to capture output)
[18/53] Generating protocols/wlr-output-management-unstable-v1 client header with a custom command
[19/53] Generating protocols/wlr-foreign-toplevel-management-unstable-v1 client header with a custom command
[20/53] Generating src/mobile-settings-resources_h with a custom command
[21/53] Generating src/mobile-settings-resources_c with a custom command
[22/53] Generating src/dbus/iio-sensor-proxy-dbus.h with a custom command
[23/53] Compiling C object src/phosh-mobile-settings.p/ms-plugin-panel.c.o
[24/53] Compiling C object src/phosh-mobile-settings.p/mobile-settings-plugin.c.o
[25/53] Compiling C object src/phosh-mobile-settings.p/ms-util.c.o
[26/53] Compiling C object src/phosh-mobile-settings.p/ms-toplevel-tracker.c.o
[27/53] Compiling C object src/phosh-mobile-settings.p/ms-sound-row.c.o
[28/53] Compiling C object src/phosh-mobile-settings.p/ms-sensor-panel.c.o
[29/53] Compiling C object src/phosh-mobile-settings.p/ms-scale-to-fit-row.c.o
[30/53] Compiling C object src/phosh-mobile-settings.p/ms-plugin-row.c.o
[31/53] Compiling C object src/phosh-mobile-settings.p/ms-plugin-loader.c.o
[32/53] Compiling C object src/phosh-mobile-settings.p/ms-panel-switcher.c.o
[33/53] Compiling C object src/phosh-mobile-settings.p/ms-osk-panel.c.o
[34/53] Compiling C object src/phosh-mobile-settings.p/ms-lockscreen-panel.c.o
[35/53] Compiling C object src/phosh-mobile-settings.p/ms-head-tracker.c.o
[36/53] Compiling C object src/phosh-mobile-settings.p/ms-feedback-panel.c.o
[37/53] Compiling C object src/phosh-mobile-settings.p/ms-feedback-row.c.o
[38/53] Compiling C object src/phosh-mobile-settings.p/ms-features-panel.c.o
[39/53] Compiling C object src/phosh-mobile-settings.p/ms-convergence-panel.c.o
[40/53] Compiling C object src/phosh-mobile-settings.p/ms-compositor-panel.c.o
[41/53] Compiling C object src/phosh-mobile-settings.p/mobile-settings-debug-info.c.o
[42/53] Compiling C object src/phosh-mobile-settings.p/mobile-settings-application.c.o
[43/53] Compiling C object src/phosh-mobile-settings.p/mobile-settings-window.c.o
[44/53] Compiling C object src/phosh-mobile-settings.p/main.c.o
[45/53] Compiling C object src/phosh-mobile-settings.p/meson-generated_.._mobile-settings-resources.c.o
[46/53] Compiling C object src/phosh-mobile-settings.p/meson-generated_.._.._protocols_wlr-output-management-unstable-v1-protocol.c.o
[47/53] Compiling C object src/phosh-mobile-settings.p/meson-generated_.._.._protocols_wlr-foreign-toplevel-management-unstable-v1-protocol.c.o
[48/53] Compiling C object src/phosh-mobile-settings.p/meson-generated_.._ms-enum-types.c.o
[49/53] Generating src/dbus/iio-sensor-proxy-dbus.c with a custom command
[50/53] Generating data/org.sigxcpu.MobileSettings.metainfo.xml with a custom command
[51/53] Compiling C object src/phosh-mobile-settings.p/meson-generated_.._dbus_iio-sensor-proxy-dbus.c.o
[52/53] Generating data/org.sigxcpu.MobileSettings.desktop with a custom command
[53/53] Linking target src/phosh-mobile-settings
1/1 Validate schema file OK 0.01s
Ok: 1
Expected Fail: 0
Fail: 0
Unexpected Pass: 0
Skipped: 0
Timeout: 0
Full log written to /home/pmos/build/src/phosh-mobile-settings-v0.30.0/output/meson-logs/testlog.txt
>>> phosh-mobile-settings: Entering fakeroot...
Installing data/org.sigxcpu.MobileSettings.desktop to /home/pmos/build/pkg/phosh-mobile-settings/usr/share/applications
Installing data/org.sigxcpu.MobileSettings.metainfo.xml to /home/pmos/build/pkg/phosh-mobile-settings/usr/share/metainfo
Installing src/phosh-mobile-settings to /home/pmos/build/pkg/phosh-mobile-settings/usr/bin
Installing plugins/librem5/libms-plugin-librem5.so to /home/pmos/build/pkg/phosh-mobile-settings/usr/lib/phosh-mobile-settings/plugins
Installing po/de/LC_MESSAGES/phosh-mobile-settings.mo to /home/pmos/build/pkg/phosh-mobile-settings/usr/share/locale/de/LC_MESSAGES
Installing /home/pmos/build/src/phosh-mobile-settings-v0.30.0/data/org.sigxcpu.MobileSettings.gschema.xml to /home/pmos/build/pkg/phosh-mobile-settings/usr/share/glib-2.0/schemas
Installing /home/pmos/build/src/phosh-mobile-settings-v0.30.0/data/icons/hicolor/scalable/apps/org.sigxcpu.MobileSettings.svg to /home/pmos/build/pkg/phosh-mobile-settings/usr/share/icons/hicolor/scalable/apps
Installing /home/pmos/build/src/phosh-mobile-settings-v0.30.0/data/icons/hicolor/symbolic/apps/org.sigxcpu.MobileSettings-symbolic.svg to /home/pmos/build/pkg/phosh-mobile-settings/usr/share/icons/hicolor/symbolic/apps
Skipping custom install script because DESTDIR is set '/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas'
Skipping custom install script because DESTDIR is set '/usr/bin/gtk4-update-icon-cache -q -t -f /usr/share/icons/hicolor'
Skipping custom install script because DESTDIR is set '/usr/bin/update-desktop-database -q /usr/share/applications'
>>> phosh-mobile-settings-lang*: Running split function lang...
>>> phosh-mobile-settings-lang*: Preparing subpackage phosh-mobile-settings-lang...
>>> phosh-mobile-settings-lang*: Running postcheck for phosh-mobile-settings-lang
>>> phosh-mobile-settings*: Running postcheck for phosh-mobile-settings
>>> phosh-mobile-settings*: Preparing package phosh-mobile-settings...
>>> phosh-mobile-settings*: Stripping binaries
>>> phosh-mobile-settings-lang*: Scanning shared objects
>>> phosh-mobile-settings*: Scanning shared objects
>>> phosh-mobile-settings-lang*: Tracing dependencies...
>>> phosh-mobile-settings-lang*: Package size: 28.0 KB
>>> phosh-mobile-settings-lang*: Compressing data...
>>> phosh-mobile-settings-lang*: Create checksum...
>>> phosh-mobile-settings-lang*: Create phosh-mobile-settings-lang-0.30.0-r0.apk
>>> phosh-mobile-settings*: Tracing dependencies...
so:libadwaita-1.so.0
so:libc.musl-x86_64.so.1
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:libgsound.so.0
so:libgtk-4.so.1
so:libintl.so.8
so:libsensors.so.5
so:libwayland-client.so.0
>>> phosh-mobile-settings*: Package size: 344.0 KB
>>> phosh-mobile-settings*: Compressing data...
>>> phosh-mobile-settings*: Create checksum...
>>> phosh-mobile-settings*: Create phosh-mobile-settings-0.30.0-r0.apk
>>> phosh-mobile-settings: Build complete at Sun, 10 Sep 2023 15:33:54 +0000 elapsed time 0h 2m 29s
>>> phosh-mobile-settings: Cleaning up srcdir
>>> phosh-mobile-settings: Cleaning up pkgdir
>>> phosh-mobile-settings: Uninstalling dependencies...
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/284) Purging .makedepends-phosh-mobile-settings (20230910.153126)
(2/284) Purging desktop-file-utils (0.26-r3)
(3/284) Purging gsound-dev (1.0.3-r1)
(4/284) Purging gsound (1.0.3-r1)
(5/284) Purging libadwaita-dev (1.3.3-r0)
(6/284) Purging libadwaita (1.3.3-r0)
(7/284) Purging lm-sensors-dev (3.6.0-r5)
(8/284) Purging lm-sensors-libs (3.6.0-r5)
(9/284) Purging meson-pyc (1.1.0-r1)
(10/284) Purging meson (1.1.0-r1)
(11/284) Purging samurai (1.2-r3)
(12/284) Purging phosh-dev (0.30.0-r2)
(13/284) Purging git-perl (2.40.1-r0)
(14/284) Purging perl-git (2.40.1-r0)
(15/284) Purging perl-error (0.17029-r1)
(16/284) Purging gtk4.0-dev (4.10.4-r0)
(17/284) Purging vulkan-headers (1.3.243.0-r0)
(18/284) Purging libcanberra-dev (0.30-r9)
(19/284) Purging libcanberra-gtk2 (0.30-r9)
(20/284) Purging libcanberra-gtk3 (0.30-r9)
(21/284) Purging libcanberra-gstreamer (0.30-r9)
(22/284) Purging python3-pyc (3.11.5-r0)
(23/284) Purging python3-pycache-pyc0 (3.11.5-r0)
(24/284) Purging xcb-proto-pyc (1.15.2-r2)
(25/284) Purging pyc (0.1-r0)
(26/284) Purging gtk4.0 (4.10.4-r0)
Executing gtk4.0-4.10.4-r0.post-deinstall
(27/284) Purging tzdata (2023c-r1)
(28/284) Purging iso-codes (4.15.0-r0)
(29/284) Purging gst-plugins-bad (1.22.5-r0)
(30/284) Purging gst-plugins-base (1.22.5-r0)
(31/284) Purging flite (2.2-r2)
(32/284) Purging libsndfile (1.2.0-r2)
(33/284) Purging alsa-lib (1.2.9-r1)
(34/284) Purging aom-libs (3.6.1-r0)
(35/284) Purging gtk+3.0-dev (9999_git20230719-r1)
(36/284) Purging wayland-protocols (1.31-r1)
(37/284) Purging gtk+3.0 (9999_git20230719-r1)
Executing gtk+3.0-9999_git20230719-r1.post-deinstall
(38/284) Purging gtk+2.0-dev (2.24.33-r9)
(39/284) Purging intltool (0.51.0-r8)
(40/284) Purging perl-xml-parser (2.46-r5)
(41/284) Purging perl-libwww (6.68-r1)
(42/284) Purging perl-http-cookies (6.10-r0)
(43/284) Purging perl-net-http (6.22-r0)
(44/284) Purging perl-html-parser (3.81-r1)
(45/284) Purging perl-html-tagset (3.20-r4)
(46/284) Purging perl-file-listing (6.15-r0)
(47/284) Purging perl-www-robotrules (6.02-r3)
(48/284) Purging perl-http-negotiate (6.01-r3)
(49/284) Purging perl-http-message (6.44-r0)
(50/284) Purging perl-clone (0.46-r1)
(51/284) Purging perl-http-date (6.05-r1)
(52/284) Purging perl-uri (5.19-r0)
(53/284) Purging perl-io-html (1.004-r0)
(54/284) Purging perl-lwp-mediatypes (6.04-r2)
(55/284) Purging perl-encode-locale (1.05-r4)
(56/284) Purging perl-try-tiny (0.31-r1)
(57/284) Purging perl (5.36.1-r2)
(58/284) Purging at-spi2-core-dev (2.48.3-r0)
(59/284) Purging libatk-bridge-2.0 (2.48.3-r0)
(60/284) Purging at-spi2-core (2.48.3-r0)
(61/284) Purging gtk+2.0 (2.24.33-r9)
Executing gtk+2.0-2.24.33-r9.post-deinstall
(62/284) Purging gtk-update-icon-cache (3.24.38-r1)
(63/284) Purging hicolor-icon-theme (0.17-r2)
(64/284) Purging cups-libs (2.4.6-r0)
(65/284) Purging avahi-libs (0.8-r13)
(66/284) Purging openexr-libopenexr (3.1.9-r0)
(67/284) Purging imath (3.1.7-r1)
(68/284) Purging boost1.82-python3 (1.82.0-r1)
(69/284) Purging pango-dev (1.50.14-r1)
(70/284) Purging pango-tools (1.50.14-r1)
(71/284) Purging harfbuzz-dev (7.3.0-r0)
(72/284) Purging harfbuzz-cairo (7.3.0-r0)
(73/284) Purging harfbuzz-gobject (7.3.0-r0)
(74/284) Purging harfbuzz-icu (7.3.0-r0)
(75/284) Purging harfbuzz-subset (7.3.0-r0)
(76/284) Purging graphite2-dev (1.3.14-r5)
(77/284) Purging cairo-dev (1.17.8-r1)
(78/284) Purging cairo-tools (1.17.8-r1)
(79/284) Purging xcb-util-dev (0.4.1-r2)
(80/284) Purging util-macros (1.20.0-r0)
(81/284) Purging xcb-util (0.4.1-r2)
(82/284) Purging libxft-dev (2.3.8-r1)
(83/284) Purging fontconfig-dev (2.14.2-r3)
(84/284) Purging freetype-dev (2.13.0-r5)
(85/284) Purging brotli-dev (1.0.9-r14)
(86/284) Purging brotli (1.0.9-r14)
(87/284) Purging gdk-pixbuf-dev (2.42.10-r5)
(88/284) Purging graphene-dev (1.10.8-r2)
(89/284) Purging graphene (1.10.8-r2)
(90/284) Purging glib-dev (2.76.4-r0)
(91/284) Purging bzip2-dev (1.0.8-r5)
(92/284) Purging docbook-xsl (1.79.2-r8)
Executing docbook-xsl-1.79.2-r8.post-deinstall
(93/284) Purging docbook-xml (4.5-r8)
Executing docbook-xml-4.5-r8.post-deinstall
(94/284) Purging gettext-dev (0.21.1-r7)
(95/284) Purging gettext-asprintf (0.21.1-r7)
(96/284) Purging gettext (0.21.1-r7)
(97/284) Purging gettext-envsubst (0.21.1-r7)
(98/284) Purging libxslt (1.1.38-r0)
(99/284) Purging pcre2-dev (10.42-r1)
(100/284) Purging libpcre2-16 (10.42-r1)
(101/284) Purging libpcre2-32 (10.42-r1)
(102/284) Purging libedit-dev (20221030.3.1-r1)
(103/284) Purging ncurses-dev (6.4_p20230506-r0)
(104/284) Purging libncurses++ (6.4_p20230506-r0)
(105/284) Purging libedit (20221030.3.1-r1)
(106/284) Purging bsd-compat-headers (0.7.2-r5)
(107/284) Purging librsvg (2.56.3-r0)
(108/284) Purging pango (1.50.14-r1)
Executing pango-1.50.14-r1.pre-deinstall
(109/284) Purging cairo-gobject (1.17.8-r1)
(110/284) Purging cairo (1.17.8-r1)
(111/284) Purging cdparanoia-libs (10.2-r14)
(112/284) Purging dbus-dev (1.14.8-r0)
(113/284) Purging util-linux-dev (2.38.1-r8)
(114/284) Purging libfdisk (2.38.1-r8)
(115/284) Purging libsmartcols (2.38.1-r8)
(116/284) Purging libuuid (2.38.1-r8)
(117/284) Purging libzbar (0.23.92-r2)
(118/284) Purging dbus-libs (1.14.8-r0)
(119/284) Purging directfb (1.7.7-r6)
(120/284) Purging libgudev (237-r1)
(121/284) Purging libcanberra (0.30-r9)
(122/284) Purging sound-theme-freedesktop (0.8-r0)
(123/284) Purging eudev-libs (3.2.11-r8)
(124/284) Purging wayland-dev (1.22.0-r2)
(125/284) Purging wayland-libs-cursor (1.22.0-r2)
(126/284) Purging wayland-libs-egl (1.22.0-r2)
(127/284) Purging expat-dev (2.5.0-r1)
(128/284) Purging expat (2.5.0-r1)
(129/284) Purging faac (1.30-r4)
(130/284) Purging fdk-aac (2.0.2-r2)
(131/284) Purging flac-libs (1.4.3-r0)
(132/284) Purging libxft (2.3.8-r1)
(133/284) Purging libass (0.17.1-r0)
(134/284) Purging fontconfig (2.14.2-r3)
(135/284) Purging harfbuzz (7.3.0-r0)
(136/284) Purging freetype (2.13.0-r5)
(137/284) Purging fribidi-dev (1.0.13-r0)
(138/284) Purging fribidi (1.0.13-r0)
(139/284) Purging libepoxy-dev (1.5.10-r1)
(140/284) Purging libepoxy (1.5.10-r1)
(141/284) Purging mesa-dev (23.0.4-r0)
(142/284) Purging libxdamage-dev (1.1.6-r2)
(143/284) Purging libxdamage (1.1.6-r2)
(144/284) Purging libxshmfence-dev (1.3.2-r2)
(145/284) Purging mesa-egl (23.0.4-r0)
(146/284) Purging mesa-gbm (23.0.4-r0)
(147/284) Purging mesa-gl (23.0.4-r0)
(148/284) Purging mesa-gles (23.0.4-r0)
(149/284) Purging mesa-osmesa (23.0.4-r0)
(150/284) Purging mesa-xatracker (23.0.4-r0)
(151/284) Purging mesa (23.0.4-r0)
(152/284) Purging libxrandr-dev (1.5.3-r2)
(153/284) Purging libxrandr (1.5.3-r2)
(154/284) Purging libxcomposite-dev (0.4.6-r3)
(155/284) Purging libxcomposite (0.4.6-r3)
(156/284) Purging libxinerama-dev (1.1.5-r2)
(157/284) Purging libxinerama (1.1.5-r2)
(158/284) Purging libxxf86vm-dev (1.1.5-r3)
(159/284) Purging libxxf86vm (1.1.5-r3)
(160/284) Purging libxcursor-dev (1.2.1-r2)
(161/284) Purging libxcursor (1.2.1-r2)
(162/284) Purging libxrender-dev (0.9.11-r3)
(163/284) Purging libxrender (0.9.11-r3)
(164/284) Purging libxtst-dev (1.2.4-r2)
(165/284) Purging libxtst (1.2.4-r2)
(166/284) Purging libxi-dev (1.8.1-r0)
(167/284) Purging libxi (1.8.1-r0)
(168/284) Purging libxfixes-dev (6.0.1-r2)
(169/284) Purging libxext-dev (1.3.5-r2)
(170/284) Purging libx11-dev (1.8.4-r4)
(171/284) Purging xtrans (1.4.0-r3)
(172/284) Purging libxkbcommon-dev (1.5.0-r2)
(173/284) Purging libxkbcommon-x11 (1.5.0-r2)
(174/284) Purging libxkbcommon (1.5.0-r2)
(175/284) Purging xkeyboard-config (2.38-r0)
(176/284) Purging libxcb-dev (1.15-r1)
(177/284) Purging xcb-proto (1.15.2-r2)
(178/284) Purging python3 (3.11.5-r0)
(179/284) Purging gdbm (1.23-r1)
(180/284) Purging gdk-pixbuf (2.42.10-r5)
Executing gdk-pixbuf-2.42.10-r5.pre-deinstall
(181/284) Purging shared-mime-info (2.2-r5)
Executing shared-mime-info-2.2-r5.post-deinstall
(182/284) Purging gettext-libs (0.21.1-r7)
(183/284) Purging gstreamer (1.22.5-r0)
(184/284) Purging libnice (0.1.21-r0)
(185/284) Purging libatk-1.0 (2.48.3-r0)
(186/284) Purging glib (2.76.4-r0)
(187/284) Purging librtmp (2.4_git20190330-r3)
(188/284) Purging gnutls (3.8.0-r2)
(189/284) Purging graphite2 (1.3.14-r5)
(190/284) Purging gsm (1.0.22-r3)
(191/284) Purging libdrm-dev (2.4.115-r4)
(192/284) Purging libpciaccess-dev (0.17-r2)
(193/284) Purging libva (2.18.0-r1)
(194/284) Purging libdrm (2.4.115-r4)
(195/284) Purging libpciaccess (0.17-r2)
(196/284) Purging hwdata-pci (0.370-r0)
(197/284) Purging icu-dev (73.2-r2)
(198/284) Purging icu (73.2-r2)
(199/284) Purging icu-libs (73.2-r2)
(200/284) Purging icu-data-en (73.2-r2)
(201/284) Purging lcms2 (2.15-r2)
(202/284) Purging libmount (2.38.1-r8)
(203/284) Purging libblkid (2.38.1-r8)
(204/284) Purging libxdmcp-dev (1.1.4-r2)
(205/284) Purging libxv (1.0.12-r3)
(206/284) Purging libxext (1.3.5-r2)
(207/284) Purging libxfixes (6.0.1-r2)
(208/284) Purging libx11 (1.8.4-r4)
(209/284) Purging libxcb (1.15-r1)
(210/284) Purging libxdmcp (1.1.4-r2)
(211/284) Purging libbsd (0.11.7-r1)
(212/284) Purging libbz2 (1.0.8-r5)
(213/284) Purging libdc1394 (2.2.6-r1)
(214/284) Purging libde265 (1.0.12-r0)
(215/284) Purging libffi-dev (3.4.4-r2)
(216/284) Purging linux-headers (6.3-r0)
(217/284) Purging llvm15-libs (15.0.7-r6)
(218/284) Purging wayland-libs-client (1.22.0-r2)
(219/284) Purging p11-kit (0.24.1-r2)
(220/284) Purging wayland-libs-server (1.22.0-r2)
(221/284) Purging libffi (3.4.4-r2)
(222/284) Purging libformw (6.4_p20230506-r0)
(223/284) Purging libfreeaptx (0.1.1-r1)
(224/284) Purging libgcrypt (1.10.2-r1)
(225/284) Purging libgpg-error (1.47-r1)
(226/284) Purging libintl (0.21.1-r7)
(227/284) Purging tiff-dev (4.5.1-r0)
(228/284) Purging libtiffxx (4.5.1-r0)
(229/284) Purging libjpeg-turbo-dev (2.1.5.1-r3)
(230/284) Purging spandsp (0.0.6-r5)
(231/284) Purging tiff (4.5.1-r0)
(232/284) Purging libjpeg-turbo (2.1.5.1-r3)
(233/284) Purging libldac (2.0.2.3-r1)
(234/284) Purging libltdl (2.4.7-r2)
(235/284) Purging libmd (1.0.4-r2)
(236/284) Purging libmenuw (6.4_p20230506-r0)
(237/284) Purging libmodplug (0.8.9.0-r2)
(238/284) Purging libpanelw (6.4_p20230506-r0)
(239/284) Purging readline (8.2.1-r1)
(240/284) Purging libncursesw (6.4_p20230506-r0)
(241/284) Purging ncurses-terminfo-base (6.4_p20230506-r0)
(242/284) Purging libtheora (1.1.1-r17)
(243/284) Purging libvorbis (1.3.7-r1)
(244/284) Purging libogg (1.3.5-r4)
(245/284) Purging libpng-dev (1.6.39-r3)
(246/284) Purging libpng (1.6.39-r3)
(247/284) Purging libraw1394 (2.1.2-r4)
(248/284) Purging libsrtp (2.5.0-r1)
(249/284) Purging libtasn1 (4.19.0-r1)
(250/284) Purging libunibreak (5.1-r0)
(251/284) Purging libusb (1.0.26-r2)
(252/284) Purging libwebp-dev (1.3.1-r0)
(253/284) Purging libwebp (1.3.1-r0)
(254/284) Purging libxau-dev (1.0.11-r2)
(255/284) Purging libxau (1.0.11-r2)
(256/284) Purging libxml2-dev (2.11.4-r0)
(257/284) Purging zlib-dev (1.2.13-r1)
(258/284) Purging xz-dev (5.4.3-r0)
(259/284) Purging xz (5.4.3-r0)
(260/284) Purging libxml2-utils (2.11.4-r0)
(261/284) Purging libxml2 (2.11.4-r0)
(262/284) Purging libxshmfence (1.3.2-r2)
(263/284) Purging mesa-glapi (23.0.4-r0)
(264/284) Purging mpdecimal (2.5.1-r2)
(265/284) Purging neon (0.32.5-r1)
(266/284) Purging nettle (3.8.1-r2)
(267/284) Purging openal-soft-libs (1.23.1-r0)
(268/284) Purging openexr-libilmthread (3.1.9-r0)
(269/284) Purging openexr-libiex (3.1.9-r0)
(270/284) Purging openjpeg (2.5.0-r3)
(271/284) Purging opus (1.4-r0)
(272/284) Purging orc (0.4.34-r0)
(273/284) Purging pixman-dev (0.42.2-r1)
(274/284) Purging pixman (0.42.2-r1)
(275/284) Purging sbc (2.0-r0)
(276/284) Purging soundtouch (2.3.2-r2)
(277/284) Purging sqlite-libs (3.41.2-r2)
(278/284) Purging tslib (1.22-r1)
(279/284) Purging vo-aacenc (0.1.3-r1)
(280/284) Purging vo-amrwbenc (0.1.3-r1)
(281/284) Purging xorgproto (2022.2-r0)
(282/284) Purging xz-libs (5.4.3-r0)
(283/284) Purging zstd-dev (1.5.5-r4)
(284/284) Purging zstd (1.5.5-r4)
Executing busybox-1.36.1-r2.trigger
OK: 260 MiB in 67 packages
>>> phosh-mobile-settings: Updating the pmos/x86_64 repository index...
>>> phosh-mobile-settings: Signing the index...
mv: can't preserve ownership of '/mnt/pmbootstrap/packages/x86_64/APKINDEX.tar.gz.2209': Operation not permitted
(002018) [15:33:55] (native) uninstall build dependencies
(002018) [15:33:55] (native) % cd /home/pmos/build; busybox su pmos -c SUDO_APK='abuild-apk --no-progress' HOME=/home/pmos abuild undeps
ERROR: No such package: .makedepends-phosh-mobile-settings
(002018) [15:33:56] NOTE: chroot is still active (use 'pmbootstrap shutdown' as necessary)
(002018) [15:33:56] DONE!
|