summaryrefslogtreecommitdiff
blob: 4d9c7c99cde8b2cf896bd6c2ec5e0bd0d4a4f9e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
# ChangeLog for sys-apps/coreutils
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/coreutils/ChangeLog,v 1.349 2012/09/23 08:07:25 phajdan.jr Exp $

  23 Sep 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> coreutils-8.16.ebuild:
  x86 stable wrt bug #431722

  06 Sep 2012; Mike Frysinger <vapier@gentoo.org> coreutils-8.16.ebuild:
  Hack the glibc-2.16/gets issue to current stable (already fixed in newer
  versions).

  23 Aug 2012; Markus Meier <maekke@gentoo.org> coreutils-8.16.ebuild:
  arm stable, bug #431722

*coreutils-8.19 (20 Aug 2012)

  20 Aug 2012; Mike Frysinger <vapier@gentoo.org> +coreutils-8.19.ebuild:
  Version bump.

  20 Aug 2012; Jeroen Roovers <jer@gentoo.org> coreutils-8.16.ebuild:
  Stable for HPPA (bug #431722).

  18 Aug 2012; Mike Frysinger <vapier@gentoo.org> coreutils-8.18.ebuild:
  Depend on USE=static-libs for lib packages when USE=static #425732 by
  Christian Ruppert.

  18 Aug 2012; Mike Frysinger <vapier@gentoo.org> coreutils-8.18.ebuild:
  Fix static linking #425730 by Christian Ruppert.

  18 Aug 2012; Agostino Sarubbo <ago@gentoo.org> coreutils-8.16.ebuild:
  Stable for amd64, wrt bug #431722

*coreutils-8.18 (12 Aug 2012)

  12 Aug 2012; Mike Frysinger <vapier@gentoo.org> +coreutils-8.18.ebuild:
  Version bump.

  11 Jul 2012; Richard Yao <ryao@gentoo.org> coreutils-8.17.ebuild:
  Support Gentoo FreeBSD, bug #424856, discussed with ssuominen in IRC

  24 May 2012; Mike Frysinger <vapier@gentoo.org> coreutils-8.17.ebuild:
  Set gl_cv_func_realpath_works when cross-compiling #416629 by Robin Bankhead.

*coreutils-8.17 (10 May 2012)

  10 May 2012; Mike Frysinger <vapier@gentoo.org> +coreutils-8.17.ebuild:
  Version bump.

  28 Mar 2012; Mike Frysinger <vapier@gentoo.org> coreutils-8.16.ebuild:
  Force mknod test to avoid dying when running as root #409919 by Paweł
  Rumian.

  27 Mar 2012; Mike Frysinger <vapier@gentoo.org> coreutils-8.5.ebuild,
  coreutils-8.5-r1.ebuild, coreutils-8.7.ebuild, coreutils-8.8.ebuild,
  coreutils-8.9.ebuild, coreutils-8.10.ebuild, coreutils-8.11.ebuild,
  coreutils-8.12.ebuild, coreutils-8.13.ebuild, coreutils-8.14.ebuild,
  coreutils-8.15.ebuild, coreutils-8.16.ebuild:
  Migrate to gnu-alpha mirror.

*coreutils-8.16 (27 Mar 2012)

  27 Mar 2012; Mike Frysinger <vapier@gentoo.org> +coreutils-8.16.ebuild:
  Version bump.

  19 Feb 2012; Raúl Porcel <armin76@gentoo.org> coreutils-8.14.ebuild:
  alpha/ia64/m68k/s390/sh/sparc stable wrt #397929

  02 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> coreutils-8.14.ebuild:
  ppc64 stable wrt #397929

  01 Feb 2012; Brent Baude <ranger@gentoo.org> coreutils-8.14.ebuild:
  Marking coreutils-8.14 ppc for bug 397929

  21 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> coreutils-8.14.ebuild:
  x86 stable wrt bug #397929

  18 Jan 2012; Markus Meier <maekke@gentoo.org> coreutils-8.14.ebuild:
  arm stable, bug #397929

  17 Jan 2012; Jeroen Roovers <jer@gentoo.org> coreutils-8.14.ebuild:
  Stable for HPPA (bug #397929).

  07 Jan 2012; Agostino Sarubbo <ago@gentoo.org> coreutils-8.14.ebuild:
  Stable for AMD64, wrt bug #397929

*coreutils-8.15 (06 Jan 2012)

  06 Jan 2012; Mike Frysinger <vapier@gentoo.org> +coreutils-8.15.ebuild:
  Version bump.

  18 Oct 2011; Mike Frysinger <vapier@gentoo.org> coreutils-8.14.ebuild:
  Extend man page hack to missing perl #387091 by nzqr.

*coreutils-8.14 (13 Oct 2011)

  13 Oct 2011; Mike Frysinger <vapier@gentoo.org> +coreutils-8.14.ebuild:
  Version bump.

*coreutils-8.13 (09 Sep 2011)

  09 Sep 2011; Mike Frysinger <vapier@gentoo.org> +coreutils-8.13.ebuild:
  Version bump.

*coreutils-8.12 (26 Apr 2011)

  26 Apr 2011; Mike Frysinger <vapier@gentoo.org> +coreutils-8.12.ebuild:
  Version bump.

*coreutils-8.11 (14 Apr 2011)

  14 Apr 2011; Mike Frysinger <vapier@gentoo.org> +coreutils-8.11.ebuild:
  Version bump.

  17 Mar 2011; Mike Frysinger <vapier@gentoo.org> coreutils-8.10.ebuild:
  Add warning for users with buggy btrfs setups #353907 by Zac Medico.

  19 Feb 2011; Mike Frysinger <vapier@gentoo.org> coreutils-8.10.ebuild:
  Add patch from upstream for sandbox/git misbehavior #355045 by Kyle Milz.

*coreutils-8.10 (05 Feb 2011)

  05 Feb 2011; Mike Frysinger <vapier@gentoo.org> +coreutils-8.10.ebuild:
  Version bump.

*coreutils-8.9 (04 Jan 2011)

  04 Jan 2011; Mike Frysinger <vapier@gentoo.org> +coreutils-8.9.ebuild:
  Version bump.

  03 Jan 2011; Michael Weber <xmw@gentoo.org> coreutils-8.7.ebuild:
  sparc stable (bug 348471)

  30 Dec 2010; Mike Frysinger <vapier@gentoo.org> coreutils-8.7.ebuild:
  Mark alpha/ia64/s390/sh stable #348471.

  30 Dec 2010; Mike Frysinger <vapier@gentoo.org> coreutils-8.7.ebuild,
  coreutils-8.8.ebuild:
  No longer need ncurses #350126 by Jonathan Callen.

*coreutils-8.8 (23 Dec 2010)

  23 Dec 2010; Mike Frysinger <vapier@gentoo.org> +coreutils-8.8.ebuild:
  Version bump.

  22 Dec 2010; Markos Chandras <hwoarang@gentoo.org> coreutils-8.7.ebuild:
  Stable on amd64 wrt bug #348471

  21 Dec 2010; Markus Meier <maekke@gentoo.org> coreutils-8.7.ebuild:
  arm stable, bug #348471

  14 Dec 2010; Mike Frysinger <vapier@gentoo.org> coreutils-8.7.ebuild:
  Avoid perl dep for compiled in dircolors default #348642.

  13 Dec 2010; Brent Baude <ranger@gentoo.org> coreutils-8.7.ebuild:
  Marking coreutils-8.7 ppc64 for bug 348471

  13 Dec 2010; Brent Baude <ranger@gentoo.org> coreutils-8.7.ebuild:
  Marking coreutils-8.7 ppc for bug 348471

  13 Dec 2010; Jeroen Roovers <jer@gentoo.org> coreutils-8.7.ebuild:
  Stable for HPPA (bug #348471).

  12 Dec 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> coreutils-8.7.ebuild:
  x86 stable wrt bug #348471

*coreutils-8.7 (13 Nov 2010)

  13 Nov 2010; Mike Frysinger <vapier@gentoo.org> +coreutils-8.7.ebuild:
  Version bump.

*coreutils-8.6 (26 Oct 2010)

  26 Oct 2010; Mike Frysinger <vapier@gentoo.org> +coreutils-8.6.ebuild:
  Version bump #342583.

  18 Sep 2010; Raúl Porcel <armin76@gentoo.org> coreutils-8.5.ebuild:
  sparc stable wrt #327147

  13 Aug 2010; Joseph Jezak <josejx@gentoo.org> coreutils-8.5.ebuild:
  Marked ppc stable for bug #327147.

*coreutils-8.5-r1 (19 Jul 2010)

  19 Jul 2010; Mike Frysinger <vapier@gentoo.org> +coreutils-8.5-r1.ebuild:
  Include i18n patch from Fedora #328827 by Arago.

  19 Jul 2010; Mike Frysinger <vapier@gentoo.org> coreutils-8.5.ebuild:
  Stabilize for alpha/arm/ia64/s390/sh #327147.

  19 Jul 2010; Mike Frysinger <vapier@gentoo.org> coreutils-8.5.ebuild:
  Workaround stdbuf build failure when USE=static #321821 by Igor
  Novgorodov.

  14 Jul 2010; Markos Chandras <hwoarang@gentoo.org> coreutils-8.5.ebuild:
  Stable on amd64 wrt bug #327147

  11 Jul 2010; Christian Faulhammer <fauli@gentoo.org> coreutils-8.5.ebuild:
  stable x86, bug 327147

  10 Jul 2010; Brent Baude <ranger@gentoo.org> coreutils-8.5.ebuild:
  Marking coreutils-8.5 ppc64 for bug 327147

  10 Jul 2010; Jeroen Roovers <jer@gentoo.org> coreutils-8.5.ebuild:
  Stable for HPPA (bug #327147).

  24 May 2010; <nixnut@gentoo.org> coreutils-8.4.ebuild:
  ppc stable #311827

  22 May 2010; Raúl Porcel <armin76@gentoo.org> coreutils-8.4.ebuild:
  sparc stable wrt #311827

  20 May 2010; Mike Frysinger <vapier@gentoo.org> coreutils-8.4.ebuild:
  Mark alpha/arm/ia64/s390/sh stable #311827.

  11 May 2010; Brent Baude <ranger@gentoo.org> coreutils-8.4.ebuild:
  Marking coreutils-8.4 ppc64 for bug 311827

  08 May 2010; Mike Frysinger <vapier@gentoo.org> coreutils-8.4.ebuild:
  Tweak tests in i18n patch #317565 by T Chan.

*coreutils-8.5 (24 Apr 2010)

  24 Apr 2010; Mike Frysinger <vapier@gentoo.org> +coreutils-8.5.ebuild:
  Version bump.

  08 Apr 2010; Christian Faulhammer <fauli@gentoo.org> coreutils-8.4.ebuild:
  stable x86, bug 311827

  05 Apr 2010; Markos Chandras <hwoarang@gentoo.org> coreutils-8.4.ebuild:
  Stable on amd64 wrt bug #311827

  29 Mar 2010; Jeroen Roovers <jer@gentoo.org> coreutils-8.4.ebuild:
  Stable for HPPA (bug #311827).

  28 Mar 2010; Mike Frysinger <vapier@gentoo.org> coreutils-8.4.ebuild:
  Force statfs tests when cross-compiling #311569 by Stephen Lewis.

  24 Jan 2010; Mike Frysinger <vapier@gentoo.org> coreutils-8.4.ebuild:
  Disable selinux tests when USE=-selinux #301782 by Philipp Riegger.

*coreutils-8.4 (13 Jan 2010)

  13 Jan 2010; Mike Frysinger <vapier@gentoo.org> +coreutils-8.4.ebuild:
  Version bump.

*coreutils-8.3 (08 Jan 2010)

  08 Jan 2010; Mike Frysinger <vapier@gentoo.org> +coreutils-8.3.ebuild:
  Version bump.

  05 Jan 2010; Mike Frysinger <vapier@gentoo.org> coreutils-8.2.ebuild:
  Add tac/-lrt build fix from upstream #298581 by Yuri Vasilevski. Include
  unicode patch from Fedora via USE=unicode #266866 by Glenn Sommer.

*coreutils-8.2 (11 Dec 2009)

  11 Dec 2009; Mike Frysinger <vapier@gentoo.org> +coreutils-8.2.ebuild:
  Version bump.

  02 Dec 2009; Mike Frysinger <vapier@gentoo.org> coreutils-8.1.ebuild:
  Force people to start migrating to xz-utils.

*coreutils-8.1 (19 Nov 2009)

  19 Nov 2009; Mike Frysinger <vapier@gentoo.org> +coreutils-8.1.ebuild:
  Version bump #288253 by Rafał Mużyło.

  09 Nov 2009; Mike Frysinger <vapier@gentoo.org> coreutils-7.6.ebuild:
  Use new packager flags to tag binaries with Gentoo info.

  31 Oct 2009; Brent Baude <ranger@gentoo.org> coreutils-7.5-r1.ebuild:
  Marking coreutils-7.5 ppc64 for bug 287219

  21 Oct 2009; Jeroen Roovers <jer@gentoo.org> coreutils-7.5-r1.ebuild:
  Stable for HPPA (bug #287219).

*coreutils-7.5-r1 (18 Oct 2009)

  18 Oct 2009; Mike Frysinger <vapier@gentoo.org> +coreutils-7.5-r1.ebuild:
  Add fix from newer versions for cp/mv problems on older kernels #289134 by
  Allen Brooker.

  12 Oct 2009; Mike Frysinger <vapier@gentoo.org> coreutils-7.5.ebuild,
  coreutils-7.6.ebuild:
  Inform people to reload their LS_COLOR env settings #288693 by Dirkjan
  Ochtman.

  10 Oct 2009; Raúl Porcel <armin76@gentoo.org> coreutils-7.5.ebuild:
  alpha/ia64/m68k/s390/sh/sparc stable wrt #287219

  09 Oct 2009; Mike Frysinger <vapier@gentoo.org> coreutils-7.6.ebuild:
  Add patch from upstream for mktemp build failures on some systems #288183
  by Alexey Charkov.

  07 Oct 2009; nixnut <nixnut@gentoo.org> coreutils-7.5.ebuild:
  ppc stable #287219

  05 Oct 2009; Markus Meier <maekke@gentoo.org> coreutils-7.5.ebuild:
  amd64/arm/x86 stable, bug #287219

  03 Oct 2009; Raúl Porcel <armin76@gentoo.org> coreutils-7.4.ebuild:
  ia64/m68k/s390/sh/sparc stable wrt #281699

*coreutils-7.6 (23 Sep 2009)

  23 Sep 2009; Mike Frysinger <vapier@gentoo.org> +coreutils-7.6.ebuild:
  Version bump #284727 by Arfrever Frehtes Taifersar Arahesis.

  13 Sep 2009; Markus Meier <maekke@gentoo.org> coreutils-7.4.ebuild:
  arm stable, bug #281699

  03 Sep 2009; Mike Frysinger <vapier@gentoo.org> coreutils-7.1.ebuild,
  coreutils-7.2.ebuild, coreutils-7.4.ebuild, coreutils-7.5.ebuild:
  Workaround broken --enable-libcap handling #283589 by Alberto.

  31 Aug 2009; Brent Baude <ranger@gentoo.org> coreutils-7.4.ebuild:
  stable ppc64, bug 281699

  29 Aug 2009; Tobias Klausmann <klausman@gentoo.org> coreutils-7.4.ebuild:
  Stable on alpha, bug #281699

  29 Aug 2009; nixnut <nixnut@gentoo.org> coreutils-7.4.ebuild:
  ppc stable #281699

*coreutils-7.5 (20 Aug 2009)

  20 Aug 2009; Mike Frysinger <vapier@gentoo.org> +coreutils-7.5.ebuild:
  Version bump.

  19 Aug 2009; Jeroen Roovers <jer@gentoo.org> coreutils-7.4.ebuild:
  Stable for HPPA (bug #281699).

  19 Aug 2009; Jeremy Olexa <darkside@gentoo.org> coreutils-7.4.ebuild:
  amd64 stable, all tests passed. bug 281699

  18 Aug 2009; Christian Faulhammer <fauli@gentoo.org> coreutils-7.4.ebuild:
  stable x86, bug 281699

  16 Aug 2009; Mike Frysinger <vapier@gentoo.org> coreutils-7.1.ebuild,
  coreutils-7.2.ebuild, coreutils-7.4.ebuild:
  Depend on xz-utils or lzma-utils.

  06 Jul 2009; Mike Frysinger <vapier@gentoo.org> coreutils-7.4.ebuild:
  Auto delete /bin/dircolors if it is from early coreutils #224823 by Stefan
  de Konink.

  16 May 2009; Mike Frysinger <vapier@gentoo.org> coreutils-7.1.ebuild,
  coreutils-7.2.ebuild, coreutils-7.4.ebuild:
  Allow /dev/loop when running mount #269758 by Nick Fortino.

*coreutils-7.4 (07 May 2009)

  07 May 2009; Mike Frysinger <vapier@gentoo.org> +coreutils-7.4.ebuild:
  Version bump.

  27 Apr 2009; Mike Frysinger <vapier@gentoo.org> coreutils-7.1,
  coreutils-7.2:
  Control gmp support via USE=gmp #267226 by Raúl Porcel.

  18 Apr 2009; Raúl Porcel <armin76@gentoo.org> coreutils-7.1.ebuild:
  arm/ia64/sh/sparc stable wrt #265614

  18 Apr 2009; Markus Meier <maekke@gentoo.org> coreutils-7.1:
  amd64/x86 stable, bug #265614

  12 Apr 2009; Brent Baude <ranger@gentoo.org> coreutils-7.1.ebuild:
  stable ppc64, bug 265614

  12 Apr 2009; Jeroen Roovers <jer@gentoo.org> coreutils-7.1.ebuild:
  Stable for HPPA (bug #265614).

  12 Apr 2009; Tobias Klausmann <klausman@gentoo.org> coreutils-7.1.ebuild:
  Stable on alpha, bug #265614

  12 Apr 2009; Mike Frysinger <vapier@gentoo.org> coreutils-7.1.ebuild,
  coreutils-7.2.ebuild:
  Allow mtab to be writable when running tests with mount #265725 by Nick
  Fortino.

  11 Apr 2009; nixnut <nixnut@gentoo.org> coreutils-7.1.ebuild:
  ppc stable #265614

  02 Apr 2009; Mike Frysinger <vapier@gentoo.org> coreutils-7.2.ebuild:
  Add fix from upstream for mv/i-3 test failure #264455 by Ryan Hill.

*coreutils-7.2 (31 Mar 2009)

  31 Mar 2009; Mike Frysinger <vapier@gentoo.org> +coreutils-7.2.ebuild:
  Version bump.

  12 Mar 2009; Mike Frysinger <vapier@gentoo.org> coreutils-7.1.ebuild:
  Fix some test failures #259876 by Ryan Hill.

  11 Mar 2009; Mike Frysinger <vapier@gentoo.org> coreutils-7.1.ebuild:
  Control libcap via USE=caps #260813 by Espen Hustad.

  11 Mar 2009; Mike Frysinger <vapier@gentoo.org> coreutils-7.1.ebuild:
  Block tct/netatalk due to timeout collision #259870, and block ccp4 due to
  truncate collision #260533.

*coreutils-7.1 (22 Feb 2009)

  22 Feb 2009; Mike Frysinger <vapier@gentoo.org> +coreutils-7.1.ebuild:
  Version bump #242566.

  27 Nov 2008; Mike Frysinger <vapier@gentoo.org> coreutils-6.12-r2.ebuild:
  Block sys-apps/stat #248312 by Diego E. Pettenò.

*coreutils-6.12-r2 (16 Oct 2008)
*coreutils-6.10-r3 (16 Oct 2008)

  16 Oct 2008; Robin H. Johnson <robbat2@gentoo.org>
  +files/coreutils-6.10-selinux-opt.patch, +coreutils-6.10-r3.ebuild,
  +coreutils-6.12-r2.ebuild:
  Fix automagical linking against libselinux per bug #230073.

*coreutils-6.12-r1 (27 Jul 2008)

  27 Jul 2008; Peter Alfredsen <loki_val@gentoo.org>
  +files/gnulib-utimens-update.patch, -coreutils-6.12.ebuild,
  +coreutils-6.12-r1.ebuild:
  Fix for bug #224483. People with old kernels can use this once more.

*coreutils-6.12 (01 Jun 2008)

  01 Jun 2008; Mike Frysinger <vapier@gentoo.org> +coreutils-6.12.ebuild:
  Version bump.

  29 Apr 2008; Brent Baude <ranger@gentoo.org> coreutils-6.10-r2.ebuild:
  stable ppc, bug 218927

  24 Apr 2008; Jeroen Roovers <jer@gentoo.org> coreutils-6.10-r2.ebuild:
  Stable for HPPA (bug #218927).

  24 Apr 2008; Markus Rothe <corsair@gentoo.org> coreutils-6.10-r2.ebuild:
  Stable on ppc64; bug #218927

  24 Apr 2008; <welp@gentoo.org> coreutils-6.10-r2.ebuild:
  Stable on amd64; bug 218927

  24 Apr 2008; Raúl Porcel <armin76@gentoo.org> coreutils-6.10-r2.ebuild:
  alpha/ia64/sparc/x86 stable wrt #218927

*coreutils-6.11 (19 Apr 2008)

  19 Apr 2008; Mike Frysinger <vapier@gentoo.org> +coreutils-6.11.ebuild:
  Version bump.

  17 Apr 2008; nixnut <nixnut@gentoo.org> coreutils-6.10-r1.ebuild:
  Stable on ppc wrt bug 217239

  14 Apr 2008; Jeroen Roovers <jer@gentoo.org> coreutils-6.10-r1.ebuild:
  Stable for HPPA (bug #217239).

  14 Apr 2008; Markus Rothe <corsair@gentoo.org> coreutils-6.10-r1.ebuild:
  Stable on ppc64; bug #217239

  14 Apr 2008; Raúl Porcel <armin76@gentoo.org> coreutils-6.10-r1.ebuild:
  alpha/ia64/sparc stable wrt #217239

  13 Apr 2008; Mike Frysinger <vapier@gentoo.org> coreutils-6.10-r1.ebuild,
  coreutils-6.10-r2.ebuild:
  Add support for USE=vanilla.

  13 Apr 2008; Mike Frysinger <vapier@gentoo.org> coreutils-6.10-r1.ebuild,
  coreutils-6.10-r2.ebuild:
  Drop unneeded selinux configure options.

  13 Apr 2008; Mike Frysinger <vapier@gentoo.org> coreutils-6.10-r1.ebuild,
  coreutils-6.10-r2.ebuild:
  Block older versions of util-linux for the lazy who havent updated in a
  while #217482.

  13 Apr 2008; Benedikt Böhm <hollow@gentoo.org> coreutils-6.10-r1.ebuild:
  amd64 stable wrt #217239

  12 Apr 2008; Dawid Węgliński <cla@gentoo.org> coreutils-6.10-r1.ebuild:
  Stable on x86 (bug #217239)

*coreutils-6.10-r2 (12 Apr 2008)

  12 Apr 2008; Mike Frysinger <vapier@gentoo.org> +coreutils-6.10-r2.ebuild:
  Add i18n patch from Fedora and some fixes from upstream for #210133.

  23 Feb 2008; Mike Frysinger <vapier@gentoo.org> coreutils-6.9-r1.ebuild:
  Fix build error on some systems #206841 by Markus Duft.

*coreutils-6.10-r1 (23 Jan 2008)

  23 Jan 2008; Mike Frysinger <vapier@gentoo.org> +coreutils-6.10-r1.ebuild:
  As Cardoe points out, mktemp has been integrated into this version, so we
  need to block the mktemp package and put the binary in the right place.

*coreutils-6.10 (23 Jan 2008)

  23 Jan 2008; Mike Frysinger <vapier@gentoo.org> +coreutils-6.10.ebuild:
  Version bump.

  15 Sep 2007; Mike Frysinger <vapier@gentoo.org> coreutils-6.9-r1.ebuild:
  Break sys-apps/attr out of USE=acl and into USE=xattr #192023.

  24 Jul 2007; Mike Frysinger <vapier@gentoo.org> coreutils-6.9-r1.ebuild:
  Punt forced man-pages depend as most people should have seen a smooth
  upgrade cycle by now.

  07 Jul 2007; Mike Frysinger <vapier@gentoo.org>
  +files/gnulib-futimens-rename.patch, coreutils-6.9-r1.ebuild:
  Fix from upstream gnulib for futimens handling with newer glibc #180764.

  02 Jul 2007; Piotr Jaroszyński <peper@gentoo.org> coreutils-6.4.ebuild,
  coreutils-6.7.ebuild, coreutils-6.7-r1.ebuild, coreutils-6.9.ebuild,
  coreutils-6.9-r1.ebuild:
  (QA) RESTRICT clean up.

  13 Jun 2007; Christoph Mende <angelos@gentoo.org> coreutils-6.9-r1.ebuild:
  Stable on amd64 wrt bug 181624

  13 Jun 2007; Mike Frysinger <vapier@gentoo.org> coreutils-6.9-r1.ebuild:
  Add /usr/bin/uname symlink for autotools.

  12 Jun 2007; Raúl Porcel <armin76@gentoo.org> coreutils-6.9-r1.ebuild:
  ia64 stable wrt #181624

  11 Jun 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  coreutils-6.9-r1.ebuild:
  Stable on sparc wrt #181624

  11 Jun 2007; Markus Rothe <corsair@gentoo.org> coreutils-6.9-r1.ebuild:
  Stable on ppc64; bug #181624

  11 Jun 2007; Raúl Porcel <armin76@gentoo.org> coreutils-6.9-r1.ebuild:
  alpha/x86 stable wrt #181624

  11 Jun 2007; nixnut <nixnut@gentoo.org> coreutils-6.9-r1.ebuild:
  Stable on ppc wrt bug 181624

  11 Jun 2007; Jeroen Roovers <jer@gentoo.org> coreutils-6.9-r1.ebuild:
  Fixed permissions for tests/ls/x-option. Stable for HPPA (bug #181624).

  11 Jun 2007; Joshua Kinard <kumba@gentoo.org> coreutils-6.9-r1.ebuild:
  Stable on mips, per #181624.

*coreutils-6.9-r1 (30 Apr 2007)

  30 Apr 2007; Mike Frysinger <vapier@gentoo.org> +coreutils-6.9-r1.ebuild:
  Fix ls -x error #173032 and install man pages #105188.

  24 Apr 2007; Bryan Østergaard <kloeri@gentoo.org>
  coreutils-6.7-r1.ebuild:
  Stable on Mips, bug 172003.

  06 Apr 2007; Christian Faulhammer <opfer@gentoo.org>
  coreutils-6.7-r1.ebuild:
  stable amd64, bug 172003

  04 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  coreutils-6.7-r1.ebuild:
  Stable on sparc wrt #172003

  29 Mar 2007; Chris PeBenito <pebenito@gentoo.org> coreutils-6.9.ebuild:
  Re-add SELinux support.

  26 Mar 2007; Jeroen Roovers <jer@gentoo.org> coreutils-6.7-r1.ebuild:
  Stable for HPPA (bug #172003).

  25 Mar 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  coreutils-6.7-r1.ebuild:
  Stable on ppc wrt bug #172003.

  25 Mar 2007; Markus Rothe <corsair@gentoo.org> coreutils-6.7-r1.ebuild:
  Stable on ppc64 - now really.. /bin/install missing is no regression.

  24 Mar 2007; Seemant Kulleen <seemant@gentoo.org>
  files/digest-coreutils-6.9, Manifest:
  upload the patchball, but I had to generate it myself, hence the need to
  redigest

  24 Mar 2007; Andrej Kacian <ticho@gentoo.org> coreutils-6.7-r1.ebuild:
  Stable on x86, bug #172003.

  24 Mar 2007; Markus Rothe <corsair@gentoo.org> coreutils-6.7-r1.ebuild:
  Back to ~ppc64

  24 Mar 2007; Markus Rothe <corsair@gentoo.org> coreutils-6.7-r1.ebuild:
  Stable on ppc64; bug #172003

*coreutils-6.9 (24 Mar 2007)

  24 Mar 2007; Mike Frysinger <vapier@gentoo.org> +coreutils-6.9.ebuild:
  Version bump.

  13 Feb 2007; Bryan Østergaard <kloeri@gentoo.org>
  coreutils-6.7-r1.ebuild:
  Stable on Alpha.

  22 Jan 2007; Bryan Østergaard <kloeri@gentoo.org>
  coreutils-6.7-r1.ebuild:
  Stable on IA64.

*coreutils-6.7-r1 (02 Jan 2007)

  02 Jan 2007; Mike Frysinger <vapier@gentoo.org> +coreutils-6.7-r1.ebuild:
  Move binaries not really needed into /usr.

*coreutils-6.7 (08 Dec 2006)

  08 Dec 2006; Mike Frysinger <vapier@gentoo.org> +coreutils-6.7.ebuild:
  Version bump.

  01 Dec 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  coreutils-6.4.ebuild:
  ppc stable, bug #144467

*coreutils-6.6 (26 Nov 2006)

  26 Nov 2006; Mike Frysinger <vapier@gentoo.org> +coreutils-6.6.ebuild:
  Version bump.

  24 Nov 2006; Markus Rothe <corsair@gentoo.org> coreutils-6.4.ebuild:
  Stable on ppc64; bug #144467

  07 Nov 2006; Gustavo Zacarias <gustavoz@gentoo.org> coreutils-6.4.ebuild:
  Stable on sparc wrt #144467

  04 Nov 2006; Jeroen Roovers <jer@gentoo.org> coreutils-6.4.ebuild:
  Stable for HPPA (bug #144467).

  01 Nov 2006; Chris Gianelloni <wolf31o2@gentoo.org> coreutils-6.4.ebuild:
  Stable on amd64/x86 wrt bug #144467.

*coreutils-6.4 (23 Oct 2006)

  23 Oct 2006; Mike Frysinger <vapier@gentoo.org> +coreutils-6.4.ebuild:
  Version bump.

*coreutils-6.3 (30 Sep 2006)

  30 Sep 2006; Mike Frysinger <vapier@gentoo.org> +coreutils-6.3.ebuild:
  Version bump.

*coreutils-6.2 (18 Sep 2006)

  18 Sep 2006; Mike Frysinger <vapier@gentoo.org> +coreutils-6.2.ebuild:
  Version bump.

  04 Sep 2006; Diego Pettenò <flameeyes@gentoo.org> coreutils-5.97.ebuild,
  coreutils-6.1.ebuild:
  Backport the kernel_linux fix to 5.97 and drop keyword from 6.1 as it
  doesn't build right now.

  04 Sep 2006; Diego Pettenò <flameeyes@gentoo.org> coreutils-6.1.ebuild:
  Remove kernel_linux conditional for acl and attr, acl can be use.masked for
  this package on non-linux profiles now.

*coreutils-6.1 (20 Aug 2006)

  20 Aug 2006; Mike Frysinger <vapier@gentoo.org> +coreutils-6.1.ebuild:
  Version bump.

  06 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> coreutils-5.96.ebuild,
  coreutils-5.97.ebuild:
  Drop keyword from old version, and make acl deps being actual dep only on
  Linux. *BSD does not require those deps although acl works fine.

*coreutils-5.97 (25 Jun 2006)

  25 Jun 2006; Mike Frysinger <vapier@gentoo.org> +coreutils-5.97.ebuild:
  Version bump.

  01 Jun 2006; Diego Pettenò <flameeyes@gentoo.org> coreutils-5.96.ebuild:
  Restrict confcache as per bug #134459.

  23 May 2006; Diego Pettenò <flameeyes@gentoo.org> coreutils-5.96.ebuild:
  Add ~x86-fbsd keyword. Change strategy for non-GNU userlands, instead of
  prefixing with 'g' (that might collide with other binaries as in FreeBSD),
  install in /usr/libexec/gnu. Don't force external regex on
  non-glibc/non-uclibc systems. Remove man pages when on non-GNU userland as
  they would collide with system's manpages.

*coreutils-5.96 (22 May 2006)

  22 May 2006; Mike Frysinger <vapier@gentoo.org> +coreutils-5.96.ebuild:
  Version bump.

*coreutils-5.95 (13 May 2006)

  13 May 2006; Mike Frysinger <vapier@gentoo.org> +coreutils-5.95.ebuild:
  Version bump.

*coreutils-5.94-r3 (07 May 2006)

  07 May 2006; Mike Frysinger <vapier@gentoo.org> +coreutils-5.94-r3.ebuild:
  Cleanup the progress bar patch, fix the cs.po date translation, and add fix
  from upstream for `pwd` bugs in bind mounts.

  02 May 2006; Mike Doty <kingtaco@gentoo.org> coreutils-5.94-r2.ebuild:
  mirroring coreutils-5.94-patches-1.4.tar.bz2 at
  http://dev.gentoo.org/~kingtaco/mirror/ bug 131808

  29 Apr 2006; Joshua Kinard <kumba@gentoo.org> coreutils-5.94-r1.ebuild:
  Marked stable on mips.

  17 Apr 2006; Markus Rothe <corsair@gentoo.org> coreutils-5.94-r1.ebuild:
  Stable on ppc64; bug #129546

  12 Apr 2006; Joseph Jezak <josejx@gentoo.org> coreutils-5.94-r1.ebuild:
  Marked ppc stable for bug #129546.

  12 Apr 2006; Bryan Østergaard <kloeri@gentoo.org
  coreutils-5.94-r1.ebuild:
  Stable on alpha, bug 129546.

  11 Apr 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  coreutils-5.94-r1.ebuild:
  Stable on sparc wrt #129546

  11 Apr 2006; Daniel Gryniewicz <dang@gentoo.org> coreutils-5.94-r1.ebuild:
  Marked stable on amd64 Per bug# 129546

  11 Apr 2006; Andrej Kacian <ticho@gentoo.org> coreutils-5.94-r1.ebuild:
  Stable on x86, bug #129546.

*coreutils-5.94-r2 (11 Apr 2006)

  11 Apr 2006; Mike Frysinger <vapier@gentoo.org> +coreutils-5.94-r2.ebuild:
  Re-enable support for system regex #128040 by Emanuele Giaquinta.

  04 Mar 2006; Luca Barbato <lu_zero@gentoo.org> coreutils-5.94-r1.ebuild:
  Missing acl logic

*coreutils-5.94-r1 (20 Feb 2006)

  20 Feb 2006; Mike Frysinger <vapier@gentoo.org> +coreutils-5.94-r1.ebuild:
  Drop the --without-included-regex since it just makes things crash atm #123342.

  17 Feb 2006; Mike Frysinger <vapier@gentoo.org> coreutils-5.2.1-r6.ebuild,
  coreutils-5.2.1-r7.ebuild, coreutils-5.3.0-r1.ebuild,
  coreutils-5.3.0-r2.ebuild, coreutils-5.93.ebuild, coreutils-5.94.ebuild:
  Make sure $WORKDIR is go-w before giving everyone read access #122951 by
  Joshua Pettett.

  17 Feb 2006; Chris PeBenito <pebenito@gentoo.org> coreutils-5.94.ebuild:
  Fix up SELinux patch.

*coreutils-5.94 (15 Feb 2006)

  15 Feb 2006; Mike Frysinger <vapier@gentoo.org> +coreutils-5.94.ebuild:
  Version bump.

  09 Feb 2006; Joshua Kinard <kumba@gentoo.org> coreutils-5.2.1-r7.ebuild:
  Marked stable on mips for Bug #120125.

  29 Jan 2006; Chris PeBenito <pebenito@gentoo.org> coreutils-5.93.ebuild:
  Update SELinux patch for 5.93, fixes bug #120254.

  27 Jan 2006; Simon Stelling <blubb@gentoo.org> coreutils-5.2.1-r7.ebuild:
  stable on amd64

*coreutils-5.93 (25 Jan 2006)

  25 Jan 2006; Mike Frysinger <vapier@gentoo.org> +coreutils-5.93.ebuild:
  Version bump #119794 by Daniel Drake.

  25 Jan 2006; Jose Luis Rivero <yoswink@gentoo.org>
  coreutils-5.2.1-r7.ebuild:
  Stable on alpha wrt #120125

  24 Jan 2006; Joseph Jezak <josejx@gentoo.org> coreutils-5.2.1-r7.ebuild:
  Marked ppc stable for bug #120125.

  24 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  coreutils-5.2.1-r7.ebuild:
  Stable on sparc wrt #120125

  24 Jan 2006; Chris White <chriswhite@gentoo.org>
  coreutils-5.2.1-r7.ebuild:
  x86 stable per bug #120125.

  24 Jan 2006; Markus Rothe <corsair@gentoo.org> coreutils-5.2.1-r7.ebuild:
  Stable on ppc64; bug #120125

*coreutils-5.3.0-r2 (05 Oct 2005)

  05 Oct 2005; Mike Frysinger <vapier@gentoo.org>
  +coreutils-5.3.0-r2.ebuild:
  Fix uname parsing of cpuinfo on alpha/ia64 and use timestyle patch from
  upstream.

  13 Sep 2005; Mike Frysinger <vapier@gentoo.org> coreutils-5.3.0-r1.ebuild:
  Fix off-by-one issue #105639 by Michal Januszewski.

*coreutils-5.3.0-r1 (30 Aug 2005)

  30 Aug 2005; Mike Frysinger <vapier@gentoo.org>
  +coreutils-5.3.0-r1.ebuild:
  Update the i18n patch to fix cut again as well as expand #104286 by peteru.

  30 Aug 2005; Diego Pettenò <flameeyes@gentoo.org> coreutils-5.3.0.ebuild:
  Remove charset.alias if it's present, only libiconv should install it.

*coreutils-5.3.0 (30 Aug 2005)

  30 Aug 2005; Mike Frysinger <vapier@gentoo.org> files/DIR_COLORS,
  +coreutils-5.3.0.ebuild:
  Version bump.

*coreutils-5.2.1-r7 (30 Aug 2005)

  30 Aug 2005; Mike Frysinger <vapier@gentoo.org> files/DIR_COLORS,
  +coreutils-5.2.1-r7.ebuild:
  Fix memleak in chmod #87490 and update DIR_COLORS with stuff from Fedora and
  #104087.

  18 Aug 2005; Mike Frysinger <vapier@gentoo.org> coreutils-5.2.1-r6.ebuild:
  Merge support for using coreutils on non-GNU systems by Diego Pettenò
  #101218.

  28 Jun 2005; Joshua Kinard <kumba@gentoo.org> coreutils-5.2.1-r6.ebuild:
  Marked stable on mips.

  06 Jun 2005; Markus Rothe <corsair@gentoo.org> coreutils-5.2.1-r6.ebuild:
  Stable on ppc64

  30 May 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  coreutils-5.2.1-r6.ebuild:
  Stable on sparc

  29 May 2005; <solar@gentoo.org> coreutils-5.2.1-r2.ebuild,
  coreutils-5.2.1-r5.ebuild, coreutils-5.2.1-r6.ebuild:
  - update coreutils to use libc expanded variable elibc_uclibc vs uclibc so
  USE=-* works

  29 May 2005; Joseph Jezak <josejx@gentoo.org> coreutils-5.2.1-r6.ebuild:
  Marked ppc stable.

*coreutils-5.2.1-r6 (02 Apr 2005)

  02 Apr 2005; Mike Frysinger <vapier@gentoo.org>
  +coreutils-5.2.1-r6.ebuild:
  Update i18n patch to the redhat version #87429 and include the tty utf8 fix
  #77633.

*coreutils-5.2.1-r5 (14 Mar 2005)

  14 Mar 2005; Martin Schlemmer <azarah@gentoo.org>
  +coreutils-5.2.1-r5.ebuild:
  Add fix for bug #84564.

  03 Mar 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  coreutils-5.2.1-r3.ebuild, coreutils-5.2.1-r4.ebuild:
  Dependency update: sys-apps/at -> sys-process/at.

*coreutils-5.2.1-r4 (09 Jan 2005)

  09 Jan 2005; Mike Frysinger <vapier@gentoo.org>
  +coreutils-5.2.1-r4.ebuild:
  Fix tail -f behavior #57477 by rob holland. Have the progress bar use normal
  spaces #76903 by Nikolai Weibull. Fix chown --dereference #53750 by Georgi
  Georgiev. Fix test running #75932 / #76089.

*coreutils-5.2.1-r3 (21 Dec 2004)

  21 Dec 2004; Mike Frysinger <vapier@gentoo.org>
  +coreutils-5.2.1-r3.ebuild:
  Remove i686-specific asm code on i486 systems #32429. Fix tail +# syntax
  #66713. Move [ to same place as test #65296. Fix man-page tests #69216. Fix
  autotool code #74210. Fix @echo in man/Makefile #53881. Use DESTDIR instead
  of einstall. Make symlinks absolute #55620.

  03 Sep 2004; Pieter Van den Abeele <pvdabeel@gentoo.org>
  coreutils-5.2.1-r1.ebuild, coreutils-5.2.1-r2.ebuild,
  coreutils-5.2.1.ebuild:
  Masked coreutils-5.2.1.ebuild stable for ppc

  03 Sep 2004; Pieter Van den Abeele <pvdabeel@gentoo.org>
  coreutils-5.2.1-r1.ebuild, coreutils-5.2.1-r2.ebuild:
  Masked coreutils-5.2.1-r2.ebuild stable for ppc

  03 Sep 2004; Pieter Van den Abeele <pvdabeel@gentoo.org>
  coreutils-5.2.1-r1.ebuild:
  Masked coreutils-5.2.1-r1.ebuild stable for ppc

  26 Aug 2004; Ciaran McCreesh <ciaranm@gentoo.org> files/DIR_COLORS:
  Added rxvt-unicode to the DIR_COLORS supported terminal list

  26 Aug 2004; Tom Gall <tgall@gentoo.org> coreutils-5.2.1.ebuild:
  fix ppc64 and s390, bug #61735

*coreutils-5.2.1-r2 (25 Aug 2004)

  25 Aug 2004; Seemant Kulleen <seemant@gentoo.org>
  +coreutils-5.2.1-r2.ebuild:
  Version bump to incorporate two fixes. First, the uname patch is made to work
  on amd64 architecture (fixing bug #59774 by Danny van Dyk
  <kugelfang@gentoo.org>), and the second is a fix to sort on large files
  reported by: qube99@hotmail.com in bug #39515, and fixed by: Sven Wegener
  <swegener@gentoo.org>

  15 Aug 2004; Travis Tilley <lv@gentoo.org>
  +files/003_all_coreutils-gentoo-uname.patch, coreutils-5.2.1-r1.ebuild,
  coreutils-5.2.1.ebuild:
  fixed uname -p on amd64

  23 Jul 2004; Seemant Kulleen <seemant@gentoo.org> coreutils-5.2.0-r2.ebuild,
  coreutils-5.2.1-r1.ebuild:
  put a hacky fix for bug #46593 while the sparc team figures out what the
  actual fix is

  13 Jul 2004; Seemant Kulleen <seemant@gentoo.org> coreutils-5.2.1-r1.ebuild:
  fix b0rked uname patch, closes bug #56866 by Doug Goldstein <cardoe@cardoe.com>

*coreutils-5.2.1-r1 (12 Jul 2004)

  12 Jul 2004; Seemant Kulleen <seemant@gentoo.org>
  -coreutils-5.0.91-r3.ebuild, +coreutils-5.2.1-r1.ebuild:
  Fix the sort -M deal, thanks to Sven Wegener <swegener@gentoo.org> in
  #gentoo-bugs and also bartron@gmx.dein bug #54765 by
  Thomas Petersen <mendocino@mendo.dk>. Also, fix the s390 stuff as reported in
  bug #52581 by jochen <jochen.eisinger@gmx.de>. Added the ppc64 stuff into the
  regular uname patch. Finally, fix the selinux-noacl patch, thanks to Chris
  PeBenito <pebenito@gentoo.org> via e-mail.

  25 Jun 2004; Aron Griffis <agriffis@gentoo.org> coreutils-5.0-r6.ebuild,
  coreutils-5.0.91-r3.ebuild, coreutils-5.0.91-r4.ebuild:
  QA - fix use invocation

  16 Jun 2004; Daniel Black <dragonheart@gentoo.org> coreutils-5.0-r6.ebuild,
  coreutils-5.0.91-r3.ebuild, coreutils-5.0.91-r4.ebuild,
  coreutils-5.2.0-r2.ebuild, coreutils-5.2.1.ebuild:
  uclibc not dependant on sys-apps/help2man thanks to Peter S. Mazinger
  <ps.m@gmx.net>. Changed dev.gentoo.org SRC_URI to mirror://gentoo/.

  31 May 2004; Tom Gall <tgall@gentoo.org> coreutils-5.0.91-r4.ebuild:
  added coreutils-5.0.91-ppc64-1.patch which fixes bug #52617

  17 May 2004; Mike Frysinger <vapier@gentoo.org> coreutils-5.2.1.ebuild:
  Fixes for uname: no more segfaults for unknown archs #36190, integrate the
  broken out s390 patch, and add support arm support.

  16 May 2004; Seemant Kulleen <seemant@gentoo.org> coreutils-5.2.1.ebuild:
  fixed the progress bar patch for acl enabled coreutils. Thanks to: Aaron
  Peterson <alpeterson@wsu.edu> in bug #51244 for pointing it out.

*coreutils-5.2.1 (16 May 2004)

  16 May 2004; Seemant Kulleen <seemant@gentoo.org> -coreutils-5.0-r5.ebuild,
  -coreutils-5.0.91-r2.ebuild, -coreutils-5.2.0-r1.ebuild,
  -coreutils-5.2.0.ebuild, +coreutils-5.2.1.ebuild:
  version bump to latest upstream. This one adds a patch from Sunil
  <funtoos@yahoo.com> in bug #44403 which allows compilation if MBRTOWC is *not*
  set.

  16 May 2004; Seemant Kulleen <seemant@gentoo.org> coreutils-5.2.0-r2.ebuild:
  Change dependency to autoconf-2.58 or above. This finally fixes the reconf bug
  #49137

  12 May 2004; Seemant Kulleen <seemant@gentoo.org> coreutils-5.2.0-r2.ebuild:
  set autoconf explicitly to 2.5. Should solve bug #49137 by Matt Davis
  <mdavis2173@comporium.net>

  11 May 2004; Gustavo Zacarias <gustavoz@gentoo.org>
  coreutils-5.2.0-r2.ebuild:
  Stable on sparc wrt #50400

*coreutils-5.2.0-r2 (07 May 2004)

  07 May 2004; Seemant Kulleen <seemant@gentoo.org>
  +coreutils-5.2.0-r2.ebuild:
  version bump, to install /etc/DIR_COLORS. Thanks to Weeve for noticing on
  sparc, and to SPANKY for being SPANKY.

  22 Apr 2004; Martin Holzer <mholzer@gentoo.org> coreutils-5.2.0-r1.ebuild,
  coreutils-5.2.0.ebuild:
  changing src_uri.

*coreutils-5.2.0-r1 (18 Apr 2004)

  18 Apr 2004; Michael McCabe <randy@gentoo.org> +coreutils-5.2.0-r1.ebuild:
  Adding s390 specific fixes to close bug 47965

  05 Mar 2004; Seemant Kulleen <seemant@gentoo.org> coreutils-5.2.0.ebuild:
  added a don't worry blurb to the reconf section

*coreutils-5.2.0 (05 Mar 2004)

  05 Mar 2004; Seemant Kulleen <seemant@gentoo.org> coreutils-5.0-r5.ebuild,
  coreutils-5.0-r6.ebuild, coreutils-5.0.91-r2.ebuild,
  coreutils-5.0.91-r3.ebuild, coreutils-5.0.91-r4.ebuild,
  coreutils-5.2.0.ebuild:
  version bump, should close bug #39632 by SpanKY <vapier@gentoo.org>, who came
  up with the fixes anyway, and that bug is related to bug #36337 by Robin
  Johnson <robbat2@gentoo.org>. Also, added attr to the explicit deps, per bug
  #41641 by toon <toon@hout.vanvergehaald.nl>. Just in case, we're affected by:
  bug #43655 by Rajiv Manglani <rajiv@gentoo.org>, this release should fix it.

  17 Feb 2004; Tom Gall <tgall@gentoo.org> 
  coreutils-5.0.91-r4.ebuild:
  Added ppc64 stable keyword

  03 Feb 2004; Daniel Robbins <drobbins@gentoo.org> coreutils-5.0.91*.ebuild:
  removed unnecessary append-flags -fPIC from ebuilds.
  
  17 Jan 2004; Christian Birchinger <joker@gentoo.org>
  coreutils-5.0.91-r4.ebuild:
  Added sparc stable keyword

  15 Jan 2004; Seemant Kulleen <seemant@gentoo.org>
  coreutils-5.0.91-r4.ebuild :
  symlink bin/install to usr/bin/install for Brad House

  14 Jan 2004; Guy Martin <gmsoft@gentoo.org> coreutils-5.0.91-r4.ebuild :
  Marked stable on hppa to have a working g++ again.

  11 Jan 2004; Seemant Kulleen <seemant@gentoo.org>
  coreutils-5.0.91-r4.ebuild:
  Applied the 64 bit fixes from MDK's newest src.rpm, which seems to solve the
  segfaults. In my defense, I did do some preliminary testing on -r4 with the
  previous patchset, and it didn't segfault -- this time, I checked an ls -R /
  output on both ia64 and amd64 boxes, so this should be sorted finally (bug
  #37891 by E. Papegaaij <e.papegaaij@student.utwente.nl>). Also, it now links
  against ncurses-5.3-r5 and greater for building and running. So, we finally
  get rid of the termcap cruft, thanks to Azarah for that (bug #37026).

  11 Jan 2004; Brad House <brad_mssw@gentoo.org> coreutils-5.0.91-r4.ebuild:
  coreutils -r4 is not stable on amd64. or at least ls is not. seemant broke it
  again :/

  09 Jan 2004; Seemant Kulleen <seemant@gentoo.org>
  coreutils-5.0.91-r4.ebuild:
  uniq and split are moved back to /bin because they are needed by the
  bootscripts (checkroot and functions.sh respectively). Thanks to Norberto
  Bensa <nbensa@gmx.net> in bug #36453

  09 Jan 2004; Seemant Kulleen <seemant@gentoo.org>
  coreutils-5.0.91-r4.ebuild:
  The ACL patches failed with nls in USE because it was still linking to
  termcap. Thanks to: Paul Giordano <giordano@covad.net> in bug #37682 opened
  by: Paul de Vrieze <pauldv@gentoo.org>

*coreutils-5.0.91-r4 (09 Jan 2004)

  09 Jan 2004; Seemant Kulleen <seemant@gentoo.org>
  coreutils-5.0.91-r4.ebuild:
  the patches link against ncurses rather than libtermcap, closing bug #37026 by
  Martin Flugeldufel <martin_flugeldufel@yahoo.com>. Additionally, some of the
  non-critical binaries (those not needed for bootup) have been moved to
  /usr/bin, which partially sorts out bug #36453, also by Martin Flugedufel

  31 Dec 2003; Seemant Kulleen <seemant@gentoo.org>
  coreutils-5.0.91-r3.ebuild:
  make sure to depend on the newest libtermcap stuff

  30 Dec 2003; Seemant Kulleen <seemant@gentoo.org>
  coreutils-5.0.91-r2.ebuild, coreutils-5.0.91-r3.ebuild:
  Added acl, gettext and libtermcap-compat to RDEPEND as well, otherwise that
  leads to b0rked tbz2's. Thanks to Donny Davies <woodchip@gentoo.org> :)

  30 Dec 2003; Seemant Kulleen <seemant@gentoo.org>
  coreutils-5.0.91-r3.ebuild:
  the lsw patch from mandrake has issues for us on amd64 and ia64, so we don't
  use it. Thanks to Brad House <brad_mssw@gentoo.org> for noticing

  30 Dec 2003; Brad House <brad_mssw@gentoo.org> coreutils-5.0.91-r3.ebuild:
  coreutils -r3 is broken bad! See note above KEYWORDS=, marking -*

  29 Dec 2003; Seemant Kulleen <seemant@gentoo.org>
  coreutils-5.0.91-r3.ebuild:
  Added libtermcap-compat to DEPEND string, thanks to rommel in #gentoo-ppc

*coreutils-5.0.91-r3 (29 Dec 2003)

  29 Dec 2003; Seemant Kulleen <seemant@gentoo.org>
  coreutils-5.0.91-r3.ebuild:
  several changes to this. First, we're using most of Mandrake's patchset with
  fixes, which adds some option to touch -- to make the timestamp move forwards
  or backwards. I need some input on whether we should keep this. Additionally,
  there is a patch to restore chown's behaviour to the old way. And another
  patch to allow old options for several of the utilities here. Additionally,
  we're using openi18n.org's patches for coreutils, which should sort (no pun
  intended) out bug #29136 by Sven Sternberger <sven.sternberger@desy.de>

  27 Dec 2003; Seemant Kulleen <seemant@gentoo.org> :
  fix uname output for hppa and ppc. Patch by Guy Martin <gmsoft@gentoo.org>.
  Closes bug #36190

  14 Dec 2003; Lars Weiler <pylon@gentoo.org> coreutils-5.0.91-r2.ebuild:
  Added dependency ppc? ( >=sys-devel/m4-1.4-r1 ).  See bug #35759

  10 Dec 2003; Seemant Kulleen <seemant@gentoo.org> coreutils-5.0-r5.ebuild,
  coreutils-5.0-r6.ebuild, coreutils-5.0.91-r2.ebuild:
  Bartron pointed out the dangers of filtering the flag in the same bug report.
  So yanking that. USe dangerous flags at your risk, not mine :P

  10 Dec 2003; Seemant Kulleen <seemant@gentoo.org> coreutils-5.0-r5.ebuild,
  coreutils-5.0-r6.ebuild, coreutils-5.0.91-r2.ebuild:
  filter out the malign-double flag, closing bug #35411

  09 Dec 2003; Seemant Kulleen <seemant@gentoo.org> coreutils-5.0-r5.ebuild,
  coreutils-5.0-r6.ebuild, coreutils-5.0.91-r2.ebuild:
  patch added to prevent the installation of the following inferior man pages:
  chgrp, chmod, chown, cp, dd, df, dir, dircolors, du, install, ln, ls, mkdir,
  mkfifo, mknod, mv, rm, rmdir, touch and vdir. Those man pages will be supplied
  by the man-pages package instead.  This should close most of bug #32096
  by Radek Podgorny <radek@podgorny.cz>

  09 Dec 2003; Seemant Kulleen <seemant@gentoo.org>
  coreutils-5.0.91-r2.ebuild:
  make sure it uses automake-1.7 -- closing bug #35425 by Marc Bevand
  <bevand_m@epita.fr>

*coreutils-5.0-r6 (08 Dec 2003)
*coreutils-5.0-r5 (08 Dec 2003)
*coreutils-5.0.91-r2 (08 Dec 2003)

  08 Dec 2003; Seemant Kulleen <seemant@gentoo.org> coreutils-5.0-r3.ebuild,
  coreutils-5.0-r4.ebuild, coreutils-5.0-r5.ebuild, coreutils-5.0-r6.ebuild,
  coreutils-5.0.91-r1.ebuild, coreutils-5.0.91-r2.ebuild,
  coreutils-5.0.91.ebuild:
  coreutils will now not compile the following: su, groups (both from shadow),
  uptime, kill (both from procps), and hostname (from net-tools). This
  closes bug #18181 by Jon Portnoy <avenj@gentoo.org>. Also, the groups
  thing was bug in #27071 by Marcin Wisnicki <wisnia21@freeshell.org>

  06 Dec 2003; Seemant Kulleen <seemant@gentoo.org> coreutils-5.0-r1.ebuild,
  coreutils-5.0-r2.ebuild, coreutils-5.0-r3.ebuild:
  moved -r3 to stable mips and removed crufty older ebuilds

  19 Nov 2003; Martin Holzer <mholzer@gentoo.org> coreutils-5.0.91-r1.ebuild,
  coreutils-5.0.91.ebuild:
  adding version number to automake. Closes #33836.

*coreutils-5.0.91-r1 (18 Nov 2003)

  23 Nov 2003; Guy Martin <gmsoft@gentoo.org> coreutils-5.0.91-r1.ebuild :
  The uname patch now works on hppa.

  18 Nov 2003; Chris PeBenito <pebenito@gentoo.org>
  coreutils-5.0.91-r1.ebuild:
  Bump to update SELinux patch. The old patch had a rare segfault/hang problem
  in ls. Otherwise, same as -r0.

  03 Nov 2003; Daniel Robbins <drobbins@gentoo.org> all of 'em: added missing
  RDEPEND so they don't default to DEPEND.
  
  02 Nov 2003; Chris PeBenito <pebenito@gentoo.org> coreutils-5.0-r4.ebuild:
  Missed removing SELinux patch from 5.0-r4

  28 Oct 2003; Chris PeBenito <pebenito@gentoo.org> coreutils-5.0-r1.ebuild,
  coreutils-5.0-r2.ebuild, coreutils-5.0-r3.ebuild, coreutils-5.0.91.ebuild:
  Switch SELinux patch from old API to new API.

  01 Oct 2003; Tavis Ormandy <taviso@gentoo.org> coreutils-5.0.91.ebuild:
  missing help2man dependency

  28 Sep 2003; Chris PeBenito <pebenito@gentoo.org> coreutils-5.0.91.ebuild:
  Fix selinux patch for 5.0.91.

*coreutils-5.0.91 (28 Sep 2003)

  28 Sep 2003; Martin Schlemmer <azarah@gentoo.org> coreutils-5.0.91.ebuild:
  Update version. I ported the ACL patches, except for the i18n one, as it gets
  messy, and there are a lot of Makefile breakage, and also what might be
  upstream fixes for the same thing. I thus rather think somebody that know a
  bit more about locale and such that can test it should do this. Same thing for
  the SELINUX patch - its a lot of small breakages and is tedious - I thought
  getting this in so far should motivate somebody with more time than me :)

  26 Sep 2003; Bartosch Pixa <darkspecter@gentoo.org> coreutils-5.0-r4.ebuild:
  set ppc in keywords

*coreutils-4.5.11-r1 (24 Sep 2003)

  24 Sep 2003; Seemant Kulleen <seemant@gentoo.org>
  coreutils-4.5.11-r1.ebuild, coreutils-5.0-r1.ebuild,
  coreutils-5.0-r2.ebuild, coreutils-5.0-r3.ebuild, coreutils-5.0-r4.ebuild:
  added static to IUSE, closing bug #29186 by Sascha Silbe
  <sascha-gentoo-bugzilla@silbe.org>

  24 Sep 2003; Seemant Kulleen <seemant@gentoo.org> coreutils-5.0-r1.ebuild,
  coreutils-5.0-r2.ebuild, coreutils-5.0-r3.ebuild, coreutils-5.0-r4.ebuild:
  add automake to depends, because it provides aclocal, which is needed to build
  coreutils. Thanks to Jared Hudso <jhhudso@gentoo.org>

  22 Sep 2003; Martin Schlemmer <azarah@gentoo.org> coreutils-5.0-r4.ebuild:
  Ok, was on crack there for a moment - the test for cvs was inverted, should be
  fixed now.

  22 Sep 2003; Martin Schlemmer <azarah@gentoo.org> coreutils-5.0-r4.ebuild:
  Fix issues with gettext's autopoint if cvs is not installed (bug #28920).

  19 Sep 2003; Christian Birchinger <joker@gentoo.org>
  coreutils-5.0-r3.ebuild:
  Added sparc stable keyword

  17 Sep 2003; Jon Portnoy <avenj@gentoo.org> coreutils-5.0-r4.ebuild :
  IA64 keywords. And don't believe Seemant - he really isn't an idiot. :)

  14 Sep 2003; Seemant Kulleen <seemant@gentoo.org> coreutils-5.0-r4.ebuild:
  I'm an idiot sometimes. The progress bar patch was being moved out of the way.
  Thanks pebenito, and sorry :(

  13 Sep 2003; Seemant Kulleen <seemant@gentoo.org> coreutils-5.0-r4.ebuild:
  Luca Barbato <lu_zero@gentoo.org> fixed the acl patch to compile with NLS
  disabled. This should close the NULL not found errors, as reported in bug
  #18151 by shadow.

  12 Sep 2003; Seemant Kulleen <seemant@gentoo.org> coreutils-5.0-r3.ebuild:
  Added message about removing fileutils, textutils and sh-utils in
  pkg_postinst. Closes bug #25019 by Chuck Brewer <cbrewer@stealthaccess.net>

*coreutils-5.0-r4 (12 Sep 2003)

  12 Sep 2003; Seemant Kulleen <seemant@gentoo.org> coreutils-5.0-r4.ebuild:
  ACL patches _finally_ added into coreutils.  A note about this.  If "acl"
  and "selinux" are both in USE, then "selinux" will be preferred and "acl"
  discarded.  Also, the progress-bar patch has been modified to work with
  the acl stuff.  This modification was done by: Marcin Wisnicki
  <wisnia21@freeshell.org> in bug #18151.  What I have done is put the acl
  patches into the gentoo patch tarball and changed the layout.  Patches are
  numbered to work with epatch's directory patching functionality, and if
  acl is used, then the original progresspatch is discarded.  Marked -r3
  stable on x86.  Bug #18151 by: shadow@ines.ro is now closed.

*coreutils-5.0-r3 (26 Aug 2003)

  26 Aug 2003; Martin Schlemmer <azarah@gentoo.org> Manifest,
  coreutils-5.0-r3.ebuild:
  Fix issues with gcc-2.95.3, bug #27329, thanks to patch from TGL
  <degrenier@easyconnect.fr>.

  25 Aug 2003; Chris PeBenito <pebenito@gentoo.org> coreutils-5.0-r2.ebuild:
  Fix selinux patch, as the old patch fails to apply when the progress bar patch
  is applied.

*coreutils-5.0-r2 (24 Aug 2003)

  24 Aug 2003; Seemant Kulleen <seemant@gentoo.org> coreutils-5.0-r2.ebuild:
  adds a patch to display a progress bar for mv and cp (when invoked with the -g
  option). Thanks to Haukkari in #gentoo for passing this on to us. The patch
  was authored by: Miika Pekkarinen <miipekk@ihme.org>

  03 Aug 2003; Seemant Kulleen <seemant@gentoo.org> coreutils-5.0-r1.ebuild,
  coreutils-5.0.ebuild, files/coreutils-5.0-confdir3.patch:
  gentoo patch updated to query mips properly for the uname info -- thanks to
  Kumba

  02 Aug 2003; Martin Schlemmer <azarah@gentoo.org> coreutils-5.0-r1.ebuild:
  Remove confdir3 patch for now.

  02 Aug 2003; Seemant Kulleen <seemant@gentoo.org> coreutils-5.0-r1.ebuild,
  coreutils-5.0.ebuild:
  Azarah's brilliance again :) sandbox is disabled for coreutils while
  portage-2.0.49 has not come out

  01 Aug 2003; Aron Griffis <agriffis@gentoo.org> coreutils-5.0-r1.ebuild,
  files/coreutils-5.0-confdir3.patch:
  Fix bug 25702 by refraining from cleaning up PATH_MAX test

*coreutils-5.0-r1 (28 Jul 2003)

  28 Jul 2003; Martin Schlemmer <azarah@gentoo.org> coreutils-5.0-r1.ebuild:
  Do not include su infopage, as it is not valid for the su from sys-apps/shadow
  that we are using (bug #23711).

*coreutils-5.0 (04 Apr 2003)

  04 Apr 2003; Joshua Brindle <method@gentoo.org> coreutils-5.0.ebuild:
  bumped to upstream stable release version

*coreutils-4.5.11 (20 Mar 2003)

  20 Mar 2003; Seemant Kulleen <seemant@gentoo.org> coreutils-4.5.10.ebuild,
  coreutils-4.5.11.ebuild, files/coreutils-4.5.10-gentoo-rms.diff,
  files/coreutils-4.5.10-gentoo-uname.diff,
  files/coreutils-4.5.9-gentoo-rms.diff,
  files/coreutils-4.5.9-gentoo-uname.diff:
  version bump, and moved patches to mirrors

*coreutils-4.5.10 (14 Mar 2003)

  20 Mar 2003; Joshua Brindle <method@gentoo.org> coreutils-4.5.10.ebuild:
  fixed selinux dependancy

  20 Mar 2003; Seemant Kulleen <seemant@gentoo.org>
  coreutils-4.5.10.ebuild :

  Patched to add selinux, thanks to sindian. Note, I removed the -r1
  revision bump as it was unnecessary.

  14 Mar 2003; Seemant Kulleen <seemant@gentoo.org> coreutils-4.5.10.ebuild:
  version bump thanks to drobbins on -core

*coreutils-4.5.9-r1 (11 Mar 2003)

  11 Mar 2003; Martin Schlemmer <azarah@gentoo.org> coreutils-4.5.9-r1.ebuild :
  Fix overwriting /bin/hostname, and causing /bin/domainname (symlink to
  /bin/hostname) to set the hostname instead of the domainname.  We use
  hostname from net-tools after all.  Ditto for /bin/uptime.

  11 Mar 2003; Martin Schlemmer <azarah@gentoo.org> coreutils-4.5.9.ebuild :
  OK, I am dense.  Seems when I did previous fix, I changed the:

    rm ${D}/usr/share/man/man1/su

  to:

    rm ${D}/usr/share/man/man1/su*

  Fixed this to fix the sum problem.

  11 Mar 2003; Martin Schlemmer <azarah@gentoo.org> coreutils-4.5.9.ebuild :
  Move symlink stuff till after we remove stuff we do not use, else we have
  invalid symlinks.  Change einstall to 'make DESTDIR=$D install', else it
  do not install all the manpages.

  Fix manpages again by manually installing.

*coreutils-4.5.9 (06 Mar 2003)

  11 Mar 2003; Zach Welch <zwelch@gentoo.org> coreutils-4.5.9-r1.ebuild,
  coreutils-4.5.9.ebuild:
  add arm keyword

  06 Mar 2003; Seemant Kulleen <seemant@gentoo.org> coreutils-4.5.9.ebuild
  ChangeLog files/digest-coreutils-4.5.9 :

  New package -- this will replace fileutils text-utils and sh-utils, when
  it gets unmasked.