-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.log
5498 lines (5370 loc) · 266 KB
/
build.log
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
Verbosity: False
==> Download broadcom-wl sources
x .SRCINFO
x .gitignore
x PKGBUILD
x install
x license.patch
x modprobe.d
x wl_linux.c.patch
==> Making package: broadcom-wl 6.30.223.271-2 (Fri Apr 22 20:50:08 CDT 2016)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Found modprobe.d
-> Found license.patch
-> Found wl_linux.c.patch
-> Downloading hybrid-v35_64-nodebug-pcoem-6_30_223_271.tar.gz...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 1 2859k 1 57625 0 0 97641 0 0:00:29 --:--:-- 0:00:29 97504 48 2859k 48 1384k 0 0 873k 0 0:00:03 0:00:01 0:00:02 873k100 2859k 100 2859k 0 0 1347k 0 0:00:02 0:00:02 --:--:-- 1347k
==> Validating source files with sha256sums...
modprobe.d ... Passed
license.patch ... Passed
wl_linux.c.patch ... Passed
==> Validating source_x86_64 files with sha256sums...
hybrid-v35_64-nodebug-pcoem-6_30_223_271.tar.gz ... Passed
==> Extracting sources...
-> Extracting hybrid-v35_64-nodebug-pcoem-6_30_223_271.tar.gz with bsdtar
==> Starting prepare()...
==> Starting build()...
==> Entering fakeroot environment...
==> Starting package()...
==> Tidying install...
-> Removing libtool files...
-> Purging unwanted files...
-> Removing static library files...
-> Stripping unneeded symbols from binaries and libraries...
-> Compressing man and info pages...
==> Checking for packaging issue...
==> Creating package "broadcom-wl"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
-> Adding install file...
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: broadcom-wl 6.30.223.271-2 (Fri Apr 22 20:50:14 CDT 2016)
==> Download broadcom-wl-dkms sources
x .SRCINFO
x .gitignore
x 001-null-pointer-fix.patch
x 002-rdtscl.patch
x PKGBUILD
x broadcom-wl-dkms.conf
x broadcom-wl-dkms.install
x dkms.conf.in
==> Making package: broadcom-wl-dkms 6.30.223.271-6 (Fri Apr 22 20:50:17 CDT 2016)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Found broadcom-wl-dkms.conf
-> Found dkms.conf.in
-> Found 001-null-pointer-fix.patch
-> Found 002-rdtscl.patch
-> Downloading hybrid-v35_64-nodebug-pcoem-6_30_223_271.tar.gz...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 8 2859k 8 238k 0 0 305k 0 0:00:09 --:--:-- 0:00:09 305k 32 2859k 32 930k 0 0 450k 0 0:00:06 0:00:02 0:00:04 451k 46 2859k 46 1323k 0 0 403k 0 0:00:07 0:00:03 0:00:04 403k 46 2859k 46 1323k 0 0 309k 0 0:00:09 0:00:04 0:00:05 309k 51 2859k 51 1467k 0 0 307k 0 0:00:09 0:00:04 0:00:05 307k 68 2859k 68 1972k 0 0 342k 0 0:00:08 0:00:05 0:00:03 347k100 2859k 100 2859k 0 0 446k 0 0:00:06 0:00:06 --:--:-- 444k
==> Validating source files with sha256sums...
broadcom-wl-dkms.conf ... Passed
dkms.conf.in ... Passed
001-null-pointer-fix.patch ... Passed
002-rdtscl.patch ... Passed
==> Validating source_x86_64 files with sha256sums...
hybrid-v35_64-nodebug-pcoem-6_30_223_271.tar.gz ... Passed
==> Extracting sources...
-> Extracting hybrid-v35_64-nodebug-pcoem-6_30_223_271.tar.gz with bsdtar
==> Starting prepare()...
==> Entering fakeroot environment...
==> Starting package()...
==> Tidying install...
-> Removing libtool files...
-> Purging unwanted files...
-> Removing static library files...
-> Stripping unneeded symbols from binaries and libraries...
-> Compressing man and info pages...
==> Checking for packaging issue...
==> Creating package "broadcom-wl-dkms"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
-> Adding install file...
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: broadcom-wl-dkms 6.30.223.271-6 (Fri Apr 22 20:50:26 CDT 2016)
==> Download btsync sources
x .SRCINFO
x PKGBUILD
x btsync.conf
x btsync.install
x btsync.service
x btsync_user.service
==> Making package: btsync 2.3.6-1 (Fri Apr 22 20:50:29 CDT 2016)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Found btsync.service
-> Found btsync_user.service
-> Found btsync.conf
-> Downloading BitTorrent-Sync_x64-2.3.6-1.tar.gz...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 16 5785k 16 959k 0 0 1723k 0 0:00:03 --:--:-- 0:00:03 1722k 63 5785k 63 3679k 0 0 2361k 0 0:00:02 0:00:01 0:00:01 2361k100 5785k 100 5785k 0 0 2571k 0 0:00:02 0:00:02 --:--:-- 2572k
==> Validating source files with sha1sums...
btsync.service ... Passed
btsync_user.service ... Passed
btsync.conf ... Passed
==> Validating source_x86_64 files with sha1sums...
BitTorrent-Sync_x64-2.3.6-1.tar.gz ... Passed
==> Extracting sources...
-> Extracting BitTorrent-Sync_x64-2.3.6-1.tar.gz with bsdtar
==> Entering fakeroot environment...
==> Starting package()...
==> Tidying install...
-> Removing libtool files...
-> Purging unwanted files...
-> Removing static library files...
-> Stripping unneeded symbols from binaries and libraries...
-> Compressing man and info pages...
==> Checking for packaging issue...
==> Creating package "btsync"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
-> Adding install file...
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: btsync 2.3.6-1 (Fri Apr 22 20:50:39 CDT 2016)
==> Download btsync-gui sources
x .SRCINFO
x PKGBUILD
x btsync-gui.install
x btsync-gui.key
==> Making package: btsync-gui 0.8.5-2 (Fri Apr 22 20:50:41 CDT 2016)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Downloading btsync-gui-0.8.5-1.tar.gz...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0100 139 0 139 0 0 331 0 --:--:-- --:--:-- --:--:-- 330
100 565k 100 565k 0 0 587k 0 --:--:-- --:--:-- --:--:-- 587k
-> Found btsync-gui.key
==> Validating source files with sha1sums...
btsync-gui-0.8.5-1.tar.gz ... Passed
btsync-gui.key ... Passed
==> Extracting sources...
-> Extracting btsync-gui-0.8.5-1.tar.gz with bsdtar
==> Starting prepare()...
==> Entering fakeroot environment...
==> Starting package()...
==> Tidying install...
-> Removing libtool files...
-> Purging unwanted files...
-> Removing static library files...
-> Stripping unneeded symbols from binaries and libraries...
-> Compressing man and info pages...
==> Checking for packaging issue...
==> Creating package "btsync-gui"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
-> Adding install file...
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: btsync-gui 0.8.5-2 (Fri Apr 22 20:50:43 CDT 2016)
==> Download cower sources
x .SRCINFO
x PKGBUILD
==> Making package: cower 16-1 (Fri Apr 22 20:50:46 CDT 2016)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Downloading cower-16.tar.gz...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0100 26092 100 26092 0 0 111k 0 --:--:-- --:--:-- --:--:-- 111k
-> Downloading cower-16.tar.gz.sig...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0100 287 100 287 0 0 1502 0 --:--:-- --:--:-- --:--:-- 1510
==> Validating source files with md5sums...
cower-16.tar.gz ... Passed
cower-16.tar.gz.sig ... Skipped
==> Verifying source file signatures with gpg...
cower-16.tar.gz ... Passed
==> Extracting sources...
-> Extracting cower-16.tar.gz with bsdtar
==> Starting build()...
==> Entering fakeroot environment...
==> Starting package()...
==> Tidying install...
-> Removing libtool files...
-> Purging unwanted files...
-> Removing static library files...
-> Stripping unneeded symbols from binaries and libraries...
-> Compressing man and info pages...
==> Checking for packaging issue...
==> Creating package "cower"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: cower 16-1 (Fri Apr 22 20:50:48 CDT 2016)
==> Download expac-git sources
x .SRCINFO
x PKGBUILD
==> Making package: expac-git 3.9.g7a73405-1 (Fri Apr 22 20:50:50 CDT 2016)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Cloning expac git repo...
Cloning into bare repository '/home/alex/Apricity-OS/apricity-repo/build/expac-git/expac'...
==> Validating source files with md5sums...
expac ... Skipped
==> Extracting sources...
-> Creating working copy of expac git repo...
Cloning into 'expac'...
done.
==> Starting pkgver()...
==> Updated version: expac-git 6.1.ga410da8-1
==> Starting build()...
==> Entering fakeroot environment...
==> Starting package()...
==> Tidying install...
-> Removing libtool files...
-> Purging unwanted files...
-> Removing static library files...
-> Stripping unneeded symbols from binaries and libraries...
-> Compressing man and info pages...
==> Checking for packaging issue...
==> Creating package "expac-git"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: expac-git 6.1.ga410da8-1 (Fri Apr 22 20:50:55 CDT 2016)
==> Download firefox-extension-shumway sources
x .SRCINFO
x PKGBUILD
==> Making package: firefox-extension-shumway 0.11.622-2 (Fri Apr 22 20:50:58 CDT 2016)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Downloading firefox-extension-shumway-0.11.622.xpi...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0100 557k 100 557k 0 0 2246k 0 --:--:-- --:--:-- --:--:-- 2248k
==> Validating source files with sha1sums...
firefox-extension-shumway-0.11.622.xpi ... Skipped
==> Extracting sources...
==> Starting prepare()...
==> Starting pkgver()...
==> Entering fakeroot environment...
==> Starting package()...
==> Tidying install...
-> Removing libtool files...
-> Purging unwanted files...
-> Removing static library files...
-> Stripping unneeded symbols from binaries and libraries...
-> Compressing man and info pages...
==> Checking for packaging issue...
==> Creating package "firefox-extension-shumway"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: firefox-extension-shumway 0.11.622-2 (Fri Apr 22 20:51:00 CDT 2016)
==> Download google-chrome sources
x .SRCINFO
x PKGBUILD
x google-chrome-stable.sh
x google-chrome.install
==> Making package: google-chrome 50.0.2661.86-1 (Fri Apr 22 20:51:03 CDT 2016)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Downloading google-chrome-stable_50.0.2661.86_amd64.deb...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 4 46.1M 4 1928k 0 0 2569k 0 0:00:18 --:--:-- 0:00:18 2567k 10 46.1M 10 4856k 0 0 2774k 0 0:00:17 0:00:01 0:00:16 2773k 17 46.1M 17 8408k 0 0 3057k 0 0:00:15 0:00:02 0:00:13 3057k 25 46.1M 25 11.7M 0 0 3210k 0 0:00:14 0:00:03 0:00:11 3210k 33 46.1M 33 15.3M 0 0 3299k 0 0:00:14 0:00:04 0:00:10 3299k 40 46.1M 40 18.7M 0 0 3340k 0 0:00:14 0:00:05 0:00:09 3456k 48 46.1M 48 22.2M 0 0 3378k 0 0:00:13 0:00:06 0:00:07 3590k 55 46.1M 55 25.8M 0 0 3411k 0 0:00:13 0:00:07 0:00:06 3606k 63 46.1M 63 29.3M 0 0 3436k 0 0:00:13 0:00:08 0:00:05 3606k 71 46.1M 71 32.9M 0 0 3456k 0 0:00:13 0:00:09 0:00:04 3606k 79 46.1M 79 36.4M 0 0 3473k 0 0:00:13 0:00:10 0:00:03 3625k 86 46.1M 86 39.9M 0 0 3485k 0 0:00:13 0:00:11 0:00:02 3628k 94 46.1M 94 43.5M 0 0 3494k 0 0:00:13 0:00:12 0:00:01 3623k100 46.1M 100 46.1M 0 0 3504k 0 0:00:13 0:00:13 --:--:-- 3630k
-> Downloading eula_text.html...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0100 936 0 936 0 0 3261 0 --:--:-- --:--:-- --:--:-- 3261100 52777 0 52777 0 0 137k 0 --:--:-- --:--:-- --:--:-- 137k
-> Found google-chrome-stable.sh
==> Validating source files with md5sums...
google-chrome-stable_50.0.2661.86_amd64.deb ... Passed
eula_text.html ... Skipped
google-chrome-stable.sh ... Passed
==> Extracting sources...
-> Extracting google-chrome-stable_50.0.2661.86_amd64.deb with bsdtar
==> Entering fakeroot environment...
==> Starting package()...
-> Extracting the data.tar.xz...
-> Moving stuff in place...
-> Fixing Chrome icon resolution...
-> Fixing permissions of documentation folder...
-> Removing unnecessities (e.g. Debian Cron job)...
==> Tidying install...
-> Removing empty directories...
-> Removing libtool files...
-> Purging unwanted files...
-> Removing static library files...
-> Compressing man and info pages...
==> Checking for packaging issue...
==> Creating package "google-chrome"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
-> Adding install file...
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: google-chrome 50.0.2661.86-1 (Fri Apr 22 20:52:29 CDT 2016)
==> Download google-talkplugin sources
x .SRCINFO
x PKGBUILD
==> Making package: google-talkplugin 5.41.0.0-3 (Fri Apr 22 20:52:32 CDT 2016)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Downloading google-talkplugin-license.html...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0100 19818 0 19818 0 0 93812 0 --:--:-- --:--:-- --:--:-- 93924
-> Downloading google-talkplugin-5.41.0.0-1.x86_64.rpm...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 5 7636k 5 428k 0 0 1214k 0 0:00:06 --:--:-- 0:00:06 1211k 43 7636k 43 3298k 0 0 2436k 0 0:00:03 0:00:01 0:00:02 2435k 81 7636k 81 6210k 0 0 2626k 0 0:00:02 0:00:02 --:--:-- 2626k100 7636k 100 7636k 0 0 2745k 0 0:00:02 0:00:02 --:--:-- 2744k
==> Validating source files with sha1sums...
google-talkplugin-license.html ... Skipped
==> Validating source_x86_64 files with sha1sums...
google-talkplugin-5.41.0.0-1.x86_64.rpm ... Passed
==> Extracting sources...
-> Extracting google-talkplugin-5.41.0.0-1.x86_64.rpm with bsdtar
==> Entering fakeroot environment...
==> Starting package()...
==> Tidying install...
-> Removing libtool files...
-> Purging unwanted files...
-> Removing static library files...
-> Stripping unneeded symbols from binaries and libraries...
-> Compressing man and info pages...
==> Checking for packaging issue...
==> Creating package "google-talkplugin"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: google-talkplugin 5.41.0.0-3 (Fri Apr 22 20:52:42 CDT 2016)
==> Download gst-plugin-libde265 sources
x .SRCINFO
x PKGBUILD
==> Making package: gst-plugin-libde265 0.1.12-1 (Fri Apr 22 20:52:45 CDT 2016)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Downloading v0.1.12...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0100 2151k 0 2151k 0 0 1843k 0 --:--:-- 0:00:01 --:--:-- 1843k100 3645k 0 3645k 0 0 2176k 0 --:--:-- 0:00:01 --:--:-- 2175k
-> Cloning common git repo...
Cloning into bare repository '/home/alex/Apricity-OS/apricity-repo/build/gst-plugin-libde265/common'...
==> Validating source files with md5sums...
v0.1.12 ... Passed
common ... Skipped
==> Extracting sources...
-> Extracting v0.1.12 with bsdtar
-> Creating working copy of common git repo...
Cloning into 'common'...
done.
==> Starting build()...
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force
autoreconf: configure.ac: tracing
autoreconf: running: libtoolize --copy --force
autoreconf: running: /usr/bin/autoconf --force
autoreconf: running: /usr/bin/autoheader --force
autoreconf: running: automake --add-missing --copy --force-missing
Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/\${ <-- HERE ([^ \t=:+{}]+)}/ at /usr/bin/automake line 3936.
configure.ac:20: installing './compile'
configure.ac:25: installing './config.guess'
configure.ac:25: installing './config.sub'
configure.ac:14: installing './install-sh'
configure.ac:14: installing './missing'
examples/Makefile.am: installing './depcomp'
src/Makefile.am:3: warning: source file 'common/codec-utils.c' is in a subdirectory,
src/Makefile.am:3: but option 'subdir-objects' is disabled
automake: warning: possible forward-incompatibility.
automake: At least a source file is in a subdirectory, but the 'subdir-objects'
automake: automake option hasn't been enabled. For now, the corresponding output
automake: object file(s) will be placed in the top-level directory. However,
automake: this behaviour will change in future Automake versions: they will
automake: unconditionally cause object files to be placed in the same subdirectory
automake: of the corresponding sources.
automake: You are advised to start using 'subdir-objects' option throughout your
automake: project, to avoid future incompatibilities.
src/Makefile.am:11: warning: source file 'matroska/$(USE_GSTREAMER_VERSION)/ebml-read.c' is in a subdirectory,
src/Makefile.am:11: but option 'subdir-objects' is disabled
src/Makefile.am:11: warning: source file 'matroska/$(USE_GSTREAMER_VERSION)/lzo.c' is in a subdirectory,
src/Makefile.am:11: but option 'subdir-objects' is disabled
src/Makefile.am:11: warning: source file 'matroska/$(USE_GSTREAMER_VERSION)/matroska-demux.c' is in a subdirectory,
src/Makefile.am:11: but option 'subdir-objects' is disabled
src/Makefile.am:11: warning: source file 'matroska/$(USE_GSTREAMER_VERSION)/matroska-ids.c' is in a subdirectory,
src/Makefile.am:11: but option 'subdir-objects' is disabled
src/Makefile.am:11: warning: source file 'matroska/$(USE_GSTREAMER_VERSION)/matroska-parse.c' is in a subdirectory,
src/Makefile.am:11: but option 'subdir-objects' is disabled
src/Makefile.am:11: warning: source file 'matroska/$(USE_GSTREAMER_VERSION)/matroska-read-common.c' is in a subdirectory,
src/Makefile.am:11: but option 'subdir-objects' is disabled
src/Makefile.am:28: warning: source file 'isomp4/$(USE_GSTREAMER_VERSION)/isomp4-plugin.c' is in a subdirectory,
src/Makefile.am:28: but option 'subdir-objects' is disabled
src/Makefile.am:28: warning: source file 'isomp4/$(USE_GSTREAMER_VERSION)/qtdemux.c' is in a subdirectory,
src/Makefile.am:28: but option 'subdir-objects' is disabled
src/Makefile.am:28: warning: source file 'isomp4/$(USE_GSTREAMER_VERSION)/qtdemux_types.c' is in a subdirectory,
src/Makefile.am:28: but option 'subdir-objects' is disabled
src/Makefile.am:28: warning: source file 'isomp4/$(USE_GSTREAMER_VERSION)/qtdemux_dump.c' is in a subdirectory,
src/Makefile.am:28: but option 'subdir-objects' is disabled
src/Makefile.am:28: warning: source file 'isomp4/$(USE_GSTREAMER_VERSION)/qtdemux_lang.c' is in a subdirectory,
src/Makefile.am:28: but option 'subdir-objects' is disabled
src/Makefile.am:28: warning: source file 'isomp4/$(USE_GSTREAMER_VERSION)/atoms.c' is in a subdirectory,
src/Makefile.am:28: but option 'subdir-objects' is disabled
src/Makefile.am:28: warning: source file 'isomp4/$(USE_GSTREAMER_VERSION)/atomsrecovery.c' is in a subdirectory,
src/Makefile.am:28: but option 'subdir-objects' is disabled
src/Makefile.am:28: warning: source file 'isomp4/$(USE_GSTREAMER_VERSION)/descriptors.c' is in a subdirectory,
src/Makefile.am:28: but option 'subdir-objects' is disabled
src/Makefile.am:28: warning: source file 'isomp4/$(USE_GSTREAMER_VERSION)/properties.c' is in a subdirectory,
src/Makefile.am:28: but option 'subdir-objects' is disabled
autoreconf: Leaving directory `.'
timehevc.c: In function ‘process_get_cpu_stats’:
timehevc.c:145:3: warning: ignoring return value of ‘fscanf’, declared with attribute warn_unused_result [-Wunused-result]
fscanf (fp, "%*d %*s %*c %*d %*d %*d %*d %*d %*u %*u %*u %*u %*u %lu %lu",
^
==> Entering fakeroot environment...
==> Starting package()...
libtool: warning: remember to run 'libtool --finish /usr/lib/gstreamer-1.0'
==> Tidying install...
-> Removing libtool files...
-> Purging unwanted files...
-> Removing static library files...
-> Stripping unneeded symbols from binaries and libraries...
-> Compressing man and info pages...
==> Checking for packaging issue...
==> Creating package "gst-plugin-libde265"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: gst-plugin-libde265 0.1.12-1 (Fri Apr 22 20:53:03 CDT 2016)
==> Download kpmcore-git sources
x .SRCINFO
x .gitignore
x PKGBUILD
==> Making package: kpmcore-git 2.0.0.r68.f69254f-1 (Fri Apr 22 20:53:06 CDT 2016)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Cloning kpmcore git repo...
Cloning into bare repository '/home/alex/Apricity-OS/apricity-repo/build/kpmcore-git/kpmcore'...
==> Validating source files with sha1sums...
kpmcore ... Skipped
==> Extracting sources...
-> Creating working copy of kpmcore git repo...
Cloning into 'kpmcore'...
done.
==> Starting prepare()...
==> Starting pkgver()...
==> Updated version: kpmcore-git 2.1.1.r102.f7ff5f2-1
==> Starting build()...
CMake Deprecation Warning at /usr/share/ECM/kde-modules/KDEInstallDirs.cmake:311 (message):
LIB_INSTALL_DIR is deprecated, use KDE_INSTALL_LIBDIR instead.
Call Stack (most recent call first):
/usr/share/ECM/kde-modules/KDEInstallDirs.cmake:405 (_define_relative)
CMakeLists.txt:35 (include)
CMake Deprecation Warning at /usr/lib64/cmake/KF5CoreAddons/KF5CoreAddonsMacros.cmake:60 (message):
Calling kcoreaddons_desktop_to_json() without DEFAULT_SERVICE_TYPE or
SERVICE_TYPES is deprecated!
Call Stack (most recent call first):
src/plugins/libparted/CMakeLists.txt:35 (kcoreaddons_desktop_to_json)
CMake Deprecation Warning at /usr/lib64/cmake/KF5CoreAddons/KF5CoreAddonsMacros.cmake:60 (message):
Calling kcoreaddons_desktop_to_json() without DEFAULT_SERVICE_TYPE or
SERVICE_TYPES is deprecated!
Call Stack (most recent call first):
src/plugins/dummy/CMakeLists.txt:23 (kcoreaddons_desktop_to_json)
==> Entering fakeroot environment...
==> Starting package()...
==> Tidying install...
-> Removing libtool files...
-> Purging unwanted files...
-> Removing static library files...
-> Stripping unneeded symbols from binaries and libraries...
-> Compressing man and info pages...
==> Checking for packaging issue...
==> Creating package "kpmcore-git"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: kpmcore-git 2.1.1.r102.f7ff5f2-1 (Fri Apr 22 20:55:10 CDT 2016)
==> Download libde265 sources
x .SRCINFO
x .gitignore
x PKGBUILD
==> Making package: libde265 1.0.2-2 (Fri Apr 22 20:55:13 CDT 2016)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Downloading v1.0.2.tar.gz...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0100 127 0 127 0 0 531 0 --:--:-- --:--:-- --:--:-- 533
100 372k 0 372k 0 0 432k 0 --:--:-- --:--:-- --:--:-- 432k
==> Validating source files with md5sums...
v1.0.2.tar.gz ... Passed
==> Extracting sources...
-> Extracting v1.0.2.tar.gz with bsdtar
==> Starting prepare()...
==> Starting build()...
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
autoreconf: configure.ac: tracing
autoreconf: running: libtoolize --copy --force
autoreconf: running: /usr/bin/autoconf --force
autoreconf: running: /usr/bin/autoheader --force
autoreconf: running: automake --add-missing --copy --force-missing
Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/\${ <-- HERE ([^ \t=:+{}]+)}/ at /usr/bin/automake line 3936.
configure.ac:25: installing './compile'
configure.ac:18: installing './config.guess'
configure.ac:18: installing './config.sub'
configure.ac:32: installing './install-sh'
configure.ac:37: installing './missing'
Makefile.am: installing './INSTALL'
dec265/Makefile.am: installing './depcomp'
autoreconf: Leaving directory `.'
ar: `u' modifier ignored since `D' is the default (see `U')
ar: `u' modifier ignored since `D' is the default (see `U')
ar: `u' modifier ignored since `D' is the default (see `U')
ar: `u' modifier ignored since `D' is the default (see `U')
ar: `u' modifier ignored since `D' is the default (see `U')
rd_curves-rd-curves.o: In function `Encoder_HM::encode(Preset const&, int) const':
rd-curves.cc:(.text+0x53e9): warning: the use of `mktemp' is dangerous, better use `mkstemp' or `mkdtemp'
==> Entering fakeroot environment...
==> Starting package()...
libtool: warning: remember to run 'libtool --finish /usr/lib'
libtool: warning: '../libde265/libde265.la' has not been installed in '/usr/lib'
libtool: warning: '../libde265/libde265.la' has not been installed in '/usr/lib'
libtool: warning: '../libde265/libde265.la' has not been installed in '/usr/lib'
libtool: warning: '../libde265/libde265.la' has not been installed in '/usr/lib'
libtool: warning: '../libde265/libde265.la' has not been installed in '/usr/lib'
libtool: warning: '../libde265/libde265.la' has not been installed in '/usr/lib'
libtool: warning: '../libde265/libde265.la' has not been installed in '/usr/lib'
libtool: warning: '../libde265/libde265.la' has not been installed in '/usr/lib'
libtool: warning: '../libde265/libde265.la' has not been installed in '/usr/lib'
libtool: warning: '../libde265/libde265.la' has not been installed in '/usr/lib'
==> Tidying install...
-> Removing libtool files...
-> Purging unwanted files...
-> Removing static library files...
-> Stripping unneeded symbols from binaries and libraries...
-> Compressing man and info pages...
==> Checking for packaging issue...
==> Creating package "libde265"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: libde265 1.0.2-2 (Fri Apr 22 20:57:00 CDT 2016)
==> Download libtimezonemap sources
x .SRCINFO
x PKGBUILD
==> Making package: libtimezonemap 0.4.1-1 (Fri Apr 22 20:57:02 CDT 2016)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Downloading libtimezonemap_0.4.1.tar.gz...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:02 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0
1 2452k 1 30149 0 0 6832 0 0:06:07 0:00:04 0:06:03 6832 3 2452k 3 78149 0 0 14251 0 0:02:56 0:00:05 0:02:51 44859 4 2452k 4 107k 0 0 17159 0 0:02:26 0:00:06 0:02:20 39880 4 2452k 4 115k 0 0 15068 0 0:02:46 0:00:07 0:02:39 25670 5 2452k 5 131k 0 0 15762 0 0:02:39 0:00:08 0:02:31 25378 6 2452k 6 154k 0 0 16546 0 0:02:31 0:00:09 0:02:22 24883 7 2452k 7 177k 0 0 17537 0 0:02:23 0:00:10 0:02:13 21211 7 2452k 7 185k 0 0 16533 0 0:02:31 0:00:11 0:02:20 15744 8 2452k 8 209k 0 0 17280 0 0:02:25 0:00:12 0:02:13 21089 8 2452k 8 216k 0 0 15708 0 0:02:39 0:00:14 0:02:25 15627 8 2452k 8 216k 0 0 14669 0 0:02:51 0:00:15 0:02:36 11459 9 2452k 9 224k 0 0 14888 0 0:02:48 0:00:15 0:02:33 9463 9 2452k 9 240k 0 0 14910 0 0:02:48 0:00:16 0:02:32 11184 10 2452k 10 256k 0 0 14917 0 0:02:48 0:00:17 0:02:31 9266 11 2452k 11 279k 0 0 15367 0 0:02:43 0:00:18 0:02:25 14292 12 2452k 12 295k 0 0 15609 0 0:02:40 0:00:19 0:02:21 18984 12 2452k 12 318k 0 0 15979 0 0:02:37 0:00:20 0:02:17 19386 13 2452k 13 326k 0 0 15653 0 0:02:40 0:00:21 0:02:19 18185 14 2452k 14 365k 0 0 16700 0 0:02:30 0:00:22 0:02:08 23188 15 2452k 15 388k 0 0 17026 0 0:02:27 0:00:23 0:02:04 23504 16 2452k 16 412k 0 0 17265 0 0:02:25 0:00:24 0:02:01 23561 17 2452k 17 427k 0 0 16869 0 0:02:28 0:00:25 0:02:03 20140 17 2452k 17 427k 0 0 16243 0 0:02:34 0:00:26 0:02:08 18485 17 2452k 17 435k 0 0 16102 0 0:02:35 0:00:27 0:02:08 13574 18 2452k 18 459k 0 0 16417 0 0:02:32 0:00:28 0:02:04 13709 19 2452k 19 474k 0 0 16549 0 0:02:31 0:00:29 0:02:02 12994 20 2452k 20 498k 0 0 16769 0 0:02:29 0:00:30 0:01:59 16183 20 2452k 20 513k 0 0 16683 0 0:02:30 0:00:31 0:01:59 19281 21 2452k 21 537k 0 0 16900 0 0:02:28 0:00:32 0:01:56 21465 22 2452k 22 552k 0 0 16938 0 0:02:28 0:00:33 0:01:55 20054 23 2452k 23 576k 0 0 17127 0 0:02:26 0:00:34 0:01:52 20468 24 2452k 24 591k 0 0 17082 0 0:02:27 0:00:35 0:01:52 18961 24 2452k 24 607k 0 0 16773 0 0:02:29 0:00:37 0:01:52 17281 25 2452k 25 615k 0 0 16853 0 0:02:29 0:00:37 0:01:52 16539 26 2452k 26 638k 0 0 17052 0 0:02:27 0:00:38 0:01:49 17820 27 2452k 27 662k 0 0 17194 0 0:02:26 0:00:39 0:01:47 17660 27 2452k 27 677k 0 0 17173 0 0:02:26 0:00:40 0:01:46 17828 28 2452k 28 701k 0 0 17258 0 0:02:25 0:00:41 0:01:44 21234 29 2452k 29 724k 0 0 17391 0 0:02:24 0:00:42 0:01:42 21200 30 2452k 30 740k 0 0 17351 0 0:02:24 0:00:43 0:01:41 19501 30 2452k 30 748k 0 0 17239 0 0:02:25 0:00:44 0:01:41 17589 31 2452k 31 771k 0 0 17381 0 0:02:24 0:00:45 0:01:39 19055 32 2452k 32 787k 0 0 17290 0 0:02:25 0:00:46 0:01:39 17564 32 2452k 32 795k 0 0 17071 0 0:02:27 0:00:47 0:01:40 14345 33 2452k 33 810k 0 0 17140 0 0:02:26 0:00:48 0:01:38 15189 33 2452k 33 826k 0 0 17006 0 0:02:27 0:00:49 0:01:38 15063 34 2452k 34 841k 0 0 17080 0 0:02:27 0:00:50 0:01:37 14348 34 2452k 34 857k 0 0 17073 0 0:02:27 0:00:51 0:01:36 14965 35 2452k 35 881k 0 0 17217 0 0:02:25 0:00:52 0:01:33 18695 36 2452k 36 896k 0 0 17201 0 0:02:26 0:00:53 0:01:33 17795 37 2452k 37 927k 0 0 17484 0 0:02:23 0:00:54 0:01:29 22672 38 2452k 38 935k 0 0 17290 0 0:02:25 0:00:55 0:01:30 19445 38 2452k 38 951k 0 0 17272 0 0:02:25 0:00:56 0:01:29 19331 39 2452k 39 966k 0 0 17212 0 0:02:25 0:00:57 0:01:28 17160 39 2452k 39 974k 0 0 16885 0 0:02:28 0:00:59 0:01:29 13949 40 2452k 40 982k 0 0 16860 0 0:02:28 0:00:59 0:01:29 10502 41 2452k 41 1006k 0 0 17051 0 0:02:27 0:01:00 0:01:27 14400 42 2452k 42 1037k 0 0 17148 0 0:02:26 0:01:01 0:01:25 15884 42 2452k 42 1045k 0 0 17158 0 0:02:26 0:01:02 0:01:24 16515 43 2452k 43 1060k 0 0 17125 0 0:02:26 0:01:03 0:01:23 20417 44 2452k 44 1084k 0 0 17037 0 0:02:27 0:01:05 0:01:22 18964 44 2452k 44 1091k 0 0 17009 0 0:02:27 0:01:05 0:01:22 16528 45 2452k 45 1107k 0 0 17064 0 0:02:27 0:01:06 0:01:21 15908 46 2452k 46 1131k 0 0 17180 0 0:02:26 0:01:07 0:01:19 17460 47 2452k 47 1154k 0 0 17272 0 0:02:25 0:01:08 0:01:17 19134 48 2452k 48 1177k 0 0 17328 0 0:02:24 0:01:09 0:01:15 21582 48 2452k 48 1201k 0 0 17464 0 0:02:23 0:01:10 0:01:13 23824 50 2452k 50 1232k 0 0 17651 0 0:02:22 0:01:11 0:01:11 25411 50 2452k 50 1240k 0 0 17534 0 0:02:23 0:01:12 0:01:11 22279 51 2452k 51 1263k 0 0 17584 0 0:02:22 0:01:13 0:01:09 21713 52 2452k 52 1279k 0 0 17577 0 0:02:22 0:01:14 0:01:08 21086 53 2452k 53 1302k 0 0 17676 0 0:02:22 0:01:15 0:01:07 20643 54 2452k 54 1326k 0 0 17772 0 0:02:21 0:01:16 0:01:05 19524 55 2452k 55 1349k 0 0 17842 0 0:02:20 0:01:17 0:01:03 22279 55 2452k 55 1373k 0 0 17933 0 0:02:20 0:01:18 0:01:02 23275 56 2452k 56 1396k 0 0 17994 0 0:02:19 0:01:19 0:01:00 24281 57 2452k 57 1420k 0 0 18035 0 0:02:19 0:01:20 0:00:59 23305 58 2452k 58 1435k 0 0 18066 0 0:02:19 0:01:21 0:00:58 22598 58 2452k 58 1443k 0 0 17804 0 0:02:21 0:01:23 0:00:58 17272 59 2452k 59 1451k 0 0 17775 0 0:02:21 0:01:23 0:00:58 15402 59 2452k 59 1459k 0 0 17695 0 0:02:21 0:01:24 0:00:57 12903 60 2452k 60 1482k 0 0 17715 0 0:02:21 0:01:25 0:00:56 12620 61 2452k 61 1506k 0 0 17781 0 0:02:21 0:01:26 0:00:55 13442 61 2452k 61 1513k 0 0 17746 0 0:02:21 0:01:27 0:00:54 16639 62 2452k 62 1537k 0 0 17746 0 0:02:21 0:01:28 0:00:53 17265 62 2452k 62 1545k 0 0 17670 0 0:02:22 0:01:29 0:00:53 17271 63 2452k 63 1568k 0 0 17731 0 0:02:21 0:01:30 0:00:51 18010 64 2452k 64 1591k 0 0 17834 0 0:02:20 0:01:31 0:00:49 18819 65 2452k 65 1607k 0 0 17768 0 0:02:21 0:01:32 0:00:49 18140 66 2452k 66 1631k 0 0 17824 0 0:02:20 0:01:33 0:00:47 19215 67 2452k 67 1646k 0 0 17871 0 0:02:20 0:01:34 0:00:46 21612 69 2452k 69 1693k 0 0 18186 0 0:02:18 0:01:35 0:00:43 26828 72 2452k 72 1771k 0 0 18821 0 0:02:13 0:01:36 0:00:37 36940 76 2452k 76 1881k 0 0 19778 0 0:02:06 0:01:37 0:00:29 59034 81 2452k 81 2006k 0 0 20888 0 0:02:00 0:01:38 0:00:22 82705 89 2452k 89 2185k 0 0 22525 0 0:01:51 0:01:39 0:00:12 107k100 2452k 100 2452k 0 0 25064 0 0:01:40 0:01:40 --:--:-- 156k
==> Validating source files with sha512sums...
libtimezonemap_0.4.1.tar.gz ... Passed
==> Extracting sources...
-> Extracting libtimezonemap_0.4.1.tar.gz with bsdtar
==> Starting build()...
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4 ${ACLOCAL_FLAGS}
autoreconf: configure.ac: tracing
autoreconf: configure.ac: creating directory build-aux
autoreconf: running: libtoolize --copy --force
autoreconf: running: /usr/bin/autoconf --force
autoreconf: running: /usr/bin/autoheader --force
autoreconf: running: automake --add-missing --copy --force-missing
Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/\${ <-- HERE ([^ \t=:+{}]+)}/ at /usr/bin/automake line 3936.
configure.ac:21: installing 'build-aux/compile'
configure.ac:27: installing 'build-aux/config.guess'
configure.ac:27: installing 'build-aux/config.sub'
configure.ac:15: installing 'build-aux/install-sh'
configure.ac:15: installing 'build-aux/missing'
/usr/share/automake-1.15/am/ltlibrary.am: warning: 'libtimezonemap.la': linking libtool libraries using a non-POSIX
/usr/share/automake-1.15/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
src/Makefile.am:77: while processing Libtool library 'libtimezonemap.la'
src/Makefile.am: installing 'build-aux/depcomp'
autoreconf: Leaving directory `.'
configure: WARNING: unrecognized options: --with-gtk
configure: WARNING: unrecognized options: --with-gtk
cc-timezone-map.c: In function ‘cc_timezone_map_realize’:
cc-timezone-map.c:700:3: warning: ‘gdk_cursor_new’ is deprecated [-Wdeprecated-declarations]
cursor = gdk_cursor_new (GDK_HAND2);
^
In file included from /usr/include/gtk-3.0/gdk/gdk.h:34:0,
from /usr/include/gtk-3.0/gtk/gtk.h:30,
from cc-timezone-map.h:26,
from cc-timezone-map.c:26:
/usr/include/gtk-3.0/gdk/gdkcursor.h:228:12: note: declared here
GdkCursor* gdk_cursor_new (GdkCursorType cursor_type);
^
cc-timezone-map.c: In function ‘cc_timezone_map_draw’:
cc-timezone-map.c:760:3: warning: ‘gtk_widget_get_style’ is deprecated: Use 'gtk_widget_get_style_context' instead [-Wdeprecated-declarations]
style = gtk_widget_get_style (widget);
^
In file included from /usr/include/gtk-3.0/gtk/gtk.h:270:0,
from cc-timezone-map.h:26,
from cc-timezone-map.c:26:
/usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h:742:13: note: declared here
GtkStyle * gtk_widget_get_style (GtkWidget *widget);
^
cc-timezone-map.c:763:3: warning: ‘gtk_widget_get_state’ is deprecated: Use 'gtk_widget_get_state_flags' instead [-Wdeprecated-declarations]
if (gtk_widget_get_state (widget) == GTK_STATE_INSENSITIVE)
^
In file included from /usr/include/gtk-3.0/gtk/gtkapplication.h:27:0,
from /usr/include/gtk-3.0/gtk/gtkwindow.h:33,
from /usr/include/gtk-3.0/gtk/gtkdialog.h:32,
from /usr/include/gtk-3.0/gtk/gtkaboutdialog.h:30,
from /usr/include/gtk-3.0/gtk/gtk.h:31,
from cc-timezone-map.h:26,
from cc-timezone-map.c:26:
/usr/include/gtk-3.0/gtk/gtkwidget.h:827:23: note: declared here
GtkStateType gtk_widget_get_state (GtkWidget *widget);
^
cc-timezone-map.c:767:3: warning: ‘gdk_cairo_set_source_color’ is deprecated: Use 'gdk_cairo_set_source_rgba' instead [-Wdeprecated-declarations]
gdk_cairo_set_source_color (cr, &style->bg[gtk_widget_get_state (widget)]);
^
In file included from /usr/include/gtk-3.0/gdk/gdk.h:33:0,
from /usr/include/gtk-3.0/gtk/gtk.h:30,
from cc-timezone-map.h:26,
from cc-timezone-map.c:26:
/usr/include/gtk-3.0/gdk/gdkcairo.h:66:12: note: declared here
void gdk_cairo_set_source_color (cairo_t *cr,
^
cc-timezone-map.c:767:3: warning: ‘gtk_widget_get_state’ is deprecated: Use 'gtk_widget_get_state_flags' instead [-Wdeprecated-declarations]
gdk_cairo_set_source_color (cr, &style->bg[gtk_widget_get_state (widget)]);
^
In file included from /usr/include/gtk-3.0/gtk/gtkapplication.h:27:0,
from /usr/include/gtk-3.0/gtk/gtkwindow.h:33,
from /usr/include/gtk-3.0/gtk/gtkdialog.h:32,
from /usr/include/gtk-3.0/gtk/gtkaboutdialog.h:30,
from /usr/include/gtk-3.0/gtk/gtk.h:31,
from cc-timezone-map.h:26,
from cc-timezone-map.c:26:
/usr/include/gtk-3.0/gtk/gtkwidget.h:827:23: note: declared here
GtkStateType gtk_widget_get_state (GtkWidget *widget);
^
tz.c: In function ‘cc_timezone_location_set_property’:
tz.c:129:21: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
priv->country = g_value_get_string(value);
^
tz.c:132:26: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
priv->full_country = g_value_get_string(value);
^
tz.c:135:21: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
priv->en_name = g_value_get_string(value);
^
tz.c:138:19: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
priv->state = g_value_get_string(value);
^
tz.c:147:18: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
priv->zone = g_value_get_string(value);
^
tz.c:150:21: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
priv->comment = g_value_get_string(value);
^
test-timezone.c: In function ‘main’:
test-timezone.c:25:2: warning: ‘g_type_init’ is deprecated [-Wdeprecated-declarations]
g_type_init();
^
In file included from /usr/include/glib-2.0/gobject/gobject.h:24:0,
from /usr/include/glib-2.0/gobject/gbinding.h:29,
from /usr/include/glib-2.0/glib-object.h:23,
from tz.h:30,
from test-timezone.c:4:
/usr/include/glib-2.0/gobject/gtype.h:681:23: note: declared here
void g_type_init (void);
^
tz.c: In function ‘cc_timezone_location_set_property’:
tz.c:129:21: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
priv->country = g_value_get_string(value);
^
tz.c:132:26: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
priv->full_country = g_value_get_string(value);
^
tz.c:135:21: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
priv->en_name = g_value_get_string(value);
^
tz.c:138:19: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
priv->state = g_value_get_string(value);
^
tz.c:147:18: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
priv->zone = g_value_get_string(value);
^
tz.c:150:21: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
priv->comment = g_value_get_string(value);
^
In file included from /usr/include/limits.h:25:0,
from /usr/lib/gcc/x86_64-unknown-linux-gnu/5.3.0/include-fixed/limits.h:168,
from /usr/lib/gcc/x86_64-unknown-linux-gnu/5.3.0/include-fixed/syslimits.h:7,
from /usr/lib/gcc/x86_64-unknown-linux-gnu/5.3.0/include-fixed/limits.h:34,
from /usr/lib/glib-2.0/include/glibconfig.h:11,
from /usr/include/glib-2.0/glib/gtypes.h:32,
from /usr/include/glib-2.0/glib/galloca.h:32,
from /usr/include/glib-2.0/glib.h:30,
from /usr/include/gtk-3.0/gdk/gdkconfig.h:13,
from /usr/include/gtk-3.0/gdk/gdk.h:30,
from /usr/include/gtk-3.0/gtk/gtk.h:30,
from /home/alex/Apricity-OS/apricity-repo/build/libtimezonemap/src/libtimezonemap-0.4.1/src/cc-timezone-map.h:26,
from /tmp/g-ir-cpp-7w47evf_.c:4:
/usr/include/features.h:331:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
# warning _FORTIFY_SOURCE requires compiling with optimization (-O)
^
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
==> Entering fakeroot environment...
==> Starting package()...
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
** Message: File 'timezone_8.5.png' missing for zone 'Asia/Pyongyang'
libtool: warning: remember to run 'libtool --finish /usr/lib'
==> Tidying install...
-> Removing libtool files...
-> Purging unwanted files...
-> Removing static library files...
-> Stripping unneeded symbols from binaries and libraries...
-> Compressing man and info pages...
==> Checking for packaging issue...
==> Creating package "libtimezonemap"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: libtimezonemap 0.4.1-1 (Fri Apr 22 20:58:56 CDT 2016)
==> Download otter-browser sources
x .SRCINFO
x PKGBUILD
x otter.install
==> Making package: otter-browser 0.9.09-1 (Fri Apr 22 20:58:59 CDT 2016)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Downloading otter-browser-0.9.09.tar.gz...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0100 135 0 135 0 0 609 0 --:--:-- --:--:-- --:--:-- 610
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0100 2151k 0 2151k 0 0 1483k 0 --:--:-- 0:00:01 --:--:-- 2151k100 3122k 0 3122k 0 0 1756k 0 --:--:-- 0:00:01 --:--:-- 2353k
==> Validating source files with md5sums...
otter-browser-0.9.09.tar.gz ... Passed
==> Extracting sources...
-> Extracting otter-browser-0.9.09.tar.gz with bsdtar
==> Starting build()...
==> Entering fakeroot environment...
==> Starting package()...
==> Tidying install...
-> Removing libtool files...
-> Purging unwanted files...
-> Removing static library files...
-> Stripping unneeded symbols from binaries and libraries...
-> Compressing man and info pages...
==> Checking for packaging issue...
==> Creating package "otter-browser"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
-> Adding install file...
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: otter-browser 0.9.09-1 (Fri Apr 22 21:02:23 CDT 2016)
==> Download pacaur sources
x .SRCINFO
x PKGBUILD
==> Making package: pacaur 4.6.3-1 (Fri Apr 22 21:02:26 CDT 2016)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Downloading 4.6.3.tar.gz...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0100 122 0 122 0 0 553 0 --:--:-- --:--:-- --:--:-- 554
100 68937 100 68937 0 0 127k 0 --:--:-- --:--:-- --:--:-- 127k
==> Validating source files with md5sums...
4.6.3.tar.gz ... Passed
==> Extracting sources...
-> Extracting 4.6.3.tar.gz with bsdtar
==> Starting build()...
==> Entering fakeroot environment...
==> Starting package()...
==> Tidying install...
-> Removing libtool files...
-> Purging unwanted files...
-> Removing static library files...
-> Stripping unneeded symbols from binaries and libraries...
-> Compressing man and info pages...
==> Checking for packaging issue...
==> Creating package "pacaur"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: pacaur 4.6.3-1 (Fri Apr 22 21:02:27 CDT 2016)
==> Download package-query-git sources
x .SRCINFO
x PKGBUILD
==> Making package: package-query-git 1.8.r23.gf3d29a1-1 (Fri Apr 22 21:02:30 CDT 2016)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Cloning package-query git repo...
Cloning into bare repository '/home/alex/Apricity-OS/apricity-repo/build/package-query-git/package-query'...
==> Validating source files with md5sums...
package-query ... Skipped
==> Extracting sources...
-> Creating working copy of package-query git repo...
Cloning into 'package-query'...
done.
==> Starting pkgver()...
==> Updated version: package-query-git 1.8.r60.g3e78858-1
==> Starting build()...
+ libtoolize
+ aclocal -I m4 --install
aclocal: installing 'm4/gettext.m4' from '/usr/share/aclocal/gettext.m4'
aclocal: installing 'm4/iconv.m4' from '/usr/share/aclocal/iconv.m4'
aclocal: installing 'm4/intlmacosx.m4' from '/usr/share/aclocal/intlmacosx.m4'
aclocal: installing 'm4/lib-ld.m4' from '/usr/share/aclocal/lib-ld.m4'
aclocal: installing 'm4/lib-link.m4' from '/usr/share/aclocal/lib-link.m4'
aclocal: installing 'm4/lib-prefix.m4' from '/usr/share/aclocal/lib-prefix.m4'
aclocal: installing 'm4/libcurl.m4' from '/usr/share/aclocal/libcurl.m4'
aclocal: installing 'm4/nls.m4' from '/usr/share/aclocal/nls.m4'
aclocal: installing 'm4/pkg.m4' from '/usr/share/aclocal/pkg.m4'
aclocal: installing 'm4/po.m4' from '/usr/share/aclocal/po.m4'
aclocal: installing 'm4/progtest.m4' from '/usr/share/aclocal/progtest.m4'
+ autoheader
+ automake --foreign --add-missing
Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/\${ <-- HERE ([^ \t=:+{}]+)}/ at /usr/bin/automake line 3936.
configure.ac:13: installing './compile'
configure.ac:14: installing './config.guess'
configure.ac:14: installing './config.sub'
configure.ac:6: installing './install-sh'
configure.ac:6: installing './missing'
src/Makefile.am: installing './depcomp'
+ autoconf
==> Entering fakeroot environment...
==> Starting package()...
==> Tidying install...
-> Removing libtool files...
-> Purging unwanted files...
-> Removing static library files...
-> Stripping unneeded symbols from binaries and libraries...
-> Compressing man and info pages...
==> Checking for packaging issue...
==> Creating package "package-query-git"...
-> Generating .PKGINFO file...