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 |
+ cd ccw-aports
+ for target in "${targets[@]}"
+ cabin build-all -a x86_64 -v
Building openconnect-gnutls (1/6)
/home/build/ccw-aports/testing/openconnect-gnutls/../../
>>> openconnect-gnutls: Checking sanity of /home/build/ccw-aports/testing/openconnect-gnutls/APKBUILD...
>>> openconnect-gnutls: Cleaning up srcdir
>>> openconnect-gnutls: Cleaning up pkgdir
>>> openconnect-gnutls: Cleaning up tmpdir
>>> openconnect-gnutls: Fetching https://www.infradead.org/openconnect/download/openconnect-9.12.tar.gz
Connecting to www.infradead.org (90.155.50.34:443)
saving to '/var/cache/distfiles/openconnect-9.12.tar.gz.part'
openconnect-9.12.tar 41% |************* | 1140k 0:00:01 ETA
openconnect-9.12.tar 71% |********************** | 1992k 0:00:00 ETA
openconnect-9.12.tar 98% |******************************* | 2726k 0:00:00 ETA
openconnect-9.12.tar 100% |********************************| 2776k 0:00:00 ETA
'/var/cache/distfiles/openconnect-9.12.tar.gz.part' saved
>>> openconnect-gnutls: Fetching https://www.infradead.org/openconnect/download/openconnect-9.12.tar.gz
>>> openconnect-gnutls: Checking sha512sums...
openconnect-9.12.tar.gz: OK
fix_gnutls.patch: OK
openconnect.initd: OK
openconnect.confd: OK
openconnect.logrotate: OK
>>> openconnect-gnutls: Preparing build chroot...
fatal: ref HEAD is not a symbolic ref
fetch https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
WARNING: opening /home/build/packages//main: No such file or directory
fetch https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
WARNING: opening /home/build/packages//community: No such file or directory
fetch https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz
WARNING: opening /home/build/packages//testing: No such file or directory
fetch https://mirror.ccw.icu/main/x86_64/APKINDEX.tar.gz
fetch https://mirror.ccw.icu/testing/x86_64/APKINDEX.tar.gz
WARNING: updating and opening https://mirror.ccw.icu/main: No such file or directory
WARNING: updating and opening https://mirror.ccw.icu/testing: No such file or directory
(1/211) Installing musl (1.2.4_git20230717-r5)
(2/211) Installing ca-certificates-bundle (20230506-r1)
(3/211) Installing libcrypto3 (3.1.4-r4)
(4/211) Installing libssl3 (3.1.4-r4)
(5/211) Installing zlib (1.3-r2)
(6/211) Installing apk-tools (2.14.0-r5)
(7/211) Installing libattr (2.5.2-r0)
(8/211) Installing attr (2.5.2-r0)
(9/211) Installing libcap2 (2.69-r1)
(10/211) Installing libcap-getcap (2.69-r1)
(11/211) Installing fakeroot (1.32.2-r0)
(12/211) Installing scanelf (1.3.7-r2)
(13/211) Installing musl-utils (1.2.4_git20230717-r5)
(14/211) Installing libc-utils (0.7.2-r5)
(15/211) Installing libgcc (13.2.1_git20231014-r0)
(16/211) Installing libstdc++ (13.2.1_git20231014-r0)
(17/211) Installing lzip (1.23-r1)
(18/211) Installing openssl (3.1.4-r4)
(19/211) Installing patch (2.7.6-r10)
(20/211) Installing pkgconf (2.1.0-r0)
(21/211) Installing libacl (2.3.1-r4)
(22/211) Installing tar (1.35-r2)
(23/211) Installing busybox (1.36.1-r19)
Executing busybox-1.36.1-r19.post-install
(24/211) Installing ssl_client (1.36.1-r19)
(25/211) Installing busybox-binsh (1.36.1-r19)
(26/211) Installing abuild (3.12.0-r2)
Executing abuild-3.12.0-r2.pre-install
(27/211) Installing alpine-baselayout-data (3.5.3-r1)
(28/211) Installing alpine-baselayout (3.5.3-r1)
Executing alpine-baselayout-3.5.3-r1.pre-install
Executing alpine-baselayout-3.5.3-r1.post-install
(29/211) Installing ifupdown-ng (0.12.1-r4)
(30/211) Installing openrc (0.53-r0)
Executing openrc-0.53-r0.post-install
(31/211) Installing mdev-conf (4.6-r0)
(32/211) Installing busybox-mdev-openrc (1.36.1-r19)
(33/211) Installing alpine-conf (3.17.1-r0)
(34/211) Installing alpine-keys (2.4-r1)
(35/211) Installing alpine-release (3.20.0_alpha20231219-r0)
(36/211) Installing busybox-openrc (1.36.1-r19)
(37/211) Installing busybox-suid (1.36.1-r19)
(38/211) Installing alpine-base (3.20.0_alpha20231219-r0)
(39/211) Installing m4 (1.4.19-r3)
(40/211) Installing libbz2 (1.0.8-r6)
(41/211) Installing perl (5.38.2-r0)
(42/211) Installing autoconf (2.72-r0)
(43/211) Installing automake (1.16.5-r2)
(44/211) Installing jansson (2.14-r4)
(45/211) Installing zstd-libs (1.5.5-r8)
(46/211) Installing binutils (2.41-r0)
(47/211) Installing libmagic (5.45-r1)
(48/211) Installing file (5.45-r1)
(49/211) Installing libgomp (13.2.1_git20231014-r0)
(50/211) Installing libatomic (13.2.1_git20231014-r0)
(51/211) Installing gmp (6.3.0-r0)
(52/211) Installing isl26 (0.26-r1)
(53/211) Installing mpfr4 (4.2.1-r0)
(54/211) Installing mpc1 (1.3.1-r1)
(55/211) Installing gcc (13.2.1_git20231014-r0)
(56/211) Installing libstdc++-dev (13.2.1_git20231014-r0)
(57/211) Installing musl-dev (1.2.4_git20230717-r5)
(58/211) Installing libc-dev (0.7.2-r5)
(59/211) Installing g++ (13.2.1_git20231014-r0)
(60/211) Installing make (4.4.1-r2)
(61/211) Installing fortify-headers (1.1-r3)
(62/211) Installing build-base (0.5-r3)
(63/211) Installing ca-certificates (20230506-r1)
(64/211) Installing brotli-libs (1.1.0-r1)
(65/211) Installing c-ares (1.25.0-r0)
(66/211) Installing libunistring (1.1-r2)
(67/211) Installing libidn2 (2.3.4-r4)
(68/211) Installing nghttp2-libs (1.58.0-r0)
(69/211) Installing libpsl (0.21.5-r0)
(70/211) Installing libcurl (8.5.0-r1)
(71/211) Installing libexpat (2.5.0-r2)
(72/211) Installing pcre2 (10.42-r2)
(73/211) Installing git (2.43.0-r0)
(74/211) Installing perl-error (0.17029-r2)
(75/211) Installing perl-git (2.43.0-r0)
(76/211) Installing git-perl (2.43.0-r0)
(77/211) Installing nettle (3.9.1-r0)
(78/211) Installing libffi (3.4.4-r3)
(79/211) Installing libtasn1 (4.19.0-r2)
(80/211) Installing p11-kit (0.25.3-r0)
(81/211) Installing gnutls (3.8.1-r0)
(82/211) Installing gnutls-c++ (3.8.1-r0)
(83/211) Installing libgmpxx (6.3.0-r0)
(84/211) Installing gmp-dev (6.3.0-r0)
(85/211) Installing nettle-dev (3.9.1-r0)
(86/211) Installing libidn2-dev (2.3.4-r4)
(87/211) Installing libtasn1-progs (4.19.0-r2)
(88/211) Installing libtasn1-dev (4.19.0-r2)
(89/211) Installing p11-kit-dev (0.25.3-r0)
(90/211) Installing zlib-dev (1.3-r2)
(91/211) Installing gnutls-dev (3.8.1-r0)
(92/211) Installing perl-http-date (6.06-r0)
(93/211) Installing perl-clone (0.46-r2)
(94/211) Installing perl-uri (5.21-r0)
(95/211) Installing perl-io-html (1.004-r1)
(96/211) Installing perl-encode-locale (1.05-r5)
(97/211) Installing perl-lwp-mediatypes (6.04-r3)
(98/211) Installing perl-http-message (6.45-r0)
(99/211) Installing perl-http-cookies (6.11-r0)
(100/211) Installing perl-http-cookiejar (0.014-r1)
(101/211) Installing perl-net-http (6.23-r1)
(102/211) Installing perl-html-tagset (3.20-r5)
(103/211) Installing perl-html-parser (3.81-r2)
(104/211) Installing perl-file-listing (6.16-r0)
(105/211) Installing perl-www-robotrules (6.02-r4)
(106/211) Installing perl-http-negotiate (6.01-r4)
(107/211) Installing perl-try-tiny (0.31-r2)
(108/211) Installing perl-libwww (6.73-r0)
(109/211) Installing perl-xml-parser (2.47-r0)
(110/211) Installing libintl (0.22.4-r0)
(111/211) Installing gettext-envsubst (0.22.4-r0)
(112/211) Installing ncurses-terminfo-base (6.4_p20231125-r0)
(113/211) Installing libncursesw (6.4_p20231125-r0)
(114/211) Installing gettext-libs (0.22.4-r0)
(115/211) Installing xz-libs (5.4.5-r0)
(116/211) Installing libxml2 (2.12.4-r0)
(117/211) Installing gettext (0.22.4-r0)
(118/211) Installing intltool (0.51.0-r8)
(119/211) Installing libelf (0.190-r1)
(120/211) Installing libmnl (1.0.5-r2)
(121/211) Installing iproute2-minimal (6.7.0-r0)
(122/211) Installing ifupdown-ng-iproute2 (0.12.1-r4)
(123/211) Installing libxtables (1.8.10-r3)
(124/211) Installing iproute2-tc (6.7.0-r0)
(125/211) Installing iproute2-ss (6.7.0-r0)
(126/211) Installing iproute2 (6.7.0-r0)
Executing iproute2-6.7.0-r0.post-install
(127/211) Installing libblkid (2.39.3-r0)
(128/211) Installing libuuid (2.39.3-r0)
(129/211) Installing libfdisk (2.39.3-r0)
(130/211) Installing libmount (2.39.3-r0)
(131/211) Installing libsmartcols (2.39.3-r0)
(132/211) Installing util-linux-dev (2.39.3-r0)
(133/211) Installing gawk (5.3.0-r0)
(134/211) Installing libcom_err (1.47.0-r5)
(135/211) Installing e2fsprogs-libs (1.47.0-r5)
(136/211) Installing e2fsprogs-dev (1.47.0-r5)
(137/211) Installing glib (2.78.3-r0)
(138/211) Installing libverto (0.3.2-r2)
(139/211) Installing libverto-glib (0.3.2-r2)
(140/211) Installing libev (4.33-r1)
(141/211) Installing libverto-libev (0.3.2-r2)
(142/211) Installing libevent (2.1.12-r7)
(143/211) Installing libverto-libevent (0.3.2-r2)
(144/211) Installing libverto-dev (0.3.2-r2)
(145/211) Installing krb5-conf (1.0-r2)
(146/211) Installing keyutils-libs (1.6.3-r3)
(147/211) Installing krb5-libs (1.21.2-r0)
(148/211) Installing gdbm (1.23-r1)
(149/211) Installing libsasl (2.1.28-r5)
(150/211) Installing libldap (2.6.6-r1)
(151/211) Installing krb5-server-ldap (1.21.2-r0)
(152/211) Installing krb5-dev (1.21.2-r0)
(153/211) Installing duktape (2.7.0-r1)
(154/211) Installing libproxy (0.5.3-r0)
(155/211) Installing bzip2-dev (1.0.8-r6)
(156/211) Installing libxml2-utils (2.12.4-r0)
(157/211) Installing docbook-xml (4.5-r8)
Executing docbook-xml-4.5-r8.post-install
(158/211) Installing libgpg-error (1.47-r2)
(159/211) Installing libgcrypt (1.10.3-r0)
(160/211) Installing libxslt (1.1.39-r0)
(161/211) Installing docbook-xsl (1.79.2-r8)
Executing docbook-xsl-1.79.2-r8.post-install
(162/211) Installing xz (5.4.5-r0)
(163/211) Installing gettext-asprintf (0.22.4-r0)
(164/211) Installing gettext-dev (0.22.4-r0)
(165/211) Installing mpdecimal (2.5.1-r2)
(166/211) Installing libpanelw (6.4_p20231125-r0)
(167/211) Installing readline (8.2.10-r0)
(168/211) Installing sqlite-libs (3.45.0-r0)
(169/211) Installing python3 (3.11.6-r1)
(170/211) Installing python3-pycache-pyc0 (3.11.6-r1)
(171/211) Installing pyc (3.11.6-r1)
(172/211) Installing python3-pyc (3.11.6-r1)
(173/211) Installing linux-headers (6.6-r0)
(174/211) Installing libffi-dev (3.4.4-r3)
(175/211) Installing bsd-compat-headers (0.7.2-r5)
(176/211) Installing libformw (6.4_p20231125-r0)
(177/211) Installing libmenuw (6.4_p20231125-r0)
(178/211) Installing libncurses++ (6.4_p20231125-r0)
(179/211) Installing ncurses-dev (6.4_p20231125-r0)
(180/211) Installing libedit (20230828.3.1-r4)
(181/211) Installing libedit-dev (20230828.3.1-r4)
(182/211) Installing libpcre2-16 (10.42-r2)
(183/211) Installing libpcre2-32 (10.42-r2)
(184/211) Installing pcre2-dev (10.42-r2)
(185/211) Installing glib-dev (2.78.3-r0)
(186/211) Installing libproxy-dev (0.5.3-r0)
(187/211) Installing xz-dev (5.4.5-r0)
(188/211) Installing libxml2-dev (2.12.4-r0)
(189/211) Installing lz4-libs (1.9.4-r5)
(190/211) Installing lz4-dev (1.9.4-r5)
(191/211) Installing oath-toolkit-liboath (2.6.11-r0)
(192/211) Installing libltdl (2.4.7-r3)
(193/211) Installing xmlsec (1.3.3-r1)
(194/211) Installing oath-toolkit-libpskc (2.6.11-r0)
(195/211) Installing oath-toolkit-dev (2.6.11-r0)
(196/211) Installing openssl-dev (3.1.4-r4)
(197/211) Installing pcsc-lite-libs (2.0.1-r0)
(198/211) Installing udev-init-scripts (35-r1)
(199/211) Installing udev-init-scripts-openrc (35-r1)
(200/211) Installing eudev-libs (3.2.14-r1)
(201/211) Installing kmod-libs (31-r2)
(202/211) Installing eudev (3.2.14-r1)
(203/211) Installing eudev-openrc (3.2.14-r1)
(204/211) Installing eudev-dev (3.2.14-r1)
(205/211) Installing pcsc-lite-spy-libs (2.0.1-r0)
(206/211) Installing pcsc-lite-dev (2.0.1-r0)
(207/211) Installing python3-dev (3.11.6-r1)
(208/211) Installing stoken (0.93-r0)
(209/211) Installing stoken-dev (0.93-r0)
(210/211) Installing vpnc (0.5.3-r10)
(211/211) Installing vpnc-openrc (0.5.3-r10)
Executing busybox-1.36.1-r19.trigger
Executing ca-certificates-20230506-r1.trigger
Executing glib-2.78.3-r0.trigger
No schema files found: doing nothing.
Executing eudev-3.2.14-r1.trigger
OK: 466 MiB in 211 packages
>>> openconnect-gnutls: Fetching https://www.infradead.org/openconnect/download/openconnect-9.12.tar.gz
>>> openconnect-gnutls: Checking sha512sums...
openconnect-9.12.tar.gz: OK
fix_gnutls.patch: OK
openconnect.initd: OK
openconnect.confd: OK
openconnect.logrotate: OK
>>> openconnect-gnutls: Unpacking /var/cache/distfiles/openconnect-9.12.tar.gz...
>>> openconnect-gnutls: fix_gnutls.patch
patching file gnutls-dtls.c
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking build system type... x86_64-pc-linux-musl
checking host system type... x86_64-pc-linux-musl
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a race-free mkdir -p... ./install-sh -c -d
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether UID '1000' is supported by ustar format... yes
checking whether GID '1000' is supported by ustar format... yes
checking how to create a ustar tar archive... gnutar
checking whether make supports nested variables... (cached) yes
checking for 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
configure: Applying feature macros for GNU build
checking for xdg-open... checking for xdg-open... no
checking for fdevname_r... no
checking for statfs... yes
checking for getline... yes
checking for strcasestr... yes
checking for strndup... yes
checking for strchrnul... yes
checking for asprintf... yes
checking for vasprintf... yes
checking for __builtin_clz... yes
checking for supported compiler flags... -Wall -Wextra -Wno-missing-field-initializers -Wno-sign-compare -Wno-unused-parameter -Werror=pointer-to-int-cast -Werror-implicit-function-declaration -Wformat-nonliteral -Wformat-security -Winit-self -Wmissing-declarations -Wmissing-include-dirs -Wnested-externs -Wpointer-arith -Wwrite-strings
checking For memset_s... no
checking for explicit_memset... no
checking for explicit_bzero... yes
checking For localtime_r... yes
checking for socket... yes
checking for inet_aton... yes
checking for IPV6_PATHMTU socket option... yes
checking for __android_log_vprint... no
checking for __android_log_vprint in -llog... no
checking for nl_langinfo... yes
checking for posix_spawn... yes
checking for ld used by gcc... /usr/x86_64-alpine-linux-musl/bin/ld
checking if the linker (/usr/x86_64-alpine-linux-musl/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking 32-bit host C ABI... no
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ELF binary format... yes
checking for the common suffixes of directories in the library search path... lib,lib,lib
checking for iconv... yes
checking for working iconv... yes
checking for iconv declaration...
extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
checking for GNUTLS... yes
checking for known-broken versions of GnuTLS... no
checking for gnutls_system_key_add_x509... yes
checking for gnutls_pkcs11_add_provider... yes
checking for P11KIT... yes
checking for gnutls_hkdf_expand... yes
checking for Trousers tss library... no
checking for HOGWEED... yes
checking For hogweed built-in mini-gmp... no
checking for GMP... yes
checking for TASN1... yes
checking for TSS2_ESYS... no
checking for TSS_Create in -ltss... no
checking for TSS_Create in -libmtss... no
checking for swtpm... no
checking for tpm2tss-genkey... no
checking for create_tpm2_key... no
checking for softhsm2-util... no
checking for LIBLZ4... yes
checking for LZ4_compress_default()... yes
checking for egrep... (cached) /bin/grep -E
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by gcc... /usr/x86_64-alpine-linux-musl/bin/ld
checking if the linker (/usr/x86_64-alpine-linux-musl/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 x86_64-pc-linux-musl file names to x86_64-pc-linux-musl format... func_convert_file_noop
checking how to convert x86_64-pc-linux-musl file names to toolchain format... func_convert_file_noop
checking for /usr/x86_64-alpine-linux-musl/bin/ld option to reload object files... -r
checking for file... file
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
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 mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... 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/x86_64-alpine-linux-musl/bin/ld -m elf_x86_64) 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 linker version script flag... --version-script
checking if version scripts can use complex wildcards... yes
checking for LIBXML2... yes
checking for JSON... no
checking for library containing pow... none required
checking for ZLIB... yes
checking for LIBPROXY... yes
checking for LIBSTOKEN... yes
checking for LIBPCSCLITE... yes
checking for epoll_create1... yes
checking for LIBPSKC... yes
checking for krb5-config... /usr/bin/krb5-config
checking whether /usr/bin/krb5-config supports gssapi... yes
checking for gssapi/gssapi.h... yes
checking GSSAPI compilation with "-lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err"... yes
checking for if_tun.h... no
checking for linux/if_tun.h... yes
checking for net/if_utun.h... no
checking for vhost-net support... yes
checking for alloca.h... yes
checking for endian.h... yes
checking for python3... /usr/bin/python3
checking if groff can create UTF-8 XHTML... no. Not building HTML pages
checking for CWRAP... no
checking for Python 3.6+ with Flask module... not found
checking for Python 3.7+ or 3.6 with dataclasses backport... found
checking for nuttcp... no
checking whether to enable broken in asan tests... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating openconnect.pc
config.status: creating po/Makefile
config.status: creating www/Makefile
config.status: creating libopenconnect.map
config.status: creating openconnect.8
config.status: creating www/styles/Makefile
config.status: creating www/inc/Makefile
config.status: creating www/images/Makefile
config.status: creating tests/Makefile
config.status: creating tests/softhsm2.conf
config.status: creating tests/configs/test-user-cert.config
config.status: creating tests/configs/test-user-pass.config
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
BUILD OPTIONS:
SSL library: GnuTLS
PKCS#11 support: GnuTLS
TSS2 library: none
DTLS support: yes
ESP support: yes
HPKE support: yes
libproxy support: yes
RSA SecurID support: yes
PSKC OATH file support: yes
GSSAPI support: yes
vhost-net support: yes
Yubikey support: yes
JSON parser: builtin
LZ4 compression: yes
Java bindings: no
Build docs: no
Unit tests: no
Net namespace tests: no
DSA tests: yes
PPP tests: no
Flask tests: no
Insecure debugging: no
NSIS installer: no
make all-recursive
make[1]: Entering directory '/home/build/ccw-aports/testing/openconnect-gnutls/src/openconnect-9.12'
CC libopenconnect_la-ssl.lo
New version: v9.12-unknown
CC libopenconnect_la-http.lo
CC libopenconnect_la-textbuf.lo
CC libopenconnect_la-http-auth.lo
CC libopenconnect_la-auth-common.lo
CC libopenconnect_la-auth-html.lo
CC libopenconnect_la-library.lo
CC libopenconnect_la-compat.lo
CC libopenconnect_la-lzs.lo
CC libopenconnect_la-mainloop.lo
CC libopenconnect_la-script.lo
CC libopenconnect_la-ntlm.lo
CC libopenconnect_la-digest.lo
CC libopenconnect_la-mtucalc.lo
CC libopenconnect_la-oncp.lo
CC libopenconnect_la-lzo.lo
CC libopenconnect_la-auth-juniper.lo
CC libopenconnect_la-esp.lo
CC libopenconnect_la-esp-seqno.lo
CC libopenconnect_la-gnutls-esp.lo
CC libopenconnect_la-auth.lo
CC libopenconnect_la-cstp.lo
CC libopenconnect_la-hpke.lo
CC libopenconnect_la-multicert.lo
CC libopenconnect_la-dtls.lo
CC libopenconnect_la-gnutls-dtls.lo
CC libopenconnect_la-oath.lo
CC libopenconnect_la-gpst.lo
CC libopenconnect_la-auth-globalprotect.lo
CC libopenconnect_la-pulse.lo
CC libopenconnect_la-oidc.lo
CC libopenconnect_la-ppp.lo
ppp.c: In function 'ppp_mainloop':
ppp.c:1449:17: warning: 'proto' may be used uninitialized [-Wmaybe-uninitialized]
1449 | switch (proto) {
| ^~~~~~
ppp.c:1065:13: note: 'proto' was declared here
1065 | int proto;
| ^~~~~
CC libopenconnect_la-nullppp.lo
CC libopenconnect_la-f5.lo
CC libopenconnect_la-fortinet.lo
CC libopenconnect_la-jsondump.lo
CC libopenconnect_la-array.lo
CC libopenconnect_la-vhost.lo
CC libopenconnect_la-yubikey.lo
CC libopenconnect_la-stoken.lo
CC libopenconnect_la-gssapi.lo
CC libopenconnect_la-gnutls.lo
CC libopenconnect_la-gnutls_tpm.lo
CC libopenconnect_la-gnutls_tpm2.lo
CC libopenconnect_la-iconv.lo
CC libopenconnect_la-tun.lo
CC libopenconnect_la-version.lo
CC json/libopenconnect_la-json.lo
CCLD libopenconnect.la
Making all in tests
make[2]: Entering directory '/home/build/ccw-aports/testing/openconnect-gnutls/src/openconnect-9.12/tests'
CC seqtest.o
CC lzstest.o
CC buftest.o
CC serverhash.o
CCLD lzstest
CCLD seqtest
CCLD serverhash
CCLD buftest
make[2]: Leaving directory '/home/build/ccw-aports/testing/openconnect-gnutls/src/openconnect-9.12/tests'
make[2]: Entering directory '/home/build/ccw-aports/testing/openconnect-gnutls/src/openconnect-9.12'
CC list_system_keys-list-system-keys.o
CC os-tcp-mtu.o
CC openconnect-xml.o
CC openconnect-main.o
CCLD list-system-keys
CCLD os-tcp-mtu
CCLD openconnect
make[2]: Leaving directory '/home/build/ccw-aports/testing/openconnect-gnutls/src/openconnect-9.12'
make[1]: Leaving directory '/home/build/ccw-aports/testing/openconnect-gnutls/src/openconnect-9.12'
>>> openconnect-gnutls: Entering fakeroot...
Making install in tests
make[1]: Entering directory '/home/build/ccw-aports/testing/openconnect-gnutls/src/openconnect-9.12/tests'
make[2]: Entering directory '/home/build/ccw-aports/testing/openconnect-gnutls/src/openconnect-9.12/tests'
make[2]: Nothing to be done for 'install-exec-am'.
make[2]: Nothing to be done for 'install-data-am'.
make[2]: Leaving directory '/home/build/ccw-aports/testing/openconnect-gnutls/src/openconnect-9.12/tests'
make[1]: Leaving directory '/home/build/ccw-aports/testing/openconnect-gnutls/src/openconnect-9.12/tests'
make[1]: Entering directory '/home/build/ccw-aports/testing/openconnect-gnutls/src/openconnect-9.12'
make[2]: Entering directory '/home/build/ccw-aports/testing/openconnect-gnutls/src/openconnect-9.12'
./install-sh -c -d '/home/build/ccw-aports/testing/openconnect-gnutls/pkg/openconnect-gnutls/usr/libexec/openconnect'
./install-sh -c -d '/home/build/ccw-aports/testing/openconnect-gnutls/pkg/openconnect-gnutls/usr/share/bash-completion/completions'
/usr/bin/install -c -m 644 bash/openconnect '/home/build/ccw-aports/testing/openconnect-gnutls/pkg/openconnect-gnutls/usr/share/bash-completion/completions'
/usr/bin/install -c trojans/csd-post.sh trojans/csd-wrapper.sh trojans/tncc-wrapper.py trojans/hipreport.sh trojans/hipreport-android.sh trojans/tncc-emulate.py '/home/build/ccw-aports/testing/openconnect-gnutls/pkg/openconnect-gnutls/usr/libexec/openconnect'
./install-sh -c -d '/home/build/ccw-aports/testing/openconnect-gnutls/pkg/openconnect-gnutls/usr/include'
./install-sh -c -d '/home/build/ccw-aports/testing/openconnect-gnutls/pkg/openconnect-gnutls/usr/share/man/man8'
/usr/bin/install -c -m 644 openconnect.h '/home/build/ccw-aports/testing/openconnect-gnutls/pkg/openconnect-gnutls/usr/include'
./install-sh -c -d '/home/build/ccw-aports/testing/openconnect-gnutls/pkg/openconnect-gnutls/usr/lib/pkgconfig'
/usr/bin/install -c -m 644 openconnect.8 '/home/build/ccw-aports/testing/openconnect-gnutls/pkg/openconnect-gnutls/usr/share/man/man8'
./install-sh -c -d '/home/build/ccw-aports/testing/openconnect-gnutls/pkg/openconnect-gnutls/usr/lib'
/usr/bin/install -c -m 644 openconnect.pc '/home/build/ccw-aports/testing/openconnect-gnutls/pkg/openconnect-gnutls/usr/lib/pkgconfig'
/bin/sh ./libtool --mode=install /usr/bin/install -c libopenconnect.la '/home/build/ccw-aports/testing/openconnect-gnutls/pkg/openconnect-gnutls/usr/lib'
libtool: install: /usr/bin/install -c .libs/libopenconnect.so.5.9.0 /home/build/ccw-aports/testing/openconnect-gnutls/pkg/openconnect-gnutls/usr/lib/libopenconnect.so.5.9.0
libtool: install: (cd /home/build/ccw-aports/testing/openconnect-gnutls/pkg/openconnect-gnutls/usr/lib && { ln -s -f libopenconnect.so.5.9.0 libopenconnect.so.5 || { rm -f libopenconnect.so.5 && ln -s libopenconnect.so.5.9.0 libopenconnect.so.5; }; })
libtool: install: (cd /home/build/ccw-aports/testing/openconnect-gnutls/pkg/openconnect-gnutls/usr/lib && { ln -s -f libopenconnect.so.5.9.0 libopenconnect.so || { rm -f libopenconnect.so && ln -s libopenconnect.so.5.9.0 libopenconnect.so; }; })
libtool: install: /usr/bin/install -c .libs/libopenconnect.lai /home/build/ccw-aports/testing/openconnect-gnutls/pkg/openconnect-gnutls/usr/lib/libopenconnect.la
libtool: warning: remember to run 'libtool --finish /usr/lib'
./install-sh -c -d '/home/build/ccw-aports/testing/openconnect-gnutls/pkg/openconnect-gnutls/usr/bin'
/bin/sh ./libtool --mode=install /usr/bin/install -c openconnect '/home/build/ccw-aports/testing/openconnect-gnutls/pkg/openconnect-gnutls/usr/bin'
libtool: warning: 'libopenconnect.la' has not been installed in '/usr/lib'
libtool: install: /usr/bin/install -c .libs/openconnect /home/build/ccw-aports/testing/openconnect-gnutls/pkg/openconnect-gnutls/usr/bin/openconnect
make[2]: Leaving directory '/home/build/ccw-aports/testing/openconnect-gnutls/src/openconnect-9.12'
make[1]: Leaving directory '/home/build/ccw-aports/testing/openconnect-gnutls/src/openconnect-9.12'
>>> openconnect-gnutls-doc*: Running split function doc...
>>> openconnect-gnutls-doc*: Preparing subpackage openconnect-gnutls-doc...
>>> openconnect-gnutls-doc*: Running postcheck for openconnect-gnutls-doc
>>> openconnect-gnutls-dev*: Running split function dev...
>>> openconnect-gnutls-dev*: Preparing subpackage openconnect-gnutls-dev...
>>> openconnect-gnutls-dev*: Stripping binaries
>>> openconnect-gnutls-dev*: Running postcheck for openconnect-gnutls-dev
>>> openconnect-gnutls-openrc*: Running split function openrc...
>>> openconnect-gnutls-openrc*: Preparing subpackage openconnect-gnutls-openrc...
>>> openconnect-gnutls-openrc*: Running postcheck for openconnect-gnutls-openrc
>>> openconnect-gnutls-bash-completion*: Running split function bashcomp...
'/home/build/ccw-aports/testing/openconnect-gnutls/pkg/openconnect-gnutls/usr/share/bash-completion/completions' -> '/home/build/ccw-aports/testing/openconnect-gnutls/pkg/openconnect-gnutls-bash-completion/usr/share/bash-completion/completions'
>>> openconnect-gnutls-bash-completion*: Preparing subpackage openconnect-gnutls-bash-completion...
>>> openconnect-gnutls-bash-completion*: Running postcheck for openconnect-gnutls-bash-completion
>>> openconnect-gnutls*: Running postcheck for openconnect-gnutls
>>> openconnect-gnutls*: Preparing package openconnect-gnutls...
>>> openconnect-gnutls*: Stripping binaries
>>> openconnect-gnutls-bash-completion*: Scanning shared objects
>>> openconnect-gnutls-dev*: Scanning shared objects
>>> openconnect-gnutls-doc*: Scanning shared objects
>>> openconnect-gnutls-openrc*: Scanning shared objects
>>> openconnect-gnutls*: Scanning shared objects
>>> openconnect-gnutls-bash-completion*: Tracing dependencies...
>>> openconnect-gnutls-bash-completion*: Package size: 24.0 KB
>>> openconnect-gnutls-bash-completion*: Compressing data...
>>> openconnect-gnutls-bash-completion*: Create checksum...
>>> openconnect-gnutls-bash-completion*: Create openconnect-gnutls-bash-completion-9.12-r1.apk
>>> openconnect-gnutls-dev*: Tracing dependencies...
openconnect-gnutls=9.12-r1
pc:gnutls
pc:liblz4
pc:libpcsclite
pc:libproxy-1.0
pc:libpskc
pc:libxml-2.0
pc:p11-kit-1
pc:stoken
pc:zlib
pkgconfig
>>> openconnect-gnutls-dev*: Package size: 60.0 KB
>>> openconnect-gnutls-dev*: Compressing data...
>>> openconnect-gnutls-dev*: Create checksum...
>>> openconnect-gnutls-dev*: Create openconnect-gnutls-dev-9.12-r1.apk
>>> openconnect-gnutls-doc*: Tracing dependencies...
>>> openconnect-gnutls-doc*: Package size: 32.0 KB
>>> openconnect-gnutls-doc*: Compressing data...
>>> openconnect-gnutls-doc*: Create checksum...
>>> openconnect-gnutls-doc*: Create openconnect-gnutls-doc-9.12-r1.apk
>>> openconnect-gnutls-openrc*: Tracing dependencies...
>>> openconnect-gnutls-openrc*: Package size: 24.0 KB
>>> openconnect-gnutls-openrc*: Compressing data...
>>> openconnect-gnutls-openrc*: Create checksum...
>>> openconnect-gnutls-openrc*: Create openconnect-gnutls-openrc-9.12-r1.apk
>>> openconnect-gnutls*: Tracing dependencies...
vpnc
iproute2
so:libc.musl-x86_64.so.1
so:libgmp.so.10
so:libgnutls.so.30
so:libgssapi_krb5.so.2
so:libhogweed.so.6
so:liblz4.so.1
so:libp11-kit.so.0
so:libpcsclite.so.1
so:libproxy.so.1
so:libpskc.so.0
so:libstoken.so.1
so:libxml2.so.2
so:libz.so.1
>>> openconnect-gnutls*: Package size: 560.0 KB
>>> openconnect-gnutls*: Compressing data...
>>> openconnect-gnutls*: Create checksum...
>>> openconnect-gnutls*: Create openconnect-gnutls-9.12-r1.apk
>>> openconnect-gnutls: Updating the testing/x86_64 repository index...
>>> openconnect-gnutls: Signing the index...
>>> openconnect-gnutls: Cleaning up srcdir
>>> openconnect-gnutls: Cleaning up build chroot
>>> openconnect-gnutls: Cleaning up pkgdir
Building polarplayer-studio (2/6)
/home/build/ccw-aports/main/polarplayer-studio/../../
>>> polarplayer-studio: Checking sanity of /home/build/ccw-aports/main/polarplayer-studio/APKBUILD...
>>> polarplayer-studio: Cleaning up srcdir
>>> polarplayer-studio: Cleaning up pkgdir
>>> polarplayer-studio: Cleaning up tmpdir
>>> polarplayer-studio: Fetching polarplayer-studio-0.3.1.tar.gz::https://codeberg.org/comcloudway/polarplayer-studio/archive/0.3.1.tar.gz
Connecting to codeberg.org (217.197.91.145:443)
saving to '/var/cache/distfiles/polarplayer-studio-0.3.1.tar.gz.part'
polarplayer-studio-0 100% |********************************| 1141k 0:00:00 ETA
'/var/cache/distfiles/polarplayer-studio-0.3.1.tar.gz.part' saved
>>> polarplayer-studio: Fetching polarplayer-studio-0.3.1.tar.gz::https://codeberg.org/comcloudway/polarplayer-studio/archive/0.3.1.tar.gz
>>> polarplayer-studio: Checking sha512sums...
polarplayer-studio-0.3.1.tar.gz: OK
fix_icon_path.patch: OK
fix-musl.patch: OK
>>> polarplayer-studio: Preparing build chroot...
fatal: ref HEAD is not a symbolic ref
fetch https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
WARNING: opening /home/build/packages//main: No such file or directory
fetch https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
WARNING: opening /home/build/packages//community: No such file or directory
fetch https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz
fetch https://mirror.ccw.icu/main/x86_64/APKINDEX.tar.gz
WARNING: updating and opening https://mirror.ccw.icu/main: No such file or directory
(1/77) Installing musl (1.2.4_git20230717-r5)
(2/77) Installing ca-certificates-bundle (20230506-r1)
(3/77) Installing libcrypto3 (3.1.4-r4)
(4/77) Installing libssl3 (3.1.4-r4)
(5/77) Installing zlib (1.3-r2)
(6/77) Installing apk-tools (2.14.0-r5)
(7/77) Installing libattr (2.5.2-r0)
(8/77) Installing attr (2.5.2-r0)
(9/77) Installing libcap2 (2.69-r1)
(10/77) Installing libcap-getcap (2.69-r1)
(11/77) Installing fakeroot (1.32.2-r0)
(12/77) Installing scanelf (1.3.7-r2)
(13/77) Installing musl-utils (1.2.4_git20230717-r5)
(14/77) Installing libc-utils (0.7.2-r5)
(15/77) Installing libgcc (13.2.1_git20231014-r0)
(16/77) Installing libstdc++ (13.2.1_git20231014-r0)
(17/77) Installing lzip (1.23-r1)
(18/77) Installing openssl (3.1.4-r4)
(19/77) Installing patch (2.7.6-r10)
(20/77) Installing pkgconf (2.1.0-r0)
(21/77) Installing libacl (2.3.1-r4)
(22/77) Installing tar (1.35-r2)
(23/77) Installing busybox (1.36.1-r19)
Executing busybox-1.36.1-r19.post-install
(24/77) Installing ssl_client (1.36.1-r19)
(25/77) Installing busybox-binsh (1.36.1-r19)
(26/77) Installing abuild (3.12.0-r2)
Executing abuild-3.12.0-r2.pre-install
(27/77) Installing alpine-baselayout-data (3.5.3-r1)
(28/77) Installing alpine-baselayout (3.5.3-r1)
Executing alpine-baselayout-3.5.3-r1.pre-install
Executing alpine-baselayout-3.5.3-r1.post-install
(29/77) Installing ifupdown-ng (0.12.1-r4)
(30/77) Installing openrc (0.53-r0)
Executing openrc-0.53-r0.post-install
(31/77) Installing mdev-conf (4.6-r0)
(32/77) Installing busybox-mdev-openrc (1.36.1-r19)
(33/77) Installing alpine-conf (3.17.1-r0)
(34/77) Installing alpine-keys (2.4-r1)
(35/77) Installing alpine-release (3.20.0_alpha20231219-r0)
(36/77) Installing busybox-openrc (1.36.1-r19)
(37/77) Installing busybox-suid (1.36.1-r19)
(38/77) Installing alpine-base (3.20.0_alpha20231219-r0)
(39/77) Installing alsa-lib (1.2.10-r0)
(40/77) Installing alsa-lib-dev (1.2.10-r0)
(41/77) Installing jansson (2.14-r4)
(42/77) Installing zstd-libs (1.5.5-r8)
(43/77) Installing binutils (2.41-r0)
(44/77) Installing libmagic (5.45-r1)
(45/77) Installing file (5.45-r1)
(46/77) Installing libgomp (13.2.1_git20231014-r0)
(47/77) Installing libatomic (13.2.1_git20231014-r0)
(48/77) Installing gmp (6.3.0-r0)
(49/77) Installing isl26 (0.26-r1)
(50/77) Installing mpfr4 (4.2.1-r0)
(51/77) Installing mpc1 (1.3.1-r1)
(52/77) Installing gcc (13.2.1_git20231014-r0)
(53/77) Installing libstdc++-dev (13.2.1_git20231014-r0)
(54/77) Installing musl-dev (1.2.4_git20230717-r5)
(55/77) Installing libc-dev (0.7.2-r5)
(56/77) Installing g++ (13.2.1_git20231014-r0)
(57/77) Installing make (4.4.1-r2)
(58/77) Installing fortify-headers (1.1-r3)
(59/77) Installing build-base (0.5-r3)
(60/77) Installing libffi (3.4.4-r3)
(61/77) Installing xz-libs (5.4.5-r0)
(62/77) Installing libxml2 (2.12.4-r0)
(63/77) Installing llvm16-libs (16.0.6-r7)
(64/77) Installing scudo-malloc (17.0.6-r0)
(65/77) Installing rust (1.72.1-r0)
(66/77) Installing ca-certificates (20230506-r1)
(67/77) Installing brotli-libs (1.1.0-r1)
(68/77) Installing c-ares (1.25.0-r0)
(69/77) Installing libunistring (1.1-r2)
(70/77) Installing libidn2 (2.3.4-r4)
(71/77) Installing nghttp2-libs (1.58.0-r0)
(72/77) Installing libpsl (0.21.5-r0)
(73/77) Installing libcurl (8.5.0-r1)
(74/77) Installing cargo (1.72.1-r0)
(75/77) Installing libexpat (2.5.0-r2)
(76/77) Installing pcre2 (10.42-r2)
(77/77) Installing git (2.43.0-r0)
Executing busybox-1.36.1-r19.trigger
Executing ca-certificates-20230506-r1.trigger
OK: 993 MiB in 77 packages
>>> polarplayer-studio: Fetching polarplayer-studio-0.3.1.tar.gz::https://codeberg.org/comcloudway/polarplayer-studio/archive/0.3.1.tar.gz
>>> polarplayer-studio: Checking sha512sums...
polarplayer-studio-0.3.1.tar.gz: OK
fix_icon_path.patch: OK
fix-musl.patch: OK
>>> polarplayer-studio: Unpacking /var/cache/distfiles/polarplayer-studio-0.3.1.tar.gz...
>>> polarplayer-studio: fix_icon_path.patch
patching file src/main.rs
Hunk #1 succeeded at 75 (offset -13 lines).
>>> polarplayer-studio: fix-musl.patch
patching file Cargo.toml
Hunk #1 succeeded at 30 (offset -1 lines).
Updating git repository `https://github.com/comcloudway/getrandom`
Updating git repository `https://github.com/rust-lang/libc`
Updating crates.io index
Updating git repository `https://github.com/not-fl3/egui-miniquad`
Updating git repository `https://github.com/comcloudway/egui_nodes`
Updating git repository `https://github.com/comcloudway/quad-snd`
warning: Patch `libc v0.2.151 (https://github.com/rust-lang/libc#8cbf7566)` was not used in the crate graph.
Check that the patched package version and available features are compatible
with the dependency requirements. If the patch has a different version from
what is locked in the Cargo.lock file, run `cargo update` to use the new
version. This may also occur with an optional dependency that is not enabled.
Downloading crates ...
Downloaded void v1.0.2
Downloaded cfg-if v0.1.10
Downloaded nix v0.15.0
Downloaded serde v1.0.164
Downloaded derivative v2.2.0
Downloaded ab_glyph_rasterizer v0.1.8
Downloaded emath v0.22.0
Downloaded scopeguard v1.1.0
Downloaded lock_api v0.4.10
Downloaded memoffset v0.6.5
Downloaded quad-rand v0.2.1
Downloaded libc v0.2.146
Downloaded lazy_static v1.4.0
Downloaded nanoserde-derive v0.1.19
Downloaded ryu v1.0.13
Downloaded proc-macro2 v1.0.60
Downloaded serde_derive v1.0.164
Downloaded unicode-ident v1.0.9
Downloaded quote v1.0.28
Downloaded webbrowser v0.5.5
Downloaded syn v1.0.109
Downloaded ttf-parser v0.19.0
Downloaded owned_ttf_parser v0.19.0
Downloaded once_cell v1.18.0
Downloaded parking_lot_core v0.9.8
Downloaded epaint v0.22.0
Downloaded nohash-hasher v0.2.0
Downloaded egui v0.22.0
Downloaded bytemuck_derive v1.4.1
Downloaded byteorder v1.4.3
Downloaded color_quant v1.1.0
Downloaded num-traits v0.2.15
Downloaded fdeflate v0.3.0
Downloaded crc32fast v1.3.2
Downloaded flate2 v1.0.26
Downloaded simd-adler32 v0.3.5
Downloaded image v0.24.6
Downloaded nix v0.24.3
Downloaded quad-url v0.1.1
Downloaded ab_glyph v0.2.21
Downloaded version_check v0.9.4
Downloaded ahash v0.8.3
Downloaded ecolor v0.22.0
Downloaded smallvec v1.10.0
Downloaded parking_lot v0.12.1
Downloaded bytemuck v1.13.1
Downloaded num-integer v0.1.45
Downloaded num-rational v0.4.1
Downloaded adler v1.0.2
Downloaded miniz_oxide v0.7.1
Downloaded png v0.17.9
Downloaded cfg-if v1.0.0
Downloaded autocfg v1.1.0
Downloaded alsa v0.7.0
Downloaded midir v0.9.1
Downloaded miniquad v0.3.16
Downloaded diff v0.1.13
Downloaded yansi v0.5.1
Downloaded pretty_assertions v1.3.0
Downloaded bitflags v1.3.2
Downloaded alsa v0.4.3
Downloaded pkg-config v0.3.27
Downloaded alsa-sys v0.3.1
Downloaded nanoserde v0.1.32
Downloaded quad-storage v0.1.3
Downloaded itoa v1.0.6
Downloaded syn v2.0.18
Downloaded serde_json v1.0.97
Updating git repository `https://github.com/rust-lang/libc`
Updating crates.io index
Removing libc v0.2.146
Adding libc v0.2.151 (https://github.com/rust-lang/libc#8cbf7566)
Compiling proc-macro2 v1.0.60
Compiling autocfg v1.1.0
Compiling quote v1.0.28
Compiling unicode-ident v1.0.9
Compiling libc v0.2.151 (https://github.com/rust-lang/libc#8cbf7566)
Compiling cfg-if v1.0.0
Compiling syn v2.0.18
Compiling bitflags v1.3.2
Compiling pkg-config v0.3.27
Compiling alsa-sys v0.3.1
Compiling lock_api v0.4.10
Compiling parking_lot_core v0.9.8
Compiling version_check v0.9.4
Compiling bytemuck_derive v1.4.1
Compiling ahash v0.8.3
Compiling ttf-parser v0.19.0
Compiling bytemuck v1.13.1
Compiling smallvec v1.10.0
Compiling scopeguard v1.1.0
Compiling owned_ttf_parser v0.19.0
Compiling num-traits v0.2.15
Compiling ab_glyph_rasterizer v0.1.8
Compiling once_cell v1.18.0
Compiling crc32fast v1.3.2
Compiling simd-adler32 v0.3.5
Compiling ab_glyph v0.2.21
Compiling parking_lot v0.12.1
Compiling emath v0.22.0
Compiling ecolor v0.22.0
Compiling num-integer v0.1.45
Compiling nix v0.15.0
Compiling nohash-hasher v0.2.0
Compiling syn v1.0.109
Compiling adler v1.0.2
Compiling miniz_oxide v0.7.1
Compiling epaint v0.22.0
Compiling num-rational v0.4.1
Compiling serde v1.0.164
Compiling void v1.0.2
Compiling miniquad v0.3.16
Compiling cfg-if v0.1.10
error[E0308]: mismatched types
--> /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.15.0/src/macros.rs:56:35
|
56 | const $Flag = libc::$Flag $(as $cast)*;
| ^^^^^^^^^^^ expected `i32`, found `u32`
|
::: /home/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/nix-0.15.0/src/sys/epoll.rs:9:1
|
9 | / libc_bitflags!(
10 | | pub struct EpollFlags: c_int {
11 | | EPOLLIN;
12 | | EPOLLPRI;
... |
28 | | }
29 | | );
| |_- in this macro invocation
|
= note: this error originates in the macro `libc_bitflags` (in Nightly builds, run with -Z macro-backtrace for more info)
Compiling flate2 v1.0.26
For more information about this error, try `rustc --explain E0308`.
error: could not compile `nix` (lib) due to previous error
warning: build failed, waiting for other jobs to finish...
>>> ERROR: polarplayer-studio: build failed
>>> ERROR: polarplayer-studio: rootbld failed
>>> polarplayer-studio: Cleaning up build chroot
thread 'main' panicked at 'Failed to build polarplayer-studio', src/cmds/build.rs:67:13
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
|