summaryrefslogtreecommitdiff
blob: b7455ccd23921d6967072d63d8bcffc507524d0f (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
# ChangeLog for sys-apps/shadow
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/shadow/ChangeLog,v 1.298 2015/04/30 06:48:16 vapier Exp $

  30 Apr 2015; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.2.1-cross-size-checks.patch, shadow-4.2.1-r1.ebuild:
  Fix from upstream for cross-compile noticed in Chromium OS.

*shadow-4.2.1-r1 (14 Feb 2015)

  14 Feb 2015; Mike Frysinger <vapier@gentoo.org> +shadow-4.2.1-r1.ebuild:
  Add a note above every login.defs option that is ignored when USE=pam is
  active #522992 by Massimo Burcheri.  Enable CREATE_HOME by default (useradd -m
  option) #531186 by Michał Górny.  Respect LINGUAS when installing man pages
  #538310 by Alex Efros.  Do not install /etc/securetty and disable CONSOLE
  checking by default #539508.

  09 Feb 2015; Mike Frysinger <vapier@gentoo.org> shadow-4.2.1.ebuild:
  Use -delete with find, and fix prefix handling in a few places.

  09 Dec 2014; Benda Xu <heroxbd@gentoo.org> shadow-4.2.1.ebuild:
  Prefix support: trivial D -> ED and ROOT -> EROOT.

  13 Jul 2014; Mike Frysinger <vapier@gentoo.org> files/securetty:
  Allow root login via any serial device.

