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 |
+ export BPO_JOB_ID=1236831
+ BPO_JOB_ID=1236831
+ pmbootstrap config systemd never
[04:15:17] Config changed: systemd='never'
+ export PMB_APK_FORCE_MISSING_REPOSITORIES=1
+ PMB_APK_FORCE_MISSING_REPOSITORIES=1
+ 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 armv7 --force libvdpau-tegra
(002262) [04:15:17] % cd /home/build/pmaports; git remote -v
origin https://gitlab.com/postmarketOS/pmaports.git/ (fetch)
origin https://gitlab.com/postmarketOS/pmaports.git/ (push)
(002262) [04:15:17] % 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
[v24.06]
description=Upcoming stable release (DO NOT USE)
branch_pmaports=v24.06
branch_aports=3.20-stable
mirrordir_alpine=v3.20
[v23.12]
description=Latest release / Recommended for best stability
branch_pmaports=v23.12
branch_aports=3.19-stable
mirrordir_alpine=v3.19
[v23.06]
description=Old release (unsupported)
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
(002262) [04:15:17] Shutdown complete
(002262) [04:15:17] Calculate work folder size
(002262) [04:15:17] % sudo du -ks /home/build/.local/var/pmbootstrap
2332 /home/build/.local/var/pmbootstrap
(002262) [04:15:17] Shutdown complete
(002262) [04:15:17] % sudo du -ks /home/build/.local/var/pmbootstrap
2332 /home/build/.local/var/pmbootstrap
(002262) [04:15:17] Cleared up ~0 MB of space
(002262) [04:15:17] APKINDEX outdated (file does not exist yet): http://build.postmarketos.org/wip/v24.06/armv7/APKINDEX.tar.gz
(002262) [04:15:17] APKINDEX outdated (file does not exist yet): http://mirror.postmarketos.org/postmarketos/v24.06/armv7/APKINDEX.tar.gz
(002262) [04:15:17] APKINDEX outdated (file does not exist yet): http://dl-cdn.alpinelinux.org/alpine/v3.20/main/armv7/APKINDEX.tar.gz
(002262) [04:15:17] APKINDEX outdated (file does not exist yet): http://dl-cdn.alpinelinux.org/alpine/v3.20/community/armv7/APKINDEX.tar.gz
(002262) [04:15:17] Update package index for armv7 (4 file(s))
(002262) [04:15:17] Download http://build.postmarketos.org/wip/v24.06/armv7/APKINDEX.tar.gz
(002262) [04:15:17] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_2208b65d206c32fd1599df7bcd70b245029a36d59103d6ef9ae1c75bb734cd28 /home/build/.local/var/pmbootstrap/cache_apk_armv7/APKINDEX.30d9f750.tar.gz
(002262) [04:15:17] Download http://mirror.postmarketos.org/postmarketos/v24.06/armv7/APKINDEX.tar.gz
(002262) [04:15:17] WARNING: file not found: http://mirror.postmarketos.org/postmarketos/v24.06/armv7/APKINDEX.tar.gz
(002262) [04:15:17] Download http://dl-cdn.alpinelinux.org/alpine/v3.20/main/armv7/APKINDEX.tar.gz
(002262) [04:15:17] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_4508980765c3ecc0a28c7e9fa10c6d2522edb4851158eb8e4871c39ec3da59e4 /home/build/.local/var/pmbootstrap/cache_apk_armv7/APKINDEX.00d9131b.tar.gz
(002262) [04:15:17] Download http://dl-cdn.alpinelinux.org/alpine/v3.20/community/armv7/APKINDEX.tar.gz
(002262) [04:15:17] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_0819894cb991daafdbbc8599304359fe6c3faf39d4998664e9d556fc4fc29322 /home/build/.local/var/pmbootstrap/cache_apk_armv7/APKINDEX.0eed2849.tar.gz
(002262) [04:15:18] Build is necessary for package 'libvdpau-tegra': No binary package available
(002262) [04:15:18] NOTE: Skipped apk version check for chroot 'buildroot_armv7', because it is not installed yet!
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/dev
(002262) [04:15:18] % sudo mount -t tmpfs -o size=1M,noexec,dev tmpfs /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/dev
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/dev/pts /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/dev/shm
(002262) [04:15:18] % sudo mount -t tmpfs -o nodev,nosuid,noexec tmpfs /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/dev/shm
(002262) [04:15:18] % sudo mknod -m 666 /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/dev/null c 1 3
(002262) [04:15:18] % sudo mknod -m 666 /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/dev/zero c 1 5
(002262) [04:15:18] % sudo mknod -m 666 /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/dev/full c 1 7
(002262) [04:15:18] % sudo mknod -m 644 /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/dev/random c 1 8
(002262) [04:15:18] % sudo mknod -m 644 /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/dev/urandom c 1 9
(002262) [04:15:18] % sudo ln -sf /proc/self/fd /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/dev/
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/proc
(002262) [04:15:18] % sudo mount --bind /proc /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/proc
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/var/cache/apk
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_apk_armv7 /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/var/cache/apk
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_appstream/armv7/v24.06
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/mnt/appstream-data
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_appstream/armv7/v24.06 /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/mnt/appstream-data
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_ccache_armv7
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/mnt/pmbootstrap/ccache
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_ccache_armv7 /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/mnt/pmbootstrap/ccache
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_distfiles
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/var/cache/distfiles
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_distfiles /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/var/cache/distfiles
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/mnt/pmbootstrap/git
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_git /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/mnt/pmbootstrap/git
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_go
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/mnt/pmbootstrap/go
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_go /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/mnt/pmbootstrap/go
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_rust
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/mnt/pmbootstrap/rust
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_rust /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/mnt/pmbootstrap/rust
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/config_abuild
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/mnt/pmbootstrap/abuild-config
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/config_abuild /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/mnt/pmbootstrap/abuild-config
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/config_apk_keys
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/etc/apk/keys
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/config_apk_keys /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/etc/apk/keys
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_sccache
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/mnt/pmbootstrap/sccache
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_sccache /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/mnt/pmbootstrap/sccache
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/images_netboot
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/mnt/pmbootstrap/netboot
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/images_netboot /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/mnt/pmbootstrap/netboot
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/packages/v24.06
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/mnt/pmbootstrap/packages
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/packages/v24.06 /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/mnt/pmbootstrap/packages
(002262) [04:15:18] NOTE: Skipped apk version check for chroot 'native', because it is not installed yet!
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/dev
(002262) [04:15:18] % sudo mount -t tmpfs -o size=1M,noexec,dev tmpfs /home/build/.local/var/pmbootstrap/chroot_native/dev
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/dev/pts /home/build/.local/var/pmbootstrap/chroot_native/dev/shm
(002262) [04:15:18] % sudo mount -t tmpfs -o nodev,nosuid,noexec tmpfs /home/build/.local/var/pmbootstrap/chroot_native/dev/shm
(002262) [04:15:18] % sudo mknod -m 666 /home/build/.local/var/pmbootstrap/chroot_native/dev/null c 1 3
(002262) [04:15:18] % sudo mknod -m 666 /home/build/.local/var/pmbootstrap/chroot_native/dev/zero c 1 5
(002262) [04:15:18] % sudo mknod -m 666 /home/build/.local/var/pmbootstrap/chroot_native/dev/full c 1 7
(002262) [04:15:18] % sudo mknod -m 644 /home/build/.local/var/pmbootstrap/chroot_native/dev/random c 1 8
(002262) [04:15:18] % sudo mknod -m 644 /home/build/.local/var/pmbootstrap/chroot_native/dev/urandom c 1 9
(002262) [04:15:18] % sudo ln -sf /proc/self/fd /home/build/.local/var/pmbootstrap/chroot_native/dev/
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/proc
(002262) [04:15:18] % sudo mount --bind /proc /home/build/.local/var/pmbootstrap/chroot_native/proc
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/var/cache/apk
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_apk_x86_64 /home/build/.local/var/pmbootstrap/chroot_native/var/cache/apk
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_appstream/x86_64/v24.06
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/appstream-data
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_appstream/x86_64/v24.06 /home/build/.local/var/pmbootstrap/chroot_native/mnt/appstream-data
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/cache_ccache_x86_64
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/ccache
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_ccache_x86_64 /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/ccache
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/var/cache/distfiles
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_distfiles /home/build/.local/var/pmbootstrap/chroot_native/var/cache/distfiles
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/git
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_git /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/git
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/go
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_go /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/go
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/rust
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_rust /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/rust
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/abuild-config
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/config_abuild /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/abuild-config
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/keys
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/config_apk_keys /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/keys
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/sccache
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/cache_sccache /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/sccache
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/netboot
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/images_netboot /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/netboot
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/packages
(002262) [04:15:18] % sudo mount --bind /home/build/.local/var/pmbootstrap/packages/v24.06 /home/build/.local/var/pmbootstrap/chroot_native/mnt/pmbootstrap/packages
(002262) [04:15:18] % sudo touch /home/build/.local/var/pmbootstrap/chroot_native/in-pmbootstrap
(002262) [04:15:18] APKINDEX outdated (file does not exist yet): http://build.postmarketos.org/wip/v24.06/x86_64/APKINDEX.tar.gz
(002262) [04:15:18] APKINDEX outdated (file does not exist yet): http://mirror.postmarketos.org/postmarketos/v24.06/x86_64/APKINDEX.tar.gz
(002262) [04:15:18] APKINDEX outdated (file does not exist yet): http://dl-cdn.alpinelinux.org/alpine/v3.20/main/x86_64/APKINDEX.tar.gz
(002262) [04:15:18] APKINDEX outdated (file does not exist yet): http://dl-cdn.alpinelinux.org/alpine/v3.20/community/x86_64/APKINDEX.tar.gz
(002262) [04:15:18] Update package index for x86_64 (4 file(s))
(002262) [04:15:18] Download http://build.postmarketos.org/wip/v24.06/x86_64/APKINDEX.tar.gz
(002262) [04:15:18] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_41f0f40ffb91843a6d51723bad6c35b41b55c5b4fd3aa0b89048d328502738f7 /home/build/.local/var/pmbootstrap/cache_apk_x86_64/APKINDEX.30d9f750.tar.gz
(002262) [04:15:18] % rm /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_510e28be8e53e881735a399becd649ece8aa6799b45b651d30afbc765ca2b290
(002262) [04:15:18] Download http://mirror.postmarketos.org/postmarketos/v24.06/x86_64/APKINDEX.tar.gz
(002262) [04:15:18] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_510e28be8e53e881735a399becd649ece8aa6799b45b651d30afbc765ca2b290 /home/build/.local/var/pmbootstrap/cache_apk_x86_64/APKINDEX.b126d141.tar.gz
(002262) [04:15:18] % rm /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_fb581721f291fd2bb44aa59165e47f04ba8c4fff5e69e21538c092ac609bc1d7
(002262) [04:15:18] Download http://dl-cdn.alpinelinux.org/alpine/v3.20/main/x86_64/APKINDEX.tar.gz
(002262) [04:15:18] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_fb581721f291fd2bb44aa59165e47f04ba8c4fff5e69e21538c092ac609bc1d7 /home/build/.local/var/pmbootstrap/cache_apk_x86_64/APKINDEX.00d9131b.tar.gz
(002262) [04:15:18] % rm /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_f9206ad985bdc3921ac3eba7d0bc6e9c2addcebf553ff88117217a6e08dcd9f1
(002262) [04:15:18] Download http://dl-cdn.alpinelinux.org/alpine/v3.20/community/x86_64/APKINDEX.tar.gz
(002262) [04:15:18] % sudo cp /home/build/.local/var/pmbootstrap/cache_http/APKINDEX_f9206ad985bdc3921ac3eba7d0bc6e9c2addcebf553ff88117217a6e08dcd9f1 /home/build/.local/var/pmbootstrap/cache_apk_x86_64/APKINDEX.0eed2849.tar.gz
(002262) [04:15:18] Download http://dl-cdn.alpinelinux.org/alpine/v3.20/main/x86_64/apk-tools-static-2.14.4-r0.apk
(002262) [04:15:18] sigfilename: sbin/apk.static.SIGN.RSA.alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002262) [04:15:18] sigkey: alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002262) [04:15:18] extracted: /tmp/pmbootstrapm5pz8x_mapk
(002262) [04:15:18] extracted: /tmp/pmbootstrapx38wx45wsig
(002262) [04:15:18] Verify apk.static signature with /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002262) [04:15:18] % openssl dgst -sha1 -verify /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub -signature /tmp/pmbootstrapx38wx45wsig /tmp/pmbootstrapm5pz8x_mapk
Verified OK
(002262) [04:15:18] Verify the version reported by the apk.static binary (must match the package version 2.14.4-r0)
(002262) [04:15:18] % /tmp/pmbootstrapm5pz8x_mapk --version
apk-tools 2.14.4, compiled for x86_64.
(002262) [04:15:18] (native) install alpine-base
(002262) [04:15:18] % sudo ln -s -f /var/cache/apk /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/cache
(002262) [04:15:18] % 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
(002262) [04:15:18] % 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
(002262) [04:15:18] % 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
(002262) [04:15:18] % 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
(002262) [04:15:18] % 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
(002262) [04:15:18] % 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
(002262) [04:15:18] % 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
(002262) [04:15:18] % 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
(002262) [04:15:18] % 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
(002262) [04:15:18] % 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
(002262) [04:15:18] % 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
(002262) [04:15:18] % 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
(002262) [04:15:18] % 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
(002262) [04:15:18] % 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
(002262) [04:15:18] % 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
(002262) [04:15:18] % sudo cp /home/build/pmbootstrap/pmb/data/keys/wip.rsa.pub /home/build/.local/var/pmbootstrap/config_apk_keys/wip.rsa.pub
(002262) [04:15:18] % 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
(002262) [04:15:18] % 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
(002262) [04:15:18] % 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
(002262) [04:15:18] % sudo cp /etc/resolv.conf /home/build/.local/var/pmbootstrap/chroot_native/etc/resolv.conf
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_native/etc/apk
(002262) [04:15:18] (native) update /etc/apk/repositories
(002262) [04:15:18] % sudo sh -c echo /mnt/pmbootstrap/packages >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002262) [04:15:18] % sudo sh -c echo http://build.postmarketos.org/wip/v24.06 >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002262) [04:15:18] % sudo sh -c echo http://mirror.postmarketos.org/postmarketos/v24.06 >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002262) [04:15:18] % sudo sh -c echo http://dl-cdn.alpinelinux.org/alpine/v3.20/main >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002262) [04:15:18] % sudo sh -c echo http://dl-cdn.alpinelinux.org/alpine/v3.20/community >> /home/build/.local/var/pmbootstrap/chroot_native/etc/apk/repositories
(002262) [04:15:18] % sudo mkdir -p /home/build/.local/var/pmbootstrap/tmp
(002262) [04:15:18] % sudo mkfifo /home/build/.local/var/pmbootstrap/tmp/apk_progress_fifo
(002262) [04:15:18] % sudo cat /home/build/.local/var/pmbootstrap/tmp/apk_progress_fifo
(002262) [04:15:18] % 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
(002262) [04:15:18] New background process: pid=2517, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
fetch http://build.postmarketos.org/wip/v24.06/x86_64/APKINDEX.tar.gz
WARNING: Permanently redirected to https://build.postmarketos.org:443/wip/v24.06/x86_64/APKINDEX.tar.gz
fetch http://mirror.postmarketos.org/postmarketos/v24.06/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/v3.20/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/v3.20/community/x86_64/APKINDEX.tar.gz
(1/24) Installing alpine-baselayout-data (3.6.5-r0)
(2/24) Installing musl (1.2.5-r0)
(3/24) Installing busybox (1.36.1-r28)
Executing busybox-1.36.1-r28.post-install
(4/24) Installing busybox-binsh (1.36.1-r28)
(5/24) Installing alpine-baselayout (3.6.5-r0)
Executing alpine-baselayout-3.6.5-r0.pre-install
Executing alpine-baselayout-3.6.5-r0.post-install
(6/24) Installing ifupdown-ng (0.12.1-r5)
(7/24) Installing libcap2 (2.70-r0)
(8/24) Installing openrc (0.54-r1)
Executing openrc-0.54-r1.post-install
(9/24) Installing mdev-conf (4.7-r0)
(10/24) Installing busybox-mdev-openrc (1.36.1-r28)
(11/24) Installing alpine-conf (3.18.0-r0)
(12/24) Installing alpine-keys (2.4-r1)
(13/24) Installing alpine-release (3.20.0-r0)
(14/24) Installing ca-certificates-bundle (20240226-r0)
(15/24) Installing libcrypto3 (3.3.0-r2)
(16/24) Installing libssl3 (3.3.0-r2)
(17/24) Installing ssl_client (1.36.1-r28)
(18/24) Installing zlib (1.3.1-r1)
(19/24) Installing apk-tools (2.14.4-r0)
(20/24) Installing busybox-openrc (1.36.1-r28)
(21/24) Installing busybox-suid (1.36.1-r28)
(22/24) Installing scanelf (1.3.7-r2)
(23/24) Installing musl-utils (1.2.5-r0)
(24/24) Installing alpine-base (3.20.0-r0)
Executing busybox-1.36.1-r28.trigger
OK: 10 MiB in 24 packages
(002262) [04:15:19] (native) % adduser -D pmos -u 12345
(002262) [04:15:19] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/abuild-config /home/pmos/.abuild
(002262) [04:15:19] (native) % chown pmos:pmos /mnt/pmbootstrap/abuild-config
(002262) [04:15:19] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/ccache /home/pmos/.ccache
(002262) [04:15:19] (native) % chown pmos:pmos /mnt/pmbootstrap/ccache
(002262) [04:15:19] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/.cache
(002262) [04:15:19] (native) % mkdir -p /mnt/pmbootstrap/go/gocache
(002262) [04:15:19] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/go/gocache /home/pmos/.cache/go-build
(002262) [04:15:19] (native) % chown pmos:pmos /mnt/pmbootstrap/go/gocache
(002262) [04:15:19] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/go/pkg
(002262) [04:15:19] (native) % mkdir -p /mnt/pmbootstrap/go/gomodcache
(002262) [04:15:19] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/go/gomodcache /home/pmos/go/pkg/mod
(002262) [04:15:19] (native) % chown pmos:pmos /mnt/pmbootstrap/go/gomodcache
(002262) [04:15:19] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/packages
(002262) [04:15:19] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/packages /home/pmos/packages/pmos
(002262) [04:15:19] (native) % chown pmos:pmos /mnt/pmbootstrap/packages
(002262) [04:15:19] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/.cargo/git
(002262) [04:15:19] (native) % mkdir -p /mnt/pmbootstrap/rust/git/db
(002262) [04:15:19] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/rust/git/db /home/pmos/.cargo/git/db
(002262) [04:15:19] (native) % chown pmos:pmos /mnt/pmbootstrap/rust/git/db
(002262) [04:15:19] (native) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/.cargo/registry
(002262) [04:15:19] (native) % mkdir -p /mnt/pmbootstrap/rust/registry/cache
(002262) [04:15:19] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/rust/registry/cache /home/pmos/.cargo/registry/cache
(002262) [04:15:19] (native) % chown pmos:pmos /mnt/pmbootstrap/rust/registry/cache
(002262) [04:15:19] (native) % mkdir -p /mnt/pmbootstrap/rust/registry/index
(002262) [04:15:19] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/rust/registry/index /home/pmos/.cargo/registry/index
(002262) [04:15:19] (native) % chown pmos:pmos /mnt/pmbootstrap/rust/registry/index
(002262) [04:15:19] (native) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/sccache /home/pmos/.cache/sccache
(002262) [04:15:19] (native) % chown pmos:pmos /mnt/pmbootstrap/sccache
(002262) [04:15:19] (native) % apk --force-missing-repositories --no-network upgrade -a
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/1) Purging ssl_client (1.36.1-r28)
Executing busybox-1.36.1-r28.trigger
OK: 10 MiB in 23 packages
(002262) [04:15:20] (native) calculate depends of qemu-arm (pmbootstrap -v for details)
(002262) [04:15:20] (native) install qemu-arm
(002262) [04:15:20] % sudo mkfifo /home/build/.local/var/pmbootstrap/chroot_native/tmp/apk_progress_fifo
(002262) [04:15:20] (native) % cat /tmp/apk_progress_fifo
(002262) [04:15:20] (native) % sh -c exec 3>/tmp/apk_progress_fifo; apk --no-progress --progress-fd 3 --force-missing-repositories add qemu-arm --no-interactive
(002262) [04:15:20] New background process: pid=2608, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/2) Installing ssl_client (1.36.1-r28)
(2/2) Installing qemu-arm (9.0.0-r0)
Executing busybox-1.36.1-r28.trigger
OK: 14 MiB in 25 packages
(002262) [04:15:20] Register qemu binfmt (arm)
(002262) [04:15:20] % sudo sh -c echo ":qemu-arm:M::\x7f\x45\x4c\x46\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x28\x00:\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff:/usr/bin/qemu-arm-static:C" > /proc/sys/fs/binfmt_misc/register
(002262) [04:15:20] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/usr/bin
(002262) [04:15:20] % sudo touch /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/usr/bin/qemu-arm-static
(002262) [04:15:20] % sudo mount --bind /home/build/.local/var/pmbootstrap/chroot_native/usr/bin/qemu-arm /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/usr/bin/qemu-arm-static
(002262) [04:15:20] % sudo touch /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/in-pmbootstrap
(002262) [04:15:20] sigfilename: sbin/apk.static.SIGN.RSA.alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002262) [04:15:20] sigkey: alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002262) [04:15:20] extracted: /tmp/pmbootstrap0cyzlrheapk
(002262) [04:15:20] extracted: /tmp/pmbootstraph31h2kk9sig
(002262) [04:15:20] Verify apk.static signature with /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub
(002262) [04:15:20] % openssl dgst -sha1 -verify /home/build/pmbootstrap/pmb/data/keys/alpine-devel@lists.alpinelinux.org-6165ee59.rsa.pub -signature /tmp/pmbootstraph31h2kk9sig /tmp/pmbootstrap0cyzlrheapk
Verified OK
(002262) [04:15:20] Verify the version reported by the apk.static binary (must match the package version 2.14.4-r0)
(002262) [04:15:20] % /tmp/pmbootstrap0cyzlrheapk --version
apk-tools 2.14.4, compiled for x86_64.
(002262) [04:15:20] (buildroot_armv7) install alpine-base
(002262) [04:15:20] % sudo ln -s -f /var/cache/apk /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/etc/apk/cache
(002262) [04:15:20] % sudo cp /etc/resolv.conf /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/etc/resolv.conf
(002262) [04:15:20] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/etc/apk
(002262) [04:15:20] (buildroot_armv7) update /etc/apk/repositories
(002262) [04:15:20] % sudo sh -c echo /mnt/pmbootstrap/packages >> /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/etc/apk/repositories
(002262) [04:15:20] % sudo sh -c echo http://build.postmarketos.org/wip/v24.06 >> /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/etc/apk/repositories
(002262) [04:15:20] % sudo sh -c echo http://mirror.postmarketos.org/postmarketos/v24.06 >> /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/etc/apk/repositories
(002262) [04:15:20] % sudo sh -c echo http://dl-cdn.alpinelinux.org/alpine/v3.20/main >> /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/etc/apk/repositories
(002262) [04:15:20] % sudo sh -c echo http://dl-cdn.alpinelinux.org/alpine/v3.20/community >> /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/etc/apk/repositories
(002262) [04:15:20] % sudo mkdir -p /home/build/.local/var/pmbootstrap/tmp
(002262) [04:15:20] % sudo rm -f /home/build/.local/var/pmbootstrap/tmp/apk_progress_fifo
(002262) [04:15:20] % sudo mkfifo /home/build/.local/var/pmbootstrap/tmp/apk_progress_fifo
(002262) [04:15:20] % sudo cat /home/build/.local/var/pmbootstrap/tmp/apk_progress_fifo
(002262) [04:15:20] % 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_armv7 --cache-dir /home/build/.local/var/pmbootstrap/cache_apk_armv7 --initdb --arch armv7 add alpine-base --no-interactive
(002262) [04:15:20] New background process: pid=2648, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
fetch http://build.postmarketos.org/wip/v24.06/armv7/APKINDEX.tar.gz
WARNING: Permanently redirected to https://build.postmarketos.org:443/wip/v24.06/armv7/APKINDEX.tar.gz
fetch http://mirror.postmarketos.org/postmarketos/v24.06/armv7/APKINDEX.tar.gz
WARNING: updating and opening http://mirror.postmarketos.org/postmarketos/v24.06: No such file or directory
fetch http://dl-cdn.alpinelinux.org/alpine/v3.20/main/armv7/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/v3.20/community/armv7/APKINDEX.tar.gz
(1/24) Installing alpine-baselayout-data (3.6.5-r0)
(2/24) Installing musl (1.2.5-r0)
(3/24) Installing busybox (1.36.1-r28)
Executing busybox-1.36.1-r28.post-install
(4/24) Installing busybox-binsh (1.36.1-r28)
(5/24) Installing alpine-baselayout (3.6.5-r0)
Executing alpine-baselayout-3.6.5-r0.pre-install
Executing alpine-baselayout-3.6.5-r0.post-install
(6/24) Installing ifupdown-ng (0.12.1-r5)
(7/24) Installing libcap2 (2.70-r0)
(8/24) Installing openrc (0.54-r1)
Executing openrc-0.54-r1.post-install
(9/24) Installing mdev-conf (4.7-r0)
(10/24) Installing busybox-mdev-openrc (1.36.1-r28)
(11/24) Installing alpine-conf (3.18.0-r0)
(12/24) Installing alpine-keys (2.4-r1)
(13/24) Installing alpine-release (3.20.0-r0)
(14/24) Installing ca-certificates-bundle (20240226-r0)
(15/24) Installing libcrypto3 (3.3.0-r2)
(16/24) Installing libssl3 (3.3.0-r2)
(17/24) Installing ssl_client (1.36.1-r28)
(18/24) Installing zlib (1.3.1-r1)
(19/24) Installing apk-tools (2.14.4-r0)
(20/24) Installing busybox-openrc (1.36.1-r28)
(21/24) Installing busybox-suid (1.36.1-r28)
(22/24) Installing scanelf (1.3.7-r2)
(23/24) Installing musl-utils (1.2.5-r0)
(24/24) Installing alpine-base (3.20.0-r0)
Executing busybox-1.36.1-r28.trigger
OK: 7 MiB in 24 packages
(002262) [04:15:21] (buildroot_armv7) % adduser -D pmos -u 12345
(002262) [04:15:21] (buildroot_armv7) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/abuild-config /home/pmos/.abuild
(002262) [04:15:22] (buildroot_armv7) % chown pmos:pmos /mnt/pmbootstrap/abuild-config
(002262) [04:15:22] (buildroot_armv7) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/ccache /home/pmos/.ccache
(002262) [04:15:22] (buildroot_armv7) % chown pmos:pmos /mnt/pmbootstrap/ccache
(002262) [04:15:22] (buildroot_armv7) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/.cache
(002262) [04:15:22] (buildroot_armv7) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/go/gocache /home/pmos/.cache/go-build
(002262) [04:15:22] (buildroot_armv7) % chown pmos:pmos /mnt/pmbootstrap/go/gocache
(002262) [04:15:22] (buildroot_armv7) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/go/pkg
(002262) [04:15:22] (buildroot_armv7) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/go/gomodcache /home/pmos/go/pkg/mod
(002262) [04:15:22] (buildroot_armv7) % chown pmos:pmos /mnt/pmbootstrap/go/gomodcache
(002262) [04:15:22] (buildroot_armv7) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/packages
(002262) [04:15:22] (buildroot_armv7) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/packages /home/pmos/packages/pmos
(002262) [04:15:22] (buildroot_armv7) % chown pmos:pmos /mnt/pmbootstrap/packages
(002262) [04:15:22] (buildroot_armv7) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/.cargo/git
(002262) [04:15:22] (buildroot_armv7) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/rust/git/db /home/pmos/.cargo/git/db
(002262) [04:15:22] (buildroot_armv7) % chown pmos:pmos /mnt/pmbootstrap/rust/git/db
(002262) [04:15:22] (buildroot_armv7) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/.cargo/registry
(002262) [04:15:22] (buildroot_armv7) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/rust/registry/cache /home/pmos/.cargo/registry/cache
(002262) [04:15:22] (buildroot_armv7) % chown pmos:pmos /mnt/pmbootstrap/rust/registry/cache
(002262) [04:15:22] (buildroot_armv7) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/rust/registry/index /home/pmos/.cargo/registry/index
(002262) [04:15:22] (buildroot_armv7) % chown pmos:pmos /mnt/pmbootstrap/rust/registry/index
(002262) [04:15:23] (buildroot_armv7) % busybox su pmos -c HOME=/home/pmos ln -s /mnt/pmbootstrap/sccache /home/pmos/.cache/sccache
(002262) [04:15:23] (buildroot_armv7) % chown pmos:pmos /mnt/pmbootstrap/sccache
(002262) [04:15:23] (buildroot_armv7) % apk --force-missing-repositories --no-network upgrade -a
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
WARNING: opening from cache http://mirror.postmarketos.org/postmarketos/v24.06: No such file or directory
(1/1) Purging ssl_client (1.36.1-r28)
Executing busybox-1.36.1-r28.trigger
OK: 7 MiB in 23 packages
(002262) [04:15:24] (buildroot_armv7) calculate depends of abuild (pmbootstrap -v for details)
(002262) [04:15:24] (buildroot_armv7) install abuild
(002262) [04:15:24] % sudo mkfifo /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/tmp/apk_progress_fifo
(002262) [04:15:24] (buildroot_armv7) % cat /tmp/apk_progress_fifo
(002262) [04:15:24] (buildroot_armv7) % sh -c exec 3>/tmp/apk_progress_fifo; apk --no-progress --progress-fd 3 --force-missing-repositories add abuild --no-interactive
(002262) [04:15:24] New background process: pid=2840, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
fetch http://mirror.postmarketos.org/postmarketos/v24.06/armv7/APKINDEX.tar.gz
WARNING: updating and opening http://mirror.postmarketos.org/postmarketos/v24.06: No such file or directory
(1/15) Installing libattr (2.5.2-r0)
(2/15) Installing attr (2.5.2-r0)
(3/15) Installing libcap-getcap (2.70-r0)
(4/15) Installing fakeroot (1.34-r0)
(5/15) Installing libgcc (13.2.1_git20240309-r0)
(6/15) Installing libstdc++ (13.2.1_git20240309-r0)
(7/15) Installing lzip (1.24.1-r0)
(8/15) Installing openssl (3.3.0-r2)
(9/15) Installing patch (2.7.6-r10)
(10/15) Installing pkgconf (2.2.0-r0)
(11/15) Installing libacl (2.3.2-r0)
(12/15) Installing tar (1.35-r2)
(13/15) Installing ssl_client (1.36.1-r28)
(14/15) Installing abuild (3.13.0-r3)
Executing abuild-3.13.0-r3.pre-install
(15/15) Installing abuild-sudo (3.13.0-r3)
Executing busybox-1.36.1-r28.trigger
OK: 11 MiB in 38 packages
(002262) [04:15:25] (buildroot_armv7) % chown root:abuild /var/cache/distfiles
(002262) [04:15:25] (buildroot_armv7) % chmod g+w /var/cache/distfiles
(002262) [04:15:25] (buildroot_armv7) % adduser pmos abuild
(002262) [04:15:25] (buildroot_armv7) calculate depends of abuild, build-base, ccache, git (pmbootstrap -v for details)
(002262) [04:15:25] so:libisl.so.23: has multiple providers (isl25, isl26), picked shortest: isl25
(002262) [04:15:25] (buildroot_armv7) install abuild build-base ccache git
(002262) [04:15:25] % sudo rm -f /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/tmp/apk_progress_fifo
(002262) [04:15:25] % sudo mkfifo /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/tmp/apk_progress_fifo
(002262) [04:15:25] (buildroot_armv7) % cat /tmp/apk_progress_fifo
(002262) [04:15:25] (buildroot_armv7) % sh -c exec 3>/tmp/apk_progress_fifo; apk --no-progress --progress-fd 3 --force-missing-repositories add abuild build-base ccache git --no-interactive
(002262) [04:15:25] New background process: pid=2883, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
fetch http://mirror.postmarketos.org/postmarketos/v24.06/armv7/APKINDEX.tar.gz
WARNING: updating and opening http://mirror.postmarketos.org/postmarketos/v24.06: No such file or directory
(1/33) Installing jansson (2.14-r4)
(2/33) Installing zstd-libs (1.5.6-r0)
(3/33) Installing binutils (2.42-r0)
(4/33) Installing libmagic (5.45-r1)
(5/33) Installing file (5.45-r1)
(6/33) Installing libgomp (13.2.1_git20240309-r0)
(7/33) Installing libatomic (13.2.1_git20240309-r0)
(8/33) Installing gmp (6.3.0-r1)
(9/33) Installing isl26 (0.26-r1)
(10/33) Installing mpfr4 (4.2.1-r0)
(11/33) Installing mpc1 (1.3.1-r1)
(12/33) Installing gcc (13.2.1_git20240309-r0)
(13/33) Installing libstdc++-dev (13.2.1_git20240309-r0)
(14/33) Installing musl-dev (1.2.5-r0)
(15/33) Installing g++ (13.2.1_git20240309-r0)
(16/33) Installing make (4.4.1-r2)
(17/33) Installing fortify-headers (1.1-r3)
(18/33) Installing build-base (0.5-r3)
(19/33) Installing hiredis (1.2.0-r0)
(20/33) Installing libxxhash (0.8.2-r2)
(21/33) Installing ccache (4.9.1-r0)
(22/33) Installing ca-certificates (20240226-r0)
(23/33) Installing brotli-libs (1.1.0-r2)
(24/33) Installing c-ares (1.28.1-r0)
(25/33) Installing libunistring (1.2-r0)
(26/33) Installing libidn2 (2.3.7-r0)
(27/33) Installing nghttp2-libs (1.62.0-r0)
(28/33) Installing libpsl (0.21.5-r1)
(29/33) Installing libcurl (8.7.1-r0)
(30/33) Installing libexpat (2.6.2-r0)
(31/33) Installing pcre2 (10.43-r0)
(32/33) Installing git (2.45.1-r0)
(33/33) Installing git-init-template (2.45.1-r0)
Executing busybox-1.36.1-r28.trigger
Executing ca-certificates-20240226-r0.trigger
OK: 160 MiB in 71 packages
(002262) [04:15:28] (buildroot_armv7) generate abuild keys
(002262) [04:15:28] (buildroot_armv7) % busybox su pmos -c PACKAGER='pmos <pmos@local>' HOME=/home/pmos abuild-keygen -n -q -a
writing RSA key
(002262) [04:15:32] (buildroot_armv7) % cp /mnt/pmbootstrap/abuild-config/pmos@local-66594ee1.rsa.pub /etc/apk/keys/
(002262) [04:15:32] (buildroot_armv7) % cp /tmp/apk_wrapper.sh /usr/local/bin/abuild-apk
(002262) [04:15:32] (buildroot_armv7) % chmod +x /usr/local/bin/abuild-apk
(002262) [04:15:32] (buildroot_armv7) % sed -i -e s/^CLEANUP=.*/CLEANUP=''/ /etc/abuild.conf
(002262) [04:15:32] (buildroot_armv7) % sed -i -e s/^ERROR_CLEANUP=.*/ERROR_CLEANUP=''/ /etc/abuild.conf
(002262) [04:15:32] (buildroot_armv7) % sed -i $ a\export JOBS=3 /etc/abuild.conf
(002262) [04:15:32] (native) calculate depends of ccache-cross-symlinks, abuild, gcc-armv7, g++-armv7, crossdirect (pmbootstrap -v for details)
(002262) [04:15:32] so:libisl.so.23: has multiple providers (isl25, isl26), picked shortest: isl25
(002262) [04:15:32] (native) install ccache-cross-symlinks abuild gcc-armv7 g++-armv7 crossdirect
(002262) [04:15:32] % sudo rm -f /home/build/.local/var/pmbootstrap/chroot_native/tmp/apk_progress_fifo
(002262) [04:15:32] % sudo mkfifo /home/build/.local/var/pmbootstrap/chroot_native/tmp/apk_progress_fifo
(002262) [04:15:32] (native) % cat /tmp/apk_progress_fifo
(002262) [04:15:32] (native) % sh -c exec 3>/tmp/apk_progress_fifo; apk --no-progress --progress-fd 3 --force-missing-repositories add ccache-cross-symlinks abuild gcc-armv7 g++-armv7 crossdirect --no-interactive
(002262) [04:15:32] New background process: pid=2998, output=background
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
(1/30) Installing libattr (2.5.2-r0)
(2/30) Installing attr (2.5.2-r0)
(3/30) Installing libcap-getcap (2.70-r0)
(4/30) Installing fakeroot (1.34-r0)
(5/30) Installing libgcc (13.2.1_git20240309-r0)
(6/30) Installing libstdc++ (13.2.1_git20240309-r0)
(7/30) Installing lzip (1.24.1-r0)
(8/30) Installing openssl (3.3.0-r2)
(9/30) Installing patch (2.7.6-r10)
(10/30) Installing pkgconf (2.2.0-r0)
(11/30) Installing libacl (2.3.2-r0)
(12/30) Installing tar (1.35-r2)
(13/30) Installing abuild (3.13.0-r3)
Executing abuild-3.13.0-r3.pre-install
(14/30) Installing abuild-sudo (3.13.0-r3)
(15/30) Installing hiredis (1.2.0-r0)
(16/30) Installing libxxhash (0.8.2-r2)
(17/30) Installing zstd-libs (1.5.6-r0)
(18/30) Installing ccache (4.9.1-r0)
(19/30) Installing ccache-cross-symlinks (3-r0)
(20/30) Installing crossdirect (5.1.0-r0)
(21/30) Installing libstdc++-dev-armv7 (13.2.1_git20240309-r0)
(22/30) Installing jansson (2.14-r4)
(23/30) Installing binutils-armv7 (2.42-r0)
(24/30) Installing gmp (6.3.0-r1)
(25/30) Installing mpfr4 (4.2.1-r0)
(26/30) Installing mpc1 (1.3.1-r1)
(27/30) Installing isl26 (0.26-r1)
(28/30) Installing gcc-armv7 (13.2.1_git20240309-r0)
(29/30) Installing musl-dev (1.2.5-r0)
(30/30) Installing g++-armv7 (13.2.1_git20240309-r0)
Executing busybox-1.36.1-r28.trigger
OK: 203 MiB in 55 packages
(002262) [04:15:34] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/native
(002262) [04:15:34] % sudo mount --bind /home/build/.local/var/pmbootstrap/chroot_native /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/native
(002262) [04:15:34] % sudo ln -s /native/lib/ld-musl-x86_64.so.1 /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/lib/ld-musl-x86_64.so.1
(002262) [04:15:34] % sudo ln -sf /native/bin/busybox /usr/local/bin/gzip
(002262) [04:15:34] (buildroot_armv7) build armv7/libvdpau-tegra-0_git20210517-r1.apk
(002262) [04:15:34] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/home/pmos/build
(002262) [04:15:34] % sudo cp -rL /home/build/pmaports/temp/libvdpau-tegra/APKBUILD /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/home/pmos/build/APKBUILD
(002262) [04:15:34] (buildroot_armv7) % chown -R pmos:pmos /home/pmos/build
(002262) [04:15:34] % sudo mkdir -p /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/mnt/pmaports
(002262) [04:15:34] % sudo mount --bind /home/build/pmaports /home/build/.local/var/pmbootstrap/chroot_buildroot_armv7/mnt/pmaports
(002262) [04:15:34] (buildroot_armv7) % busybox su pmos -c HOME=/home/pmos mkdir -p /home/pmos/build
(002262) [04:15:34] (buildroot_armv7) % busybox su pmos -c HOME=/home/pmos ln -sf /mnt/pmaports/.git /home/pmos/build/.git
(002262) [04:15:34] (buildroot_armv7) % cd /home/pmos/build; busybox su pmos -c CARCH=armv7 SUDO_APK='abuild-apk --no-progress' PATH=/native/usr/lib/crossdirect/armv7:/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
>>> libvdpau-tegra: Building pmos/libvdpau-tegra 0_git20210517-r1 (using abuild 3.13.0-r3) started Fri, 31 May 2024 04:15:35 +0000
>>> libvdpau-tegra: Checking sanity of /home/pmos/build/APKBUILD...
>>> libvdpau-tegra: Analyzing dependencies...
>>> libvdpau-tegra: Installing for build: build-base libdrm autoconf automake bison flex gettext-dev libdrm-dev libtool libvdpau-dev libx11-dev libxext-dev libxfixes-dev libxrandr-dev libxv-dev m4 pixman-dev util-macros xorgproto
WARNING: opening /home/pmos/packages//pmos: No such file or directory
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
fetch http://mirror.postmarketos.org/postmarketos/v24.06/armv7/APKINDEX.tar.gz
WARNING: updating and opening http://mirror.postmarketos.org/postmarketos/v24.06: No such file or directory
(1/69) Installing hwdata-pci (0.382-r0)
(2/69) Installing libpciaccess (0.18.1-r0)
(3/69) Installing libdrm (2.4.120-r0)
(4/69) Installing m4 (1.4.19-r3)
(5/69) Installing libbz2 (1.0.8-r6)
(6/69) Installing perl (5.38.2-r0)
(7/69) Installing autoconf (2.72-r0)
(8/69) Installing automake (1.16.5-r2)
(9/69) Installing bison (3.8.2-r1)
(10/69) Installing flex (2.6.4-r6)
(11/69) Installing xz-libs (5.6.1-r3)
(12/69) Installing xz (5.6.1-r3)
(13/69) Installing gettext-asprintf (0.22.5-r0)
(14/69) Installing libintl (0.22.5-r0)
(15/69) Installing ncurses-terminfo-base (6.4_p20240420-r0)
(16/69) Installing libncursesw (6.4_p20240420-r0)
(17/69) Installing gettext-libs (0.22.5-r0)
(18/69) Installing gettext-envsubst (0.22.5-r0)
(19/69) Installing libxml2 (2.12.7-r0)
(20/69) Installing gettext (0.22.5-r0)
(21/69) Installing gettext-dev (0.22.5-r0)
(22/69) Installing linux-headers (6.6-r0)
(23/69) Installing libpciaccess-dev (0.18.1-r0)
(24/69) Installing libdrm-dev (2.4.120-r0)
(25/69) Installing libltdl (2.4.7-r3)
(26/69) Installing libtool (2.4.7-r3)
(27/69) Installing libxau (1.0.11-r4)
(28/69) Installing libmd (1.1.0-r0)
(29/69) Installing libbsd (0.12.2-r0)
(30/69) Installing libxdmcp (1.1.5-r1)
(31/69) Installing libxcb (1.16.1-r0)
(32/69) Installing libx11 (1.8.9-r1)
(33/69) Installing libxext (1.3.6-r2)
(34/69) Installing libvdpau (1.5-r3)
(35/69) Installing libvdpau-dev (1.5-r3)
(36/69) Installing xorgproto (2024.1-r0)
(37/69) Installing libxau-dev (1.0.11-r4)
(38/69) Installing libffi (3.4.6-r0)
(39/69) Installing gdbm (1.23-r1)
(40/69) Installing mpdecimal (4.0.0-r0)
(41/69) Installing libpanelw (6.4_p20240420-r0)
(42/69) Installing readline (8.2.10-r0)
(43/69) Installing sqlite-libs (3.45.3-r1)
(44/69) Installing python3 (3.12.3-r1)
(45/69) Installing python3-pycache-pyc0 (3.12.3-r1)
(46/69) Installing pyc (3.12.3-r1)
(47/69) Installing xcb-proto-pyc (1.16.0-r1)
(48/69) Installing python3-pyc (3.12.3-r1)
(49/69) Installing xcb-proto (1.16.0-r1)
(50/69) Installing libxdmcp-dev (1.1.5-r1)
(51/69) Installing libxcb-dev (1.16.1-r0)
(52/69) Installing xtrans (1.5.0-r0)
(53/69) Installing libx11-dev (1.8.9-r1)
(54/69) Installing libxext-dev (1.3.6-r2)
(55/69) Installing libxfixes (6.0.1-r4)
(56/69) Installing libxfixes-dev (6.0.1-r4)
(57/69) Installing libxrender (0.9.11-r5)
(58/69) Installing libxrandr (1.5.4-r1)
(59/69) Installing libxrender-dev (0.9.11-r5)
(60/69) Installing libxrandr-dev (1.5.4-r1)
(61/69) Installing libxv (1.0.12-r5)
(62/69) Installing libxv-dev (1.0.12-r5)
(63/69) Installing pixman (0.43.2-r0)
(64/69) Installing pixman-dev (0.43.2-r0)
(65/69) Installing util-macros (1.20.0-r0)
(66/69) Installing .makedepends-libvdpau-tegra (20240531.041538)
(67/69) Installing perl-error (0.17029-r2)
(68/69) Installing perl-git (2.45.1-r0)
(69/69) Installing git-perl (2.45.1-r0)
Executing busybox-1.36.1-r28.trigger
OK: 262 MiB in 140 packages
>>> libvdpau-tegra: Cleaning up srcdir
>>> libvdpau-tegra: Cleaning up pkgdir
>>> libvdpau-tegra: Cleaning up tmpdir
>>> libvdpau-tegra: Fetching libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579.tar.gz::https://github.com/grate-driver/libvdpau-tegra/archive/e005296de3eca35eff67abbbde01711f37950579.tar.gz
Connecting to github.com (140.82.121.4:443)
Connecting to codeload.github.com (140.82.121.10:443)
saving to '/var/cache/distfiles/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579.tar.gz.part'
libvdpau-tegra-e0052 100% |********************************| 108k 0:00:00 ETA
'/var/cache/distfiles/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579.tar.gz.part' saved
>>> libvdpau-tegra: Fetching libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579.tar.gz::https://github.com/grate-driver/libvdpau-tegra/archive/e005296de3eca35eff67abbbde01711f37950579.tar.gz
>>> libvdpau-tegra: Checking sha512sums...
libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579.tar.gz: OK
>>> libvdpau-tegra: Unpacking /var/cache/distfiles/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579.tar.gz...
autoreconf: export WARNINGS=
autoreconf: Entering directory '.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
autoreconf: configure.ac: tracing
autoreconf: running: libtoolize --copy --force
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, '.'.
libtoolize: copying file './ltmain.sh'
libtoolize: putting macros in 'm4'.
libtoolize: copying file 'm4/libtool.m4'
libtoolize: copying file 'm4/ltoptions.m4'
libtoolize: copying file 'm4/ltsugar.m4'
libtoolize: copying file 'm4/ltversion.m4'
libtoolize: copying file 'm4/lt~obsolete.m4'
libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac,
libtoolize: and rerunning libtoolize and aclocal.
autoreconf: configure.ac: not using Intltool
autoreconf: configure.ac: not using Gtkdoc
autoreconf: running: aclocal --force -I m4
autoreconf: running: /usr/bin/autoconf --force
configure.ac:12: warning: The macro 'AM_DISABLE_STATIC' is obsolete.
configure.ac:12: You should run autoupdate.
m4/ltoptions.m4:260: AM_DISABLE_STATIC is expanded from...
configure.ac:12: the top level
configure.ac:17: warning: The macro 'AC_PROG_LIBTOOL' is obsolete.
configure.ac:17: You should run autoupdate.
m4/libtool.m4:100: AC_PROG_LIBTOOL is expanded from...
configure.ac:17: the top level
configure.ac:78: warning: AC_PROG_LEX without either yywrap or noyywrap is obsolete
./lib/autoconf/programs.m4:743: _AC_PROG_LEX is expanded from...
./lib/autoconf/programs.m4:736: AC_PROG_LEX is expanded from...
configure.ac:78: the top level
autoreconf: running: /usr/bin/autoheader --force
autoreconf: running: automake --add-missing --copy --force-missing
configure.ac:15: installing './compile'
configure.ac:17: installing './config.guess'
configure.ac:17: installing './config.sub'
configure.ac:10: installing './install-sh'
configure.ac:10: installing './missing'
src/Makefile.am: installing './depcomp'
autoreconf: './install-sh' is updated
autoreconf: './config.sub' is updated
autoreconf: './config.guess' is updated
autoreconf: Leaving directory '.'
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a race-free mkdir -p... /bin/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 for armv7-alpine-linux-musleabihf-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 whether make supports the include directive... yes (GNU style)
checking dependency style of gcc... gcc3
checking build system type... armv7-alpine-linux-musleabihf
checking host system type... armv7-alpine-linux-musleabihf
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... /bin/grep -F
checking for ld used by gcc... /usr/armv7-alpine-linux-musleabihf/bin/ld
checking if the linker (/usr/armv7-alpine-linux-musleabihf/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 98304
checking how to convert armv7-alpine-linux-musleabihf file names to armv7-alpine-linux-musleabihf format... func_convert_file_noop
checking how to convert armv7-alpine-linux-musleabihf file names to toolchain format... func_convert_file_noop
checking for /usr/armv7-alpine-linux-musleabihf/bin/ld option to reload object files... -r
checking for armv7-alpine-linux-musleabihf-file... no
checking for file... file
checking for armv7-alpine-linux-musleabihf-objdump... no
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for armv7-alpine-linux-musleabihf-dlltool... no
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for armv7-alpine-linux-musleabihf-ar... no
checking for ar... ar
checking for archiver @FILE support... @
checking for armv7-alpine-linux-musleabihf-strip... no
checking for strip... strip
checking for armv7-alpine-linux-musleabihf-ranlib... no
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /bin/dd
checking how to truncate binary pipes... /bin/dd bs=4096 count=1
checking for armv7-alpine-linux-musleabihf-mt... no
checking for mt... no
checking if : is a manifest tool... no
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 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... yes
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/armv7-alpine-linux-musleabihf/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 armv7-alpine-linux-musleabihf-pkg-config... no
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for x11 xext xextproto xfixes xrandr... yes
checking for vdpau... yes
checking for pixman-1... yes
checking for libdrm... yes
checking for xv... yes
checking for sin in -lm... yes
checking how to run the C preprocessor... gcc -E
checking for X... libraries , headers
checking for fcntl.h... yes
checking for limits.h... yes
checking for stdint.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for sys/ioctl.h... yes
checking for unistd.h... (cached) yes
checking for int32_t... yes
checking for int8_t... yes
checking for size_t... yes
checking for uint16_t... yes
checking for uint32_t... yes
checking for uint64_t... yes
checking for uint8_t... yes
checking for clock_gettime... yes
checking for memset... yes
checking for munmap... yes
checking for flex... flex
checking for lex output file root... lex.yy
checking for lex library... none needed
checking for library containing yywrap... no
checking whether yytext is a pointer... yes
checking for bison... bison -y
checking for drmSyncobjCreate... yes
yes
checking for valgrind... no
checking whether to enable Valgrind support... no
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating src/vdpau-tegra.pc
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
/usr/bin/make all-recursive
make[1]: Entering directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579'
Making all in src
make[2]: Entering directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579/src'
flex -P fragment_asm --nounput -o asm/fragment_asm.lex.c asm/fragment_asm.l
flex -P linker_asm --nounput -o asm/linker_asm.lex.c asm/linker_asm.l
flex -P vertex_asm --nounput -o asm/vertex_asm.lex.c asm/vertex_asm.l
bison -y -p fragment_asm -b fragment_asm -d --debug -o asm/fragment_asm.tab.c asm/fragment_asm.y
bison -y -p linker_asm -b linker_asm -d --debug -o asm/linker_asm.tab.c asm/linker_asm.y
bison -y -p vertex_asm -b vertex_asm -d --debug -o asm/vertex_asm.tab.c asm/vertex_asm.y
gcc -I ./asm -o ./gen_shader_bin gen_shader_bin.c ./asm/fragment_asm.lex.c ./asm/linker_asm.lex.c ./asm/vertex_asm.lex.c ./asm/fragment_asm.tab.c ./asm/linker_asm.tab.c ./asm/vertex_asm.tab.c
./gen_shader_bin \
--vs shaders/blend_atop/vertex.asm \
--lnk shaders/blend_atop/linker.asm \
--fs shaders/blend_atop/fragment.asm \
--name blend_atop \
--out shaders/blend_atop.bin.h
./gen_shader_bin \
--vs shaders/blend_atop_solid_shade/vertex.asm \
--lnk shaders/blend_atop_solid_shade/linker.asm \
--fs shaders/blend_atop_solid_shade/fragment.asm \
--name blend_atop_solid_shade \
--out shaders/blend_atop_solid_shade.bin.h
/usr/bin/make all-am
make[3]: Entering directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579/src'
depbase=`echo vdpau_tegra.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT vdpau_tegra.lo -MD -MP -MF $depbase.Tpo -c -o vdpau_tegra.lo vdpau_tegra.c &&\
mv -f $depbase.Tpo $depbase.Plo
depbase=`echo surface_rotate.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT surface_rotate.lo -MD -MP -MF $depbase.Tpo -c -o surface_rotate.lo surface_rotate.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT surface_rotate.lo -MD -MP -MF .deps/surface_rotate.Tpo -c surface_rotate.c -fPIC -DPIC -o .libs/surface_rotate.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT vdpau_tegra.lo -MD -MP -MF .deps/vdpau_tegra.Tpo -c vdpau_tegra.c -fPIC -DPIC -o .libs/vdpau_tegra.o
depbase=`echo surface_output.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT surface_output.lo -MD -MP -MF $depbase.Tpo -c -o surface_output.lo surface_output.c &&\
mv -f $depbase.Tpo $depbase.Plo
depbase=`echo surface_bitmap.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT surface_bitmap.lo -MD -MP -MF $depbase.Tpo -c -o surface_bitmap.lo surface_bitmap.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT surface_output.lo -MD -MP -MF .deps/surface_output.Tpo -c surface_output.c -fPIC -DPIC -o .libs/surface_output.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT surface_bitmap.lo -MD -MP -MF .deps/surface_bitmap.Tpo -c surface_bitmap.c -fPIC -DPIC -o .libs/surface_bitmap.o
depbase=`echo surface_video.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT surface_video.lo -MD -MP -MF $depbase.Tpo -c -o surface_video.lo surface_video.c &&\
mv -f $depbase.Tpo $depbase.Plo
depbase=`echo surface_mixer.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT surface_mixer.lo -MD -MP -MF $depbase.Tpo -c -o surface_mixer.lo surface_mixer.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT surface_video.lo -MD -MP -MF .deps/surface_video.Tpo -c surface_video.c -fPIC -DPIC -o .libs/surface_video.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT surface_mixer.lo -MD -MP -MF .deps/surface_mixer.Tpo -c surface_mixer.c -fPIC -DPIC -o .libs/surface_mixer.o
depbase=`echo surface_shared.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT surface_shared.lo -MD -MP -MF $depbase.Tpo -c -o surface_shared.lo surface_shared.c &&\
mv -f $depbase.Tpo $depbase.Plo
depbase=`echo surface.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT surface.lo -MD -MP -MF $depbase.Tpo -c -o surface.lo surface.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT surface_shared.lo -MD -MP -MF .deps/surface_shared.Tpo -c surface_shared.c -fPIC -DPIC -o .libs/surface_shared.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT surface.lo -MD -MP -MF .deps/surface.Tpo -c surface.c -fPIC -DPIC -o .libs/surface.o
depbase=`echo presentation_queue.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT presentation_queue.lo -MD -MP -MF $depbase.Tpo -c -o presentation_queue.lo presentation_queue.c &&\
mv -f $depbase.Tpo $depbase.Plo
depbase=`echo presentation_queue_target.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT presentation_queue_target.lo -MD -MP -MF $depbase.Tpo -c -o presentation_queue_target.lo presentation_queue_target.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT presentation_queue.lo -MD -MP -MF .deps/presentation_queue.Tpo -c presentation_queue.c -fPIC -DPIC -o .libs/presentation_queue.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT presentation_queue_target.lo -MD -MP -MF .deps/presentation_queue_target.Tpo -c presentation_queue_target.c -fPIC -DPIC -o .libs/presentation_queue_target.o
depbase=`echo decoder.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT decoder.lo -MD -MP -MF $depbase.Tpo -c -o decoder.lo decoder.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT decoder.lo -MD -MP -MF .deps/decoder.Tpo -c decoder.c -fPIC -DPIC -o .libs/decoder.o
depbase=`echo dmabuf.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT dmabuf.lo -MD -MP -MF $depbase.Tpo -c -o dmabuf.lo dmabuf.c &&\
mv -f $depbase.Tpo $depbase.Plo
depbase=`echo bitstream.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT bitstream.lo -MD -MP -MF $depbase.Tpo -c -o bitstream.lo bitstream.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT dmabuf.lo -MD -MP -MF .deps/dmabuf.Tpo -c dmabuf.c -fPIC -DPIC -o .libs/dmabuf.o
depbase=`echo host1x-gr2d.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT host1x-gr2d.lo -MD -MP -MF $depbase.Tpo -c -o host1x-gr2d.lo host1x-gr2d.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT bitstream.lo -MD -MP -MF .deps/bitstream.Tpo -c bitstream.c -fPIC -DPIC -o .libs/bitstream.o
depbase=`echo host1x-pixelbuffer.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT host1x-pixelbuffer.lo -MD -MP -MF $depbase.Tpo -c -o host1x-pixelbuffer.lo host1x-pixelbuffer.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT host1x-gr2d.lo -MD -MP -MF .deps/host1x-gr2d.Tpo -c host1x-gr2d.c -fPIC -DPIC -o .libs/host1x-gr2d.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT host1x-pixelbuffer.lo -MD -MP -MF .deps/host1x-pixelbuffer.Tpo -c host1x-pixelbuffer.c -fPIC -DPIC -o .libs/host1x-pixelbuffer.o
depbase=`echo tegra_stream_v1.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT tegra_stream_v1.lo -MD -MP -MF $depbase.Tpo -c -o tegra_stream_v1.lo tegra_stream_v1.c &&\
mv -f $depbase.Tpo $depbase.Plo
depbase=`echo tegra_stream_v2.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT tegra_stream_v2.lo -MD -MP -MF $depbase.Tpo -c -o tegra_stream_v2.lo tegra_stream_v2.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT tegra_stream_v1.lo -MD -MP -MF .deps/tegra_stream_v1.Tpo -c tegra_stream_v1.c -fPIC -DPIC -o .libs/tegra_stream_v1.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT tegra_stream_v2.lo -MD -MP -MF .deps/tegra_stream_v2.Tpo -c tegra_stream_v2.c -fPIC -DPIC -o .libs/tegra_stream_v2.o
depbase=`echo dri2.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT dri2.lo -MD -MP -MF $depbase.Tpo -c -o dri2.lo dri2.c &&\
mv -f $depbase.Tpo $depbase.Plo
depbase=`echo host1x-gr3d.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT host1x-gr3d.lo -MD -MP -MF $depbase.Tpo -c -o host1x-gr3d.lo host1x-gr3d.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT dri2.lo -MD -MP -MF .deps/dri2.Tpo -c dri2.c -fPIC -DPIC -o .libs/dri2.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT host1x-gr3d.lo -MD -MP -MF .deps/host1x-gr3d.Tpo -c host1x-gr3d.c -fPIC -DPIC -o .libs/host1x-gr3d.o
depbase=`echo tegradrm/tegra.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT tegradrm/tegra.lo -MD -MP -MF $depbase.Tpo -c -o tegradrm/tegra.lo tegradrm/tegra.c &&\
mv -f $depbase.Tpo $depbase.Plo
depbase=`echo tegradrm/tegra_bo_cache.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT tegradrm/tegra_bo_cache.lo -MD -MP -MF $depbase.Tpo -c -o tegradrm/tegra_bo_cache.lo tegradrm/tegra_bo_cache.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT tegradrm/tegra_bo_cache.lo -MD -MP -MF tegradrm/.deps/tegra_bo_cache.Tpo -c tegradrm/tegra_bo_cache.c -fPIC -DPIC -o tegradrm/.libs/tegra_bo_cache.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT tegradrm/tegra.lo -MD -MP -MF tegradrm/.deps/tegra.Tpo -c tegradrm/tegra.c -fPIC -DPIC -o tegradrm/.libs/tegra.o
depbase=`echo tegradrm/uapi_v1/channel.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT tegradrm/uapi_v1/channel.lo -MD -MP -MF $depbase.Tpo -c -o tegradrm/uapi_v1/channel.lo tegradrm/uapi_v1/channel.c &&\
mv -f $depbase.Tpo $depbase.Plo
depbase=`echo tegradrm/uapi_v1/fence.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT tegradrm/uapi_v1/fence.lo -MD -MP -MF $depbase.Tpo -c -o tegradrm/uapi_v1/fence.lo tegradrm/uapi_v1/fence.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT tegradrm/uapi_v1/channel.lo -MD -MP -MF tegradrm/uapi_v1/.deps/channel.Tpo -c tegradrm/uapi_v1/channel.c -fPIC -DPIC -o tegradrm/uapi_v1/.libs/channel.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT tegradrm/uapi_v1/fence.lo -MD -MP -MF tegradrm/uapi_v1/.deps/fence.Tpo -c tegradrm/uapi_v1/fence.c -fPIC -DPIC -o tegradrm/uapi_v1/.libs/fence.o
depbase=`echo tegradrm/uapi_v1/job.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT tegradrm/uapi_v1/job.lo -MD -MP -MF $depbase.Tpo -c -o tegradrm/uapi_v1/job.lo tegradrm/uapi_v1/job.c &&\
mv -f $depbase.Tpo $depbase.Plo
depbase=`echo tegradrm/uapi_v1/pushbuf.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT tegradrm/uapi_v1/pushbuf.lo -MD -MP -MF $depbase.Tpo -c -o tegradrm/uapi_v1/pushbuf.lo tegradrm/uapi_v1/pushbuf.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT tegradrm/uapi_v1/job.lo -MD -MP -MF tegradrm/uapi_v1/.deps/job.Tpo -c tegradrm/uapi_v1/job.c -fPIC -DPIC -o tegradrm/uapi_v1/.libs/job.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT tegradrm/uapi_v1/pushbuf.lo -MD -MP -MF tegradrm/uapi_v1/.deps/pushbuf.Tpo -c tegradrm/uapi_v1/pushbuf.c -fPIC -DPIC -o tegradrm/uapi_v1/.libs/pushbuf.o
depbase=`echo tegradrm/uapi_v2/job.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT tegradrm/uapi_v2/job.lo -MD -MP -MF $depbase.Tpo -c -o tegradrm/uapi_v2/job.lo tegradrm/uapi_v2/job.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -MT tegradrm/uapi_v2/job.lo -MD -MP -MF tegradrm/uapi_v2/.deps/job.Tpo -c tegradrm/uapi_v2/job.c -fPIC -DPIC -o tegradrm/uapi_v2/.libs/job.o
/bin/sh ../libtool --tag=CC --mode=link gcc -Wall -pthread -mfp16-format=ieee -I/usr/include/pixman-1 -I/usr/include/libdrm -DNDEBUG -I./tegradrm -fvisibility=hidden -Os -fstack-clash-protection -Wformat -Werror=format-security -version-info 1:0:0 -module -Wl,-z,defs -Wl,--as-needed,-O1,--sort-common -o libvdpau_tegra.la -rpath /usr/lib/vdpau vdpau_tegra.lo surface_rotate.lo surface_output.lo surface_bitmap.lo surface_video.lo surface_mixer.lo surface_shared.lo surface.lo presentation_queue.lo presentation_queue_target.lo decoder.lo dmabuf.lo bitstream.lo host1x-gr2d.lo host1x-pixelbuffer.lo tegra_stream_v1.lo tegra_stream_v2.lo dri2.lo host1x-gr3d.lo tegradrm/tegra.lo tegradrm/tegra_bo_cache.lo tegradrm/uapi_v1/channel.lo tegradrm/uapi_v1/fence.lo tegradrm/uapi_v1/job.lo tegradrm/uapi_v1/pushbuf.lo tegradrm/uapi_v2/job.lo -lm -lX11 -lXext -lXfixes -lXrandr -lpixman-1 -ldrm -lXv -lm
libtool: link: gcc -shared -fPIC -DPIC .libs/vdpau_tegra.o .libs/surface_rotate.o .libs/surface_output.o .libs/surface_bitmap.o .libs/surface_video.o .libs/surface_mixer.o .libs/surface_shared.o .libs/surface.o .libs/presentation_queue.o .libs/presentation_queue_target.o .libs/decoder.o .libs/dmabuf.o .libs/bitstream.o .libs/host1x-gr2d.o .libs/host1x-pixelbuffer.o .libs/tegra_stream_v1.o .libs/tegra_stream_v2.o .libs/dri2.o .libs/host1x-gr3d.o tegradrm/.libs/tegra.o tegradrm/.libs/tegra_bo_cache.o tegradrm/uapi_v1/.libs/channel.o tegradrm/uapi_v1/.libs/fence.o tegradrm/uapi_v1/.libs/job.o tegradrm/uapi_v1/.libs/pushbuf.o tegradrm/uapi_v2/.libs/job.o -lX11 -lXext -lXfixes -lXrandr -lpixman-1 -ldrm -lXv -lm -mfp16-format=ieee -Os -Wl,-z -Wl,defs -Wl,--as-needed -Wl,-O1 -Wl,--sort-common -pthread -Wl,-soname -Wl,libvdpau_tegra.so.1 -o .libs/libvdpau_tegra.so.1.0.0
libtool: link: (cd ".libs" && rm -f "libvdpau_tegra.so.1" && ln -s "libvdpau_tegra.so.1.0.0" "libvdpau_tegra.so.1")
libtool: link: (cd ".libs" && rm -f "libvdpau_tegra.so" && ln -s "libvdpau_tegra.so.1.0.0" "libvdpau_tegra.so")
libtool: link: ( cd ".libs" && rm -f "libvdpau_tegra.la" && ln -s "../libvdpau_tegra.la" "libvdpau_tegra.la" )
make[3]: Leaving directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579/src'
make[2]: Leaving directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579/src'
make[2]: Entering directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579'
make[2]: Leaving directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579'
make[1]: Leaving directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579'
Making check in src
make[1]: Entering directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579/src'
/usr/bin/make check-am
make[2]: Entering directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579/src'
make[2]: Nothing to be done for 'check-am'.
make[2]: Leaving directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579/src'
make[1]: Leaving directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579/src'
make[1]: Entering directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579'
make[1]: Leaving directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579'
>>> libvdpau-tegra: Entering fakeroot...
Making install in src
make[1]: Entering directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579/src'
/usr/bin/make install-am
make[2]: Entering directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579/src'
make[3]: Entering directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579/src'
make[3]: Nothing to be done for 'install-exec-am'.
/bin/mkdir -p '/home/pmos/build/pkg/libvdpau-tegra/usr/lib/pkgconfig'
/bin/mkdir -p '/home/pmos/build/pkg/libvdpau-tegra/usr/lib/vdpau'
/bin/sh ../libtool --mode=install /usr/bin/install -c libvdpau_tegra.la '/home/pmos/build/pkg/libvdpau-tegra/usr/lib/vdpau'
/usr/bin/install -c -m 644 vdpau-tegra.pc '/home/pmos/build/pkg/libvdpau-tegra/usr/lib/pkgconfig'
libtool: install: /usr/bin/install -c .libs/libvdpau_tegra.so.1.0.0 /home/pmos/build/pkg/libvdpau-tegra/usr/lib/vdpau/libvdpau_tegra.so.1.0.0
libtool: install: (cd /home/pmos/build/pkg/libvdpau-tegra/usr/lib/vdpau && { ln -s -f libvdpau_tegra.so.1.0.0 libvdpau_tegra.so.1 || { rm -f libvdpau_tegra.so.1 && ln -s libvdpau_tegra.so.1.0.0 libvdpau_tegra.so.1; }; })
libtool: install: (cd /home/pmos/build/pkg/libvdpau-tegra/usr/lib/vdpau && { ln -s -f libvdpau_tegra.so.1.0.0 libvdpau_tegra.so || { rm -f libvdpau_tegra.so && ln -s libvdpau_tegra.so.1.0.0 libvdpau_tegra.so; }; })
libtool: install: /usr/bin/install -c .libs/libvdpau_tegra.lai /home/pmos/build/pkg/libvdpau-tegra/usr/lib/vdpau/libvdpau_tegra.la
libtool: warning: remember to run 'libtool --finish /usr/lib/vdpau'
make[3]: Leaving directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579/src'
make[2]: Leaving directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579/src'
make[1]: Leaving directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579/src'
make[1]: Entering directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579'
make[2]: Entering directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579'
make[2]: Nothing to be done for 'install-exec-am'.
/bin/mkdir -p '/home/pmos/build/pkg/libvdpau-tegra/lib/udev/rules.d'
/usr/bin/install -c -m 644 contrib/70-tegra_vde.rules '/home/pmos/build/pkg/libvdpau-tegra/lib/udev/rules.d'
make[2]: Leaving directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579'
make[1]: Leaving directory '/home/pmos/build/src/libvdpau-tegra-e005296de3eca35eff67abbbde01711f37950579'
>>> libvdpau-tegra*: Running postcheck for libvdpau-tegra
>>> libvdpau-tegra*: Preparing package libvdpau-tegra...
>>> libvdpau-tegra*: Stripping binaries
>>> libvdpau-tegra*: Scanning shared objects
>>> libvdpau-tegra*: Tracing dependencies...
libdrm
pkgconfig
so:libX11.so.6
so:libXext.so.6
so:libXrandr.so.2
so:libXv.so.1
so:libc.musl-armv7.so.1
so:libdrm.so.2
so:libpixman-1.so.0
>>> libvdpau-tegra*: Package size: 128.0 KB
>>> libvdpau-tegra*: Compressing data...
>>> libvdpau-tegra*: Create checksum...
>>> libvdpau-tegra*: Create libvdpau-tegra-0_git20210517-r1.apk
>>> libvdpau-tegra: Build complete at Fri, 31 May 2024 04:16:56 +0000 elapsed time 0h 1m 21s
>>> libvdpau-tegra: Cleaning up srcdir
>>> libvdpau-tegra: Cleaning up pkgdir
>>> libvdpau-tegra: Uninstalling dependencies...
WARNING: opening /mnt/pmbootstrap/packages: No such file or directory
WARNING: opening from cache http://mirror.postmarketos.org/postmarketos/v24.06: No such file or directory
(1/69) Purging .makedepends-libvdpau-tegra (20240531.041538)
(2/69) Purging autoconf (2.72-r0)
(3/69) Purging automake (1.16.5-r2)
(4/69) Purging bison (3.8.2-r1)
(5/69) Purging flex (2.6.4-r6)
(6/69) Purging gettext-dev (0.22.5-r0)
(7/69) Purging xz (5.6.1-r3)
(8/69) Purging gettext-asprintf (0.22.5-r0)
(9/69) Purging gettext (0.22.5-r0)
(10/69) Purging gettext-envsubst (0.22.5-r0)
(11/69) Purging libdrm-dev (2.4.120-r0)
(12/69) Purging linux-headers (6.6-r0)
(13/69) Purging libdrm (2.4.120-r0)
(14/69) Purging libtool (2.4.7-r3)
(15/69) Purging libltdl (2.4.7-r3)
(16/69) Purging libvdpau-dev (1.5-r3)
(17/69) Purging libvdpau (1.5-r3)
(18/69) Purging libxfixes-dev (6.0.1-r4)
(19/69) Purging libxfixes (6.0.1-r4)
(20/69) Purging libxrandr-dev (1.5.4-r1)
(21/69) Purging libxrandr (1.5.4-r1)
(22/69) Purging libxv-dev (1.0.12-r5)
(23/69) Purging libxv (1.0.12-r5)
(24/69) Purging m4 (1.4.19-r3)
(25/69) Purging pixman-dev (0.43.2-r0)
(26/69) Purging pixman (0.43.2-r0)
(27/69) Purging util-macros (1.20.0-r0)
(28/69) Purging gettext-libs (0.22.5-r0)
(29/69) Purging git-perl (2.45.1-r0)
(30/69) Purging perl-git (2.45.1-r0)
(31/69) Purging perl-error (0.17029-r2)
(32/69) Purging perl (5.38.2-r0)
(33/69) Purging libintl (0.22.5-r0)
(34/69) Purging libpciaccess-dev (0.18.1-r0)
(35/69) Purging libpciaccess (0.18.1-r0)
(36/69) Purging hwdata-pci (0.382-r0)
(37/69) Purging libxext-dev (1.3.6-r2)
(38/69) Purging libxext (1.3.6-r2)
(39/69) Purging libxml2 (2.12.7-r0)
(40/69) Purging libxrender-dev (0.9.11-r5)
(41/69) Purging libxrender (0.9.11-r5)
(42/69) Purging python3-pyc (3.12.3-r1)
(43/69) Purging python3-pycache-pyc0 (3.12.3-r1)
(44/69) Purging xcb-proto-pyc (1.16.0-r1)
(45/69) Purging pyc (3.12.3-r1)
(46/69) Purging libx11-dev (1.8.9-r1)
(47/69) Purging xtrans (1.5.0-r0)
(48/69) Purging libx11 (1.8.9-r1)
(49/69) Purging libxcb-dev (1.16.1-r0)
(50/69) Purging libxcb (1.16.1-r0)
(51/69) Purging xcb-proto (1.16.0-r1)
(52/69) Purging python3 (3.12.3-r1)
(53/69) Purging gdbm (1.23-r1)
(54/69) Purging libxdmcp-dev (1.1.5-r1)
(55/69) Purging libxdmcp (1.1.5-r1)
(56/69) Purging libbsd (0.12.2-r0)
(57/69) Purging libbz2 (1.0.8-r6)
(58/69) Purging libffi (3.4.6-r0)
(59/69) Purging libmd (1.1.0-r0)
(60/69) Purging libpanelw (6.4_p20240420-r0)
(61/69) Purging readline (8.2.10-r0)
(62/69) Purging libncursesw (6.4_p20240420-r0)
(63/69) Purging ncurses-terminfo-base (6.4_p20240420-r0)
(64/69) Purging libxau-dev (1.0.11-r4)
(65/69) Purging libxau (1.0.11-r4)
(66/69) Purging mpdecimal (4.0.0-r0)
(67/69) Purging sqlite-libs (3.45.3-r1)
(68/69) Purging xorgproto (2024.1-r0)
(69/69) Purging xz-libs (5.6.1-r3)
Executing busybox-1.36.1-r28.trigger
OK: 160 MiB in 71 packages
>>> libvdpau-tegra: Updating the pmos/armv7 repository index...
>>> libvdpau-tegra: Signing the index...
mv: can't preserve ownership of '/mnt/pmbootstrap/packages/armv7/APKINDEX.tar.gz.3038': Operation not permitted
(002262) [04:16:58] (buildroot_armv7) uninstall build dependencies
(002262) [04:16:58] (buildroot_armv7) % cd /home/pmos/build; busybox su pmos -c SUDO_APK='abuild-apk --no-progress' HOME=/home/pmos abuild undeps
WARNING: opening from cache http://mirror.postmarketos.org/postmarketos/v24.06: No such file or directory
ERROR: No such package: .makedepends-libvdpau-tegra
(002262) [04:16:59] NOTE: chroot is still active (use 'pmbootstrap shutdown' as necessary)
(002262) [04:16:59] DONE!
|