summaryrefslogtreecommitdiff
blob: e731b8d788b0090cc568bbcc62005ca85693fa09 (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
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
# ChangeLog for sys-apps/util-linux
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/ChangeLog,v 1.380 2012/04/21 17:35:24 vapier Exp $

  21 Apr 2012; Mike Frysinger <vapier@gentoo.org>
  files/util-linux-2.20.1-no-printf-alloc.patch,
  files/util-linux-2.21.1-no-printf-alloc.patch:
  Also malloc fs_optstr #406303#17 by Anthony Basile.

  21 Apr 2012; Mike Frysinger <vapier@gentoo.org> util-linux-2.20.1-r1.ebuild,
  util-linux-2.20.1-r2.ebuild, +files/util-linux-2.20.1-no-printf-alloc.patch,
  util-linux-2.21.1.ebuild, +files/util-linux-2.21.1-no-printf-alloc.patch,
  util-linux-9999.ebuild:
  Add support for older C libraries that do not support latest POSIX standard
  (%as flags) #406303 by Ed Wildgoose.

  14 Apr 2012; Zac Medico <zmedico@gentoo.org> util-linux-2.21.1.ebuild,
  util-linux-9999.ebuild:
  Add ~amd64-linux keyword.

  05 Apr 2012; Mike Frysinger <vapier@gentoo.org> util-linux-9999.ebuild:
  Block the eject package now that util-linux includes it.

  30 Mar 2012; Mike Frysinger <vapier@gentoo.org> util-linux-2.21.ebuild,
  util-linux-2.21.1.ebuild:
  Drop scanf hack as it is already in 2.21.1 (I read the wrong source tree).

  30 Mar 2012; Mike Frysinger <vapier@gentoo.org> util-linux-2.21.ebuild,
  util-linux-2.21.1.ebuild:
  Add cross-compiling fixes to match upstream.

*util-linux-2.21.1 (30 Mar 2012)

  30 Mar 2012; Mike Frysinger <vapier@gentoo.org> +util-linux-2.21.1.ebuild:
  Version bump.

  03 Mar 2012; Markus Meier <maekke@gentoo.org> util-linux-2.20.1-r1.ebuild:
  arm stable, bug #404179

*util-linux-2.21 (24 Feb 2012)

  24 Feb 2012; Mike Frysinger <vapier@gentoo.org> +util-linux-2.21.ebuild,
  util-linux-9999.ebuild:
  Version bump.

  23 Feb 2012; Kacper Kowalik <xarthisius@gentoo.org>
  util-linux-2.20.1-r1.ebuild:
  ppc/ppc64 stable wrt #404179

  21 Feb 2012; Jeff Horelick <jdhore@gentoo.org> util-linux-2.20.1-r1.ebuild:
  marked x86 per bug 404179

  21 Feb 2012; Agostino Sarubbo <ago@gentoo.org> util-linux-2.20.1-r1.ebuild:
  Stable for amd64, wrt bug #404179

  18 Feb 2012; Jeroen Roovers <jer@gentoo.org> util-linux-2.20.1-r1.ebuild:
  Stable for HPPA (bug #404179).

*util-linux-2.20.1-r2 (16 Feb 2012)

  16 Feb 2012; Mike Frysinger <vapier@gentoo.org> +util-linux-2.20.1-r2.ebuild,
  +files/util-linux-2.20.1-libmount-c++.patch,
  +files/util-linux-2.20.1-umount-fs-search.patch:
  Add patch from upstream for libmount.h in C++ code #401057 by Michał Górny.
  Have umount search /usr/sbin like mount/fsck #403073 by Aidan Marks.

*util-linux-2.20.1-r1 (07 Jan 2012)

  07 Jan 2012; Mike Frysinger <vapier@gentoo.org> +util-linux-2.20.1-r1.ebuild,
  util-linux-9999.ebuild:
  Install libmount into / #398055 by Michał Górny.

  07 Jan 2012; Mike Frysinger <vapier@gentoo.org> -util-linux-2.17.2.ebuild,
  -util-linux-2.18-r1.ebuild, -files/util-linux-2.18-cfdisk-string-len.patch,
  -files/util-linux-2.18-falloc.patch, -files/util-linux-2.18-ncursesw.patch,
  -files/util-linux-2.18-slang.patch, -util-linux-2.19.ebuild,
  -util-linux-2.19.1.ebuild, -files/util-linux-2.19-old-libc.patch,
  -util-linux-2.20.ebuild:
  Old.

  07 Jan 2012; Mike Frysinger <vapier@gentoo.org> util-linux-2.19.1-r1.ebuild:
  Mark ppc64 stable #384305.

  30 Dec 2011; Ulrich Mueller <ulm@gentoo.org> util-linux-2.17.2.ebuild,
  util-linux-2.18-r1.ebuild, util-linux-2.19.ebuild, util-linux-2.19.1.ebuild,
  util-linux-2.19.1-r1.ebuild, util-linux-2.20.ebuild,
  util-linux-2.20-r1.ebuild, util-linux-2.20.1.ebuild, util-linux-9999.ebuild:
  Update LICENSE, see README.licensing in the tarball. Bug 175260.

  17 Nov 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  util-linux-2.19.1-r1.ebuild:
  x86 stable wrt bug #384305

  12 Nov 2011; Lars Wendler <polynomial-c@gentoo.org>
  util-linux-2.19.1-r1.ebuild,
  -files/util-linux-2.19.1-remove-useless-if-stuff-from-loopaes-patchset.diff:
  non-maintainer commit: Really fixed bug #375165 with solution suggested by
  Jiří Moravec.

  12 Nov 2011; Lars Wendler <polynomial-c@gentoo.org>
  util-linux-2.19.1-r1.ebuild,
  +files/util-linux-2.19.1-remove-useless-if-stuff-from-loopaes-patchset.diff:
  non-maintainer commit: Fixed application of umount-l patch in combination
  with loop-aes patch. This fixes bug #375165.

  11 Nov 2011; Tony Vroon <chainsaw@gentoo.org> util-linux-2.19.1-r1.ebuild:
  Marked stable on AMD64 based on arch testing by Ian "idella4" Delaney &
  Agostino "ago" Sarubbo in bug #384305.

  06 Nov 2011; Brent Baude <ranger@gentoo.org> util-linux-2.19.1-r1.ebuild:
  Marking util-linux-2.19.1-r1 ppc for bug 384305

  23 Oct 2011; Raúl Porcel <armin76@gentoo.org> util-linux-2.19.1-r1.ebuild:
  sparc stable wrt #384305

*util-linux-2.20.1 (20 Oct 2011)

  20 Oct 2011; Mike Frysinger <vapier@gentoo.org> +util-linux-2.20.1.ebuild:
  Version bump.

  20 Oct 2011; Mike Frysinger <vapier@gentoo.org> util-linux-2.20-r1.ebuild,
  util-linux-9999.ebuild:
  Inform users of new default clear behavior #381401#5 by Neil Bothwick.

*util-linux-2.20-r1 (17 Oct 2011)

  17 Oct 2011; Mike Frysinger <vapier@gentoo.org> +util-linux-2.20-r1.ebuild,
  +files/util-linux-2.20-dmesg-newline.patch,
  +files/util-linux-2.20-sysfs-init.patch:
  Add fixes from upstream for dmesg stopping with blank newlines #385305 by
  Maxime Gervais. Add fix from upstream for nfs/btrfs unmounting #385323 by
  Thomas Arnett.

  17 Oct 2011; Mike Frysinger <vapier@gentoo.org> util-linux-2.19.1-r1.ebuild:
  Mark alpha/arm/hppa/ia64/m68k/s390/sh stable #384305.

  23 Sep 2011; Lars Wendler <polynomial-c@gentoo.org> util-linux-2.20.ebuild:
  non-maintainer commit: Updated loop-aes patch (bug #381521).

  21 Sep 2011; Michał Górny <mgorny@gentoo.org> util-linux-9999.ebuild:
  Migrate to git-2.

  14 Sep 2011; Mike Frysinger <vapier@gentoo.org> util-linux-2.20.ebuild:
  Drop ddate man page when USE=-ddate #381291#5 by Ulrich Müller.

  07 Sep 2011; Mike Frysinger <vapier@gentoo.org> util-linux-2.20.ebuild,
  util-linux-9999.ebuild, metadata.xml:
  Add USE=ddate to control ddate util #381291 by Ole Henrik Jahren.

*util-linux-2.20 (29 Aug 2011)

  29 Aug 2011; Mike Frysinger <vapier@gentoo.org> +util-linux-2.20.ebuild,
  util-linux-9999.ebuild:
  Version bump which fixes #373381 by Chris Richards. Add USE=static-libs
  support #378269 by Agostino Sarubbo. Sync changes between live git and stable
  release ebuilds. Block older sysvinits since we now install the mountpoint
  util ourselves.

  29 Jul 2011; Zac Medico <zmedico@gentoo.org> util-linux-2.19.1-r1.ebuild,
  util-linux-9999.ebuild:
  Add ~x86-linux keyword.

  26 Jul 2011; Zac Medico <zmedico@gentoo.org> util-linux-2.19.1-r1.ebuild:
  Bump to EAPI 3 and fix for prefix.

*util-linux-2.19.1-r1 (12 Jul 2011)

  12 Jul 2011; Mike Frysinger <vapier@gentoo.org> +util-linux-2.19.1-r1.ebuild,
  +files/util-linux-2.19.1-mount-a-segv.patch,
  +files/util-linux-2.19.1-umount-l-nfs.patch:
  Add fixes from upstream for `mount -a` segfault #366213 and `umount -l`
  stalls #370051 by Pacho Ramos.

  17 Jun 2011; Dane Smith <c1pher@gentoo.org> util-linux-2.19.1.ebuild,
  metadata.xml:
  Re-add support for loop-aes wrt bug 371437.

  07 Jun 2011; Mike Frysinger <vapier@gentoo.org> util-linux-9999.ebuild:
  Run the helper po script so the subdir gets the necessary files created
  #370455 by Michał Górny.

  14 May 2011; Raúl Porcel <armin76@gentoo.org> util-linux-2.19.1.ebuild:
  alpha/ia64/m68k/s390/sh/sparc stable wrt #359759

  14 May 2011; Kacper Kowalik <xarthisius@gentoo.org> util-linux-2.19.1.ebuild:
  ppc/ppc64 stable wrt #359759

  09 May 2011; Markus Meier <maekke@gentoo.org> util-linux-2.19.1.ebuild:
  arm stable, bug #359759

  04 May 2011; Thomas Kahle <tomka@gentoo.org> util-linux-2.19.1.ebuild:
  x86 stable per bug 359759

  04 May 2011; Jeroen Roovers <jer@gentoo.org> util-linux-2.19.1.ebuild:
  Stable for HPPA (bug #359759).

  03 May 2011; Markos Chandras <hwoarang@gentoo.org> util-linux-2.19.1.ebuild:
  Stable on amd64 wrt bug #359759

*util-linux-2.19.1 (02 May 2011)

  02 May 2011; Mike Frysinger <vapier@gentoo.org> +util-linux-2.19.1.ebuild:
  Version bump.

  07 Apr 2011; Mike Frysinger <vapier@gentoo.org> util-linux-2.19.ebuild,
  util-linux-9999.ebuild:
  Add USE=ncurses to control the lib usage #221941 by Jim Kukunas and Mart
  Raudsepp.

  07 Apr 2011; Mike Frysinger <vapier@gentoo.org> util-linux-2.19.ebuild,
  +files/util-linux-2.19-old-libc.patch:
  Add fallback code for older versions of glibc #361271 by Viktor Robev.

  02 Apr 2011; Raúl Porcel <armin76@gentoo.org> util-linux-2.18-r1.ebuild:
  ia64/m68k/s390/sh/sparc stable wrt #356941

  25 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org>
  util-linux-2.18-r1.ebuild:
  ppc64 stable wrt #356941

  19 Mar 2011; Thomas Kahle <tomka@gentoo.org> util-linux-2.18-r1.ebuild:
  x86 stable per bug 356941

  13 Mar 2011; Markus Meier <maekke@gentoo.org> util-linux-2.18-r1.ebuild:
  arm stable, bug #356941

  12 Mar 2011; Tobias Klausmann <klausman@gentoo.org>
  util-linux-2.18-r1.ebuild:
  Stable on alpha, bug #356941

  12 Mar 2011; Mike Frysinger <vapier@gentoo.org> util-linux-2.19.ebuild,
  util-linux-9999.ebuild:
  Punt USE=loop-aes to stop useless complaints.

  07 Mar 2011; Jeroen Roovers <jer@gentoo.org> util-linux-2.18-r1.ebuild:
  Stable for HPPA (bug #356941).

  04 Mar 2011; Brent Baude <ranger@gentoo.org> util-linux-2.18-r1.ebuild:
  stable ppc, bug 356941

  01 Mar 2011; Markos Chandras <hwoarang@gentoo.org> util-linux-2.18-r1.ebuild:
  Stable on amd64 wrt bug #356941

*util-linux-2.19 (10 Feb 2011)

  10 Feb 2011; Mike Frysinger <vapier@gentoo.org> +util-linux-2.19.ebuild:
  Version bump.

  22 Nov 2010; Mike Frysinger <vapier@gentoo.org> util-linux-2.18-r1.ebuild,
  util-linux-9999.ebuild, metadata.xml:
  Add USE=cramfs to control cramfs dep (since it implies zlib too) #343081
  #343095 by Kfir Lavi.

  08 Oct 2010; Mike Frysinger <vapier@gentoo.org>
  files/util-linux-2.18-slang.patch:
  Remove unused Makefile.am hunk #340140 by Diego E. Pettenò.

  03 Oct 2010; Mike Frysinger <vapier@gentoo.org> util-linux-2.18-r1.ebuild,
  +files/util-linux-2.18-falloc.patch:
  Fix building with older linux/falloc.h #339432 by Andrew Randrianasulu.

  18 Sep 2010; Raúl Porcel <armin76@gentoo.org> util-linux-2.17.2.ebuild:
  ia64/s390/sh/sparc stable wrt #326339

  12 Sep 2010; Tobias Klausmann <klausman@gentoo.org>
  util-linux-2.17.2.ebuild:
  Stable on alpha, bug #326339

  12 Sep 2010; Raúl Porcel <armin76@gentoo.org> util-linux-2.17.2.ebuild:
  m68k stable wrt #326339 thanks to kolla for testing

  13 Aug 2010; Joseph Jezak <josejx@gentoo.org> util-linux-2.17.2.ebuild:
  Marked ppc stable for bug #326339.

  24 Jul 2010; Markus Meier <maekke@gentoo.org> util-linux-2.17.2.ebuild:
  arm stable, bug #326339

*util-linux-2.18-r1 (19 Jul 2010)

  19 Jul 2010; Mike Frysinger <vapier@gentoo.org>
  +util-linux-2.18-r1.ebuild,
  +files/util-linux-2.18-cfdisk-string-len.patch:
  Pull in updates from live git ebuild. Apply upstream fix for cfdisk input
  issue #328959 by James L. Hammons. Update loop-aes patch #326363.

  10 Jul 2010; Jeroen Roovers <jer@gentoo.org> util-linux-2.17.2.ebuild:
  Stable for HPPA (bug #326339).

  10 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
  util-linux-2.17.2.ebuild:
  stable x86, bug 326339

  09 Jul 2010; Samuli Suominen <ssuominen@gentoo.org>
  util-linux-2.17.2.ebuild:
  ppc64 stable wrt #326339

  06 Jul 2010; Mike Frysinger <vapier@gentoo.org> util-linux-9999.ebuild:
  Search /usr/sbin for mount/fsck helpers.

  04 Jul 2010; Markos Chandras <hwoarang@gentoo.org>
  util-linux-2.17.2.ebuild:
  Stable on amd64 wrt bug #326339

  01 Jul 2010; Mike Frysinger <vapier@gentoo.org>
  files/util-linux-2.18-ncursesw.patch:
  Tweak patch to handle non-unicode ncurses #326481 by Wilbur Pan.

  01 Jul 2010; Mike Frysinger <vapier@gentoo.org> util-linux-2.18.ebuild,
  +files/util-linux-2.18-slang.patch:
  Add fix from upstream for building with slang #326373 by Mikael Magnusson.

*util-linux-2.18 (30 Jun 2010)

  30 Jun 2010; Mike Frysinger <vapier@gentoo.org> +util-linux-2.18.ebuild,
  +files/util-linux-2.18-ncursesw.patch, util-linux-9999.ebuild:
  Version bump.

*util-linux-2.17.2 (22 Mar 2010)

  22 Mar 2010; Mike Frysinger <vapier@gentoo.org> +util-linux-2.17.2.ebuild:
  Version bump.

  20 Mar 2010; Mike Frysinger <vapier@gentoo.org> util-linux-2.17.1.ebuild:
  Work around broken glibc-2.10 on 32bit systems and fallocate #300307 by
  Marco Clocchiatti.

  09 Mar 2010; Mike Frysinger <vapier@gentoo.org> util-linux-2.17.1.ebuild:
  Update loop-aes patch #307987.

*util-linux-2.17.1 (05 Mar 2010)

  05 Mar 2010; Mike Frysinger <vapier@gentoo.org> +util-linux-2.17.1.ebuild:
  Version bump #307055 by Arseny Solokha.

  15 Feb 2010; Joseph Jezak <josejx@gentoo.org> util-linux-2.16.2.ebuild:
  Marked ppc stable for bug #301179.

  12 Feb 2010; Raúl Porcel <armin76@gentoo.org> util-linux-2.16.2.ebuild:
  sparc stable wrt #301179

*util-linux-2.17-r1 (09 Feb 2010)

  09 Feb 2010; Mike Frysinger <vapier@gentoo.org>
  +files/0001-libblkid-fix-segfault-in-drdb.patch,
  +util-linux-2.17-r1.ebuild:
  Add fix from upstream for blkid segfaults #301787 by Alec M.

  09 Feb 2010; Mike Frysinger <vapier@gentoo.org> util-linux-2.16.2.ebuild:
  Mark alpha/ia64/s390/sh stable #301179.

  04 Feb 2010; Markus Meier <maekke@gentoo.org> util-linux-2.16.2.ebuild:
  amd64/arm stable, bug #301179

  03 Feb 2010; Christian Faulhammer <fauli@gentoo.org>
  util-linux-2.16.2.ebuild:
  stable x86, bug 301179

  27 Jan 2010; Jeroen Roovers <jer@gentoo.org> util-linux-2.16.2.ebuild:
  Stable for HPPA (bug #301179).

  24 Jan 2010; Tom Gall <tgall@gentoo.org> util-linux-2.16.2.ebuild:
  stable on ppc64, bug #301179

  23 Jan 2010; Samuli Suominen <ssuominen@gentoo.org>
  util-linux-2.17.ebuild:
  Update loop-aes patch to upstream SRC_URI wrt #300869, thanks to James
  Ausmus and others.

*util-linux-2.17 (08 Jan 2010)

  08 Jan 2010; Mike Frysinger <vapier@gentoo.org> +util-linux-2.17.ebuild:
  Version bump.

  03 Jan 2010; <solar@gentoo.org> util-linux-2.16.2.ebuild:
  - cross compile love. default libtool files try to link with the host
  libc.so so we call elibtoolize to work the magic

  07 Dec 2009; Samuli Suominen <ssuominen@gentoo.org>
  util-linux-2.16.1.ebuild:
  amd64 stable wrt #284744

  01 Dec 2009; Mike Frysinger <vapier@gentoo.org> util-linux-2.16.1.ebuild,
  util-linux-2.16.2.ebuild, util-linux-9999.ebuild:
  Disable tls if the toolchain lacks support.

*util-linux-2.16.2 (30 Nov 2009)

  30 Nov 2009; Mike Frysinger <vapier@gentoo.org> +util-linux-2.16.2.ebuild:
  Version bump.

  29 Nov 2009; Joseph Jezak <josejx@gentoo.org> util-linux-2.16.1.ebuild:
  Marked ppc stable for bug #284744.

  28 Nov 2009; Raúl Porcel <armin76@gentoo.org> util-linux-2.16.1.ebuild:
  ia64/sparc stable wrt #284744

  23 Nov 2009; Markus Meier <maekke@gentoo.org> util-linux-2.16.1.ebuild:
  arm stable, bug #284744

  09 Nov 2009; Christian Faulhammer <fauli@gentoo.org>
  util-linux-2.16.1.ebuild:
  fix wrong KEYWORDS assignment

  09 Nov 2009; Christian Faulhammer <fauli@gentoo.org>
  util-linux-2.16.1.ebuild:
  stable x86, bug 284744

  31 Oct 2009; Brent Baude <ranger@gentoo.org> util-linux-2.16.1.ebuild:
  Marking util-linux-2.16.1 ppc64 for bug 284744

  21 Oct 2009; Jeroen Roovers <jer@gentoo.org> util-linux-2.16.1.ebuild:
  Stable for HPPA (bug #284744).

  15 Oct 2009; Joseph Jezak <josejx@gentoo.org> util-linux-2.16.1.ebuild:
  Reverting ppc64 stable mark until e2fsprogs can go stable too.

  05 Oct 2009; Samuli Suominen <ssuominen@gentoo.org>
  util-linux-2.16.1.ebuild:
  Update loop-aes patch wrt #284744 by Romain Perier.

  03 Oct 2009; Brent Baude <ranger@gentoo.org> util-linux-2.16.1.ebuild:
  Marking util-2.16.1 ppc64 for 284744

  03 Oct 2009; Brent Baude <ranger@gentoo.org> ChangeLog:
  Marking util-linux-2.16.1 ppc64 for bug 284744

  03 Oct 2009; Tobias Klausmann <klausman@gentoo.org>
  util-linux-2.16.1.ebuild:
  Stable on alpha, bug #284744

  23 Sep 2009; Mike Frysinger <vapier@gentoo.org> util-linux-2.16.1.ebuild,
  util-linux-9999.ebuild, metadata.xml:
  Add USE=perl to control the perl chkdupexe script #284093 by Diego E.
  Pettenò.

*util-linux-2.16.1 (07 Sep 2009)

  07 Sep 2009; Mike Frysinger <vapier@gentoo.org> +util-linux-2.16.1.ebuild:
  Version bump.

*util-linux-2.16-r1 (16 Aug 2009)

  16 Aug 2009; Mike Frysinger <vapier@gentoo.org>
  +files/0001-libblkid-fix-ext2-detection-on-systems-with-ext4-onl.patch,
  +util-linux-2.16-r1.ebuild:
  Add fix from upstream for detecting ext2 filesystems with ext4-only
  #279054 by sl.

  26 Jul 2009; Mike Frysinger <vapier@gentoo.org>
  -util-linux-2.13.1.1.ebuild, util-linux-2.14.2.ebuild,
  -util-linux-2.15.ebuild, -util-linux-2.15-r1.ebuild:
  Add some workarounds for stable uClibc systems #249582 by Natanael Copa.

  26 Jul 2009; Mike Frysinger <vapier@gentoo.org> util-linux-2.16.ebuild,
  util-linux-9999.ebuild:
  Add a call to autopoint #278941 by hangfire.

  26 Jul 2009; Mike Frysinger <vapier@gentoo.org> util-linux-2.16.ebuild,
  util-linux-9999.ebuild:
  Update loop-aes patch #278382.

*util-linux-2.16 (16 Jul 2009)

  16 Jul 2009; Mike Frysinger <vapier@gentoo.org> +util-linux-2.16.ebuild,
  util-linux-9999.ebuild:
  Version bump #269378 by Matthias Schwarzott.

  28 Jun 2009; Mike Frysinger <vapier@gentoo.org> util-linux-2.15.1.ebuild:
  Update loop-aes patch #273883 by Fabio Coatti.

*util-linux-2.15.1 (10 Jun 2009)

  10 Jun 2009; Mike Frysinger <vapier@gentoo.org> +util-linux-2.15.1.ebuild:
  Version bump.

  29 May 2009; Mike Frysinger <vapier@gentoo.org> util-linux-2.15-r1.ebuild,
  +files/util-linux-2.15-locale.patch:
  Add fix from upstream for locale build failure on uClibc #271154 by
  Gianluigi Tiesi.

  24 May 2009; Mike Frysinger <vapier@gentoo.org> util-linux-2.15-r1.ebuild:
  Re-order patches when USE=loop-aes #271041 by Lars Wendler and add
  libtool-2 to DEPEND #271025 by Eike Hein.

  23 May 2009; Mike Frysinger <vapier@gentoo.org> util-linux-2.14.2.ebuild,
  files/util-linux-2.15-old-libselinux.patch:
  Apply selinux fix from upstream for #270168 by Tadas.

*util-linux-2.15-r1 (23 May 2009)

  23 May 2009; Mike Frysinger <vapier@gentoo.org> +util-linux-2.15-r1.ebuild,
  +files/util-linux-2.15-losetup-symlinks.patch,
  +files/util-linux-2.15-old-libselinux.patch:
  Grab fixes from upstream for #270168 by Tadas and #269264 by Mario
  Bachmann.

  18 May 2009; Raúl Porcel <armin76@gentoo.org> util-linux-2.14.2.ebuild:
  ia64/sparc stable wrt #268765

  13 May 2009; Markus Meier <maekke@gentoo.org> util-linux-2.14.2.ebuild:
  amd64/x86 stable, bug #268765

  11 May 2009; Mike Frysinger <vapier@gentoo.org> util-linux-2.15.ebuild:
  Update loop-aes patch #268772 by Wilbur Pan.

  10 May 2009; Mike Frysinger <vapier@gentoo.org> util-linux-2.15.ebuild,
  +files/util-linux-2.15-cpuid-pic.patch:
  Fix building on hardened due to PIC/cpuid #269001 by Juergen Rose.

  09 May 2009; Tobias Klausmann <klausman@gentoo.org>
  util-linux-2.14.2.ebuild:
  Stable on alpha, bug #268765

  06 May 2009; Jeroen Roovers <jer@gentoo.org> util-linux-2.14.2.ebuild:
  Stable for HPPA (bug #268765).

  06 May 2009; Brent Baude <ranger@gentoo.org> util-linux-2.14.2.ebuild:
  Marking util-linux-2.14.2 ppc64 and ppc for bug 268765

*util-linux-2.15 (05 May 2009)

  05 May 2009; Mike Frysinger <vapier@gentoo.org> +util-linux-2.15.ebuild:
  Version bump.

  15 Feb 2009; Mike Frysinger <vapier@gentoo.org> util-linux-2.14.2.ebuild:
  Update loop-aes patch #258456.

  15 Feb 2009; Mike Frysinger <vapier@gentoo.org> util-linux-2.14.1.ebuild,
  util-linux-2.14.2.ebuild:
  Touchup wording on USE=loop-aes info.

*util-linux-2.14.2 (10 Feb 2009)

  10 Feb 2009; Mike Frysinger <vapier@gentoo.org> +util-linux-2.14.2.ebuild:
  Version bump.

  30 Dec 2008; Mike Frysinger <vapier@gentoo.org> util-linux-2.14.1.ebuild,
  util-linux-9999.ebuild:
  Depend on sys-libs/e2fsprogs-libs rather than sys-fs/e2fsprogs #249663.

  06 Dec 2008; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.14-AC_BIG_ENDIAN.patch, util-linux-2.14.1.ebuild:
  Add fix from upstream for missing call to AC_BIG_ENDIAN in configure.

  02 Dec 2008; Brent Baude <ranger@gentoo.org> util-linux-2.14.1.ebuild:
  stable ppc64, bug 249107

  02 Dec 2008; Raúl Porcel <armin76@gentoo.org> util-linux-2.14.1.ebuild:
  alpha/ia64/sparc stable wrt #249107

  30 Nov 2008; Markus Meier <maekke@gentoo.org> util-linux-2.14.1.ebuild:
  amd64/x86 stable, bug #249107

  29 Nov 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  util-linux-2.14.1.ebuild:
  ppc stable, bug #249107

  29 Nov 2008; <solar@gentoo.org> util-linux-2.14.1.ebuild:
  - quick hack for dirty times

  27 Nov 2008; Jeroen Roovers <jer@gentoo.org> util-linux-2.14.1.ebuild:
  Stable for HPPA (bug #249107).

  17 Nov 2008; Diego E. Pettenò <flameeyes@gentoo.org>
  files/util-linux-2.12q-debian-10cfdisk.patch:
  Fix patch with absolute paths.

  26 Oct 2008; Mike Frysinger <vapier@gentoo.org> files/crypto-loop.initd:
  Apply POSIX patch #236858.

  26 Oct 2008; Mike Frysinger <vapier@gentoo.org> util-linux-2.14.1.ebuild:
  Update loop-aes support #242874 by Fabio Coatti and Lars (Polynomial-C).

*util-linux-2.14.1 (20 Oct 2008)

  20 Oct 2008; Mike Frysinger <vapier@gentoo.org> +util-linux-2.14.1.ebuild:
  Version bump.

  23 Aug 2008; Doug Goldstein <cardoe@gentoo.org> metadata.xml:
  add GLEP 56 USE flag desc from use.local.desc

  28 Jun 2008; Mike Frysinger <vapier@gentoo.org> util-linux-2.14.ebuild:
  Update loop-aes patch from upstream #228691.

*util-linux-2.14 (21 Jun 2008)

  21 Jun 2008; Mike Frysinger <vapier@gentoo.org> +util-linux-2.14.ebuild:
  Version bump #228061 by Conrad Kostecki.

  07 Jun 2008; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.13.1-no-a.out.patch, util-linux-2.13.1.1.ebuild:
  Do not rely on a.out.h #221939 by Mart Raudsepp.

  28 Apr 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  util-linux-2.13.1.1.ebuild:
  ppc stable, bug #219202

  27 Apr 2008; Markus Meier <maekke@gentoo.org> util-linux-2.13.1.1.ebuild:
  amd64 stable, security bug #219202

  27 Apr 2008; Markus Rothe <corsair@gentoo.org> util-linux-2.13.1.1.ebuild:
  Stable on ppc64; bug #219202

  25 Apr 2008; Raúl Porcel <armin76@gentoo.org> util-linux-2.13.1.1.ebuild:
  alpha/ia64/x86 stable wrt security #219202

  25 Apr 2008; Jeroen Roovers <jer@gentoo.org> util-linux-2.13.1.1.ebuild:
  Stable for HPPA (bug #219202).

  25 Apr 2008; Ferris McCormick <fmccor@gentoo.org>
  util-linux-2.13.1.1.ebuild:
  Sparc stable, Security Bug #219202.

*util-linux-2.13.1.1 (21 Apr 2008)

  21 Apr 2008; Mike Frysinger <vapier@gentoo.org>
  +util-linux-2.13.1.1.ebuild:
  Version bump.

  31 Mar 2008; Jeroen Roovers <jer@gentoo.org> util-linux-2.13.1.ebuild:
  Stable for HPPA (bug #215371).

  30 Mar 2008; Santiago M. Mola <coldwind@gentoo.org>
  util-linux-2.13.1.ebuild:
  amd64 stable wrt bug #215371

  30 Mar 2008; Raúl Porcel <armin76@gentoo.org> util-linux-2.13.1.ebuild:
  alpha/ia64/sparc/x86 stable wrt #215371

  30 Mar 2008; Brent Baude <ranger@gentoo.org> util-linux-2.13.1.ebuild:
  stable ppc64, bug 215371

  30 Mar 2008; Brent Baude <ranger@gentoo.org> util-linux-2.13.1.ebuild:
  stable ppc, bug 215371

  29 Mar 2008; Mike Frysinger <vapier@gentoo.org> util-linux-2.13.1.ebuild,
  util-linux-9999.ebuild:
  Add support for USE=unicode and USE=slang #208976. Update loop-aes cruft
  #206331.

  26 Feb 2008; Mike Frysinger <vapier@gentoo.org> util-linux-2.13.1.ebuild:
  Add ioprio workaround back as it hasnt been properly fixed in this release
  #211573 by Mike Hammill.

  01 Feb 2008; Diego Pettenò <flameeyes@gentoo.org>
  files/crypto-loop.initd:
  Update init script to work with current development version of OpenRC
  (checkroot -> root; checkfs -> fsck).

  20 Jan 2008; Mike Frysinger <vapier@gentoo.org>
  util-linux-2.13.0.1.ebuild, util-linux-2.13.1.ebuild:
  Document USE=crypt -> USE=loop-aes transition #206747 by Jan Schubert.

*util-linux-2.13.1 (16 Jan 2008)

  16 Jan 2008; Mike Frysinger <vapier@gentoo.org> +util-linux-2.13.1.ebuild:
  Version bump.

*util-linux-2.13.0.1 (12 Jan 2008)

  12 Jan 2008; Mike Frysinger <vapier@gentoo.org>
  -util-linux-2.13-r3.ebuild, +util-linux-2.13.0.1.ebuild:
  Bump source tarball so that loop-aes applies again #205529 by Ryan Tandy.
  Otherwise, there is no functional changes from previous version.

  12 Jan 2008; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.13-uclibc.patch, util-linux-2.13-r2.ebuild,
  util-linux-2.13-r3.ebuild:
  Fixup building on uClibc #203711.

  11 Jan 2008; Richard Freeman <rich0@gentoo.org> util-linux-2.13-r2.ebuild:
  amd64 stable - #202181

  10 Jan 2008; Raúl Porcel <armin76@gentoo.org> util-linux-2.13-r2.ebuild:
  alpha/ia64 stable wrt #205101

  09 Jan 2008; Brent Baude <ranger@gentoo.org> util-linux-2.13-r2.ebuild:
  Marking util-linux-2.13-r2 ppc64 for bug 202181

  09 Jan 2008; Brent Baude <ranger@gentoo.org> util-linux-2.13-r2.ebuild:
  Marking util-linux-2.13-r2 ppc for bug 202181

  09 Jan 2008; Markus Meier <maekke@gentoo.org> util-linux-2.13-r2.ebuild:
  x86 stable, bug #202181

  09 Jan 2008; Ferris McCormick <fmccor@gentoo.org>
  util-linux-2.13-r2.ebuild:
  Sparc stable --- Bug #202181 --- utilities seem fine.

  09 Jan 2008; Jeroen Roovers <jer@gentoo.org> util-linux-2.13-r2.ebuild:
  Stable for HPPA (bug #202181).

*util-linux-2.13-r3 (14 Dec 2007)

  14 Dec 2007; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.13-hwclock-rtc.patch,
  +files/util-linux-2.13-losetup-P.patch, +util-linux-2.13-r3.ebuild:
  Fix from upstream for rtc/hwclock handling #179780 and fix for losetup -P
  with loop-aes #201981.

  19 Nov 2007; Joshua Kinard <kumba@gentoo.org> util-linux-2.12r-r8.ebuild:
  Stable on mips, per #195390.

  12 Oct 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  util-linux-2.12r-r8.ebuild:
  ppc stable, bug #195390

  11 Oct 2007; Raúl Porcel <armin76@gentoo.org> util-linux-2.12r-r8.ebuild:
  alpha/ia64 stable wrt security #195390

  11 Oct 2007; Tom Gall <tgall@gentoo.org> util-linux-2.12r-r8.ebuild:
  stable on ppc64, bug #195390 

  11 Oct 2007; Jeroen Roovers <jer@gentoo.org> util-linux-2.12r-r8.ebuild:
  Stable for SPARC (bug #195390).

  11 Oct 2007; Steve Dibb <beandog@gentoo.org> util-linux-2.12r-r8.ebuild:
  amd64 stable, security bug 195390

  11 Oct 2007; Jeroen Roovers <jer@gentoo.org> util-linux-2.12r-r8.ebuild:
  Stable for HPPA (bug #195390).

  10 Oct 2007; Christian Faulhammer <opfer@gentoo.org>
  util-linux-2.12r-r8.ebuild:
  stable x86, security bug 195390

*util-linux-2.13-r2 (05 Oct 2007)

  05 Oct 2007; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.13-script-SIGWINCH.patch,
  +files/util-linux-2.13-setuid-checks.patch, files/crypto-loop.initd,
  +util-linux-2.13-r2.ebuild:
  Add fix from upstream for `script` breakage with SIGWINCH #191452 by
  Eric Augustus.  Add security fix from upstream.  Fix from Petr Pisar
  for swap on cryptoloop #182031.  Add by in loop-aes support via USE=crypt
  #193088 by Hank Leininger and Alon Bar-Lev.

*util-linux-2.12r-r8 (05 Oct 2007)

  05 Oct 2007; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.13-setuid-checks.patch, +util-linux-2.12r-r8.ebuild:
  Add security fix from upstream.

  04 Sep 2007; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.13-ioprio-syscalls.patch, util-linux-2.13-r1.ebuild:
  Stub out ioprio syscalls on dated systems #190613 by Panagiotis Christopoulos.

  03 Sep 2007; Mike Frysinger <vapier@gentoo.org>
  util-linux-2.12r-r7.ebuild:
  Delete default LDFLAGS setting to -s #191112 by Andrew Ross.

*util-linux-2.13-r1 (03 Sep 2007)

  03 Sep 2007; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.13-locale.patch, +util-linux-2.13-r1.ebuild:
  Fix up building with NLS disabled #191111 by Jason S. and fix locale dir
  setting #190895 by Benno Schulenberg.

*util-linux-2.13 (28 Aug 2007)

  28 Aug 2007; Mike Frysinger <vapier@gentoo.org> +util-linux-2.13.ebuild:
  Version bump.

*util-linux-2.13_rc3 (10 Aug 2007)

  10 Aug 2007; Mike Frysinger <vapier@gentoo.org>
  +util-linux-2.13_rc3.ebuild:
  Version bump.

  23 Jul 2007; Mike Frysinger <vapier@gentoo.org>
  util-linux-2.12r-r7.ebuild:
  Punt bindnow-flags usage.

*util-linux-2.13_rc2 (17 Jul 2007)

  17 Jul 2007; Mike Frysinger <vapier@gentoo.org>
  +util-linux-2.13_rc2.ebuild:
  Version bump.

  09 Jul 2007; Mike Frysinger <vapier@gentoo.org>
  util-linux-2.12r-r7.ebuild:
  Pull in setarch for amd64/mips/ppc/sparc.

*util-linux-2.13_rc1 (07 Jul 2007)

  07 Jul 2007; Mike Frysinger <vapier@gentoo.org>
  +util-linux-2.13_rc1.ebuild:
  Version bump.

  15 Jun 2007; Joe Peterson <lavajoe@gentoo.org> util-linux-2.12r-r7.ebuild:
  Add blocker: sys-apps/more (since both provide the "more" pager)

  13 Jun 2007; Mike Frysinger <vapier@gentoo.org>
  util-linux-2.12r-r7.ebuild, util-linux-9999.ebuild:
  Add /usr/bin/arch symlink needed by autotools.

  19 May 2007; Raúl Porcel <armin76@gentoo.org> util-linux-2.12r-r7.ebuild:
  alpha stable wrt #178444

  19 May 2007; Markus Rothe <corsair@gentoo.org> util-linux-2.12r-r7.ebuild:
  Stable on ppc64; bug #178444

  16 May 2007; Joseph Jezak <josejx@gentoo.org> util-linux-2.12r-r7.ebuild:
  Marked ppc stable for bug #178444.

  16 May 2007; Daniel Gryniewicz <dang@gentoo.org>
  util-linux-2.12r-r7.ebuild:
  Marked stable on amd64 for bug #178444

  15 May 2007; Jeroen Roovers <jer@gentoo.org> util-linux-2.12r-r7.ebuild:
  Stable for HPPA (bug #178444).

*util-linux-2.12r-r7 (13 May 2007)

  13 May 2007; Mike Frysinger <vapier@gentoo.org>
  +util-linux-2.12r-r7.ebuild:
  Delete nfs(5) man page #178348 by Diego Petteno.

  11 May 2007; Joshua Kinard <kumba@gentoo.org> util-linux-2.12r-r6.ebuild:
  Stable on mips.

  23 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  util-linux-2.12r-r6.ebuild:
  Stable on sparc

  21 Apr 2007; Raúl Porcel <armin76@gentoo.org> util-linux-2.12r-r6.ebuild:
  ia64 + x86 stable

*util-linux-9999 (13 Apr 2007)

  13 Apr 2007; Mike Frysinger <vapier@gentoo.org> +util-linux-9999.ebuild:
  Testing ebuild for current git version.

  03 Mar 2007; Mike Frysinger <vapier@gentoo.org>
  files/util-linux-2.12r-HAVE_asm_page_h.patch,
  +files/util-linux-2.12r-HAVE_asm_page_h-loop-aes.patch,
  util-linux-2.12r-r6.ebuild:
  Split the asm/page.h patch to account for USE=-crypt #169133 by Milan Barta.

*util-linux-2.12r-r6 (03 Mar 2007)

  03 Mar 2007; Mike Frysinger <vapier@gentoo.org>
  +util-linux-2.12r-r6.ebuild, util-linux-2.13_pre7.ebuild:
  Update loop-aes version #168174 by Alon Bar-Lev.

  03 Mar 2007; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.12r-HAVE_asm_page_h.patch, util-linux-2.12r-r5.ebuild:
  Fix building when asm/page.h is not available #168278 by Daniel Black.

  31 Jan 2007; Markus Rothe <corsair@gentoo.org> util-linux-2.12r-r5.ebuild:
  Stable on ppc64; bug #164011

  29 Jan 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  util-linux-2.12r-r5.ebuild:
  Stable on sparc wrt #164011

  27 Jan 2007; Jeroen Roovers <jer@gentoo.org> util-linux-2.12r-r5.ebuild:
  Stable for HPPA (bug #164011).

  27 Jan 2007; Joseph Jezak <josejx@gentoo.org> util-linux-2.12r-r5.ebuild:
  Marked ppc stable for bug #164011.

  27 Jan 2007; Raúl Porcel <armin76@gentoo.org> util-linux-2.12r-r5.ebuild:
  x86 stable wrt bug 164011

  27 Jan 2007; Alexander H. Færøy <eroyf@gentoo.org>
  util-linux-2.12r-r5.ebuild:
  Stable on Alpha; bug #164011

  27 Jan 2007; Alexander H. Færøy <eroyf@gentoo.org>
  util-linux-2.12r-r5.ebuild:
  Stable on MIPS; bug #164011

  27 Jan 2007; Olivier Crête <tester@gentoo.org>
  util-linux-2.12r-r5.ebuild:
  Stable on amd64 per bug #164011

  31 Oct 2006; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.12r-no-_syscall.patch, util-linux-2.12r-r5.ebuild:
  Fix building with linux-headers-2.6.18+ as _syscall#() no longer exists
  #150852 by Mario Fetka.

*util-linux-2.12r-r5 (28 Oct 2006)

  28 Oct 2006; Mike Frysinger <vapier@gentoo.org>
  +util-linux-2.12r-r5.ebuild:
  Version bump loop-aes support #153140 by Alon Bar-Lev.

  04 Sep 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  util-linux-2.12r-r4.ebuild:
  stable on x86 (bug #144712)

  29 Aug 2006; Bryan Østergaard <kloeri@gentoo.org>
  util-linux-2.12r-r4.ebuild:
  Stable on alpha.

  23 Aug 2006; <wormo@gentoo.org> util-linux-2.12r-r4.ebuild:
  stable on ppc (Bug #144712)

  23 Aug 2006; <malc@gentoo.org> util-linux-2.12r-r4.ebuild:
  Stable on amd64

  22 Aug 2006; Markus Rothe <corsair@gentoo.org> util-linux-2.12r-r4.ebuild:
  Stable on ppc64; bug #144712

*util-linux-2.13_pre7 (02 Jul 2006)

  02 Jul 2006; Mike Frysinger <vapier@gentoo.org>
  +util-linux-2.13_pre7.ebuild:
  Version bump #138498 by David Watzke.

  29 Jun 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  util-linux-2.12r-r4.ebuild:
  Stable on sparc

  23 May 2006; <solar@gentoo.org> -util-linux-2.12i-r1.ebuild,
  -util-linux-2.12q-r3.ebuild, -util-linux-2.12r-r2.ebuild:
  - removed obsolete vuln ebuilds

  27 Apr 2006; Alec Warner <antarus@gentoo.org>
  files/digest-util-linux-2.12q-r3, files/digest-util-linux-2.12r-r3,
  Manifest:
  Fixing SHA256 digest, pass four

  29 Apr 2006; Joshua Kinard <kumba@gentoo.org> util-linux-2.12r-r4.ebuild:
  Marked stable on mips.

  21 Apr 2006; Stephen P. Becker <geoman@gentoo.org>
  +files/util-linux-2.12-mips-lseek.patch, util-linux-2.12r-r3.ebuild,
  util-linux-2.12r-r4.ebuild:
  use lseek instead of llseek for mips, and mark -r3 stable on mips

  17 Apr 2006; Markus Rothe <corsair@gentoo.org> util-linux-2.12r-r3.ebuild:
  Stable on ppc64; bug #129540

  12 Apr 2006; Emanuele Giaquinta <exg@gentoo.org>
  util-linux-2.12r-r3.ebuild:
  Stable on ppc; bug #129540

  12 Apr 2006; Bryan Østergaard <kloeri@gentoo.org
  util-linux-2.12r-r3.ebuild:
  Stable on alpha, bug 129540.

  11 Apr 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  util-linux-2.12r-r3.ebuild:
  Stable on sparc wrt #129540

  11 Apr 2006; Patrick McLean <chutzpah@gentoo.org>
  util-linux-2.12r-r3.ebuild:
  Stable on amd64 (bug 129540)

  11 Apr 2006; Joshua Jackson <tsunam@gentoo.org>
  util-linux-2.12r-r3.ebuild:
  Stable on x86; bug #129540

*util-linux-2.12r-r4 (11 Apr 2006)

  11 Apr 2006; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.12r-umount-no-special.patch,
  +util-linux-2.12r-r4.ebuild:
  Update loop aes #129496 by Alon Bar-Lev and fix building on sparc/arm
  systems with gcc-4.1 by ignoring the bogus code.

  13 Mar 2006; Diego Pettenò <flameeyes@gentoo.org>
  util-linux-2.13_pre6.ebuild:
  Drop pam support for 2.13 as done for 2.12, leave all up to shadow.

  12 Mar 2006; Diego Pettenò <flameeyes@gentoo.org>
  util-linux-2.12r-r3.ebuild:
  Drop pam useflag and dependency over pam-login, as all the stuff that might
  use pam is provided by shadow on modern systems.

  07 Mar 2006; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.12r-umount-nosysfs.patch, util-linux-2.12r-r3.ebuild:
  Grab patch from Fedora.

  24 Feb 2006; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.13-no-nls.patch, util-linux-2.13_pre6.ebuild:
  Fix building with USE=-nls #123826 by Chris Fairles.

  09 Feb 2006; Joshua Kinard <kumba@gentoo.org> util-linux-2.12r-r2.ebuild:
  Marked stable on mips for Bug #120111.

  29 Jan 2006; Mike Frysinger <vapier@gentoo.org>
  util-linux-2.13_pre6.ebuild:
  Block schedutils package since its been integrated.

*util-linux-2.13_pre6 (25 Jan 2006)

  25 Jan 2006; Mike Frysinger <vapier@gentoo.org>
  +util-linux-2.13_pre6.ebuild:
  Add a pre version for people to play with #119734 by Matthew Schick.

  24 Jan 2006; Jose Luis Rivero <yoswink@gentoo.org>
  util-linux-2.12r-r2.ebuild:
  Stable on alpha wrt bug #120111

  24 Jan 2006; Ian Leitch <port001@gentoo.org> util-linux-2.12r-r2.ebuild:
  Stable on x86 (bug #120111).

  24 Jan 2006; Markus Rothe <corsair@gentoo.org> util-linux-2.12r-r2.ebuild:
  Stable on ppc64; bug #120111

  24 Jan 2006; Luca Barbato <lu_zero@gentoo.org> util-linux-2.12r-r2.ebuild:
  Marked ppc

  24 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  util-linux-2.12r-r2.ebuild:
  Stable on sparc wrt #120111

  23 Jan 2006; Luis Medinas <metalgod@gentoo.org>
  util-linux-2.12r-r2.ebuild:
  Stable on amd64. See bug #120111.

*util-linux-2.12r-r3 (23 Jan 2006)

  23 Jan 2006; Mike Frysinger <vapier@gentoo.org>
  +util-linux-2.12r-r3.ebuild:
  Version bump the loop-aes support #119846 by Alon Bar-Lev.

  27 Dec 2005; Bryan Østergaard <kloeri@gentoo.org
  util-linux-2.12r-r1.ebuild:
  Stable on alpha.

  25 Dec 2005; Diego Pettenò <flameeyes@gentoo.org>
  util-linux-2.12r-r2.ebuild:
  Use bindnow-flags function instead of -Wl,-z,now.

  25 Dec 2005; Joshua Kinard <kumba@gentoo.org> util-linux-2.12r-r1.ebuild:
  Marked stable on mips.

  21 Dec 2005; Marcus D. Hanwell <cryos@gentoo.org>
  util-linux-2.12r-r1.ebuild:
  Stable on amd64.

  18 Dec 2005; Markus Rothe <corsair@gentoo.org> util-linux-2.12r-r1.ebuild:
  Stable on ppc64

*util-linux-2.12r-r2 (13 Dec 2005)

  13 Dec 2005; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.12r-cal-dumb-terminal.patch,
  +util-linux-2.12r-r2.ebuild:
  Fix cal display with dumb terminals #112406 by Chris Smith.

  11 Dec 2005; Michael Hanselmann <hansmi@gentoo.org>
  util-linux-2.12r-r1.ebuild:
  Stable on ppc.

  09 Dec 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  util-linux-2.12r-r1.ebuild:
  Stable on sparc

  09 Dec 2005; Mark Loeser <halcy0n@gentoo.org> util-linux-2.12r-r1.ebuild:
  Stable on x86; bug #114883

  04 Dec 2005; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.12r-cracklib-words.patch, util-linux-2.12r-r1.ebuild:
  Fall back to cracklib-{words,small} if the words dict doesnt exist #114416.

*util-linux-2.12r-r1 (15 Oct 2005)

  15 Oct 2005; <solar.@gentoo.org>
  +files/util-linux-2.12r-fdisk-frame-pointers.patch,
  +util-linux-2.12r-r1.ebuild:
  - bug #108988 fdisk is unable to always lseek when omiting frame pointers

*util-linux-2.12r (05 Oct 2005)

  05 Oct 2005; Mike Frysinger <vapier@gentoo.org>
  -util-linux-2.12q-r2.ebuild, +util-linux-2.12r.ebuild:
  Version bump #108042 by Alon Bar-Lev.

  20 Sep 2005; Hardave Riar <hardave@gentoo.org> util-linux-2.12q-r3.ebuild:
  Stable on mips, bug #105805.

  19 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
  util-linux-2.12q-r3.ebuild:
  Stable on hppa and ppc.

  19 Sep 2005; Fernando J. Pereda <ferdy@gentoo.org>
  util-linux-2.12q-r3.ebuild:
  stable on alph, wrt bug #105805

  19 Sep 2005; Mark Loeser <halcy0n@gentoo.org> util-linux-2.12q-r3.ebuild:
  Stable on x86

  19 Sep 2005; Jason Wever <weeve@gentoo.org> util-linux-2.12q-r3.ebuild:
  Stable on SPARC wrt security bug #105805.

  19 Sep 2005; Luis Medinas <metalgod@gentoo.org>
  util-linux-2.12q-r3.ebuild:
  Marked Stable on amd64. Bug #105805.

  18 Sep 2005; Markus Rothe <corsair@gentoo.org> util-linux-2.12q-r3.ebuild:
  Stable on ppc64 (bug #105805)

*util-linux-2.12q-r3 (14 Sep 2005)

  14 Sep 2005; Martin Schlemmer <azarah@gentoo.org>
  +files/util-linux-2.12q-use-update_mtab-for-fake.patch,
  +util-linux-2.12q-r3.ebuild:
  Fix 'mount -f' adding dups in mtab.  Bump rev for security fix to umount
  (bug #105805).

  14 Sep 2005; Martin Schlemmer <azarah@gentoo.org>
  files/util-linux-2.12q-update_mtab-fixes.patch:
  Do not leak memory.

  14 Sep 2005; Martin Schlemmer <azarah@gentoo.org>
  files/util-linux-2.12q-update-mtab-when-moving.patch:
  Use xstrdup() instead of strdup() to catch out of memory issues.

  14 Sep 2005; Martin Schlemmer <azarah@gentoo.org>
  +files/util-linux-2.12q-update_mtab-fixes.patch,
  util-linux-2.12q-r2.ebuild:
  Fix various issues with update_mtab(), causing 'mount -f' to not update mtab
  as expected, bug #105641.

  14 Sep 2005; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.12q-umount-dont-write-mtab-with-remount.patch,
  util-linux-2.12q-r2.ebuild:
  Fix by Derick Swanepoel to have umount respect -n when using -r #98675.

  13 Sep 2005; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.12-only-root-can-remount.patch,
  util-linux-2.12i-r1.ebuild, util-linux-2.12q-r2.ebuild:
  Fix small security issue with umount and remount #105805.

*util-linux-2.12q-r2 (13 Sep 2005)

  13 Sep 2005; Martin Schlemmer <azarah@gentoo.org>
  +files/util-linux-2.12q-more-fake-checks-v2.patch,
  +util-linux-2.12q-r2.ebuild:
  Fix 'mount -f' not updating /etc/mtab, bug #105641.

  05 Sep 2005; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.12q-update-mtab-when-moving.patch,
  util-linux-2.12q-r1.ebuild:
  Fix `mount --move` mtab updating #104697 by Jakub Jozwicki.

  03 Sep 2005; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.12q-more-fake-checks.patch,
  util-linux-2.12q-r1.ebuild:
  Add some fixes for -f handling.

  18 Aug 2005; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.12q-dont-umask.patch, util-linux-2.12q-r1.ebuild:
  Dont force umask to 022 all the time #93671 by Clock / Daniel Drake.

*util-linux-2.12q-r1 (13 Jun 2005)

  13 Jun 2005; Mike Frysinger <vapier@gentoo.org>
  +util-linux-2.12q-r1.ebuild:
  Update loop-aes patch #95939 by Alon Bar-Lev.

  30 Apr 2005; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.12q-i18n-update.patch, util-linux-2.12q.ebuild:
  Fix typo in french translation #75693 by DELACOUR Guillaume.

  29 Apr 2005; Mike Frysinger <vapier@gentoo.org> +files/crypto-loop.confd,
  +files/crypto-loop.initd, util-linux-2.12i-r1.ebuild,
  util-linux-2.12p-r1.ebuild, util-linux-2.12q.ebuild:
  Move the crypto-loop script from baselayout to here.

*util-linux-2.12q (21 Feb 2005)

  21 Feb 2005; Mike Frysinger <vapier@gentoo.org> +util-linux-2.12q.ebuild:
  Version bump.

*util-linux-2.12p-r1 (06 Feb 2005)

  06 Feb 2005; Mike Frysinger <vapier@gentoo.org>
  files/util-linux-2.12p-swapon-check-symlinks.patch:
  Touchup the swapon patch to work properly.

  14 Jan 2005; Jeremy Huddleston <eradicator@gentoo.org>
  util-linux-2.12i-r1.ebuild, util-linux-2.12p.ebuild:
  Added virtual/os-headers to DEPEND. It was missing and as such util-linux
  was trying to update before linux-headers... thus missing the fix I placed
  in 2.6.8.1-r4 for 2.12p.

  11 Jan 2005; Stephen P. Becker <geoman@gentoo.org>
  util-linux-2.12i-r1.ebuild:
  stable on mips

  10 Jan 2005; Aron Griffis <agriffis@gentoo.org> util-linux-2.12i-r1.ebuild:
  stable on alpha (needed now that 2.12-r5 is pmasked)

*util-linux-2.12p (09 Jan 2005)

  09 Jan 2005; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-2.12p-fat-LABEL-support.patch,
  +files/util-linux-2.12p-swapon-check-symlinks.patch,
  +util-linux-2.12p.ebuild:
  Version bump. Change default crypto to loop-aes (since its actually
  maintained upstream) #69082 by Arnvid L. Karstad.

  09 Jan 2005; Jason Wever <weeve@gentoo.org> util-linux-2.12i-r1.ebuild:
  Stable on sparc, resolves bug #77295.

  20 Dec 2004; Dylan Carlson <absinthe@gentoo.org>
  util-linux-2.12i-r1.ebuild:
  Stable on amd64.

  17 Dec 2004; Markus Rothe <corsair@gentoo.org> util-linux-2.12i-r1.ebuild:
  Stable on ppc64

  15 Nov 2004; Mike Frysinger <vapier@gentoo.org>
  util-linux-2.12i-r1.ebuild:
  Only include compiler.h if using 2.6 headers #71330.

*util-linux-2.12i-r1 (14 Nov 2004)

  14 Nov 2004; Mike Frysinger <vapier@gentoo.org>
  +util-linux-2.12i-r1.ebuild, -util-linux-2.12i.ebuild:
  Disable aes-loop and forward port the cryptoapi patch. Devices encrypted
  with the old cryptoapi arent compatible with the aes-loop work.

*util-linux-2.12i (11 Nov 2004)

  11 Nov 2004; Mike Frysinger <vapier@gentoo.org>
  files/util-linux-2.12b-pic.patch,
  +files/util-linux-2.12i-fat-LABEL-support.patch,
  +files/util-linux-2.12i-ignore-managed.patch,
  +files/util-linux-2.12i-nfsv4.patch, +files/util-linux-2.12i-pic.patch,
  +files/util-linux-2.12i-swapon-check-symlinks.patch,
  +util-linux-2.12i.ebuild:
  Version bump. Add loop-aes patch (#24458 / #25192). Punt gcloop/cryptoapi
  patches. Add patch to ignore managed/kudzu options #70873.

*util-linux-2.12b-r1 (30 Oct 2004)

  30 Oct 2004; Mike Frysinger <vapier@gentoo.org>
  +files/util-linux-swapon-check-symlinks.patch,
  +util-linux-2.12b-r1.ebuild:
  Add a fallback routine to swapon -a that checks symlinks #69162.

  15 Sep 2004; Martin Schlemmer <azarah@gentoo.org> util-linux-2.12b.ebuild:
  Add >=sys-fs/e2fsprogs-1.34 dependency (blkid_known_fstype in
  /usr/include/blkid/blkid.h introduced in 1.34).
  Pointed out by Maximilian Decker <burbon04@gmx.de>.

  04 Sep 2004; <solar@gentoo.org> files/util-linux-2.12b-pic.patch,
  util-linux-2.12-r4.ebuild, util-linux-2.12b.ebuild:
  updated util-linux-2.12b-pic.patch to fix BREG problem that just showed up the
  the new partx to util-linux. use non-lazy bindings for +s apps installed by
  util-linux

*util-linux-2.12b (03 Sep 2004)

  03 Sep 2004; Martin Schlemmer <azarah@gentoo.org>
  +files/util-linux-2.12b-fat-LABEL-support.patch,
  +files/util-linux-2.12b-gcloop-with-crypt.patch,
  +files/util-linux-2.12b-gcloop.patch, +files/util-linux-2.12b-pic.patch,
  +util-linux-2.12b.ebuild:
  Update version; also build partx. SELinux users should erify support, as it
  seems it was merged upstream.

  01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org>
  util-linux-2.11z-r8.ebuild, util-linux-2.11z-r9.ebuild,
  util-linux-2.12-r2.ebuild, util-linux-2.12-r3.ebuild,
  util-linux-2.12-r4.ebuild, util-linux-2.12-r5.ebuild:
  virtual/glibc -> virtual/libc

  30 Jun 2004; Aron Griffis <agriffis@gentoo.org> util-linux-2.12-r5.ebuild:
  stable on alpha and ia64

  28 Jun 2004; Luca Barbato <lu_zero@gentoo.org> util-linux-2.12-r5.ebuild:
  Marked ppc

  27 Jun 2004; Aron Griffis <agriffis@gentoo.org> util-linux-2.11z-r8.ebuild,
  util-linux-2.11z-r9.ebuild, util-linux-2.12-r2.ebuild,
  util-linux-2.12-r3.ebuild, util-linux-2.12-r4.ebuild:
  QA - fix use invocation

  16 Jun 2004; Daniel Black <dragonheart@gentoo.org>
  util-linux-2.12-r4.ebuild, util-linux-2.12-r5.ebuild:
  uclibc fixes thanks to Peter S. Mazinger <ps.m@gmx.net>

  02 Jun 2004; Travis Tilley <lv@gentoo.org> util-linux-2.12-r5.ebuild:
  stable on amd64

  08 May 2004; <solar@gentoo.org> util-linux-2.12-r4.ebuild,
  util-linux-2.12-r5.ebuild, files/util-linux-2.12-swapon-unistd.patch:
  access() is a macro which uses R_OK. However R_OK is not defined on sparc
  during a bootstrap unless we actually include unistd.h

  19 Apr 2004; Travis Tilley <lv@gentoo.org> util-linux-2.11z-r9.ebuild,
  util-linux-2.12-r2.ebuild, util-linux-2.12-r3.ebuild,
  util-linux-2.12-r4.ebuild:
  filtering -fPIC on amd64 is a dumb idea

  07 Apr 2004; Joshua Kinard <kumba@gentoo.org> util-linux-2.12-r5.ebuild:
  Marked stable on mips.

  02 Apr 2004; <solar@gentoo.org> util-linux-2.12-r5.ebuild:
  util-linux gives additional -fPIC errors on amd64 with -pie. Bugzilla Bug 46366

  01 Apr 2004; Jon Portnoy <avenj@gentoo.org> util-linux-2.12-r4.ebuild :
  Stable on AMD64.

  09 Mar 2004; <agriffis@gentoo.org> util-linux-2.12-r4.ebuild:
  stable on alpha and ia64

  07 Mar 2004; Joshua Kinard <kumba@gentoo.org> util-linux-2.12-r4.ebuild:
  Marked stable on mips.

  27 Feb 2004; Seemant Kulleen <seemant@gentoo.org>
  util-linux-2.11z-r8.ebuild:
  move the filter-flags statement into src_compile

  22 Feb 2004; Daniel Ahlberg <aliz@gentoo.org> util-linux-2.12-r5.ebuild:
  Add installation of rdev on amd64. Closing #35902.

*util-linux-2.12-r5 (17 Feb 2004)

  17 Feb 2004; Luca Barbato <lu_zero@gentoo.org> util-linux-2.12-r5.ebuild,
  files/util-linux-2.12-gcloop.patch:
  Added support for gcloop in losetup

  09 Feb 2004; <gustavoz@gentoo.org> util-linux-2.12-r4.ebuild:
  stable on hppa and sparc

  06 Feb 2004; Martin Schlemmer <azarah@gentoo.org> util-linux-2.12-r4.ebuild:
  Bump to stable for x86.

  03 Feb 2004; Bartosch Pixa <darkspecter@gentoo.org>
  util-linux-2.12-r3.ebuild:
  set ppc in keywords

*util-linux-2.12-r4 (30 Dec 2003)

  30 Dec 2003; Martin Schlemmer <azarah@gentoo.org> util-linux-2.12-r4.ebuild,
  files/util-linux-2.12-fat-LABEL-support.patch:
  Add support to read fat/fat32 labels, bug #36722.

  11 Dec 2003; Mike Frysinger <vapier@gentoo.org> util-linux-2.12-r3.ebuild :
  Add patch to compile against 2.6.x headers #31286.

*util-linux-2.11z-r9 (06 Dec 2003)
*util-linux-2.11z-r8 (08 Dec 2003)
*util-linux-2.12-r2 (08 Dec 2003)
*util-linux-2.12-r3 (08 Dec 2003)

  06 Dec 2003; Seemant Kulleen <seemant@gentoo.org>
  util-linux-2.11z-r6.ebuild, util-linux-2.11z-r7.ebuild,
  util-linux-2.11z-r8.ebuild, util-linux-2.11z-r9.ebuild,
  util-linux-2.12-r1.ebuild, util-linux-2.12-r2.ebuild,
  util-linux-2.12-r3.ebuild, util-linux-2.12.ebuild,
  files/util-linux-no-kill.patch:
  /bin/kill used to be part of this package. procps will now be the only one
  providing that

*util-linux-2.12-r1 (02 Dec 2003)

  02 Dec 2003; Brad House <brad_mssw@gentoo.org> util-linux-2.12-r1.ebuild:
  Add cryptoapi support to util-linux-2.12
  Mailing list post with info:
  http://www.kerneli.org/pipermail/cryptoapi-devel/2003-September/000634.html
  Follow thread for usage.

  28 Oct 2003; Chris PeBenito <pebenito@gentoo.org> util-linux-2.12.ebuild,
  files/util-linux-2.12-selinux.diff.bz2:
  Add new API SELinux patch

  09 Oct 2003; Alexander Gabert <pappy@gentoo.org> util-linux-2.11z-r6.ebuild:
  removed hardened-gcc appendix flags again

  03 Oct 2003; Alexander Gabert <pappy@gentoo.org> util-linux-2.11z-r6.ebuild:
  added libgcc.a problem evasion and removed overwriting of LDFLAGS in ebuild

  20 Sep 2003; Alexander Gabert <pappy@gentoo.org> util-linux-2.11z-r6.ebuild:
  removed check again, only caused by problems with __libc_csu in hardened-gcc

  20 Sep 2003; Alexander Gabert <pappy@gentoo.org> util-linux-2.11z-r6.ebuild:
  added yet_exec exclusion flag for hardened-gcc

  19 Sep 2003; Seemant Kulleen <seemant@gentoo.org>
  util-linux-2.11z-r6.ebuild, util-linux-2.11z-r7.ebuild,
  util-linux-2.12.ebuild:
  fix for USE=static, thanks to: Sascha Silbe <sascha-gentoo-bugzilla@silbe.org>
  in bug #29160

  10 Aug 2003; Martin Schlemmer <azarah@gentoo.org>
  util-linux-2.11z-r6.ebuild:
  Mark stable.

*util-linux-2.12 (24 Jul 2003)

  28 Jul 2003; <solar@gentoo.org> util-linux-2.12.ebuild:
  util-linux was overriding all LDFLAGS for when use static was enabled, please
  dont export LDFLAGS=-static alone in this or any other packages

  24 Jul 2003; Martin Schlemmer <azarah@gentoo.org> util-linux-2.12.ebuild:
  New version, bug #24880.

  21 Jul 2003; <solar@gentoo.org> util-linux-2.11z-r7.ebuild:
  verified -fPIC works with this pkg on x86, sparc64, ppc and hppa

  20 Jul 2003; Martin Schlemmer <azarah@gentoo.org>
  util-linux-2.11z-r7.ebuild, files/util-linux-2.11z-01-nfsv4-crypt.dif:
  Fix NFS4 patch to work with crypt in USE.

*util-linux-2.11z-r7 (20 Jul 2003)

  04 Aug 2003; Joshua Kinard <kumba@gentoo.org> util-linux-2.11z-r7.ebuild:
  Changed ~mips to mips in KEYWORDS
  Added mips to the list of archs that can use -fPIC

  20 Jul 2003; Martin Schlemmer <azarah@gentoo.org>
  util-linux-2.11z-r7.ebuild, files/util-linux-2.11z-01-nfsv4.dif:
  Add NFS4 support (kernel 2.5/2.6).  Notified by Michael Locher
  <locher@iam.unibe.ch>.

*util-linux-2.11z-r6 (17 Jul 2003)

  17 Jul 2003; Martin Schlemmer <azarah@gentoo.org>
  util-linux-2.11z-r6.ebuild,
  files/util-linux-2.11z-agetty-domainname-option.patch:
  Add the O option to agetty to display DNS domainname in the issue file, thanks
  to Marius Mauch <genone@genone.de>, bug #22275.

  13 Jul 2003; <solar@gentoo.org> util-linux-2.11z-r5.ebuild:
  verified -fPIC works with this pkg on sparc,ppc and hppa

*util-linux-2.11z-r5 (12 Jul 2003)

  12 Jul 2003; <solar@gentoo.org> util-linux-2.11z-r5.ebuild,
  files/util-linux-2.11z-pic.patch:
  Added defines for fPIC code to avoid the use the of old __NR* inline assembly
  construction of syscalls

  05 Jul 2003; Luca Barbato <lu_zero@gentoo.org> util-linux-2.11z-r4.ebuild:
  Keyworded ppc

  29 Jun 2003; Chris PeBenito <pebenito@gentoo.org>
  util-linux-2.11z-r4.ebuild:
  Remove selinux stuff, as its no longer needed.  Using pam-login again.

  26 Jun 2003; Joshua Brindle <method@gentoo.org> util-linux-2.11z-r4.ebuild:
  Added -e s:SUIDMODE=.*4755:SUIDMODE=4711: for more secure suid permissions

  24 Jun 2003; Aron Griffis <agriffis@gentoo.org> util-linux-2.11z-r4.ebuild:
  Mark stable on alpha

*util-linux-2.11z-r4 (01 Jun 2003)

  06 Jul 2003; Guy Martin <gmsoft@gentoo.org> util-linux-2.11z-r4.ebuild :
  Marked stable on hppa.

  22 Jun 2003; Joshua Kinard <kumba@gentoo.org> util-linux-2.11z-r4.ebuild:
  Changed ~sparc & ~mips to sparc & mips

  09 Jun 2003; Nick Hadaway <raker@gentoo.org> util-linux-2.11z-r4.ebuild:
  If pam was disabled in IUSE, src_unpack would fail.  Fixed the logic.

  01 Jun 2003; Brandon Low <lostlogic@gentoo.org> util-linux-2.11z-r4.ebuild:
  Add enhancement to script command from bug 21147

  26 May 2003; Patrick Kursawe <phosphan@gentoo.org>
  util-linux-2.11z-r3.ebuild:
  category was missing with sed dependency

  25 May 2003; Martin Holzer <mholzer@gentoo.org> util-linux-2.11o-r3.ebuild,
  util-linux-2.11y.ebuild, util-linux-2.11z-r1.ebuild,
  util-linux-2.11z-r2.ebuild, util-linux-2.11z-r3.ebuild:
  now uses mirror://kernel

  25 May 2003; Seemant Kulleen <seemant@gentoo.org>
  util-linux-2.11z-r3.ebuild:
  pam fix

*util-linux-2.11z-r3 (24 May 2003)

  29 May 2003; Joshua Brindle <method@gentoo.org> util-linux-2.11z-r3.ebuild:
  fixed selinux dependancy issue

  24 May 2003; Joshua Brindle <method@gentoo.org> util-linux-2.11z-r3.ebuild:
  added support for pam optionally

*util-linux-2.11z-r2 (24 Apr 2003)

  24 Apr 2003; Brandon Low <lostlogic@gentoo.org> util-linux-2.11z-r2.ebuild:
  Several changes, including support for USE=static the use of sed -i, proper
  die messages, econf instead of ./configure. Please test this and let me know
  if there are any regressions

  See bug 19597

*util-linux-2.11z (03 Feb 2003)

  22 Apr 2003; Joshua Kinard <kumba@gentoo.org> util-linux-2.11z-r1.ebuild:
  added patch from util-linux maintainer that makes fdisk function correctly on mips
  patch only gets added on "mips" archs, but will be standard in util-linux 2.12

  23 Mar 2003; Joshua Brindle <method@gentoo.org> util-linux-2.11z-r1.ebuild:
  added selinux support, thanks sindian
  
  27 Feb 2003; Jan Seidel <tuxus@gentoo.org>  util-linux-2.11z-r1.ebuild :
  Mark as unstable for mips

  24 Feb 2003; Nicholas Wourms <dragon@gentoo.org> util-linux-2.11z-r1.ebuild :
  Mark as stable for mips.

  21 Feb 2003; Zach Welch <zwelch@gentoo.org> :
  Added arm to keywords.

  09 Feb 2003; Guy Martin <gmsoft@gentoo.org> :
  Added hppa to keywords.

  07 Feb 2003; Jon Portnoy <avenj@gentoo.org>
  util-linux-2.11z-r1.ebuild files/no-symlink-resolve.patch :

  Added a patch to keep mount from resolving symlinks, which
  makes the output of programs like `df` unreadable with devfs.

  03 Feb 2003; Seemant Kulleen <seemant@gentoo.org>
  util-linux-2.11z.ebuild files/util-linux-2.11z-parallel-make.patch
  files/digest-util-linux-2.11z :

  Version bump.  Closes bug #14955 by lone_iguana@hotmail.com

*util-linux-2.11y (27 Oct 2002)

  11 Jan 2003; Seemant Kulleen <seemant@gentoo.org> util-linux-2.11y.ebuild :

  filtered out -fPIC from user's CFLAGS

  16 Dec 2002; Martin Schlemmer <azarah@gentoo.org> util-linux-2.11y.ebuild :
  Fix rare failures with parallel makes.  Update to use epatch.

  10 Dec 2002; Martin Schlemmer <azarah@gentoo.org> util-linux-2.11y.ebuild :
  Mark stable.

  06 Dec 2002; Rodney Rees <manson@gentoo.org> :
  Changed sparc ~sparc keywords
 
  13 Dec 2002; Martin Holzer <mholzer@gentoo.org> util-linux-2.11y.ebuild files/digest-util-linux-2.11y Changelog :
	Changed from tar.gz to tar.bz2

  29 Nov 2002; Nicholas Jones <carpaski@gentoo.org> :
	Latest release. Patched 2.11r crypto patch for this version.
	On mirrors as util-linux-2.11y-crypt-gentoo.patch.gz
	Updates are mostly cleanups.

*util-linux-2.11w (27 Oct 2002)

  27 Oct 2002; Donny Davies <woodchip@gentoo.org> :
  Chase latest release.  Fixes potential root exploit.

*util-linux-2.11u (14 Aug 2002)

  14 Aug 2002; Daniel Ahlberg <aliz@gentoo.org> util-linux-2.11u.ebuild:
  Version bump.  Added patch for chfn.

*util-linux-2.11t (05 Aug 2002)

  05 Aug 2002; Daniel Ahlberg <aliz@gentoo.org> util-linux-2.11t.ebuild:
  Version bump.  

*util-linux-2.11r-r1 (9 Jul 2002)

  24 Jul 2002; Mark Guertin <gerk@gentoo.org> :
  Added ppc to keywords

  14 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> util-linux-2.11r-r1.ebuild :
  Added LICENSE, KEYWORDS.

  14 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> util-linux-2.11r.ebuild :
  Added LICENSE, KEYWORDS.

  9 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> util-linux-2.11r-r1.ebuild files/digest-util-linux-2.11r-r1 :

  Crypto patch only applied if USE setting "crypt" is enabled.

*util-linux-2.11r (7 Jul 2002)

  7 Jul 2002; Martin Schlemmer <azarah@gentoo.org> :

  Version update.

*util-linux-2.11o-r3 (28 Apr 2002)

  18 Jan 2003; Jan Seidel <tuxus@gentoo.org> :
  Added mips to keywords

  14 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> util-linux-2.11o-r3.ebuild :
  Added LICENSE, KEYWORDS.

  28 Apr 2002; Martin Schlemmer <azarah@gentoo.org> :

  Removed /bin/login in favour of pam-login.

*util-linux-2.11o-r2 (25 Apr 2002)

  25 Apr 2002; Ryan Phillips <rphillips@gentoo.org> util-linux-2.11o-r2.ebuild
  files/digest-util-linux-2.11o-r2

  patch util-linux with the international crypto patch.  This patch
  does not contain any cryptographic components. (#1607)

*util-linux-2.11o-r1 (11 Apr 2002)

  11 Apr 2002; Seemant Kulleen <seemant@gentoo.org> util-linux-2.11o-r1.ebuild
  files/digest-util-linux-2.11o-r1

  USE dependent nls compilation.

*util-linux-2.11o (8 Apr 2002)
  
  8 Apr 2002; M.Schlemmer <azarah@gentoo.org> util-linux-2.11o :

  /bin/login that comes with sys-apps/shadow has a bug that gives a normal
  user root priviliges in certain (usually if pam_limits is used).

*util-linux-2.11l-r1 (1 Apr 2002)

  1 Apr 2002; Seemant Kulleen <seemant@gentoo.org> util-linux-2.11l-r1.ebuild :

  USE dependent nls compilation.

*util-linux-2.11l (1 Feb 2002)

  1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
  
  Added initial ChangeLog which should be updated whenever the package is
  updated in any way. This changelog is targetted to users. This means that the
  comments should well explained and written in clean English. The details about
  writing correct changelogs are explained in the skel.ChangeLog file which you
  can find in the root directory of the portage repository.