-
Notifications
You must be signed in to change notification settings - Fork 0
/
emerge-stage3.txt
3895 lines (3456 loc) · 184 KB
/
emerge-stage3.txt
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
* Package: sys-apps/debianutils-4.8.6
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc installkernel kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying debianutils-3.4.2-no-bs-namespace.patch ...
* Final size of build directory: 1740 KiB (1.6 MiB)
* Final size of installed tree: 192 KiB
* Messages for package app-arch/gzip-1.9:
* Package: app-arch/gzip-1.9
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying gzip-1.3.8-install-symlinks.patch ...
* Final size of build directory: 7952 KiB (7.7 MiB)
* Final size of installed tree: 496 KiB
* Messages for package dev-libs/ustr-1.0.4-r8:
* Package: dev-libs/ustr-1.0.4-r8
* Repository: gentoo
* Maintainer: yamakuzure@gmx.net proxy-maint@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying ustr-1.0.4-gcc_5-check.patch ...
* Applying ustr-1.0.4-build-libs.patch ...
* Will copy sources from /var/tmp/portage/dev-libs/ustr-1.0.4-r8/work/ustr-1.0.4
* abi_x86_64.amd64: copying to /var/tmp/portage/dev-libs/ustr-1.0.4-r8/work/ustr-1.0.4-abi_x86_64.amd64
* abi_x86_64.amd64: running multilib-minimal_abi_src_configure
* abi_x86_64.amd64: running multilib-minimal_abi_src_compile
* abi_x86_64.amd64: running multilib-minimal_abi_src_install
* Final size of build directory: 5724 KiB (5.5 MiB)
* Final size of installed tree: 1344 KiB (1.3 MiB)
* Messages for package app-text/manpager-1:
* Package: app-text/manpager-1
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 16 KiB
* Final size of installed tree: 36 KiB
* Messages for package app-crypt/openpgp-keys-gentoo-release-20180706:
* Package: app-crypt/openpgp-keys-gentoo-release-20180706
* Repository: gentoo
* Maintainer: mgorny@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 52 KiB
* Final size of installed tree: 64 KiB
* Messages for package net-libs/libmnl-1.0.4:
* Package: net-libs/libmnl-1.0.4
* Repository: gentoo
* Maintainer: netmon@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Removing unnecessary /usr/lib64/libmnl.la (no static archive)
* Final size of build directory: 2544 KiB (2.4 MiB)
* Final size of installed tree: 92 KiB
* Messages for package sys-apps/install-xattr-0.5-r1:
* Package: sys-apps/install-xattr-0.5-r1
* Repository: gentoo
* Maintainer: blueness@gentoo.org base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 88 KiB
* Final size of installed tree: 28 KiB
* Messages for package sys-apps/baselayout-2.6:
* Package: sys-apps/baselayout-2.6
* Repository: gentoo
* Maintainer: williamh@gentoo.org base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux split-usr userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 220 KiB
* Final size of installed tree: 168 KiB
* You should reboot now to get /run mounted with tmpfs!
* Messages for package sys-apps/which-2.21:
* Package: sys-apps/which-2.21
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 904 KiB
* Final size of installed tree: 112 KiB
* Messages for package sys-libs/ncurses-6.1-r3:
* Package: sys-libs/ncurses-6.1-r3
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 cxx elibc_glibc kernel_linux unicode userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying ncurses-6.0-gfbsd.patch ...
* Applying ncurses-5.7-nongnu.patch ...
* Applying ncurses-6.0-rxvt-unicode-9.15.patch ...
* Applying ncurses-6.0-pkg-config.patch ...
* Applying ncurses-5.9-gcc-5.patch ...
* Applying ncurses-6.0-ticlib.patch ...
* Applying ncurses-6.0-cppflags-cross.patch ...
* Applying ncurses-6.1-st07_terminfo_typo.patch ...
* abi_x86_64.amd64: running multilib-minimal_abi_src_configure
* abi_x86_64.amd64: running multilib-minimal_abi_src_compile
* abi_x86_64.amd64: running multilib-minimal_abi_src_install
* Installing basic terminfo files in /etc...
* Final size of build directory: 36408 KiB (35.5 MiB)
* Final size of installed tree: 12032 KiB (11.7 MiB)
* Messages for package app-arch/unzip-6.0_p21-r2:
* Package: app-arch/unzip-6.0_p21-r2
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 bzip2 elibc_glibc kernel_linux unicode userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying 01-manpages-in-section-1-not-in-section-1l.patch ...
* Applying 03-include-unistd-for-kfreebsd.patch ...
* Applying 04-handle-pkware-verification-bit.patch ...
* Applying 05-fix-uid-gid-handling.patch ...
* Applying 06-initialize-the-symlink-flag.patch ...
* Applying 07-increase-size-of-cfactorstr.patch ...
* Applying 08-allow-greater-hostver-values.patch ...
* Applying 09-cve-2014-8139-crc-overflow.patch ...
* Applying 10-cve-2014-8140-test-compr-eb.patch ...
* Applying 11-cve-2014-8141-getzip64data.patch ...
* Applying 12-cve-2014-9636-test-compr-eb.patch ...
* Applying 13-remove-build-date.patch ...
* Applying 14-cve-2015-7696.patch ...
* Applying 15-cve-2015-7697.patch ...
* Applying 16-fix-integer-underflow-csiz-decrypted.patch ...
* Applying 17-restore-unix-timestamps-accurately.patch ...
* Applying 18-cve-2014-9913-unzip-buffer-overflow.patch ...
* Applying 19-cve-2016-9844-zipinfo-buffer-overflow.patch ...
* Applying unzip-6.0-no-exec-stack.patch ...
* Applying unzip-6.0-format-security.patch ...
* Final size of build directory: 8276 KiB (8.0 MiB)
* Final size of installed tree: 568 KiB
* Messages for package sys-devel/gcc-config-1.9.1:
* Package: sys-devel/gcc-config-1.9.1
* Repository: gentoo
* Maintainer: toolchain@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 668 KiB
* Final size of installed tree: 88 KiB
* Messages for package sys-devel/binutils-config-5.1-r1:
* Package: sys-devel/binutils-config-5.1-r1
* Repository: gentoo
* Maintainer: toolchain@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 4 KiB
* Final size of installed tree: 56 KiB
* Messages for package sys-libs/timezone-data-2018e:
* Package: sys-libs/timezone-data-2018e
* Repository: gentoo
* Maintainer: djc@gentoo.org toolchain@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux nls userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 4092 KiB (3.9 MiB)
* Final size of installed tree: 2188 KiB (2.1 MiB)
* Updating /etc/localtime with /usr/share/zoneinfo/Europe/Madrid
* Messages for package sys-apps/semodule-utils-2.8:
* Package: sys-apps/semodule-utils-2.8
* Repository: gentoo
* Maintainer: selinux@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 200 KiB
* Final size of installed tree: 108 KiB
* Messages for package virtual/libffi-3.0.13-r1:
* Package: virtual/libffi-3.0.13-r1
* Repository: gentoo
* Maintainer: toolchain@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 4 KiB
* Final size of installed tree: 4 KiB
* Messages for package app-arch/xz-utils-5.2.4-r2:
* Package: app-arch/xz-utils-5.2.4-r2
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc extra-filters kernel_linux nls threads userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* abi_x86_64.amd64: running multilib-minimal_abi_src_configure
* abi_x86_64.amd64: running multilib-minimal_abi_src_compile
* abi_x86_64.amd64: running multilib-minimal_abi_src_install
* Final size of build directory: 9060 KiB (8.8 MiB)
* Final size of installed tree: 1112 KiB (1.0 MiB)
* Messages for package virtual/os-headers-0-r1:
* Package: virtual/os-headers-0-r1
* Repository: gentoo
* Maintainer: toolchain@gentoo.org bsd@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 4 KiB
* Final size of installed tree: 4 KiB
* Messages for package app-portage/elt-patches-20170826.1:
* Package: app-portage/elt-patches-20170826.1
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 676 KiB
* Final size of installed tree: 664 KiB
* Messages for package virtual/pam-0-r1:
* Package: virtual/pam-0-r1
* Repository: gentoo
* Maintainer: pam-bugs@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 4 KiB
* Final size of installed tree: 4 KiB
* Messages for package dev-libs/libltdl-2.4.6:
* Package: dev-libs/libltdl-2.4.6
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux pie selinux ssp userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* abi_x86_64.amd64: running multilib-minimal_abi_src_configure
* abi_x86_64.amd64: running multilib-minimal_abi_src_compile
* Skipping make test/check due to ebuild restriction.
* abi_x86_64.amd64: running multilib-minimal_abi_src_install
* Final size of build directory: 9708 KiB (9.4 MiB)
* Final size of installed tree: 116 KiB
* Messages for package sys-devel/m4-1.4.18:
* Package: sys-devel/m4-1.4.18
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying m4-1.4.18-darwin17-printf-n.patch ...
* Final size of build directory: 14908 KiB (14.5 MiB)
* Final size of installed tree: 652 KiB
* Messages for package virtual/udev-217:
* Package: virtual/udev-217
* Repository: gentoo
* Maintainer: udev-bugs@gentoo.org eudev@gentoo.org,systemd@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 4 KiB
* Final size of installed tree: 4 KiB
* Messages for package sys-libs/zlib-1.2.11-r2:
* Package: sys-libs/zlib-1.2.11-r2
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying zlib-1.2.11-fix-deflateParams-usage.patch ...
* Applying zlib-1.2.11-minizip-drop-crypt-header.patch ...
* abi_x86_64.amd64: running multilib-minimal_abi_src_configure
* abi_x86_64.amd64: running multilib-minimal_abi_src_compile
* abi_x86_64.amd64: running multilib-minimal_abi_src_install
* Final size of build directory: 4732 KiB (4.6 MiB)
* Final size of installed tree: 496 KiB
* Messages for package dev-libs/libffi-3.2.1-r2:
* Package: dev-libs/libffi-3.2.1-r2
* Repository: gentoo
* Maintainer: toolchain@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying libffi-3.2.1-o-tmpfile-eacces.patch ...
* Applying libffi-3.2.1-complex_alpha.patch ...
* Applying libffi-3.1-darwin-x32.patch ...
* Applying libffi-3.2.1-complex-ia64.patch ...
* Applying libffi-3.2.1-include-path.patch ...
* Applying libffi-3.2.1-include-path-autogen.patch ...
* Applying libffi-3.2.1-ia64-small-struct.patch ...
* abi_x86_64.amd64: running multilib-minimal_abi_src_configure
* abi_x86_64.amd64: running multilib-minimal_abi_src_compile
* abi_x86_64.amd64: running multilib-minimal_abi_src_install
* Removing unnecessary /usr/lib64/libffi.la (no static archive)
* Final size of build directory: 5832 KiB (5.6 MiB)
* Final size of installed tree: 604 KiB
* Messages for package dev-libs/npth-1.5:
* Package: dev-libs/npth-1.5
* Repository: gentoo
* Maintainer: crypto@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Removing unnecessary /usr/lib64/libnpth.la (no static archive)
* Final size of build directory: 2400 KiB (2.3 MiB)
* Final size of installed tree: 124 KiB
* Messages for package dev-libs/gmp-6.1.2-r1:
* Package: dev-libs/gmp-6.1.2-r1
* Repository: gentoo
* Maintainer: toolchain@gentoo.org
* USE: abi_x86_64 amd64 asm cxx elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying gmp-6.1.0-noexecstack-detect.patch ...
* abi_x86_64.amd64: running multilib-minimal_abi_src_configure
* abi_x86_64.amd64: running multilib-minimal_abi_src_compile
* abi_x86_64.amd64: running multilib-minimal_abi_src_install
* Final size of build directory: 29040 KiB (28.3 MiB)
* Final size of installed tree: 3976 KiB ( 3.8 MiB)
* Messages for package dev-libs/libunistring-0.9.10:
* Package: dev-libs/libunistring-0.9.10
* Repository: gentoo
* Maintainer: scheme@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying libunistring-nodocs.patch ...
* abi_x86_64.amd64: running multilib-minimal_abi_src_configure
* abi_x86_64.amd64: running multilib-minimal_abi_src_compile
* abi_x86_64.amd64: running multilib-minimal_abi_src_install
* Removing unnecessary /usr/lib64/libunistring.la (no static archive)
* Final size of build directory: 38848 KiB (37.9 MiB)
* Final size of installed tree: 1928 KiB ( 1.8 MiB)
* Messages for package sys-fs/udev-init-scripts-32:
* Package: sys-fs/udev-init-scripts-32
* Repository: gentoo
* Maintainer: udev-bugs@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Skipping make test/check due to ebuild restriction.
* Final size of build directory: 48 KiB
* Final size of installed tree: 60 KiB
* Messages for package virtual/dev-manager-0-r1:
* Package: virtual/dev-manager-0-r1
* Repository: gentoo
* Maintainer: base-system@gentoo.org bsd@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 4 KiB
* Final size of installed tree: 4 KiB
* Messages for package virtual/acl-0-r2:
* Package: virtual/acl-0-r2
* Repository: gentoo
* Maintainer: bsd@gentoo.org base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 4 KiB
* Final size of installed tree: 4 KiB
* Messages for package virtual/man-0-r1:
* Package: virtual/man-0-r1
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 4 KiB
* Final size of installed tree: 4 KiB
* Messages for package virtual/shadow-0:
* Package: virtual/shadow-0
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 4 KiB
* Final size of installed tree: 4 KiB
* Messages for package sys-apps/man-pages-posix-2013a:
* Package: sys-apps/man-pages-posix-2013a
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 9392 KiB (9.1 MiB)
* Final size of installed tree: 9392 KiB (9.1 MiB)
* Messages for package sys-libs/cracklib-2.9.6-r1:
* Package: sys-libs/cracklib-2.9.6-r1
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux nls python_targets_python2_7 python_targets_python3_5 userland_GNU zlib
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying cracklib-2.9.6-CVE-2016-6318.patch ...
* Applying cracklib-2.9.6-fix-long-word-bufferoverflow.patch ...
* abi_x86_64.amd64: running multilib-minimal_abi_src_configure
* abi_x86_64.amd64: running multilib-minimal_abi_src_compile
* abi_x86_64.amd64: running multilib-minimal_abi_src_install
* Removing unnecessary /usr/lib64/libcrack.la (no static archive)
* Final size of build directory: 3732 KiB (3.6 MiB)
* Final size of installed tree: 1096 KiB (1.0 MiB)
* Regenerating cracklib dictionary ...
* Messages for package sys-apps/file-5.33-r2:
* Package: sys-apps/file-5.33-r2
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* Upstream: http://bugs.gw.com/
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux python_targets_python2_7 python_targets_python3_5 userland_GNU zlib
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying file-5.33-CVE-2018-10360.patch ...
* abi_x86_64.amd64: running multilib-minimal_abi_src_configure
* abi_x86_64.amd64: running multilib-minimal_abi_src_compile
* abi_x86_64.amd64: running multilib-minimal_abi_src_install
* Removing unnecessary /usr/lib64/libmagic.la (no static archive)
* Final size of build directory: 10460 KiB (10.2 MiB)
* Final size of installed tree: 7220 KiB ( 7.0 MiB)
* Messages for package dev-libs/mpfr-4.0.1:
* Package: dev-libs/mpfr-4.0.1
* Repository: gentoo
* Maintainer: toolchain@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* abi_x86_64.amd64: running multilib-minimal_abi_src_configure
* abi_x86_64.amd64: running multilib-minimal_abi_src_compile
* abi_x86_64.amd64: running multilib-minimal_abi_src_install
* Final size of build directory: 15344 KiB (14.9 MiB)
* Final size of installed tree: 1032 KiB ( 1.0 MiB)
* Messages for package sys-apps/man-pages-4.16:
* Package: sys-apps/man-pages-4.16
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux nls userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 16432 KiB (16.0 MiB)
* Final size of installed tree: 16292 KiB (15.9 MiB)
* Messages for package app-eselect/eselect-python-20171204:
* Package: app-eselect/eselect-python-20171204
* Repository: gentoo
* Maintainer: python@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 272 KiB
* Final size of installed tree: 32 KiB
* Messages for package dev-libs/mpc-1.1.0-r1:
* Package: dev-libs/mpc-1.1.0-r1
* Repository: gentoo
* Maintainer: toolchain@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* abi_x86_64.amd64: running multilib-minimal_abi_src_configure
* abi_x86_64.amd64: running multilib-minimal_abi_src_compile
* abi_x86_64.amd64: running multilib-minimal_abi_src_install
* Final size of build directory: 5508 KiB (5.3 MiB)
* Final size of installed tree: 276 KiB
* Messages for package virtual/tmpfiles-0:
* Package: virtual/tmpfiles-0
* Repository: gentoo
* Maintainer: williamh@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 4 KiB
* Final size of installed tree: 4 KiB
* Messages for package app-eselect/eselect-pinentry-0.7:
* Package: app-eselect/eselect-pinentry-0.7
* Repository: gentoo
* Maintainer: crypto@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 4 KiB
* Final size of installed tree: 24 KiB
* Messages for package virtual/mta-1:
* Package: virtual/mta-1
* Repository: gentoo
* Maintainer: net-mail@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 4 KiB
* Final size of installed tree: 4 KiB
* Messages for package virtual/logger-0:
* Package: virtual/logger-0
* Repository: gentoo
* Maintainer: ultrabug@gentoo.org base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 4 KiB
* Final size of installed tree: 4 KiB
* Messages for package virtual/pkgconfig-0-r1:
* Package: virtual/pkgconfig-0-r1
* Repository: gentoo
* Maintainer: freedesktop-bugs@gentoo.org embedded@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 4 KiB
* Final size of installed tree: 4 KiB
* Messages for package sys-libs/readline-7.0_p5:
* Package: sys-libs/readline-7.0_p5
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying readline70-001 ...
* Applying readline70-002 ...
* Applying readline70-003 ...
* Applying readline70-004 ...
* Applying readline70-005 ...
* Applying readline-5.0-no_rpath.patch ...
* Applying readline-6.2-rlfe-tgoto.patch ...
* Applying readline-7.0-headers.patch ...
* Applying readline-7.0-missing-echo-proto.patch ...
* Applying readline-7.0-mingw.patch ...
* abi_x86_64.amd64: running multilib-minimal_abi_src_configure
* abi_x86_64.amd64: running multilib-minimal_abi_src_compile
* abi_x86_64.amd64: running multilib-minimal_abi_src_install
* Final size of build directory: 8576 KiB (8.3 MiB)
* Final size of installed tree: 3424 KiB (3.3 MiB)
* Messages for package sys-apps/hwids-20180518:
* Package: sys-apps/hwids-20180518
* Repository: gentoo
* Maintainer: base-system@gentoo.org floppym@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux net pci udev usb userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 15324 KiB (14.9 MiB)
* Final size of installed tree: 14528 KiB (14.1 MiB)
* Messages for package sys-apps/kbd-2.0.4:
* Package: sys-apps/kbd-2.0.4
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux nls pam userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 18804 KiB (18.3 MiB)
* Final size of installed tree: 5136 KiB ( 5.0 MiB)
* Messages for package dev-libs/libpipeline-1.5.0:
* Package: dev-libs/libpipeline-1.5.0
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying libpipeline-1.4.1-gnulib-cygwin-sys_select.patch ...
* Applying libpipeline-1.4.1-gnulib-darwin-program_name.patch ...
* Removing unnecessary /usr/lib64/libpipeline.la (no static archive)
* Final size of build directory: 6276 KiB (6.1 MiB)
* Final size of installed tree: 188 KiB
* Messages for package app-shells/bash-4.4_p23:
* Package: app-shells/bash-4.4_p23
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux net nls readline userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying bash44-001 ...
* Applying bash44-002 ...
* Applying bash44-003 ...
* Applying bash44-004 ...
* Applying bash44-005 ...
* Applying bash44-006 ...
* Applying bash44-007 ...
* Applying bash44-008 ...
* Applying bash44-009 ...
* Applying bash44-010 ...
* Applying bash44-011 ...
* Applying bash44-012 ...
* Applying bash44-013 ...
* Applying bash44-014 ...
* Applying bash44-015 ...
* Applying bash44-016 ...
* Applying bash44-017 ...
* Applying bash44-018 ...
* Applying bash44-019 ...
* Applying bash44-020 ...
* Applying bash44-021 ...
* Applying bash44-022 ...
* Applying bash44-023 ...
* Applying bash-4.4-jobs_overflow.patch ...
* Final size of build directory: 35920 KiB (35.0 MiB)
* Final size of installed tree: 8476 KiB ( 8.2 MiB)
* Messages for package app-text/docbook-xml-dtd-4.1.2-r6:
* Now removing /etc/sgml/sgml-docbook.cat from /etc/sgml/xml-docbook-4.1.2.cat and /etc/sgml/catalog
* Now removing /usr/share/sgml/docbook/xml-dtd-4.1.2/docbook.cat from /etc/sgml/xml-docbook-4.1.2.cat and /etc/sgml/catalog
* Messages for package app-text/docbook-xml-dtd-4.1.2-r6:
* Package: app-text/docbook-xml-dtd-4.1.2-r6
* Repository: gentoo
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux pie selinux ssp userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 440 KiB
* Final size of installed tree: 476 KiB
* Now adding /etc/sgml/sgml-docbook.cat to /etc/sgml/xml-docbook-4.1.2.cat and /etc/sgml/catalog
* Now adding /usr/share/sgml/docbook/xml-dtd-4.1.2/docbook.cat to /etc/sgml/xml-docbook-4.1.2.cat and /etc/sgml/catalog
* Messages for package net-misc/netifrc-0.6.0:
* Package: net-misc/netifrc-0.6.0
* Repository: gentoo
* Maintainer: netifrc@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 772 KiB
* Final size of installed tree: 448 KiB
* Messages for package app-text/docbook-xsl-stylesheets-1.79.1-r2:
* Package: app-text/docbook-xsl-stylesheets-1.79.1-r2
* Repository: gentoo
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying nonrecursive-string-subst.patch ...
* Skipping make test/check due to ebuild restriction.
* Final size of build directory: 27588 KiB (26.9 MiB)
* Final size of installed tree: 25768 KiB (25.1 MiB)
* Messages for package virtual/yacc-0:
* Package: virtual/yacc-0
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 4 KiB
* Final size of installed tree: 4 KiB
* Messages for package virtual/perl-File-Temp-0.230.400-r5:
* Package: virtual/perl-File-Temp-0.230.400-r5
* Repository: gentoo
* Maintainer: perl@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 4 KiB
* Final size of installed tree: 4 KiB
* Messages for package app-admin/perl-cleaner-2.26-r1:
* Package: app-admin/perl-cleaner-2.26-r1
* Repository: gentoo
* Maintainer: perl@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Adjusting to prefix /
* perl-cleaner ...
* Final size of build directory: 36 KiB
* Final size of installed tree: 52 KiB
* Messages for package dev-libs/libpcre-8.42:
* Package: dev-libs/libpcre-8.42
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 bzip2 cxx elibc_glibc kernel_linux readline recursion-limit static-libs unicode userland_GNU zlib
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying libpcre-8.41-fix-stack-size-detection.patch ...
* abi_x86_64.amd64: running multilib-minimal_abi_src_configure
* abi_x86_64.amd64: running multilib-minimal_abi_src_compile
* abi_x86_64.amd64: running multilib-minimal_abi_src_install
* Final size of build directory: 14384 KiB (14.0 MiB)
* Final size of installed tree: 3784 KiB ( 3.6 MiB)
* Messages for package sys-apps/kmod-25:
* Package: sys-apps/kmod-25
* Repository: gentoo
* Maintainer: udev-bugs@gentoo.org base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux python_targets_python2_7 python_targets_python3_5 tools userland_GNU zlib
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Skipping make test/check due to ebuild restriction.
* Removing unnecessary /usr/lib64/libkmod.la (no static archive)
* Final size of build directory: 8348 KiB (8.1 MiB)
* Final size of installed tree: 492 KiB
* Messages for package sys-apps/less-531:
* Package: sys-apps/less-531
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux pcre unicode userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 2276 KiB (2.2 MiB)
* Final size of installed tree: 440 KiB
* Messages for package app-admin/metalog-3-r2:
* Package: app-admin/metalog-3-r2
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux unicode userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying metalog-0.9-metalog-conf.patch ...
* Final size of build directory: 5096 KiB (4.9 MiB)
* Final size of installed tree: 184 KiB
* Messages for package dev-lang/swig-3.0.12:
* Package: dev-lang/swig-3.0.12
* Repository: gentoo
* Maintainer: radhermit@gentoo.org scheme@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux pcre userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Skipping make test/check due to ebuild restriction.
* Final size of build directory: 52880 KiB (51.6 MiB)
* Final size of installed tree: 8296 KiB ( 8.1 MiB)
* Messages for package virtual/modutils-0:
* Package: virtual/modutils-0
* Repository: gentoo
* Maintainer: udev-bugs@gentoo.org base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 4 KiB
* Final size of installed tree: 4 KiB
* Messages for package dev-lang/perl-5.24.3-r1:
* Linking //usr/bin/ptar-2.240.0-perl-5.26.2 to //usr/bin/ptar (relative)
* Linking //usr/share/man/man1/ptar-2.240.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/ptar.1.bz2 (relative)
* Linking //usr/bin/ptardiff-2.240.0-perl-5.26.2 to //usr/bin/ptardiff (relative)
* Linking //usr/share/man/man1/ptardiff-2.240.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/ptardiff.1.bz2 (relative)
* Linking //usr/bin/ptargrep-2.240.0-perl-5.26.2 to //usr/bin/ptargrep (relative)
* Linking //usr/share/man/man1/ptargrep-2.240.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/ptargrep.1.bz2 (relative)
* Linking //usr/bin/cpan-2.180.0-perl-5.26.2 to //usr/bin/cpan (relative)
* Linking //usr/share/man/man1/cpan-2.180.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/cpan.1.bz2 (relative)
* Linking //usr/bin/shasum-5.960.0-perl-5.26.2 to //usr/bin/shasum (relative)
* Linking //usr/share/man/man1/shasum-5.960.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/shasum.1.bz2 (relative)
* Linking //usr/bin/enc2xs-2.880.0-perl-5.26.2 to //usr/bin/enc2xs (relative)
* Linking //usr/share/man/man1/enc2xs-2.880.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/enc2xs.1.bz2 (relative)
* Linking //usr/bin/piconv-2.880.0-perl-5.26.2 to //usr/bin/piconv (relative)
* Linking //usr/share/man/man1/piconv-2.880.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/piconv.1.bz2 (relative)
* Linking //usr/bin/instmodsh-7.240.0-perl-5.26.2 to //usr/bin/instmodsh (relative)
* Linking //usr/share/man/man1/instmodsh-7.240.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/instmodsh.1.bz2 (relative)
* Linking //usr/bin/xsubpp-3.340.0-perl-5.26.2 to //usr/bin/xsubpp (relative)
* Linking //usr/share/man/man1/xsubpp-3.340.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/xsubpp.1.bz2 (relative)
* Linking //usr/bin/zipdetails-2.74.0-perl-5.26.2 to //usr/bin/zipdetails (relative)
* Linking //usr/share/man/man1/zipdetails-2.74.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/zipdetails.1.bz2 (relative)
* Linking //usr/bin/json_pp-2.274.0.200_rc-perl-5.26.2 to //usr/bin/json_pp (relative)
* Linking //usr/share/man/man1/json_pp-2.274.0.200_rc-perl-5.26.2.1.bz2 to //usr/share/man/man1/json_pp.1.bz2 (relative)
* Linking //usr/bin/corelist-5.201.804.142.600_rc-perl-5.26.2 to //usr/bin/corelist (relative)
* Linking //usr/share/man/man1/corelist-5.201.804.142.600_rc-perl-5.26.2.1.bz2 to //usr/share/man/man1/corelist.1.bz2 (relative)
* Linking //usr/bin/pod2usage-1.630.0-perl-5.26.2 to //usr/bin/pod2usage (relative)
* Linking //usr/share/man/man1/pod2usage-1.630.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/pod2usage.1.bz2 (relative)
* Linking //usr/bin/podchecker-1.630.0-perl-5.26.2 to //usr/bin/podchecker (relative)
* Linking //usr/share/man/man1/podchecker-1.630.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/podchecker.1.bz2 (relative)
* Linking //usr/bin/podselect-1.630.0-perl-5.26.2 to //usr/bin/podselect (relative)
* Linking //usr/share/man/man1/podselect-1.630.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/podselect.1.bz2 (relative)
* Linking //usr/bin/perldoc-3.280.0-perl-5.26.2 to //usr/bin/perldoc (relative)
* Linking //usr/share/man/man1/perldoc-3.280.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/perldoc.1.bz2 (relative)
* Linking //usr/bin/prove-3.380.0-perl-5.26.2 to //usr/bin/prove (relative)
* Linking //usr/share/man/man1/prove-3.380.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/prove.1.bz2 (relative)
* Linking //usr/bin/pod2man-4.90.0-perl-5.26.2 to //usr/bin/pod2man (relative)
* Linking //usr/share/man/man1/pod2man-4.90.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/pod2man.1.bz2 (relative)
* Linking //usr/bin/pod2text-4.90.0-perl-5.26.2 to //usr/bin/pod2text (relative)
* Linking //usr/share/man/man1/pod2text-4.90.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/pod2text.1.bz2 (relative)
* Linking //usr/share/man/man1/perlpodstyle-4.90.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/perlpodstyle.1.bz2 (relative)
* Messages for package dev-lang/perl-5.26.2:
* Package: dev-lang/perl-5.26.2
* Repository: gentoo
* Maintainer: perl@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying patches from perl-5.26.2-patches-1 ...
* gentoo/hints_hpux.diff ...
* gentoo/aix_soname.diff ...
* gentoo/EUMM-RUNPATH.diff ...
* gentoo/config_over.diff ...
* gentoo/opensolaris_headers.diff ...
* gentoo/patchlevel.diff ...
* gentoo/cleanup-paths.diff ...
* gentoo/enc2xs.diff ...
* gentoo/darwin-cc-ld.diff ...
* gentoo/cpan_definstalldirs.diff ...
* gentoo/interix.diff ...
* gentoo/create_libperl_soname.diff ...
* gentoo/mod_paths.diff ...
* gentoo/EUMM_perllocalpod.diff ...
* gentoo/drop_fstack_protector.diff ...
* gentoo/usr_local.diff ...
* gentoo/D-SHA-CFLAGS.diff ...
* gentoo/io_socket_ip_tests.diff ...
* gentoo/tests.diff ...
* gentoo/no-nsl.patch ...
* debian/cpan-missing-site-dirs.diff ...
* debian/makemaker-pasthru.diff ...
* fixes/memoize_storable_nstore.diff ...
* fixes/podman-pipe.diff ...
* fixes/respect_umask.diff ...
* fixes/net_smtp_docs.diff ...
* fixes/document_makemaker_ccflags.diff ...
* fixes/parallel-manisort.patch ...
* This version of perl may partially support modules previously
* installed in any of the following paths:
* /usr/lib64/perl5/vendor_perl/5.24.3
* /usr/lib64/perl5/5.24.3
* This is a temporary measure and you should aim to cleanup these paths
* via world updates and perl-cleaner
* Removing /var/tmp/portage/dev-lang/perl-5.26.2/image/ from /var/tmp/portage/dev-lang/perl-5.26.2/image/usr/lib64/perl5/5.26.2/x86_64-linux/Config.pm...
* Removing /var/tmp/portage/dev-lang/perl-5.26.2/image/ from /var/tmp/portage/dev-lang/perl-5.26.2/image/usr/lib64/perl5/5.26.2/x86_64-linux/Encode/Config.pm...
* Removing /var/tmp/portage/dev-lang/perl-5.26.2/image/ from /var/tmp/portage/dev-lang/perl-5.26.2/image/usr/lib64/perl5/5.26.2/Net/Config.pm...
* Removing /var/tmp/portage/dev-lang/perl-5.26.2/image/ from /var/tmp/portage/dev-lang/perl-5.26.2/image/usr/lib64/perl5/5.26.2/ExtUtils/MakeMaker/Config.pm...
* Final size of build directory: 191436 KiB (186.9 MiB)
* Final size of installed tree: 63108 KiB ( 61.6 MiB)
* UPDATE THE PERL MODULES:
* After updating dev-lang/perl the installed Perl modules
* have to be re-installed. In most cases, this is done automatically
* by the package manager, but subsequent steps are still recommended
* to ensure system consistency.
*
* You should start with a depclean to remove any unused perl dependencies
* that may confuse portage in future. Regular depcleans are also encouraged
* as part of your regular update cycle, as that will keep perl upgrades working.
* Recommended: emerge --depclean -va
*
* You should then call perl-cleaner to clean up any old files and trigger any
* remaining rebuilds portage may have missed.
* Use: perl-cleaner --all
* Linking //usr/bin/ptar-2.240.0-perl-5.26.2 to //usr/bin/ptar (relative)
* Linking //usr/share/man/man1/ptar-2.240.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/ptar.1.bz2 (relative)
* Linking //usr/bin/ptardiff-2.240.0-perl-5.26.2 to //usr/bin/ptardiff (relative)
* Linking //usr/share/man/man1/ptardiff-2.240.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/ptardiff.1.bz2 (relative)
* Linking //usr/bin/ptargrep-2.240.0-perl-5.26.2 to //usr/bin/ptargrep (relative)
* Linking //usr/share/man/man1/ptargrep-2.240.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/ptargrep.1.bz2 (relative)
* Linking //usr/bin/cpan-2.180.0-perl-5.26.2 to //usr/bin/cpan (relative)
* Linking //usr/share/man/man1/cpan-2.180.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/cpan.1.bz2 (relative)
* Linking //usr/bin/shasum-5.960.0-perl-5.26.2 to //usr/bin/shasum (relative)
* Linking //usr/share/man/man1/shasum-5.960.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/shasum.1.bz2 (relative)
* Linking //usr/bin/enc2xs-2.880.0-perl-5.26.2 to //usr/bin/enc2xs (relative)
* Linking //usr/share/man/man1/enc2xs-2.880.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/enc2xs.1.bz2 (relative)
* Linking //usr/bin/piconv-2.880.0-perl-5.26.2 to //usr/bin/piconv (relative)
* Linking //usr/share/man/man1/piconv-2.880.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/piconv.1.bz2 (relative)
* Linking //usr/bin/instmodsh-7.240.0-perl-5.26.2 to //usr/bin/instmodsh (relative)
* Linking //usr/share/man/man1/instmodsh-7.240.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/instmodsh.1.bz2 (relative)
* Linking //usr/bin/xsubpp-3.340.0-perl-5.26.2 to //usr/bin/xsubpp (relative)
* Linking //usr/share/man/man1/xsubpp-3.340.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/xsubpp.1.bz2 (relative)
* Linking //usr/bin/zipdetails-2.74.0-perl-5.26.2 to //usr/bin/zipdetails (relative)
* Linking //usr/share/man/man1/zipdetails-2.74.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/zipdetails.1.bz2 (relative)
* Linking //usr/bin/json_pp-2.274.0.200_rc-perl-5.26.2 to //usr/bin/json_pp (relative)
* Linking //usr/share/man/man1/json_pp-2.274.0.200_rc-perl-5.26.2.1.bz2 to //usr/share/man/man1/json_pp.1.bz2 (relative)
* Linking //usr/bin/corelist-5.201.804.142.600_rc-perl-5.26.2 to //usr/bin/corelist (relative)
* Linking //usr/share/man/man1/corelist-5.201.804.142.600_rc-perl-5.26.2.1.bz2 to //usr/share/man/man1/corelist.1.bz2 (relative)
* Linking //usr/bin/pod2usage-1.630.0-perl-5.26.2 to //usr/bin/pod2usage (relative)
* Linking //usr/share/man/man1/pod2usage-1.630.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/pod2usage.1.bz2 (relative)
* Linking //usr/bin/podchecker-1.630.0-perl-5.26.2 to //usr/bin/podchecker (relative)
* Linking //usr/share/man/man1/podchecker-1.630.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/podchecker.1.bz2 (relative)
* Linking //usr/bin/podselect-1.630.0-perl-5.26.2 to //usr/bin/podselect (relative)
* Linking //usr/share/man/man1/podselect-1.630.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/podselect.1.bz2 (relative)
* Linking //usr/bin/perldoc-3.280.0-perl-5.26.2 to //usr/bin/perldoc (relative)
* Linking //usr/share/man/man1/perldoc-3.280.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/perldoc.1.bz2 (relative)
* Linking //usr/bin/prove-3.380.0-perl-5.26.2 to //usr/bin/prove (relative)
* Linking //usr/share/man/man1/prove-3.380.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/prove.1.bz2 (relative)
* Linking //usr/bin/pod2man-4.90.0-perl-5.26.2 to //usr/bin/pod2man (relative)
* Linking //usr/share/man/man1/pod2man-4.90.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/pod2man.1.bz2 (relative)
* Linking //usr/bin/pod2text-4.90.0-perl-5.26.2 to //usr/bin/pod2text (relative)
* Linking //usr/share/man/man1/pod2text-4.90.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/pod2text.1.bz2 (relative)
* Linking //usr/share/man/man1/perlpodstyle-4.90.0-perl-5.26.2.1.bz2 to //usr/share/man/man1/perlpodstyle.1.bz2 (relative)
* Removing old .ph files
* Messages for package virtual/pager-0:
* Package: virtual/pager-0
* Repository: gentoo
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 4 KiB
* Final size of installed tree: 4 KiB
* Messages for package sys-kernel/linux-headers-4.17:
* Package: sys-kernel/linux-headers-4.17
* Repository: gentoo
* Maintainer: toolchain@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying 00_all_0001-linux-stat.h-remove-__GLIBC__-checks.patch ...
* Applying 00_all_0002-netfilter-pull-in-limits.h.patch ...
* Applying 00_all_0003-convert-PAGE_SIZE-usage.patch ...
* Applying 00_all_0004-asm-generic-fcntl.h-namespace-kernel-file-structs.patch ...
* Applying 00_all_0005-unifdef-drop-unused-errno.h-include.patch ...
* Applying 00_all_0006-x86-do-not-build-relocs-tool-when-installing-headers.patch ...
* Applying 00_all_0007-netlink-drop-int-cast-on-length-arg-in-NLMSG_OK.patch ...
* Applying 00_all_0008-uapi-fix-System-V-buf-header-includes.patch ...
* Final size of build directory: 70668 KiB (69.0 MiB)
* Final size of installed tree: 6764 KiB ( 6.6 MiB)
* Messages for package sys-apps/groff-1.22.3:
* Package: sys-apps/groff-1.22.3
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux pie selinux ssp userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying groff-1.19.2-man-unicode-dashes.patch ...
* Applying groff-1.22.3-parallel-mom.patch ...
* QA Notice: Unrecognized configure options:
*
* --with-appresdir
* --without-x
* --with-appresdir
* --without-x
* Final size of build directory: 41132 KiB (40.1 MiB)
* Final size of installed tree: 14512 KiB (14.1 MiB)
* Messages for package sys-devel/autoconf-2.69-r4:
* Package: sys-devel/autoconf-2.69-r4
* Repository: gentoo
* Maintainer: base-system@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Applying autoconf-2.69-perl-5.26.patch ...
* Applying autoconf-2.69-fix-libtool-test.patch ...
* Applying autoconf-2.69-perl-5.26-2.patch ...
* Final size of build directory: 8184 KiB (7.9 MiB)
* Final size of installed tree: 3436 KiB (3.3 MiB)
* Messages for package virtual/perl-ExtUtils-MakeMaker-7.240.0:
* Package: virtual/perl-ExtUtils-MakeMaker-7.240.0
* Repository: gentoo
* Maintainer: perl@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Final size of build directory: 4 KiB
* Final size of installed tree: 4 KiB
* Messages for package dev-util/gtk-doc-am-1.25-r1:
* Package: dev-util/gtk-doc-am-1.25-r1
* Repository: gentoo
* Maintainer: gnome@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux userland_GNU
* FEATURES: preserve-libs sandbox selinux sesandbox userpriv usersandbox
* Skipping make test/check due to ebuild restriction.
* Final size of build directory: 7640 KiB (7.4 MiB)
* Final size of installed tree: 36 KiB
* Messages for package virtual/perl-Parse-CPAN-Meta-2.150.10:
* Package: virtual/perl-Parse-CPAN-Meta-2.150.10