*shadow-4.2.1 (16 Jun 2014)

  16 Jun 2014; Mike Frysinger <vapier@gentoo.org> +shadow-4.2.1.ebuild:
  Version bump.

  18 Jan 2014; Mike Frysinger <vapier@gentoo.org> shadow-4.1.5.1-r1.ebuild:
  Add arm64 love.

  07 Jan 2014; Lars Wendler <polynomial-c@gentoo.org>
  -shadow-4.1.4.2-r6.ebuild, -shadow-4.1.4.3.ebuild, -shadow-4.1.5.ebuild,
  -shadow-4.1.5-r1.ebuild, -shadow-4.1.5-r2.ebuild, -shadow-4.1.5.1.ebuild,
  shadow-4.1.5.1-r1.ebuild, -files/pam.d-include/system-auth-1.1,
  -files/shadow-4.1.4.2-env-reset-keep-locale.patch,
  -files/shadow-4.1.4.2-fix-etc-gshadow-reading.patch,
  -files/shadow-4.1.4.2-groupmod-pam-check.patch,
  -files/shadow-4.1.4.2-su_no_sanitize_env.patch,
  -files/shadow-4.1.4.3-dup-install-targets.patch,
  -files/shadow-4.1.5-grremove.patch,
  -files/shadow-4.1.5-nscd-ignore-exit-1.patch,
  -files/shadow-4.1.5-nscd-newline-msg.patch,
  -files/shadow-4.1.5-selinux-groupadd.patch, -files/shadow-4.1.5-stdarg.patch,
  -files/login.defs, -files/login.pamd.3, -files/login_defs.awk,
  -files/pam.d-include/login, -files/pam.d-include/other,
  -files/pam.d-include/su, -files/pam.d-include/su-openpam,
  -files/pam.d-include/system-auth:
  Removed old versions and files. Converted remaining ebuild to EAPI-4.

  15 Sep 2013; Mike Frysinger <vapier@gentoo.org> shadow-4.1.5.1-r1.ebuild:
  Add ttymxc{2,3} #484834 by Steev Klimaszewski.

  05 Sep 2013; Mike Frysinger <vapier@gentoo.org> shadow-4.1.5.1-r1.ebuild:
  Mark m68k/s390/sh stable #454388.

  03 Aug 2013; Agostino Sarubbo <ago@gentoo.org> shadow-4.1.5.1-r1.ebuild:
  Stable for sparc, wrt bug #454388

  07 Jul 2013; Agostino Sarubbo <ago@gentoo.org> shadow-4.1.5.1-r1.ebuild:
  Stable for ia64, wrt bug #454388

  07 Jul 2013; Agostino Sarubbo <ago@gentoo.org> shadow-4.1.5.1-r1.ebuild:
  Stable for arm, wrt bug #454388

  06 Jul 2013; Agostino Sarubbo <ago@gentoo.org> shadow-4.1.5.1-r1.ebuild:
  Stable for alpha, wrt bug #454388

  04 Jul 2013; Agostino Sarubbo <ago@gentoo.org> shadow-4.1.5.1-r1.ebuild:
  Stable for ppc64, wrt bug #454388

  01 Jul 2013; Jeroen Roovers <jer@gentoo.org> shadow-4.1.5.1-r1.ebuild:
  Stable for HPPA (bug #454388).

  30 Jun 2013; Agostino Sarubbo <ago@gentoo.org> shadow-4.1.5.1-r1.ebuild:
  Stable for ppc, wrt bug #454388

  30 Jun 2013; Agostino Sarubbo <ago@gentoo.org> shadow-4.1.5.1-r1.ebuild:
  Stable for x86, wrt bug #454388

  30 Jun 2013; Agostino Sarubbo <ago@gentoo.org> shadow-4.1.5.1-r1.ebuild:
  Stable for amd64, wrt bug #454388

  09 Jun 2013; Mike Frysinger <vapier@gentoo.org> metadata.xml:
  Add upstream CPE tag (security info) from ChromiumOS.

  12 Mar 2013; Mike Frysinger <vapier@gentoo.org> shadow-4.1.4.3.ebuild,
  shadow-4.1.5-r1.ebuild, shadow-4.1.5-r2.ebuild, shadow-4.1.5.1.ebuild,
  shadow-4.1.5.ebuild:
  Drop epunt_cxx call as we no longer need it #460922 by Roman Žilka.

  03 Mar 2013; Mike Frysinger <vapier@gentoo.org> shadow-4.1.5.1-r1.ebuild:
  Drop /etc/pam.d/login sed since the file is in pambase now #458548 by Kobboi.

  17 Feb 2013; Mike Frysinger <vapier@gentoo.org> shadow-4.1.5.1-r1.ebuild:
  Drop epunt_cxx as this no longer needs it.

*shadow-4.1.5.1-r1 (24 Dec 2012)

  24 Dec 2012; Diego E. Pettenò <flameeyes@gentoo.org>
  +shadow-4.1.5.1-r1.ebuild:
  Fix pamd file for newusers (bug #448204 by Sergey Popov).

  18 Aug 2012; Mike Frysinger <vapier@gentoo.org> shadow-4.1.4.3.ebuild,
  shadow-4.1.5-r1.ebuild, shadow-4.1.5-r2.ebuild, shadow-4.1.5.1.ebuild,
  shadow-4.1.5.ebuild:
  Drop has_version from older versions, and upgrade latest to EAPI=2 #426474 by
  Ilya Gordeev.

  17 Aug 2012; Mike Frysinger <vapier@gentoo.org> shadow-4.1.5.1.ebuild:
  Call epatch_user for custom auth patches #431750.

*shadow-4.1.5.1 (07 Jul 2012)

  07 Jul 2012; Mike Frysinger <vapier@gentoo.org> +shadow-4.1.5.1.ebuild:
  Version bump #424844 by Samuli Suominen.

  07 Jul 2012; Mike Frysinger <vapier@gentoo.org> shadow-4.1.4.3.ebuild,
  shadow-4.1.5.ebuild, shadow-4.1.5-r1.ebuild, shadow-4.1.5-r2.ebuild:
  Fix building when rpc support is disabled #425052 by Dustin Polke.

  31 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> shadow-4.1.5.ebuild,
  shadow-4.1.5-r1.ebuild, shadow-4.1.5-r2.ebuild, metadata.xml:
  Remove support for sys-auth/tcb which is being removed because of bugs:
  #371167, #408647. Use sys-apps/hardened-shadow instead.

*shadow-4.1.5-r2 (21 Apr 2012)

  21 Apr 2012; Mike Frysinger <vapier@gentoo.org> +shadow-4.1.5-r2.ebuild,
  +files/shadow-4.1.5-grremove.patch,
  +files/shadow-4.1.5-selinux-groupadd.patch:
  Fix crash when calling userdel #405409 by Yuri Mamaev. Add patch for groupadd
  on selinux #406819 by Amadeusz Sławiński. Depend on libsemanage when
  USE=selinux #408173 by Markus Knetschke.

*shadow-4.1.5-r1 (17 Apr 2012)

  17 Apr 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> +shadow-4.1.5-r1.ebuild:
  Version bump for new pambase.

  26 Mar 2012; Mike Frysinger <vapier@gentoo.org> shadow-4.1.4.3.ebuild,
  shadow-4.1.5.ebuild:
  Add a few more serial ports for arm devices.

  16 Feb 2012; Mike Frysinger <vapier@gentoo.org> shadow-4.1.5.ebuild:
  Use "-R <root>" option with grp{ck,conv} as it exists in this version.

*shadow-4.1.5 (13 Feb 2012)

  13 Feb 2012; Mike Frysinger <vapier@gentoo.org> +shadow-4.1.5.ebuild,
  +files/shadow-4.1.5-nscd-ignore-exit-1.patch,
  +files/shadow-4.1.5-nscd-newline-msg.patch, +files/shadow-4.1.5-stdarg.patch,
  metadata.xml:
  Version bump.

  31 Dec 2011; Mike Frysinger <vapier@gentoo.org> shadow-4.1.4.3.ebuild:
  Add more arm consoles to securetty #396011 by Raúl Porcel.

  16 Dec 2011; Mike Frysinger <vapier@gentoo.org> shadow-4.1.4.3.ebuild:
  Enable ttySAC secure logins by default. 

  03 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  shadow-4.1.4.2-r6.ebuild, shadow-4.1.4.3.ebuild, metadata.xml:
  Drop unused local desc and useless blockers over non-existing packages.

  14 Jul 2011; Mike Frysinger <vapier@gentoo.org> shadow-4.1.4.2-r6.ebuild,
  shadow-4.1.4.3.ebuild:
  Update SRC_URI #375107 by zino.

  26 Feb 2011; Raúl Porcel <armin76@gentoo.org> shadow-4.1.4.3.ebuild:
  alpha/ia64/m68k/s390/sh/sparc stable wrt #355207

  20 Feb 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  shadow-4.1.4.3.ebuild:
  x86 stable wrt security bug #355207

  19 Feb 2011; Markus Meier <maekke@gentoo.org> shadow-4.1.4.3.ebuild:
  arm stable, bug #355207

  18 Feb 2011; Jeroen Roovers <jer@gentoo.org> shadow-4.1.4.3.ebuild:
  Stable for HPPA (bug #355207).

  17 Feb 2011; Kacper Kowalik <xarthisius@gentoo.org> shadow-4.1.4.3.ebuild:
  ppc/ppc64 stable wrt #355207

  17 Feb 2011; Markos Chandras <hwoarang@gentoo.org> shadow-4.1.4.3.ebuild:
  Stable on amd64 wrt bug #355207

*shadow-4.1.4.3 (17 Feb 2011)

  17 Feb 2011; Mike Frysinger <vapier@gentoo.org> +shadow-4.1.4.3.ebuild,
  +files/shadow-4.1.4.3-dup-install-targets.patch:
  Version bump for security love #355207 by Paweł Hajdan jr.

  30 Oct 2010; Samuli Suominen <ssuominen@gentoo.org>
  shadow-4.1.4.2-r6.ebuild:
  ppc64 stable wrt #342015

  24 Oct 2010; Raúl Porcel <armin76@gentoo.org> shadow-4.1.4.2-r6.ebuild:
  alpha/ia64/m68k/s390/sh/sparc stable wrt #342015

  24 Oct 2010; Brent Baude <ranger@gentoo.org> shadow-4.1.4.2-r6.ebuild:
  stable ppc, bug 342015

  22 Oct 2010; Markos Chandras <hwoarang@gentoo.org>
  shadow-4.1.4.2-r6.ebuild:
  Stable on amd64 wrt bug #342015

  22 Oct 2010; Christian Faulhammer <fauli@gentoo.org>
  shadow-4.1.4.2-r6.ebuild:
  stable x86, bug 342015

  22 Oct 2010; Jeroen Roovers <jer@gentoo.org> shadow-4.1.4.2-r6.ebuild:
  Stable for HPPA (bug #342015).

*shadow-4.1.4.2-r6 (21 Oct 2010)

  21 Oct 2010; Diego E. Pettenò <flameeyes@gentoo.org>
  -shadow-4.1.4.2-r1.ebuild, -shadow-4.1.4.2-r2.ebuild,
  -shadow-4.1.4.2-r3.ebuild, -shadow-4.1.4.2-r4.ebuild,
  +shadow-4.1.4.2-r6.ebuild, -files/login.pamd, -files/login.pamd.1,
  metadata.xml:
  Add pam herd to the maintainers (for USE=pam); unbreak /etc/pam.d/login
  that was dropped during the 4.0.18.2 → 4.1.0 bump; remove 4.1.4.2
  ebuilds with totally broken PAM support; remove two files that shouldn't
  be used anymore.

  10 Oct 2010; Raúl Porcel <armin76@gentoo.org> shadow-4.1.4.2-r5.ebuild:
  alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #338591

  03 Oct 2010; Guy Martin <gmsoft@gentoo.org> shadow-4.1.4.2-r5.ebuild:
  hppa stable wrt #338591

  01 Oct 2010; Brent Baude <ranger@gentoo.org> shadow-4.1.4.2-r5.ebuild:
  Marking shadow-4.1.4.2-r5 ppc64 for bug 338591

  28 Sep 2010; Brent Baude <ranger@gentoo.org> shadow-4.1.4.2-r5.ebuild:
  Marking shadow-4.1.4.2-r5 ppc for bug 338591

  26 Sep 2010; Markus Meier <maekke@gentoo.org> shadow-4.1.4.2-r5.ebuild:
  x86 stable, bug #338591

  25 Sep 2010; Markos Chandras <hwoarang@gentoo.org>
  shadow-4.1.4.2-r5.ebuild:
  Stable on amd64 wrt bug #338591

  12 Sep 2010; Tobias Klausmann <klausman@gentoo.org>
  shadow-4.1.4.2-r4.ebuild:
  Stable on alpha, bug #327987

  06 Sep 2010; Brent Baude <ranger@gentoo.org> shadow-4.1.4.2-r2.ebuild:
  Marking shadow-4.1.4.2-r2 ppc64 for bug 327987

  14 Aug 2010; Markus Meier <maekke@gentoo.org> shadow-4.1.4.2-r4.ebuild:
  arm stable, bug #327987

*shadow-4.1.4.2-r5 (23 Jul 2010)

  23 Jul 2010; Diego E. Pettenò <flameeyes@gentoo.org>
  +shadow-4.1.4.2-r5.ebuild, files/pam.d-include/passwd:
  Add a new revision of shadow that should fix bug #275555.

  13 Jul 2010; Jeroen Roovers <jer@gentoo.org> shadow-4.1.4.2-r4.ebuild:
  Stable for HPPA PPC (bug #327987).

  12 Jul 2010; Markos Chandras <hwoarang@gentoo.org>
  shadow-4.1.4.2-r4.ebuild:
  Stable on amd64 wrt bug #308047

  10 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
  shadow-4.1.4.2-r4.ebuild:
  stable x86, bug 308047

*shadow-4.1.4.2-r4 (10 Jul 2010)

  10 Jul 2010; Mike Frysinger <vapier@gentoo.org> +shadow-4.1.4.2-r4.ebuild,
  +files/shadow-4.1.4.2-fix-etc-gshadow-reading.patch:
  Fix /etc/gshadow reading #327605 by Dirk Sondermann.

  03 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
  shadow-4.1.4.2-r3.ebuild:
  stable x86, security bug 308047

*shadow-4.1.4.2-r3 (27 Jan 2010)

  27 Jan 2010; Peter Volkov <pva@gentoo.org> +shadow-4.1.4.2-r3.ebuild,
  +files/shadow-4.1.4.2-su_no_sanitize_env.patch:
  Upstream patch: su should not sanitize_env(), bug #301957.

*shadow-4.1.4.2-r2 (15 Jan 2010)

  15 Jan 2010; Mike Frysinger <vapier@gentoo.org> +shadow-4.1.4.2-r2.ebuild,
  +files/shadow-4.1.4.2-groupmod-pam-check.patch:
  Add fix from upstream for groupmod pam check #300790 by Esther Dalhuisen
  and drop old adduser symlink #301027 by Vicente Olivert.

*shadow-4.1.4.2-r1 (04 Dec 2009)

  04 Dec 2009; Fabio Erculiani <lxnay@gentoo.org> -shadow-4.1.3.1.ebuild,
  -shadow-4.1.4.1.ebuild, -shadow-4.1.4.2.ebuild, +shadow-4.1.4.2-r1.ebuild,
  +files/shadow-4.1.4.2-env-reset-keep-locale.patch:
  Fix invalid environment variables reset, close bug #283725, thanks to
  myself for reporting, thanks to parafin for providing a working patch

*shadow-4.1.4.2 (24 Jul 2009)

  24 Jul 2009; Mike Frysinger <vapier@gentoo.org> +shadow-4.1.4.2.ebuild:
  Version bump.

*shadow-4.1.4.1 (23 May 2009)

  23 May 2009; Mike Frysinger <vapier@gentoo.org> +shadow-4.1.4.1.ebuild:
  Version bump.

*shadow-4.1.4-r1 (18 May 2009)

  18 May 2009; Mike Frysinger <vapier@gentoo.org> +shadow-4.1.4-r1.ebuild,
  +files/shadow-4.1.4-login-non-pam-crash.patch:
  Add fix from upstream for crash with non-pam/empty user #270213 by Ulrich
  Müller.

*shadow-4.1.4 (11 May 2009)

  11 May 2009; Mike Frysinger <vapier@gentoo.org> +shadow-4.1.4.ebuild:
  Version bump.

*shadow-4.1.3.1 (18 Apr 2009)

  18 Apr 2009; Mike Frysinger <vapier@gentoo.org> +shadow-4.1.3.1.ebuild:
  Version bump.

*shadow-4.1.3 (12 Apr 2009)

  12 Apr 2009; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.1.3-dots-in-usernames.patch, +shadow-4.1.3.ebuild:
  Version bump.

  15 Mar 2009; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.1.2.2-id-types.patch,
  +files/shadow-4.1.2.2-optional-nscd.patch,
  +files/shadow-4.1.2.2-optional-utimes.patch, shadow-4.1.2.2.ebuild:
  Add fixes from upstream to get building on uClibc again.

  12 Mar 2009; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.1.2.2-l64a.patch, shadow-4.1.2.2.ebuild:
  Fix building for uClibc #260001 by Jos van der Ende.

  11 Feb 2009; Mike Frysinger <vapier@gentoo.org>
  +files/4.1.2.2/shadow-svn-2298.patch,
  +files/4.1.2.2/shadow-svn-2364.patch, shadow-4.1.2.2.ebuild:
  Grab some fixes from upstream to fix building on uClibc systems #256784.

  02 Feb 2009; Raúl Porcel <armin76@gentoo.org> shadow-4.1.2.2.ebuild:
  ia64 stable wrt #251320

  01 Feb 2009; Tobias Scherbaum <dertobi123@gentoo.org>
  shadow-4.1.2.2.ebuild:
  ppc stable, bug #251320

  26 Jan 2009; Jeroen Roovers <jer@gentoo.org> shadow-4.1.2.2.ebuild:
  Stable for HPPA (bug #25132).

  26 Jan 2009; Ferris McCormick <fmccor@gentoo.org> shadow-4.1.2.2.ebuild:
  Sparc stable, Security Bug #251320.

  25 Jan 2009; Tobias Klausmann <klausman@gentoo.org> shadow-4.1.2.2.ebuild:
  Stable on alpha, bug #251320

  25 Jan 2009; Brent Baude <ranger@gentoo.org> shadow-4.1.2.2.ebuild:
  Marking shadow-4.1.2.2 ppc64 for bug 251320

  25 Jan 2009; Markus Meier <maekke@gentoo.org> shadow-4.1.2.2.ebuild:
  amd64/x86 stable, bug #251320

  20 Dec 2008; Peter Volkov <pva@gentoo.org> shadow-4.1.2.2.ebuild:
  ~mips rekeyworeded, bug #210769.

  01 Dec 2008; Mike Frysinger <vapier@gentoo.org> shadow-4.1.2.1.ebuild,
  shadow-4.1.2.2.ebuild:
  Also run autoheader due to AC_CHECK_DECLS #249403.

  30 Nov 2008; Mike Frysinger <vapier@gentoo.org> shadow-4.1.2.1.ebuild,
  shadow-4.1.2.2.ebuild:
  Only run eautoconf as openpam touches just configure #233286 by Sergey
  Dryabzhinsky.

*shadow-4.1.2.2 (23 Nov 2008)

  23 Nov 2008; Mike Frysinger <vapier@gentoo.org> +shadow-4.1.2.2.ebuild:
  Version bump.

  17 Nov 2008; Diego E. Pettenò <flameeyes@gentoo.org>
  files/shadow-4.1.1-audit.patch:
  Fix patch with absolute paths.

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

  22 Jul 2008; Diego Pettenò <flameeyes@gentoo.org>
  +files/shadow-4.1.2.1+openpam.patch, shadow-4.1.2.1.ebuild:
  Add patch to build against OpenPAM, thanks to Seraphim Mellos in bug
  #232586.

*shadow-4.1.2.1 (28 Jun 2008)

  28 Jun 2008; Mike Frysinger <vapier@gentoo.org> +shadow-4.1.2.1.ebuild:
  Version bump.

*shadow-4.1.2-r1 (27 May 2008)

  27 May 2008; Diego Pettenò <flameeyes@gentoo.org>
  +files/login_defs_pam.sed, -shadow-4.1.2.ebuild, +shadow-4.1.2-r1.ebuild:
  Fix bug #223631: upstream removed the note that the options don't apply to
  PAM, so now list the unusable entries explicitly.

*shadow-4.1.2 (25 May 2008)

  25 May 2008; Mike Frysinger <vapier@gentoo.org> +shadow-4.1.2.ebuild:
  Version bump.

  17 May 2008; nixnut <nixnut@gentoo.org> shadow-4.1.0-r1.ebuild:
  Added ~ppc wrt bug 210769

  11 May 2008; Ulrich Mueller <ulm@gentoo.org> shadow-4.0.18.1-r1.ebuild,
  shadow-4.0.18.2.ebuild, shadow-4.1.0.ebuild, shadow-4.1.0-r1.ebuild,
  shadow-4.1.1.ebuild:
  Fix dependency: app-admin/skey moved to sys-auth/skey.

  20 Apr 2008; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.1.1-audit.patch, shadow-4.1.1.ebuild:
  Add fix from upstream for build failure with USE=audit #216291.

  06 Apr 2008; Mike Frysinger <vapier@gentoo.org> shadow-4.1.1.ebuild:
  Add support for USE=audit.

*shadow-4.1.1 (05 Apr 2008)

  05 Apr 2008; Mike Frysinger <vapier@gentoo.org> +shadow-4.1.1.ebuild:
  Version bump.

  31 Mar 2008; <ricmm@gentoo.org> shadow-4.0.18.1-r1.ebuild:
  Drop to ~mips due to unstable deps

  17 Mar 2008; Santiago M. Mola <coldwind@gentoo.org>
  shadow-4.1.0-r1.ebuild:
  ~amd64 added back

  12 Mar 2008; Santiago M. Mola <coldwind@gentoo.org>
  shadow-4.0.18.2.ebuild:
  amd64 stable wrt bug #211252

  06 Mar 2008; Raúl Porcel <armin76@gentoo.org> shadow-4.1.0-r1.ebuild:
  Add ~alpha/~ia64 wrt #210769

  05 Mar 2008; Ferris McCormick <fmccor@gentoo.org> shadow-4.1.0-r1.ebuild:
  ~sparc for testing ---  Bug #210769.

  04 Mar 2008; Brent Baude <ranger@gentoo.org> shadow-4.1.0-r1.ebuild:
  keyworded ~arch for ppc64, bug 210769

  04 Mar 2008; <cla@gentoo.org> shadow-4.1.0-r1.ebuild:
  Marked ~x86 (bug #210769). Thanks to Michał Wołonkiewicz <volon@vp.pl> for
  testing.

  03 Mar 2008; Jeroen Roovers <jer@gentoo.org> shadow-4.1.0-r1.ebuild:
  Marked ~hppa (bug #210769).

  25 Feb 2008; Raúl Porcel <armin76@gentoo.org> shadow-4.0.18.2.ebuild:
  alpha/ia64/sparc stable wrt #211252

  25 Feb 2008; Jeroen Roovers <jer@gentoo.org> shadow-4.0.18.2.ebuild:
  Stable for HPPA (bug #211252).

  24 Feb 2008; Markus Meier <maekke@gentoo.org> shadow-4.0.18.2.ebuild:
  x86 stable, bug #211252

  24 Feb 2008; Brent Baude <ranger@gentoo.org> shadow-4.0.18.2.ebuild:
  Marking shadow-4.0.18.2 ppc and ppc64 for bug 211252

*shadow-4.1.0-r1 (24 Feb 2008)

  24 Feb 2008; Diego Pettenò <flameeyes@gentoo.org>
  -shadow-4.0.18.2-r2.ebuild, +shadow-4.1.0-r1.ebuild:
  Port pambase to 4.1.0 version, and remove the version based off 4.0.18.2.

*shadow-4.1.0 (24 Feb 2008)

  24 Feb 2008; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.1.0-fix-useradd-usergroups.patch, +shadow-4.1.0.ebuild:
  Version bump.

  24 Feb 2008; Mike Frysinger <vapier@gentoo.org>
  files/shadow-4.0.17-login.defs.patch, shadow-4.0.18.1-r1.ebuild,
  shadow-4.0.18.2.ebuild, shadow-4.0.18.2-r2.ebuild:
  Make sure we respect libdir for path to cracklib dicts.

  20 Feb 2008; Diego Pettenò <flameeyes@gentoo.org>
  shadow-4.0.18.2-r2.ebuild:
  Fix dependencies for pambase/pam.

*shadow-4.0.18.2-r2 (19 Feb 2008)

  19 Feb 2008; Diego Pettenò <flameeyes@gentoo.org> files/login.pamd.3,
  -shadow-4.0.18.2-r1.ebuild, +shadow-4.0.18.2-r2.ebuild:
  Use system-local-login rather than system-login and depend on new pambase.

*shadow-4.0.18.2-r1 (19 Feb 2008)

  19 Feb 2008; Diego Pettenò <flameeyes@gentoo.org> +files/login.pamd.3,
  +shadow-4.0.18.2-r1.ebuild:
  Add a new revision that uses the new system-login provided by pambase.

  04 Nov 2007; Diego Pettenò <flameeyes@gentoo.org> +files/login.pamd.2,
  shadow-4.0.18.2.ebuild:
  PAM support updates: change the dependency back to sys-libs/pam but ask for
  at least version 0.99 (so that we know we have the proper pam_tally, and we
  can drop some conditionals), OpenPAM wouldn't work for shadow for now.
  Simplify the pam.d installation, without using the for loop and case
  statement. Use the 'epam syntax' for the selinux conditional. Update the
  options passed to pam_tally so that they don't throw warnings when used with
  Linux-PAM 0.99.

*shadow-4.0.18.2 (04 Nov 2007)

  04 Nov 2007; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.18.2-useradd.patch, +shadow-4.0.18.2.ebuild:
  Version bump.

  05 Jul 2007; Brent Baude <ranger@gentoo.org> shadow-4.0.18.1-r1.ebuild:
  Marking shadow-4.0.18.1-r1 ppc64 stable for bug 183886

  04 Jul 2007; Mike Doty <kingtaco@gentoo.org> shadow-4.0.18.1-r1.ebuild:
  amd64 stable, bug 183886

  02 Jul 2007; Jeroen Roovers <jer@gentoo.org> shadow-4.0.18.1-r1.ebuild:
  Stable for HPPA (bug #183886).

  02 Jul 2007; Raúl Porcel <armin76@gentoo.org> shadow-4.0.18.1-r1.ebuild:
  alpha/ia64/x86 stable wrt #183886

  02 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  shadow-4.0.18.1-r1.ebuild:
  Stable on sparc wrt #183886

  02 Jul 2007; Lars Weiler <pylon@gentoo.org> shadow-4.0.18.1-r1.ebuild:
  Stable on ppc; bug #183886.

  01 Jul 2007; Joshua Kinard <kumba@gentoo.org> shadow-4.0.18.1-r1.ebuild:
  Stable on mips, per #183886.

*shadow-4.0.18.1-r1 (01 Jul 2007)

  01 Jul 2007; Diego Pettenò <flameeyes@gentoo.org> +files/login.pamd.1,
  +shadow-4.0.18.1-r1.ebuild:
  Revision bump with a fixed pam.d/login file that actually honours stuff like
  pam_nologin.

  23 Jun 2007; Daniel Drake <dsd@gentoo.org> shadow-4.0.18.1.ebuild:
  Add GPL to license, as vipw is GPL-licensed (bug #175257)

  26 Feb 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  shadow-4.0.18.1.ebuild:
  Added ttyPSC0 for PPC for EFIKA.  Closing bug #158208.

  23 Nov 2006; <blubb@gentoo.org> shadow-4.0.18.1.ebuild:
  stable on amd64

  14 Nov 2006; Tom Gall <tgall@gentoo.org> shadow-4.0.18.1.ebuild:
  stable on ppc64 bug154966

  14 Nov 2006; Matti Bickel <mabi@gentoo.org> shadow-4.0.18.1.ebuild:
  Stable on ppc (bug #154966)

  14 Nov 2006; Jeroen Roovers <jer@gentoo.org> shadow-4.0.18.1.ebuild:
  Stable for HPPA (bug #154966).

  13 Nov 2006; Andrej Kacian <ticho@gentoo.org> shadow-4.0.18.1.ebuild:
  Stable on x86, bug #154966.

  13 Nov 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  shadow-4.0.18.1.ebuild:
  Stable on sparc wrt #154966

  05 Nov 2006; Mike Frysinger <vapier@gentoo.org> shadow-4.0.18.1.ebuild:
  Block app-admin/nologin since shadow provides it as well #144541.

  17 Oct 2006; Daniel Drake <dsd@gentoo.org> shadow-4.0.15-r2.ebuild,
  shadow-4.0.16-r2.ebuild, shadow-4.0.17.ebuild, shadow-4.0.17-r1.ebuild,
  shadow-4.0.18.1.ebuild:
  Make cracklib support optional through USE flag

*shadow-4.0.18.1 (04 Aug 2006)

  04 Aug 2006; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.18.1-useradd-usermod.patch, +shadow-4.0.18.1.ebuild:
  Version bump.

  18 Jul 2006; Martin Schlemmer <azarah@gentoo.org> +files/login_defs.awk,
  shadow-4.0.17-r1.ebuild:
  Also comment the already commented options as not supported by pam. Fix
  Mike's problem with running sed multiple times.

*shadow-4.0.17-r1 (15 Jul 2006)

  15 Jul 2006; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.17-login.defs.patch, +shadow-4.0.17-r1.ebuild:
  Merge handling of login.defs (fixing #140451 along the way) and cut out
  old/dead code related to forced upgrading of config files.

  15 Jul 2006; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.17-no-local-getpass.patch, shadow-4.0.17.ebuild:
  Fix by Ulrich Mueller for building with USE=skey #139966.

*shadow-4.0.17 (11 Jul 2006)

  11 Jul 2006; Mike Frysinger <vapier@gentoo.org> +shadow-4.0.17.ebuild:
  Version bump.

  09 Jul 2006; Joshua Kinard <kumba@gentoo.org> shadow-4.0.15-r2.ebuild:
  Marked stable on mips.

*shadow-4.0.16-r2 (06 Jul 2006)

  06 Jul 2006; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.16-mail-creation.patch, +shadow-4.0.16-r2.ebuild:
  Backport fix from upstream for mail spool creation #139346 by Wolfram Schlich.

*shadow-4.0.16-r1 (04 Jul 2006)

  04 Jul 2006; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.16-check-opendir.patch,
  +files/shadow-4.0.16-fix-useradd-usergroups.patch,
  +shadow-4.0.16-r1.ebuild:
  Fix useradd behavior when using -g #128715 by Max Lorenz and fix segfault in
  userdel with -r and /dev/null #139148 by David Roussel.

  10 Jun 2006; <roy@gentoo.org> shadow-4.0.14-r1.ebuild,
  shadow-4.0.15-r2.ebuild, shadow-4.0.16.ebuild:
  Move grpconv from baselayout to shadow where it belongs.

  09 Jun 2006; Diego Pettenò <flameeyes@gentoo.org> ChangeLog:
  Make the login.defs installed not throw warning about GETPASS_ASTERISKS, by
  enabling it only skey.

*shadow-4.0.16 (07 Jun 2006)

  07 Jun 2006; Mike Frysinger <vapier@gentoo.org> +shadow-4.0.16.ebuild:
  Version bump.

  03 Jun 2006; Rene Nussbaumer <killerfox@gentoo.org>
  shadow-4.0.15-r2.ebuild:
  Stable on hppa. See bug #133615.

  31 May 2006; Thomas Cort <tcort@gentoo.org> shadow-4.0.15-r2.ebuild:
  Stable on alpha wrt security Bug #133615.

  30 May 2006; Markus Ullmann <jokey@gentoo.org> shadow-4.0.15-r2.ebuild:
  Stable on arm wrt bug #133615

  30 May 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  shadow-4.0.15-r2.ebuild:
  Stable on sparc wrt security #133615

  30 May 2006; Luca Barbato <lu_zero@gentoo.org> shadow-4.0.15-r2.ebuild:
  Marked ppc

  30 May 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  shadow-4.0.15-r2.ebuild:
  Stable on amd64 and x86 wrt bug #133615.

  30 May 2006; Markus Rothe <corsair@gentoo.org> shadow-4.0.15-r2.ebuild:
  Stable on ppc64; bug #133615

*shadow-4.0.15-r2 (26 May 2006)

  26 May 2006; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.15-sanity-checks.patch, +shadow-4.0.15-r2.ebuild:
  Patch from upstream to add some more sanity checks #133615 by Sune
  Kloppenborg Jeppesen.

  09 May 2006; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.15-uclibc-missing-l64a.patch, shadow-4.0.15-r1.ebuild:
  Last uClibc release still needs l64a() #132666 by solar.

*shadow-4.0.15-r1 (07 May 2006)

  07 May 2006; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.15-no-default-MAIL.patch, +shadow-4.0.15-r1.ebuild:
  Dont export MAIL if MAIL_CHECK_ENAB is disabled.

  27 Apr 2006; Alec Warner <antarus@gentoo.org>
  files/digest-shadow-4.0.7-r4, files/digest-shadow-4.0.11.1-r1,
  files/digest-shadow-4.0.11.1-r2, files/digest-shadow-4.0.12,
  files/digest-shadow-4.0.13, Manifest:
  Fixing SHA256 digest, pass four

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

  26 Mar 2006; Bryan Østergaard <kloeri@gentoo.org shadow-4.0.14-r1.ebuild:
  Stable on alpha, bug 125419.

*shadow-4.0.15 (21 Mar 2006)

  21 Mar 2006; Mike Frysinger <vapier@gentoo.org> +shadow-4.0.15.ebuild:
  Version bump.

*shadow-4.0.14-r3 (17 Mar 2006)

  17 Mar 2006; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.14-userdel-group-remove.patch, +shadow-4.0.14-r3.ebuild:
  Fix from upstream for bogus userdel warning #126432 by Gabriel Lavoie.

  14 Mar 2006; Emanuele Giaquinta <exg@gentoo.org> shadow-4.0.14-r1.ebuild:
  Stable on ppc; bug #125419

  13 Mar 2006; Joshua Jackson <tsunam@gentoo.org> shadow-4.0.14-r1.ebuild:
  Stable on x86; bug #125419

*shadow-4.0.14-r2 (12 Mar 2006)

  12 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> +files/login.defs,
  +files/login.pamd, +shadow-4.0.14-r2.ebuild:
  Merge pam-login back into shadow, as 4.x version was already being used;
  this means that upgrade from 4.0.14-r1 requires to remove pam-login before.

  11 Mar 2006; Mike Frysinger <vapier@gentoo.org> shadow-4.0.11.1-r1.ebuild,
  shadow-4.0.11.1-r2.ebuild, shadow-4.0.12.ebuild, shadow-4.0.13.ebuild,
  shadow-4.0.14-r1.ebuild:
  The skey configure option is just plain skey now, not libskey, as noted by
  Torsten Veller #125419.

  09 Mar 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  shadow-4.0.14-r1.ebuild:
  Stable on sparc wrt #125419

  09 Mar 2006; Luis Medinas <metalgod@gentoo.org> shadow-4.0.14-r1.ebuild:
  Stable on amd64. Bug #125419.

  08 Mar 2006; Markus Rothe <corsair@gentoo.org> shadow-4.0.14-r1.ebuild:
  Stable on ppc64; bug #125419

  10 Jan 2006; Chris PeBenito <pebenito@gentoo.org> shadow-4.0.13.ebuild,
  shadow-4.0.14-r1.ebuild:
  Fix libselinux version required.

*shadow-4.0.14-r1 (10 Jan 2006)

  10 Jan 2006; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.14-su-cvs.patch, -shadow-4.0.14.ebuild,
  +shadow-4.0.14-r1.ebuild:
  Grab a fix from upstream cvs to fix `su -c boo` syntax #118342 by Wolfgang
  Frisch.

*shadow-4.0.14 (04 Jan 2006)

  04 Jan 2006; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.14-nls-manpages.patch,
  +files/shadow-4.0.14-su-fix-environment.patch, +shadow-4.0.14.ebuild:
  Version bump.

  25 Dec 2005; Diego Pettenò <flameeyes@gentoo.org> shadow-4.0.13.ebuild:
  Use bindnow-flags function instead of -Wl,-z,now.

*shadow-4.0.13 (10 Oct 2005)

  10 Oct 2005; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.13-dots-in-usernames.patch,
  +files/shadow-4.0.13-login.defs.patch,
  +files/shadow-4.0.13-long-groupnames.patch,
  +files/shadow-4.0.13-nonis.patch,
  +files/shadow-4.0.13-su-fix-environment.patch, +shadow-4.0.13.ebuild:
  Version bump.

  24 Aug 2005; Martin Schlemmer <azarah@gentoo.org>
  +files/shadow-4.0.12-gcc2.patch, shadow-4.0.12.ebuild:
  Fix compiling with gcc-2.95.x

*shadow-4.0.12 (23 Aug 2005)

  23 Aug 2005; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.12-dots-in-usernames.patch,
  +files/shadow-4.0.12-long-groupnames.patch, +shadow-4.0.12.ebuild:
  Version bump.

  09 Aug 2005; Aaron Walker <ka0ttic@gentoo.org> shadow-4.0.7-r3.ebuild:
  Stable on mips.

*shadow-4.0.11.1-r2 (04 Aug 2005)

  04 Aug 2005; Martin Schlemmer <azarah@gentoo.org>
  +files/shadow-4.0.11.1-su-fix-environment.patch,
  +shadow-4.0.11.1-r2.ebuild:
  Patch from upstream enables the new environment too early for PAM, causing
  segfaults in some cases.

*shadow-4.0.11.1-r1 (03 Aug 2005)

  03 Aug 2005; Martin Schlemmer <azarah@gentoo.org>
  +files/shadow-4.0.11.1-SUPATH.patch,
  +files/shadow-4.0.11.1-ngettext.patch,
  +files/shadow-4.0.11.1-uclibc-missing-l64a.patch,
  +shadow-4.0.11.1-r1.ebuild:
  Checked with upstream .. SUPATH and PATH valid again for PAM (bug #101047).
  Fix building on UCLIBC.

*shadow-4.0.11.1 (01 Aug 2005)

  01 Aug 2005; Martin Schlemmer <azarah@gentoo.org>
  +files/shadow-4.0.11.1-perms.patch, +shadow-4.0.11.1.ebuild:
  Update version. Remove login.access, related manpages, etc for PAM enabled,
  as its not used.

*shadow-4.0.7-r4 (25 Jul 2005)

  25 Jul 2005; <solar.@gentoo.org> +files/shadow-4.0.7-perms.patch,
  shadow-4.0.10.ebuild, +shadow-4.0.7-r4.ebuild:
  - added no /usr/bin suid option as local use flag nousuid for single user
  systems

  19 Jul 2005; Bryan Østergaard <kloeri@gentoo.org> shadow-4.0.7-r3.ebuild:
  Stable on alpha.

  10 Jul 2005; Joseph Jezak <josejx@gentoo.org> shadow-4.0.7-r3.ebuild:
  Marked ppc stable.

  10 Jul 2005; Daniel Ostrow <dostrow@gentoo.org> shadow-4.0.7-r3.ebuild:
  Change check for ppc64 and securetty from tc-arch to tc-arch-kernel.

  08 Jul 2005; Rene Nussbaumer <killerfox@gentoo.org>
  shadow-4.0.7-r3.ebuild:
  Stable on hppa.

  08 Jul 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  shadow-4.0.7-r3.ebuild:
  Stable on sparc

  08 Jul 2005; Martin Schlemmer <azarah@gentoo.org> shadow-4.0.10.ebuild:
  Add NSCD patches from 4.0.7-r3 as well.

*shadow-4.0.7-r3 (08 Jul 2005)

  08 Jul 2005; Martin Schlemmer <azarah@gentoo.org>
  +files/shadow-4.0.7-nscd-EPIPE-failure.patch,
  +files/shadow-4.0.7-nscd-socket-path.patch, shadow-4.0.7-r3.ebuild:
  Fix EPIPE when nscd is used, bug #80413.

  07 Jul 2005; Markus Rothe <corsair@gentoo.org> shadow-4.0.7-r2.ebuild:
  Stable on ppc64

  07 Jul 2005; Diego Pettenò <flameeyes@gentoo.org> shadow-4.0.7-r2.ebuild:
  Stable on amd64

*shadow-4.0.10 (30 Jun 2005)

  30 Jun 2005; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.10-dots-in-usernames.patch,
  +files/shadow-4.0.10-fix-configure.patch,
  +files/shadow-4.0.10-long-groupnames.patch,
  +files/shadow-4.0.10-nls-manpages.patch, +files/shadow-4.0.10-nonis.patch,
  +shadow-4.0.10.ebuild:
  Version bump.

  16 Jun 2005; Diego Pettenò <flameeyes@gentoo.org>
  files/pam.d/system-auth-1.1, files/pam.d-include/system-auth-1.1,
  files/pam.d/login, files/pam.d/other, files/pam.d/passwd,
  files/pam.d/shadow, files/pam.d/su, files/pam.d/system-auth:
  Make all pam.d files use just the modules' filenames instead of full path to
  fix multilib setups.

  10 Jun 2005; Chris Gianelloni <wolf31o2@gentoo.org> files/securetty:
  Added vc/0 tty0 for uml.  Blame rocket.

*shadow-4.0.7-r2 (03 Jun 2005)

  03 Jun 2005; Diego Pettenò <flameeyes@gentoo.org>
  +files/pam.d-include/system-auth-1.1, +files/pam.d-include/login,
  +files/pam.d-include/other, +files/pam.d-include/passwd,
  +files/pam.d-include/shadow, +files/pam.d-include/su,
  +files/pam.d-include/su-openpam, +files/pam.d-include/system-auth,
  +shadow-4.0.7-r2.ebuild:
  New revision depending on virtual/pam and using include syntax. Fixes
  OpenPAM and AMD64 compatibility.

  29 May 2005; <solar@gentoo.org> shadow-4.0.4.1-r4.ebuild:
  - update sys-apps/shadow to use libc expanded variable elibc_uclibc vs uclibc
  so USE=-* works

  23 Mar 2005; Chris Gianelloni <wolf31o2@gentoo.org> files/securetty:
  Added hvc0 to securetty for ppc64 serial console.

  22 Mar 2005; Martin Schlemmer <azarah@gentoo.org>
  +files/shadow-4.0.7-lastlog.patch, shadow-4.0.7-r1.ebuild:
  Fix last login logging for tty's - patch from upstream via
  Robert Connolly <robert@linuxfromscratch.org>.

*shadow-4.0.7-r1 (25 Feb 2005)

  25 Feb 2005; Martin Schlemmer <azarah@gentoo.org>
  files/pam.d/system-auth-1.1, +shadow-4.0.7-r1.ebuild:
  No longer DEPEND on pam-login, but PDEPEND on pam-login-3.17 or later, as we
  move the login pam.d file there. Remove the pam_console comments from
  pam.d/system-auth-1.1, as it is needed in pam.d/login. Do not install other
  and system-auth pam.d files if we have pam-0.78 or later.

  10 Feb 2005; Martin Schlemmer <azarah@gentoo.org> shadow-4.0.5-r3.ebuild:
  Basically -r3 is the same as -r2, just with fix for the MAIL issue with su,
  so mark stable for all that have -r2 stable.

*shadow-4.0.7 (06 Feb 2005)

  06 Feb 2005; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.7-iswheel.patch, +shadow-4.0.7.ebuild:
  Version bump with wheel patch by Gregorio Guidi #80345.

*shadow-4.0.6-r1 (11 Jan 2005)

  11 Jan 2005; Mike Frysinger <vapier@gentoo.org> +shadow-4.0.6-r1.ebuild:
  Fix patch to nscd socket #74395 by Phil Pennock.

  10 Jan 2005; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.6-dots-in-usernames.patch,
  +files/shadow-4.0.6-long-groupnames.patch, shadow-4.0.6.ebuild:
  Add patches to enable long group names #3485 and usernames with a . in them
  #22920.

  06 Jan 2005; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.6-manpages.patch, shadow-4.0.6.ebuild:
  Add minor patch by Eric Brown to SEE ALSO in manpages #70880.

  04 Jan 2005; Markus Rothe <corsair@gentoo.org> shadow-4.0.5-r3.ebuild:
  Stable on ppc64

  02 Jan 2005; Ciaran McCreesh <ciaranm@gentoo.org> :
  Change encoding to UTF-8 for GLEP 31 compliance

  25 Nov 2004; <solar@gentoo.org> shadow-4.0.5-r2.ebuild,
  shadow-4.0.5-r3.ebuild, shadow-4.0.6.ebuild:
  Fix RDEPEND's for bug #67815 again

  23 Nov 2004; Mike Frysinger <vapier@gentoo.org> shadow-4.0.5-r2.ebuild,
  shadow-4.0.5-r3.ebuild, shadow-4.0.6.ebuild:
  Update DEPENDs so that we either require pam-login or block it depending on
  USE=pam #67815.

*shadow-4.0.6 (11 Nov 2004)

  11 Nov 2004; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.6-fix-configure.patch, +shadow-4.0.6.ebuild:
  Version bump #70757 by Lindsay Jack.

*shadow-4.0.5-r3 (07 Nov 2004)

  07 Nov 2004; Martin Schlemmer <azarah@gentoo.org> :
  Fix configure not detecting maildir, etc properly. Fix pam_env set variables
  not being set.

  07 Nov 2004; Joshua Kinard <kumba@gentoo.org> shadow-4.0.5-r2.ebuild:
  Marked stable on mips.

*shadow-4.0.5-r2 (03 Nov 2004)

  03 Nov 2004; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.5-hack-X-envvars.patch, +shadow-4.0.5-r2.ebuild:
  Restore DISPLAY/XAUTHORITY env passing hack for now #69925.

*shadow-4.0.5-r1 (03 Nov 2004)

  03 Nov 2004; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.5-remove-else.patch, +shadow-4.0.5-r1.ebuild,
  shadow-4.0.5.ebuild:
  Small security patch from upstream cvs #69212 and install more pam.d files
  #69895.

  02 Nov 2004; Jeremy Huddleston <eradicator@gentoo.org>
  shadow-4.0.5.ebuild:
  Stable amd64.

  02 Nov 2004; Markus Rothe <corsair@gentoo.org> shadow-4.0.5.ebuild:
  Stable on ppc64, bug #69212

  02 Nov 2004; Mike Frysinger <vapier@gentoo.org> shadow-4.0.5.ebuild:
  Mark arm/hppa/ia64/s390/x86 stable for security, fix duplicate manpage
  install #69781, and block virtual/login when USE=-pam.

  02 Nov 2004; Gustavo Zacarias <gustavoz@gentoo.org> shadow-4.0.5.ebuild:
  Stable on sparc wrt #69212

  02 Nov 2004; Bryan Østergaard <kloeri@gentoo.org> shadow-4.0.5.ebuild:
  Stable on alpha, bug 69212.

  02 Nov 2004; Lars Weiler <pylon@gentoo.org> shadow-4.0.5.ebuild:
  Stable on ppc.  Bug #69212.

  01 Nov 2004; Mike Frysinger <vapier@gentoo.org> shadow-4.0.5.ebuild,
  +files/shadow-4.0.5-skey.patch:
  Add patch by Mark Wagner to fix skey support #69741 by Thomas Matthijs.

  28 Oct 2004; Mike Frysinger <vapier@gentoo.org> shadow-4.0.4.1-r4.ebuild,
  shadow-4.0.5.ebuild, +files/shadow-4.0.4.1-passwd-typo.patch:
  Fix small glitch in passwd.1 #68150 by rob holland.

*shadow-4.0.5 (28 Oct 2004)

  28 Oct 2004; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.5-nls-manpages.patch, +shadow-4.0.5.ebuild:
  Version bump #69212 by me.

  16 Oct 2004; Mike Frysinger <vapier@gentoo.org>
  +files/shadow-4.0.4.1-nls-manpages.patch:
  Add a small patch I made to not install manpages if USE=-nls.

  15 Oct 2004; Gustavo Zacarias <gustavoz@gentoo.org>
  shadow-4.0.4.1-r4.ebuild:
  Stable on sparc

  10 Oct 2004; Mike Frysinger <vapier@gentoo.org> shadow-4.0.4.1-r3.ebuild,
  shadow-4.0.4.1-r4.ebuild:
  Move /usr/bin/passwd -> /bin/passwd to aid system recovery #64441.

  09 Oct 2004; Mike Frysinger <vapier@gentoo.org> shadow-4.0.4.1-r4.ebuild:
  Clean up the manpage fixes and change setuid perms to 4711 by default #47208.

*shadow-4.0.4.1-r4 (07 Oct 2004)

  07 Oct 2004; Mike Frysinger <vapier@gentoo.org> +shadow-4.0.4.1-r4.ebuild
  +files/shadow-4.0.4.1-userdel-missing-brackets.patch:
  Add patch to fix exit status while using pam #66687 by Scott Beck/Jason
  Rhinelander.

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

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

  18 Aug 2004; Gustavo Zacarias <gustavoz@gentoo.org>
  shadow-4.0.4.1-r3.ebuild:
  Stable on sparc

  29 Jul 2004; Guy Martin <gmsoft@gentoo.org> shadow-4.0.4.1-r3.ebuild:
  Stable on hppa.

  12 Jul 2004; Tom Gall <tgall@gentoo.org> shadow-4.0.3-r10:ebuild:
  stable on ppc64, add ttyS0 to ppc64 securetty, and add in
  epatch for gcc 34 Ibug #47455  (bug #56273)

  03 Jul 2004; Guy Martin <gmsoft@gentoo.org> shadow-4.0.4.1-r2.ebuild:
  Marked stable on hppa.

*shadow-4.0.4.1-r3 (03 Jul 2004)

  03 Jul 2004; Chris PeBenito <pebenito@gentoo.org>
  files/shadow-4.0.4.1-selinux.diff, +shadow-4.0.4.1-r3.ebuild:
  Fix /etc/passwd labeling issue in SELinux patch caught by Petre Rodan in
  #55781. Otherwise same as 4.0.4.1-r2.

  03 Jul 2004; Joshua Kinard <kumba@gentoo.org> shadow-4.0.4.1-r2.ebuild:
  Marked stable on mips.

  29 Jun 2004; Aron Griffis <agriffis@gentoo.org> shadow-4.0.4.1-r2.ebuild:
  stable on x86, alpha, ia64

  27 Jun 2004; Aron Griffis <agriffis@gentoo.org> shadow-4.0.3-r10.ebuild,
  shadow-4.0.3-r9.ebuild, shadow-4.0.4.1-r1.ebuild, shadow-4.0.4.1.ebuild:
  QA - fix use invocation

  15 Jun 2004; <solar@gentoo.org> shadow-4.0.4.1-r2.ebuild,
  files/shadow-4.0.4.1-nonis.patch:
  added nonis patch and uclibc USE to allow shadow to be compiled under uclibc
  envs

  11 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> shadow-4.0.4.1-r1.ebuild:
  Stable on alpha.

*shadow-4.0.4.1-r2 (28 May 2004)

  28 May 2004; Aron Griffis <agriffis@gentoo.org> +shadow-4.0.4.1-r2.ebuild:
  Remove libshadow and libmisc from the shadow package. They shouldn't be
  installed; they're for package internal use only. Installing them breaks
  packages that check for libshadow such as freeradius. See bug 37725 for more
  information. Thanks to Hans W. Wurst for providing some good information in
  that bug.

*shadow-4.0.4.1-r1 (06 May 2004)

  06 May 2004; Aron Griffis <agriffis@gentoo.org> +shadow-4.0.4.1-r1.ebuild,
  shadow-4.0.4.1.ebuild:
  Fix bug 35736: Use -fPIC when building on 64-bit systems so that other
  packages which link shadow into their shared objects will build, for example
  freeradius. Normally this is something to fix globally, but don't want to hurt
  performance for other arches.

  04 May 2004; Gustavo Zacarias <gustavoz@gentoo.org> shadow-4.0.3-r10.ebuild,
  shadow-4.0.4.1.ebuild:
  hppa consoles added to securetty, sparc cleanup, for non-stable ebuilds

  04 May 2004; Gustavo Zacarias <gustavoz@gentoo.org> shadow-4.0.3-r9.ebuild:
  hppa consoles added to securetty, sparc cleanup

  22 Apr 2004; Travis Tilley <lv@gentoo.org>
  +files/shadow-4.0.3-gcc34-xmalloc.patch,
  +files/shadow-4.0.4.1-gcc34-xmalloc.patch, shadow-4.0.3-r9.ebuild,
  shadow-4.0.4.1.ebuild:
  fixes for compiling with gcc 3.4 - bug #47455

  29 Mar 2004; Jon Portnoy <avenj@gentoo.org> shadow-4.0.3-r9.ebuild,
  shadow-4.0.3-r10.ebuild, shadow-4.0.4.1.ebuild :
  Need nls in IUSE, referenced in DEPEND. Bug #44548.

  16 Feb 2004; Martin Schlemmer <azarah@gentoo.org> shadow-4.0.3-r9.ebuild,
  shadow-4.0.4.1.ebuild:
  Fix sg, adduser and vigr symlinks (make them relative not absolute), bug
  #41178.

  23 Jan 2004; Chris PeBenito <pebenito@gentoo.org> shadow-4.0.4.1.ebuild,
  files/shadow-4.0.4.1-selinux.diff:
  Update SELinux patch.

*shadow-4.0.4.1 (22 Jan 2004)

  22 Jan 2004; Martin Schlemmer <azarah@gentoo.org> shadow-4.0.4.1.ebuild,
  files/shadow-4.0.4.1-su-pam_open_session.patch,
  files/shadow-4.0.4.1-useradd-manpage-update.patch:
  Update version.

*shadow-4.0.3-r10 (09 Jan 2004)

  09 Jan 2004; Aron Griffis <agriffis@gentoo.org> shadow-4.0.3-r10.ebuild:
  Enable building of shared objects.  Thanks to Nico Baggus in bug 37725.
  This also closes bug 37719 since freeradius should be able to build with
  libshadow.so

  15 Dec 2003; Martin Schlemmer <azarah@gentoo.org> shadow-4.0.3-r9.ebuild:
  Install the correct version of /etc/pam.d/system-auth, and do not install
  system-auth-1.1. Do not force update anymore.

  10 Dec 2003; Seemant Kulleen <seemant@gentoo.org> shadow-4.0.3-r9.ebuild:
  don't install man 5 passwd either, man-pages again

  10 Dec 2003; Seemant Kulleen <seemant@gentoo.org> shadow-4.0.3-r9.ebuild:
  don't install the getspnam manpage -- man-pages package handles that and does
  it with a better version, to boot

  09 Dec 2003; Seemant Kulleen <seemant@gentoo.org> shadow-4.0.3-r9.ebuild:
  don't install the id man page, coreutils does that

*shadow-4.0.3-r9 (06 Dec 2003)

  06 Dec 2003; Seemant Kulleen <seemant@gentoo.org> shadow-4.0.3-r9.ebuild:
  version bump to force /bin/groups to be on the system -- /bin/groups has been
  removed from coreutils, and now only shadow will provide it. Note that
  coreutils used to compile su and not install it.  This behaviour was
  changed in the bumped coreutils as well (not that that has any effect on
  this, but thought I'd mention it anyway)

*shadow-4.0.3-r8 (17 Nov 2003)

  17 Nov 2003; Joshua Brindle <method@gentoo.org> shadow-4.0.3-r8.ebuild:
  added optional pam support

  28 Oct 2003; Chris PeBenito <pebenito@gentoo.org> shadow-4.0.3-r7.ebuild,
  files/shadow-4.0.3-selinux.diff:
  Add new API SELinux patch

  26 Sep 2003; Martin Schlemmer <azarah@gentoo.org> shadow-4.0.3-r7.ebuild:
  Mark stable.

  26 Sep 2003; Martin Holzer <mholzer@gentoo.org> shadow-4.0.3-r3.ebuild,
  shadow-4.0.3-r4.ebuild, shadow-4.0.3-r5.ebuild, shadow-4.0.3-r6.ebuild,
  shadow-4.0.3-r7.ebuild:
  Added nls? sys-devel/gettext. Closes #29236.

*shadow-4.0.3-r7 (04 Aug 2003)

  04 Aug 2003; Martin Schlemmer <azarah@gentoo.org> shadow-4.0.3-r7.ebuild,
  files/pam.d/system-auth-1.1:
  Remove the 'nodelay' option from authentication (/etc/pam.d/system-auth), bug
  #24081.

  29 Jun 2003; Chris PeBenito <pebenito@gentoo.org> shadow-4.0.3-r6.ebuild:
  Remove selinux stuff, as its no longer needed.  Using pam-login again.

*shadow-4.0.3-r6 (18 May 2003)

  18 May 2003; Martin Schlemmer <azarah@gentoo.org> shadow-4.0.3-r6.ebuild:
  Get the fixed version that do not exclude selinux in as latest stable.

*shadow-4.0.3-r5 (13 May 2003)

  14 May 2003; Joshua Kinard <kumba@gentoo.org> shadow-4.0.3-r5.ebuild:
  Added "gnuconfig" to inherit and "gnuconfig_update" to src_compile()
  to make it detect mips systems correctly

  13 May 2003; Daniel Ahlberg <aliz@gentoo.org> :
  Security update. Added nodelay to second line of pam.d/system-auth.

*shadow-4.0.3-r4 (23 Feb 2003)

  24 Feb 2003; Martin Schlemmer <azarah@gentoo.org> shadow-4.0.3-r4.ebuild :
  Remove the patch again, as it could be a security risk.  Users can use:
     # sudo -u nobody ls
  If they need to run commands as user with '/bin/false' as login ...

  23 Feb 2003; Martin Schlemmer <azarah@gentoo.org> shadow-4.0.3-r4.ebuild :
  If su should not simulate a login shell, use '/bin/sh' as shell to enable
  running of commands as user with /bin/false as shell, closing bug #15015.

  21 Feb 2003; Zach Welch <zwelch@gentoo.org> shadow-4.0.3-r3.ebuild :
  Added arm to keywords.

  09 Feb 2003; Guy Martin <gmsoft@gentoo.org> shadow-4.0.3-r3.ebuild :
  Added hppa to keywords.

  19 Jan 2003; Martin Schlemmer <azarah@gentoo.org> shadow-4.0.3-r3.ebuild :
  Patch the useradd manpage to be a bit more clear, closing bug #13203.
  Thanks to Guy <guycad@mindspring.com>.

*shadow-4.0.3-r3 (25 Dec 2002)

  24 Mar 2003; Joshua Brindle <method@gentoo.org> shadow-4.0.3-r3.ebuild:
  added pam.d files for selinux builds

  23 Mar 2003; Joshua Brindle <method@gentoo.org> shadow-4.0.3-r3.ebuild:
  added selinux support, thanks sindian

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

  25 Dec 2002; Martin Schlemmer <azarah@gentoo.org> shadow-4.0.3-r3.ebuild :
  Added /etc/default/useradd with default shell of /bin/bash, closing bug #5629.

  06 Dec 2002; Rodney Rees <manson@gentoo.org> :
  Changed sparc ~sparc keywords.

  03 Dec 2002; Martin Schlemmer <azarah@gentoo.org> shadow-4.0.3-r2.ebuild :
  Mark as stable.  Update pam.d/su to use pam_filelist.so if uncommented.
  This can be used as a type of /etc/suauth.  Should close bug #4210.

  Fix an issue where /etc/pam.d/system-auth.new was still being installed.

*shadow-4.0.3-r1 (20 Oct 2002)

  20 Oct 2002; Martin Schlemmer <azarah@gentoo.org> shadow-4.0.3-r2.ebuild :
  Update the su-pam_open_session.patch, as the old one did not export
  XAUTHORITY, or call pam_close_session().

*shadow-4.0.3-r1 (19 Oct 2002)

  19 Oct 2002; Martin Schlemmer <azarah@gentoo.org> shadow-4.0.3-r1.ebuild :
  Get su to call pam_open_session(), and also set DISPLAY and XAUTHORITY,
  else the session entries in /etc/pam.d/su never get executed, and
  pam_xauth for one, is then never used.  This should close bug #8831.

  12 Oct 2002; Martin Schlemmer <azarah@gentoo.org> shadow-4.0.3.ebuild :
  Fix bug #9031 (add /etc/default/ to fix useradd -D).

*shadow-4.0.2-r4.ebuild (14 July 2002)

  14 Jul 2002; phoen][x <phoenix@gentoo.org> shadow-4.0.2-r4.ebuild :
  Added KEYWORDS, SLOT.

*shadow-4.0.1-r2.ebuild (14 July 2002)

  14 Jul 2002; phoen][x <phoenix@gentoo.org> shadow-4.0.1-r2.ebuild :
  Added KEYWORDS, SLOT.

  29 Jun 2002; M.Schlemmer <azarah@gentoo.org>
  Update to use libtool.eclass.  This fix the compile problems without
  having custom $LIBS and $LDFLAGS.

*shadow-4.0.2-r5 (28 Apr 2002)

  14 Jul 2002; phoen][x <phoenix@gentoo.org> shadow-4.0.2-r5.ebuild :
  Added KEYWORDS.

  28 Apr 2002; M.Schlemmer <azarah@gentoo.org>
  Remove /etc/login.defs.

  8 Apr 2002; M.Schlemmer <azarah@gentoo.org>
  Removed /bin/login in favour of the one in util-linux, as the one
  included here have a root exploit if pam_limits is in use.

  Libtoolized to fix .la files.  Build is pretty broken if libtoolized, so had
  to put a unortodox LIBS= and LDFLAGS= there.

*shadow-4.0.3 (3 Apr 2002)

  14 Jul 2002; phoen][x <phoenix@gentoo.org> shadow-4.0.3.ebuild :
  Added KEYWORDS.

  3 Apr 2002; Jared H. Hudson <jhhudso@gentoo.org>
  Added new shadow version, currently masked out until it's been
  tested better.

*shadow-4.0.2-r3 (3 Apr 2002)

  3 Apr 2002; Jared H. Hudson <jhhudso@gentoo.org>
  Cleaned up earlier fix to account for all possibilities, such as
  binary packages, different ROOT's, and an already existing good
  system-auth file.

*shadow-4.0.2-r2 (3 Apr 2002)

  3 Apr 2002; Jared H. Hudson <jhhudso@gentoo.org>
  Fixed /etc/pam.d/system-auth to use pam_unix instead of pam_pwdb due
  to security bug.

*shadow-4.0.2-r1 (25 Mar 2002)

  25 Mar 2002; M.Schlemmer <azarah@gentoo.org>
  Fix the "libdir" in /usr/lib/libmisc.la.

*shadow-20001016-r10 (12 Mar 2002)

  14 Jul 2002; phoen][x <phoenix@gentoo.org> shadow-20001016-r10.ebuild :
  Added KEYWORDS, SLOT.

  12 Mar 2002; Seemant Kulleen <seemant@gentoo.org>
  Added USE dependent nls compilation.

*shadow-20001016-r9 (26 Feb 2002)

  14 Jul 2002; phoen][x <phoenix@gentoo.org> shadow-20001016-r9.ebuild :
  Added KEYWORDS, SLOT.

  26 Feb 2002; T.Neidt <tod@gentoo.org> shadow-20001016-r9.ebuild, login.defs
  Changed 'CREATE_HOME yes' to 'CREATE_HOME no' in login.defs.
  CREATE_HOME is a RedHat'ism and is not supported by the stock shadow
  package (see src/useradd.c).  When CREATE_HOME is set to 'yes',
  useradd generates a warning meassage.

  Bumped ebuild revision so login.defs will be updated by emerge updates.

  Note to users:  'useradd -m <user>' will create the home directory and
  add any files in /etc/skel (see 'man useradd')


*shadow-20001016-r8 (25 Feb 2002)

  14 Jul 2002; phoen][x <phoenix@gentoo.org> shadow-20001016-r8.ebuild :
  Added KEYWORDS, SLOT.

  25 Feb 2002; M.Schlemmer <azarah@gentoo.org> shadow-20001016-r8.ebuild
  Added a 'rm -rf ${D}/usr/share/man/*' to Chris's man fix to clean the
  Polish pages.  Added the line for installing /etc/pam.d/chage again, which
  should close bug #837.

*shadow-20001016-r7 (20 Feb 2002)

  14 Jul 2002; phoen][x <phoenix@gentoo.org> shadow-20001016-r7.ebuild :
  Added KEYWORDS, SLOT.

  20 Feb 2002; Chris Houser <chouser@gentoo.org> shadow-20001016-r7.ebuild
  files/digest-shadow-20001016-r7 ChangeLog :

  Changed man page installation.  More man pages are now included, and all
  should be in English (instead of the occasional Polish page).  This closes
  bug #594.

*shadow-20001016-r6 (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.