summaryrefslogtreecommitdiff
blob: 57d1712593506762559aa96245620aea5ce42415 (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
# ChangeLog for net-fs/samba
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/ChangeLog,v 1.310 2007/11/15 16:44:28 fmccor Exp $

  15 Nov 2007; Ferris McCormick <fmccor@gentoo.org> samba-3.0.27.ebuild:
  Sparc stable  --- Security Bug #197519 --- installs with all tests passing.

*samba-3.0.27 (15 Nov 2007)

  15 Nov 2007; Tiziano Müller <dev-zero@gentoo.org> +samba-3.0.27.ebuild:
  Security-Version bump. Fixes CVE-2007-4572 (in addition to CVE-2007-5398).

*samba-3.0.26a-r2 (15 Nov 2007)

  15 Nov 2007; Tiziano Müller <dev-zero@gentoo.org>
  +files/3.0.26a-CVE-2007-5398.patch, +samba-3.0.26a-r2.ebuild:
  Revision bump. Marking stable for all archs for remote vulnerability
  security bug (CVE-2007-5398)

*samba-3.0.26a-r1 (02 Nov 2007)

  02 Nov 2007; Tiziano Müller <dev-zero@gentoo.org>
  +files/3.0.26a-invalid-free-fix.patch, -samba-3.0.26a.ebuild,
  +samba-3.0.26a-r1.ebuild:
  Added patch for bug #196015 (thanks to Evgeniy Dushistov)

  31 Oct 2007; Tiziano Müller <dev-zero@gentoo.org> samba-3.0.26a.ebuild:
  Removed some useless files from the dodoc-call, quoted some more vars.

  31 Oct 2007; Tiziano Müller <dev-zero@gentoo.org> samba-3.0.26a.ebuild:
  Removed broken 'remove stalled symlinks' fix

*samba-3.0.26a (15 Sep 2007)

  15 Sep 2007; Tiziano Müller <dev-zero@gentoo.org>
  +files/3.0.26a-lazyldflags.patch, -files/3.0.x-libdirsymlink.patch,
  +samba-3.0.26a.ebuild:
  Version bump. Removed unneeded patch.

  11 Sep 2007; Roy Marples <uberlord@gentoo.org> files/samba-init:
  de-bashify the init script

*samba-3.0.25c-r2 (11 Sep 2007)

  11 Sep 2007; Tiziano Müller <dev-zero@gentoo.org>
  +files/3.0.25c-CVE-2007-4138.patch, -samba-3.0.25c-r1.ebuild,
  +samba-3.0.25c-r2.ebuild:
  Added security fix for CVE-2007-4138 (bug #192163)

  10 Sep 2007; Tiziano Müller <dev-zero@gentoo.org>
  samba-3.0.25c-r1.ebuild:
  make better use of pam.eclass (bug #191942 thanks to Jakub Moc)

  09 Sep 2007; Tiziano Müller <dev-zero@gentoo.org>
  samba-3.0.25c-r1.ebuild:
  Fixed newins and removed install of {mount,umount}.cifs.8 (bugs #191804 and
  #191805 thanks to Jakub Moc)

*samba-3.0.25c-r1 (08 Sep 2007)

  08 Sep 2007; Tiziano Müller <dev-zero@gentoo.org> files/samba-init,
  -samba-3.0.25c.ebuild, +samba-3.0.25c-r1.ebuild:
  Fixed init-script to correctly start daemons when not started via symlink
  (bug #191647, thanks to Christoph Schulz)

*samba-3.0.25c (07 Sep 2007)

  07 Sep 2007; Tiziano Müller <dev-zero@gentoo.org>
  +files/3.0.25c-lazyldflags.patch, +files/3.0.25c-py_smp.patch,
  +files/3.0.x-libdirsymlink.patch, +files/config/lmhosts,
  +files/config/nsswitch.conf-winbind, +files/config/nsswitch.conf-wins,
  +files/config/samba.pam, +files/config/samba.schema,
  +files/config/smb.conf.example-samba3, +files/config/smbusers,
  +files/config/swat.xinetd, +files/config/system-auth-winbind,
  files/samba-init, +files/samba-xinetd, +samba-3.0.25c.ebuild:
  Version bump (bug #178639, thanks to Johan Andersson for the py_smb-patch).
  Added ipv6 support (bug #187905). Replaced 'kerberos' with 'ads' USE flag
  (bug #181558). Added possibility to start daemons seperately (bug #112188).
  Fixed python-handling (bug #177545).

  24 Jun 2007; Tiziano Müller <dev-zero@gentoo.org> -samba-3.0.24.ebuild:
  Dropped old version

  09 Jun 2007; Tiziano Müller <dev-zero@gentoo.org>
  -files/3.0.24-sid2name_elevation.patch, -files/3.0.24-heap_overflow.patch,
  -samba-3.0.22-r3.ebuild, -samba-3.0.24-r1.ebuild, -samba-3.0.24-r2.ebuild:
  Dropped old versions and patches.

  01 Jun 2007; nixnut <nixnut@gentoo.org> samba-3.0.24-r3.ebuild:
  Stable on ppc wrt bug 179867

  01 Jun 2007; Peter Weller <welp@gentoo.org> samba-3.0.24-r3.ebuild:
  Stable on amd64 wrt bug 179867

  01 Jun 2007; Joshua Kinard <kumba@gentoo.org> samba-3.0.24-r3.ebuild:
  Stable on mips, per #179867.

  28 May 2007; Raúl Porcel <armin76@gentoo.org> samba-3.0.24-r3.ebuild:
  alpha/ia64/x86 stable wrt #179867

  28 May 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  samba-3.0.24-r3.ebuild:
  Stable on sparc wrt #179867

  27 May 2007; Brent Baude <ranger@gentoo.org> samba-3.0.24-r3.ebuild:
  Marking samba-3.0.24-r3 ppc64 for bug 179867

  27 May 2007; Joshua Kinard <kumba@gentoo.org> samba-3.0.24-r2.ebuild:
  Stable on mips.

  26 May 2007; Jeroen Roovers <jer@gentoo.org> samba-3.0.24-r3.ebuild:
  Stable for HPPA (bug #179867).

*samba-3.0.24-r3 (26 May 2007)

  26 May 2007; Tiziano Müller <dev-zero@gentoo.org>
  +files/3.0.24-heap_overflow_v2.patch,
  +files/3.0.24-sid2name_elevation_v2.patch, +samba-3.0.24-r3.ebuild:
  Updated security patches (bug #179867, thanks to Rafael Antonio Porras)

  15 May 2007; Raúl Porcel <armin76@gentoo.org> samba-3.0.24-r2.ebuild:
  alpha stable wrt security bug 177029

  15 May 2007; Christian Faulhammer <opfer@gentoo.org>
  samba-3.0.24-r2.ebuild:
  stable amd64, security bug 177029

  14 May 2007; Raúl Porcel <armin76@gentoo.org> samba-3.0.24-r2.ebuild:
  ia64 stable wrt security bug 177029

  14 May 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  samba-3.0.24-r2.ebuild:
  ppc stable, bug #177029

  14 May 2007; Joshua Jackson <tsunam@gentoo.org> samba-3.0.24-r2.ebuild:
  stable x86 security bug #177029

  14 May 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  samba-3.0.24-r2.ebuild:
  Stable on sparc wrt security #177029

*samba-3.0.24-r2 (14 May 2007)

  14 May 2007; Markus Rothe <corsair@gentoo.org>
  +files/3.0.24-heap_overflow.patch, +files/3.0.24-shell_escape.patch,
  +files/3.0.24-sid2name_elevation.patch, +samba-3.0.24-r2.ebuild:
  Version bump (fixes bug #177029 aka CVE-2007-2446, CVE-2007-2447) and mark
  it stable on ppc64

  12 May 2007; Joshua Kinard <kumba@gentoo.org> samba-3.0.24.ebuild:
  Stable on mips.

  06 May 2007; Marius Mauch <genone@gentoo.org> samba-3.0.22-r3.ebuild,
  samba-3.0.24.ebuild, samba-3.0.24-r1.ebuild:
  Replacing einfo with elog

*samba-3.0.24-r1 (09 Apr 2007)

  09 Apr 2007; Tiziano Müller <dev-zero@gentoo.org> +files/samba-conf,
  +files/samba-init, +samba-3.0.24-r1.ebuild:
  Removed obsolete patches. Moved conf.d/init.d files out of the tarball.
  Fixed bug #170072 (thanks to Roy Marples)

  01 Mar 2007; Daniel Black <dragonheart@gentoo.org> Manifest:
  digest fix - bug #168842

  01 Mar 2007; Doug Goldstein <cardoe@gentoo.org> metadata.xml:
  Fixing herd

  26 Feb 2007; Tiziano Müller <dev-zero@gentoo.org> samba-3.0.24.ebuild:
  Added caps USE-flag (bug #167863)

  11 Feb 2007; Alexander H. Færøy <eroyf@gentoo.org> samba-3.0.24.ebuild:
  Stable on IA64; bug #165549

  08 Feb 2007; Alexander H. Færøy <eroyf@gentoo.org> samba-3.0.24.ebuild:
  Stable on Alpha; Bug #165549

  07 Feb 2007; Tiziano Müller <dev-zero@gentoo.org>
  -samba-3.0.14a-r2.ebuild, -samba-3.0.20b.ebuild, -samba-3.0.21a.ebuild,
  -samba-3.0.21b-r1.ebuild, -samba-3.0.22.ebuild, -samba-3.0.22-r2.ebuild,
  -samba-3.0.23.ebuild, -samba-3.0.23a.ebuild, -samba-3.0.23d.ebuild:
  Dropped old versions (bug #164208)

  07 Feb 2007; Jeroen Roovers <jer@gentoo.org> samba-3.0.24.ebuild:
  Stable for HPPA (bug #165549).

  06 Feb 2007; Simon Stelling <blubb@gentoo.org> samba-3.0.24.ebuild:
  stable on amd64 wrt security bug 165549

  06 Feb 2007; Tobias Scherbaum <dertobi123@gentoo.org> samba-3.0.24.ebuild:
  Stable on ppc wrt bug #165549.

  06 Feb 2007; Raúl Porcel <armin76@gentoo.org> samba-3.0.24.ebuild:
  x86 stable wrt security bug 165549

  06 Feb 2007; Markus Rothe <corsair@gentoo.org> samba-3.0.24.ebuild:
  Stable on ppc64; bug #165549

  06 Feb 2007; Gustavo Zacarias <gustavoz@gentoo.org> samba-3.0.24.ebuild:
  Stable on sparc wrt security #165549

*samba-3.0.24 (06 Feb 2007)

  06 Feb 2007; Tiziano Müller <dev-zero@gentoo.org> +samba-3.0.24.ebuild:
  Version bump (fixes bug #165549 aka CVE-2007-0452, CVE-2007-0453,
  CVE-2007-0454). Small cleanups.

  08 Jan 2007; Diego Pettenò <flameeyes@gentoo.org>
  samba-3.0.14a-r2.ebuild, samba-3.0.20b.ebuild, samba-3.0.21a.ebuild,
  samba-3.0.21b-r1.ebuild, samba-3.0.22.ebuild, samba-3.0.22-r2.ebuild,
  samba-3.0.22-r3.ebuild, samba-3.0.23.ebuild, samba-3.0.23a.ebuild,
  samba-3.0.23d.ebuild:
  Add inherit pam.

  17 Dec 2006; Mike Frysinger <vapier@gentoo.org> samba-3.0.23d.ebuild:
  Remove the swat binary if USE=swat since it will be unusable otherwise #138026.

*samba-3.0.23d (17 Dec 2006)

  17 Dec 2006; Mike Frysinger <vapier@gentoo.org> +samba-3.0.23d.ebuild:
  Version bump with a lot of help from Chris Smith #143903.

  17 Dec 2006; Mike Frysinger <vapier@gentoo.org> samba-3.0.23a.ebuild:
  Unpack the gentoo tarball first so that it doesnt force old timestamps onto
  directories #146801 by Richard Fish.

  13 Dec 2006; Charlie Shepherd <masterdriverz@gentoo.org>
  samba-3.0.23.ebuild:
  Add blockers with dev-libs/tdb; bug 148001

  23 Nov 2006; Francesco Riosa <vivo@gentoo.org> samba-3.0.14a-r2.ebuild,
  samba-3.0.20b.ebuild, samba-3.0.21a.ebuild, samba-3.0.21b-r1.ebuild,
  samba-3.0.22.ebuild, samba-3.0.22-r2.ebuild, samba-3.0.22-r3.ebuild,
  samba-3.0.23.ebuild:
  dev-db/mysql => virtual/mysql

  30 Oct 2006; Roy Marples <uberlord@gentoo.org> samba-3.0.23a.ebuild:
  Added ~sparc-fbsd keyword.

  05 Sep 2006; Joshua Kinard <kumba@gentoo.org> samba-3.0.22-r3.ebuild:
  Marked stable on mips.

  24 Jul 2006; Christian Andreetta <satya@gentoo.org> samba-3.0.23a.ebuild:
  shared modules fix (bug #140602)

*samba-3.0.23a (23 Jul 2006)

  23 Jul 2006; Christian Andreetta <satya@gentoo.org> +samba-3.0.23a.ebuild:
  version bump. USE flags removed: xml, mysql, postgres, libclamav. Better
  "-ldap" configure options. Added FEATURES="test" support
  (--enable-socket-wrapper)

  16 Jul 2006; Jose Luis Rivero <yoswink@gentoo.org> samba-3.0.22-r3.ebuild:
  Stable on alpha wrt security bug #139369

  15 Jul 2006; Rene Nussbaumer <killerfox@gentoo.org>
  samba-3.0.22-r3.ebuild:
  Stable on hppa. See bug #139369.

  14 Jul 2006; Patrick McLean <chutzpah@gentoo.org> samba-3.0.22-r3.ebuild:
  Stable on amd64 (bug #139369).

  13 Jul 2006; Aron Griffis <agriffis@gentoo.org> samba-3.0.22-r3.ebuild:
  Mark 3.0.22-r3 stable on ia64

*samba-3.0.23 (12 Jul 2006)

  12 Jul 2006; Christian Andreetta <satya@gentoo.org>
  -files/035_all_samba-3.0.21-winbind_log.patch, files/README.gentoo,
  +samba-3.0.23.ebuild:
  version bump. ldap schema small change. xml and *sql backends removed. See
  README.gentoo for further informations

  11 Jul 2006; Jason Wever <weeve@gentoo.org> samba-3.0.22-r3.ebuild:
  Stable on SPARC wrt security bug #139369.

  11 Jul 2006; Joshua Jackson <tsunam@gentoo.org> samba-3.0.22-r3.ebuild:
  Stable x86 bug #139369

  11 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  samba-3.0.22-r3.ebuild:
  ppc stable, bug #139369

  11 Jul 2006; Markus Rothe <corsair@gentoo.org> samba-3.0.22-r3.ebuild:
  Stable on ppc64; bug #139369

*samba-3.0.22-r3 (11 Jul 2006)

  11 Jul 2006; Christian Andreetta <satya@gentoo.org>
  +samba-3.0.22-r3.ebuild:
  security memory DoS fix (CVE-2006-3403: bug #139369)

  06 Jul 2006; Seemant Kulleen <seemant@gentoo.org> samba-3.0.22-r2.ebuild:
  Add the fix for autoconf-2.60 reported by Polinik <polinik@lexx.eu.org> and
  fixed by Canal Vorfeed in bug #138234

  08 Jun 2006; Christian Andreetta <satya@gentoo.org>
  samba-3.0.14a-r2.ebuild, samba-3.0.20b.ebuild, samba-3.0.21a.ebuild,
  samba-3.0.21b-r1.ebuild, samba-3.0.22.ebuild, samba-3.0.22-r2.ebuild:
  deprecated 'xml2' use flag removed (use 'xml' instead)

  15 May 2006; Christian Andreetta <satya@gentoo.org>
  -samba-3.0.14a-r3.ebuild, -samba-3.0.21c-r1.ebuild,
  -samba-3.0.22-r1.ebuild:
  spring cleanings ;-)

  15 May 2006; Christian Andreetta <satya@gentoo.org>
  samba-3.0.22-r1.ebuild, samba-3.0.22-r2.ebuild:
  support for cups 1.2 libs location (bug #133133), removed msdfs use flag
  (included by default: bug #127839)

  28 Apr 2006; Jason Wever <weeve@gentoo.org> samba-3.0.22.ebuild:
  Stable on SPARC wrt bug #124632.

  27 Apr 2006; Alec Warner <antarus@gentoo.org>
  files/digest-samba-3.0.14a-r2, files/digest-samba-3.0.14a-r3,
  files/digest-samba-3.0.20b, files/digest-samba-3.0.21a,
  files/digest-samba-3.0.21b-r1, files/digest-samba-3.0.21c-r1,
  files/digest-samba-3.0.22, files/digest-samba-3.0.22-r1,
  files/digest-samba-3.0.22-r2, Manifest:
  Fixing SHA256 digest, pass four

*samba-3.0.22-r2 (27 Apr 2006)

  27 Apr 2006; Christian Andreetta <satya@gentoo.org>
  +samba-3.0.22-r2.ebuild:
  idmap_ad (active directory) backend on winbind use flag (bug #131443)

  27 Apr 2006; Christian Andreetta <satya@gentoo.org>
  -samba-3.0.20-r1.ebuild, -samba-3.0.20a.ebuild, -samba-3.0.21b.ebuild,
  -samba-3.0.21c.ebuild:
  old versions cleanup

*samba-3.0.22-r1 (27 Apr 2006)

  27 Apr 2006; Christian Andreetta <satya@gentoo.org>
  +samba-3.0.22-r1.ebuild:
  net-fs/samba msdfs support (bug #127839: Simon C. Ion)

  24 Apr 2006; Joshua Kinard <kumba@gentoo.org> samba-3.0.22.ebuild:
  Marked stable on mips.

  13 Apr 2006; Diego Pettenò <flameeyes@gentoo.org> samba-3.0.22.ebuild:
  Add dependency over virtual/libiconv as needed.

  13 Apr 2006; Diego Pettenò <flameeyes@gentoo.org> samba-3.0.22.ebuild:
  Add ~x86-fbsd keyword and make sys-apps/acl dep under kernel_linux conditional.

  09 Apr 2006; Markus Rothe <corsair@gentoo.org> samba-3.0.22.ebuild:
  Stable on ppc64

  08 Apr 2006; Mark Loeser <halcy0n@gentoo.org> samba-3.0.22.ebuild:
  Stable on x86; bug #127924

  05 Apr 2006; Markus Ullmann <jokey@gentoo.org> samba-3.0.22.ebuild:
  Stable on arm wrt bug #127924

  05 Apr 2006; Patrick McLean <chutzpah@gentoo.org> samba-3.0.22.ebuild:
  Stable on amd64 (bug #127924)

  04 Apr 2006; Aron Griffis <agriffis@gentoo.org> samba-3.0.22.ebuild:
  Mark 3.0.22 stable on ia64

  03 Apr 2006; Tobias Scherbaum <dertobi123@gentoo.org> samba-3.0.22.ebuild:
  ppc stable, bug #127924

  02 Apr 2006; Guy Martin <gmsoft@gentoo.org> samba-3.0.22.ebuild:
  Stable on hppa. Fix #127924 and unexpected relocs 0x42.

  01 Apr 2006; Markus Rothe <corsair@gentoo.org> samba-3.0.21c-r1.ebuild:
  Stable on ppc64; bug #127924

*samba-3.0.22 (31 Mar 2006)
*samba-3.0.21c-r1 (31 Mar 2006)
*samba-3.0.21b-r1 (31 Mar 2006)

  31 Mar 2006; Christian Andreetta <satya@gentoo.org>
  +files/035_all_samba-3.0.21-winbind_log.patch, files/README.gentoo,
  +samba-3.0.21b-r1.ebuild, +samba-3.0.21c-r1.ebuild, +samba-3.0.22.ebuild:
  security fix CVE-2006-1059: winbind log private info exposure. samba-3.0.22 is
  just 3.0.21c with the CVE patch

  14 Mar 2006; Patrick McLean <chutzpah@gentoo.org> samba-3.0.21b.ebuild:
  Stable on amd64 (bug #124632)

  10 Mar 2006; Michael Hanselmann <hansmi@gentoo.org> samba-3.0.21b.ebuild:
  Stable on ppc.

  10 Mar 2006; Joshua Jackson <tsunam@gentoo.org> samba-3.0.21b.ebuild:
  Stable on x86; bug #124632

  10 Mar 2006; Aron Griffis <agriffis@gentoo.org> samba-3.0.21b.ebuild:
  Mark 3.0.21b stable on ia64

  02 Mar 2006; Markus Rothe <corsair@gentoo.org> samba-3.0.21b.ebuild:
  Stable on ppc64; bug #124632

*samba-3.0.21c (24 Feb 2006)

  24 Feb 2006; Christian Andreetta <satya@gentoo.org> +samba-3.0.21c.ebuild:
  version bump (bug #123944)

*samba-3.0.21b (02 Feb 2006)

  02 Feb 2006; Christian Andreetta <satya@gentoo.org> +samba-3.0.21b.ebuild:
  3.0.21b version bump: includes samba-vscan-0.3.6b support. *Many* thanks to
  Chris Smith (bug #116284) for the patchset and the test

*samba-3.0.21a (02 Feb 2006)

  02 Feb 2006; Christian Andreetta <satya@gentoo.org> +samba-3.0.21a.ebuild:
  3.0.21a version bump: includes samba-vscan-0.3.6b support. *Many* thanks to
  Chris Smith (bug #116284) for the patchset and the test

  29 Jan 2006; Mike Frysinger <vapier@gentoo.org> samba-3.0.20a.ebuild,
  samba-3.0.20b.ebuild:
  Remove pointless fstab.h include to fix building on uClibc.

  08 Nov 2005; Christian Andreetta <satya@gentoo.org>
  samba-3.0.14a-r2.ebuild, samba-3.0.14a-r3.ebuild, samba-3.0.20-r1.ebuild,
  samba-3.0.20a.ebuild, samba-3.0.20b.ebuild:
  'examples' IUSE flag (bug #111508)

  29 Oct 2005; Diego Pettenò <flameeyes@gentoo.org> samba-3.0.20b.ebuild:
  Disable pie support for *BSD systems as it's not supported. Fixes bug #110278.

  19 Oct 2005; Christian Andreetta <satya@gentoo.org> samba-3.0.20b.ebuild:
  patchset PORTAGE_TMPDIR fix: version bump to force mirror deployment (bug
  #109297)

*samba-3.0.20b (14 Oct 2005)

  14 Oct 2005; Christian Andreetta <satya@gentoo.org> +samba-3.0.20b.ebuild:
  3.0.20b version bump (bug #109174), which fixes also swat: xinetd dependency
  (bug #81387), smbmount not suid (bug #105680), sql backend and mysql schema
  (bug #106457), ldapsam support (bug #108400) 

*samba-3.0.20a (06 Oct 2005)

  06 Oct 2005; Christian Andreetta <satya@gentoo.org> +samba-3.0.20a.ebuild:
  version bump. Fixes bugs #106846 (idmap_rid with winbind), #107606
  ('bad user' configuration parameter), #107614 (ldapsam support), #107939

  03 Oct 2005; MATSUU Takuto <matsuu@gentoo.org> samba-3.0.14a-r2.ebuild:
  Stable on sh.

  23 Sep 2005; Christian Andreetta <satya@gentoo.org>
  samba-3.0.14a-r2.ebuild, samba-3.0.14a-r3.ebuild, samba-3.0.20-r1.ebuild:
  samba-old mirrors also: bug #106676

  03 Sep 2005; Christian Andreetta <satya@gentoo.org> -samba-3.0.20.ebuild,
  samba-3.0.20-r1.ebuild:
  smbmount patch typo fix (bug #104505)

*samba-3.0.20-r1 (02 Sep 2005)

  02 Sep 2005; Christian Andreetta <satya@gentoo.org>
  +samba-3.0.20-r1.ebuild:
  added umount.cifs support (bug #104504)

*samba-3.0.20 (01 Sep 2005)

  01 Sep 2005; Christian Andreetta <satya@gentoo.org> +files/README.gentoo,
  +samba-3.0.20.ebuild:
  version bump (bug #103164). Non-linux compatibility (bug #101675)

  24 Aug 2005; Christian Andreetta <satya@gentoo.org>
  samba-3.0.14a-r2.ebuild, samba-3.0.14a-r3.ebuild:
  'cp -pPR' instead of 'cp -a' required by Darwin and BSD (bug #103487)

  13 Aug 2005; Christian Andreetta <satya@gentoo.org>
  +samba-3.0.14a-r3.ebuild:
  'hide pecial files' option control fix (thanks to Tim Redman, bug #101770)

  09 Aug 2005; Seemant Kulleen <seemant@gentoo.org> -files/lmhosts,
  -files/nsswitch.conf-winbind, -files/nsswitch.conf-wins, -files/samba.pam,
  -files/samba.schema, -files/samba-conf, -files/samba-init,
  -files/smb.conf.example-samba3.gz, -files/smbusers, -files/swat.xinetd,
  -files/system-auth-winbind, samba-3.0.14a-r2.ebuild:
  config files are now moved into the tarball as well. All the patches and
  configs are under version control under the gentoo/src/patchsets/samba
  module

  09 Aug 2005; Seemant Kulleen <seemant@gentoo.org>
  -files/vscan-0.3.5-libclamav.patch, -files/samba-2.2.8-statfs.patch,
  -files/samba-3.0.11-gcc4.patch, -files/samba-3.0.x-libdirsymlink.patch,
  -files/samba-3.0.x-python-setup.patch,
  -files/samba-3.0.x-smbumount-uid32.patch, -samba-3.0.10.ebuild:
  clean out old outdated ebuild and its patches

  09 Aug 2005; Aaron Walker <ka0ttic@gentoo.org> samba-3.0.14a-r2.ebuild:
  Stable on mips.

  08 Aug 2005; Bryan Østergaard <kloeri@gentoo.org>
  samba-3.0.14a-r2.ebuild:
  Stable on alpha + ia64.

  08 Aug 2005; Seemant Kulleen <seemant@gentoo.org> samba-3.0.14a-r2.ebuild:
  keywording thanks to vapier

  05 Aug 2005; Seemant Kulleen <seemant@gentoo.org> samba-3.0.10.ebuild,
  samba-3.0.14a-r2.ebuild:
  removing the addpredic line -- the fault was with sandbox package itself,
  which azarah has fixed earlier today.

  05 Aug 2005; Seemant Kulleen <seemant@gentoo.org>
  -samba-3.0.14a-r3.ebuild:
  removing -r3 -- the clamav thing was a bad idea.  See the aforementioned bug

*samba-3.0.14a-r3 (04 Aug 2005)

  04 Aug 2005; Seemant Kulleen <seemant@gentoo.org>
  +samba-3.0.14a-r3.ebuild:
  Add dependency on clamav with the 'clamav' and/or 'libclamav' USE flags. The
  libclamav flag will *go away* soon. Additionally, make sure that
  /use/lib/samba/{auth,idmap,rpc} stay around. Fixed bug #100766 with the
  clamav/libclamav thing

  04 Aug 2005; Seemant Kulleen <seemant@gentoo.org> -samba-3.0.11.ebuild,
  -samba-3.0.14a-r1.ebuild:
  since I moved 14a-r2 to stable x86 finally, we can now remove some of the
  cruft versions

  03 Aug 2005; Seemant Kulleen <seemant@gentoo.org> samba-3.0.14a-r2.ebuild:
  only install smb.conf (blank) if none is currently present in the live
  filesystem

  03 Aug 2005; Seemant Kulleen <seemant@gentoo.org> samba-3.0.14a-r2.ebuild:
  do not install a blank smb.conf.  Fixes bug #70686

  01 Aug 2005; Joseph Jezak <josejx@gentoo.org> samba-3.0.14a-r2.ebuild:
  Marked ppc stable for bug #95327.

  28 Jul 2005; Guy Martin <gmsoft@gentoo.org> samba-3.0.14a-r2.ebuild:
  Stable on hppa.

  27 Jul 2005; Herbie Hopkins <herbs@gentoo.org> samba-3.0.14a-r2.ebuild:
  Stable on amd64 wrt bug #95327.

  27 Jul 2005; Christian Andreetta <satya@gentoo.org> files/samba.pam:
  pam library location fix in /etc/pam.d/samba

  26 Jul 2005; Markus Rothe <corsair@gentoo.org> samba-3.0.14a-r2.ebuild:
  Stable on ppc64 (bug #95327)

  25 Jul 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  samba-3.0.14a-r2.ebuild:
  Stable on sparc wrt #95327

*samba-3.0.14a-r2 (23 Jul 2005)

  23 Jul 2005; Christian Andreetta <satya@gentoo.org>
  +samba-3.0.14a-r2.ebuild:
  patcheset updated: little fix in python tdb bindings (removal of deprecated
  functions wrappers) and in python testsuite (smbcontrol)

  20 Jul 2005; Christian Andreetta <satya@gentoo.org> samba-3.0.10.ebuild,
  samba-3.0.11.ebuild, samba-3.0.14a-r1.ebuild:
  Stale doc removal (if present): bug #99375 (thanks to carlo@gentoo.org)

  20 Jun 2005; Christian Andreetta <satya@gentoo.org> samba-3.0.10.ebuild,
  samba-3.0.11.ebuild, samba-3.0.14a-r1.ebuild:
  mit-krb5 sandbox perms (fake write) #bugs #95840 and #96453

  10 Jun 2005; Christian Andreetta <satya@gentoo.org> files/samba.pam:
  reverting pam to old behaviour until pam-0.78 becomes stable

  09 Jun 2005; Markus Rothe <corsair@gentoo.org> samba-3.0.14a-r1.ebuild:
  Stable on ppc64

  08 Jun 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  samba-3.0.14a-r1.ebuild:
  Stable on sparc wrt #95327

  19 May 2005; Christian Andreetta <satya@gentoo.org> files/samba.pam:
  pam 'include' directive, instead of Redhat's pam_stack for better standard
  adeherence (*BSD requirement: Diego Pettenò <flameeyes@gentoo.org>)

  29 Apr 2005; Seemant Kulleen <seemant@gentoo.org> samba-3.0.14a-r1.ebuild:
  the smbspool symlink is now fixed, thanks again to: Chris Smith
  <chris@realcomputerguy.com> in bug #90681

  28 Apr 2005; Christian Andreetta <satya@gentoo.org> -samba-3.0.13.ebuild:
  removing due to acl bug (https://bugzilla.samba.org/show_bug.cgi?id=2521)

  28 Apr 2005; Heinrich Wendel <lanius@gentoo.org> files/samba-init:
  revert 'use cupsd' again, it was the wrong way around

  28 Apr 2005; Christian Andreetta <satya@gentoo.org> -samba-3.0.13.ebuild:
  removing due to acl bug (https://bugzilla.samba.org/show_bug.cgi?id=2521)

  28 Apr 2005; Christian Andreetta <satya@gentoo.org> samba-3.0.10.ebuild:
  exaples permissions issue fixed (bug #90002)

*samba-3.0.11 (28 Apr 2005)

  28 Apr 2005; Christian Andreetta <satya@gentoo.org> +samba-3.0.11.ebuild:
  made 3.0.11 available again due to ACL bug in 3.0.1{2,3} versions (bug #89793)

  28 Apr 2005; Seemant Kulleen <seemant@gentoo.org> :
  Apparently, I missed the version bump request from: b52 <b52@entrap.de> in
  bug #89664

  28 Apr 2005; Seemant Kulleen <seemant@gentoo.org> samba-3.0.14a-r1.ebuild:
  fix for the use acl configure option, thanks to: Chris Smith
  <chris@realcomputerguy.com> in bug #90681

*samba-3.0.14a-r1 (27 Apr 2005)

  27 Apr 2005; Seemant Kulleen <seemant@gentoo.org>
  +samba-3.0.14a-r1.ebuild:
  replace with -r1, which has improved patches, and a ChangeLog for the
  patchset. No more /usr/bin/mount.cifs.old and stuff in this. A lot cleaner
  now

  27 Apr 2005; Christian Andreetta <satya@gentoo.org> files/samba-init:
  'use cupsd' removed due to bug #89956

  26 Apr 2005; Seemant Kulleen <seemant@gentoo.org> samba-3.0.14a.ebuild:
  typo

  26 Apr 2005; Seemant Kulleen <seemant@gentoo.org> -samba-3.0.11.ebuild,
  -samba-3.0.12.ebuild:
  remove some of the more intermediate versions

*samba-3.0.14a (26 Apr 2005)

  26 Apr 2005; Seemant Kulleen <seemant@gentoo.org>
  files/samba-2.2.8-statfs.patch, +samba-3.0.14a.ebuild:
  version bump to 3.0.14a, but this time, with an appropriate patch tarball,
  which gives a much cleaner ebuild. I'll be updating the remaining samba
  ebuilds to use this method as well over the next week or so

  13 Apr 2005; Seemant Kulleen <seemant@gentoo.org>
  -files/samba-3.0.6-samba.schema, -files/config-svc-smbd+nmbd,
  -files/nonroot-bind.diff, -files/samba-slapd-include.conf,
  -files/samba-svc, -files/smb.conf.example, -files/smbldap_conf.pm:
  even more cruft removal -- unused files in filesdir

  13 Apr 2005; Seemant Kulleen <seemant@gentoo.org>
  -files/samba-2.2.5-gp-reloc-fix.patch, -files/samba-2.2.6-libresolv.patch,
  -files/samba-2.2.8-statfs.patch, -files/samba-3.0.0-python-setup.patch,
  -files/samba-3.0.2a-smbprint.patch,
  -files/samba-3.0.6-homes-reuse_v2.patch,
  -files/samba-3.0.6-libdirsymlink.patch,
  -files/samba-3.0.6-winbind_getpwnam_v1.patch,
  -files/samba-3.0.8-lanman.patch,
  -files/samba-3.0.9-util.c-bitpmap.c-4120.patch, -files/samba-3.0.x.patch,
  -files/samba-pdb_ldap-exop.patch:
  more cruft removal -- this time unused patches

  13 Apr 2005; Seemant Kulleen <seemant@gentoo.org> -samba-3.0.6-r3.ebuild,
  -samba-3.0.6-r4.ebuild, -samba-3.0.7.ebuild, -samba-3.0.7-r1.ebuild,
  -samba-3.0.8.ebuild, -samba-3.0.8-r1.ebuild, -samba-3.0.9.ebuild,
  -samba-3.0.9-r1.ebuild:
  clean up cruft

  04 Apr 2005; Christian Andreetta <satya@gentoo.org> samba-3.0.12.ebuild:
  warning on acl and win 9x/Me as per bug #87583

*samba-3.0.13 (25 Mar 2005)

  25 Mar 2005; Christian Andreetta <satya@gentoo.org> +samba-3.0.13.ebuild:
  version bump

  24 Mar 2005; Christian Andreetta <satya@gentoo.org> files/samba-init:
  slapd init scripts precedence: bug #86464

*samba-3.0.12 (19 Mar 2005)

  19 Mar 2005; Christian Andreetta <satya@gentoo.org> +samba-3.0.12.ebuild:
  version bump. Split from smbldap-tools, which is now a separate ebuild

  14 Mar 2005; Mark Loeser <halcy0n@gentoo.org>
  +files/samba-3.0.11-gcc4.patch, samba-3.0.11.ebuild:
  GCC 4 compile fix.  bug #85172

  12 Mar 2005; Christian Andreetta <satya@gentoo.org> samba-3.0.11.ebuild:
  minor fixes: dirs creations via keepdir, examples permissions (bug #83563)

  03 Mar 2005; <mglauche@gentoo.org> samba-3.0.10.ebuild:
  smbldap-tools have new download location, see Bug 83203. Thanks to Ricardo
  Nuno <me@rnuno.com>

  06 Feb 2005; Jeremy Huddleston <eradicator@gentoo.org>
  samba-3.0.11.ebuild:
  Multilib fixes.

  06 Feb 2005; Joshua Kinard <kumba@gentoo.org> samba-3.0.10.ebuild:
  Marked stable on mips.

*samba-3.0.11 (05 Feb 2005)

  05 Feb 2005; Christian Andreetta <satya@gentoo.org> samba-3.0.10.ebuild,
  +samba-3.0.11.ebuild:
  version bump (bug #80807) and old conf file preservation fix (bug #80293)

  25 Jan 2005; Guy Martin <gmsoft@gentoo.org> samba-3.0.10.ebuild:
  Stable on hppa.

  22 Jan 2005; Bryan Østergaard <kloeri@gentoo.org> samba-3.0.10.ebuild:
  Stable on alpha.

  19 Jan 2005; Olivier Crête <tester@gentoo.org> samba-3.0.10.ebuild:
  Stable on x86 wrt bug #77734

  14 Jan 2005; Jan Brinkmann <luckyduck@gentoo.org> samba-3.0.10.ebuild:
  stable on amd64; bug #77734

  14 Jan 2005; Gustavo Zacarias <gustavoz@gentoo.org> samba-3.0.10.ebuild:
  Stable on sparc wrt #77734

  14 Jan 2005; Michael Hanselmann <hansmi@gentoo.org> samba-3.0.10.ebuild:
  Stable on ppc.

  14 Jan 2005; Markus Rothe <corsair@gentoo.org> samba-3.0.10.ebuild:
  Stable on ppc64; bug #77734

  09 Jan 2005; Sven Wegener <swegener@gentoo.org> samba-3.0.10.ebuild,
  samba-3.0.6-r3.ebuild, samba-3.0.6-r4.ebuild, samba-3.0.7-r1.ebuild,
  samba-3.0.7.ebuild, samba-3.0.8-r1.ebuild, samba-3.0.8.ebuild,
  samba-3.0.9-r1.ebuild, samba-3.0.9.ebuild:
  Added missing parentheses in SRC_URI/*DEPEND/LICENSE.

  29 Dec 2004; Hardave Riar <hardave@gentoo.org> samba-3.0.9-r1.ebuild:
  Stable on mips, bug #73943

  29 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> :
  Change encoding to UTF-8 for GLEP 31 compliance

  21 Dec 2004; Guy Martin <gmsoft@gentoo.org> samba-3.0.9-r1.ebuild:
  Stable on hppa (#73943).

*samba-3.0.10 (17 Dec 2004)

  17 Dec 2004; Christian Andreetta <satya@gentoo.org> +samba-3.0.10.ebuild:
  version bump

*samba-3.0.9-r1 (17 Dec 2004)

  17 Dec 2004; Christian Andreetta <satya@gentoo.org>
  +files/samba-3.0.9-util.c-bitpmap.c-4120.patch, +samba-3.0.9-r1.ebuild:
  bug #73943: CAN-2004-1154: Integer overflow for samba 2.x, 3.x<=3.0.9

  29 Nov 2004; Christian Andreetta <satya@gentoo.org> samba-3.0.9.ebuild:
  more masked archs added

  23 Nov 2004; Christian Andreetta <satya@gentoo.org> samba-3.0.8-r1.ebuild,
  samba-3.0.9.ebuild:
  old private config saved in pkg_setup (no more post_install: bug #72235)

  21 Nov 2004; Jason Wever <weeve@gentoo.org> samba-3.0.9.ebuild:
  Added ~sparc keyword as it was not carried over in the version bump.

*samba-3.0.9 (20 Nov 2004)

  20 Nov 2004; Christian Andreetta <satya@gentoo.org> samba-3.0.8-r1.ebuild,
  +samba-3.0.9.ebuild:
  version bump: smbldap-0.8.5-3 (bug #71728) and samba-3.0.9

  18 Nov 2004; Christian Andreetta <satya@gentoo.org> samba-3.0.8-r1.ebuild,
  samba-3.0.8.ebuild:
  bug #71334: automatically copy of old privatedir to new location

*samba-3.0.8-r1 (15 Nov 2004)

  15 Nov 2004; Christian Andreetta <satya@gentoo.org> +samba-3.0.8-r1.ebuild:
  bug #71223: win9x/Me lanman printing. bug #70628: 3.0.8 docs upstream
  permission error

  13 Nov 2004; Christian Andreetta <satya@gentoo.org>
  files/samba-3.0.x-python-setup.patch:
  samba-3.0.x-python-setup.patch update (bug #69034)

  10 Nov 2004; Olivier Crete <tester@gentoo.org> samba-3.0.8.ebuild:
  Stable on x86 see 70429

  10 Nov 2004; Joshua Kinard <kumba@gentoo.org> samba-3.0.8.ebuild:
  Marked stable on mips.

  10 Nov 2004; Bryan Østergaard <kloeri@gentoo.org> samba-3.0.8.ebuild:
  Stable on alpha, bug 70429.

  09 Nov 2004; Gustavo Zacarias <gustavoz@gentoo.org> samba-3.0.8.ebuild:
  Stable on sparc wrt #70429

  09 Nov 2004; Simon Stelling <blubb@gentoo.org> samba-3.0.8.ebuild:
  stable on amd64. bug #69985

  09 Nov 2004; Markus Rothe <corsair@gentoo.org> samba-3.0.8.ebuild:
  Stable on ppc64; bug #70429

  09 Nov 2004; <SeJo@gentoo.org> samba-3.0.8.ebuild:
  stable on ppc gsla: 70429

*samba-3.0.8 (09 Nov 2004)

  09 Nov 2004; Christian Andreetta <satya@gentoo.org> +samba-3.0.8.ebuild:
  security: (CAN-2004-0930) (bug #70429). New IUSE flags: quotas, winbind,
  libclamav (bugs #67857, #64602)

  07 Nov 2004; Joshua Kinard <kumba@gentoo.org> samba-3.0.7-r1.ebuild:
  Marked stable on mips.

  29 Oct 2004; <mglauche@gentoo.org> samba-3.0.6-r3.ebuild,
  samba-3.0.6-r4.ebuild, samba-3.0.7-r1.ebuild:
  fixed some small typos, thanks to bin-doph <bauer@dmsb.de>

  21 Oct 2004; Christian Andreetta <satya@gentoo.org> -files/recycle.conf,
  -files/smb.conf.example-samba3, files/smb.conf.example-samba3.gz,
  -files/winbind-init, samba-3.0.6-r3.ebuild, samba-3.0.6-r4.ebuild,
  samba-3.0.7-r1.ebuild, samba-3.0.7.ebuild:
  Some old files cleanup. recycle.conf removed (bug #68315). winbind {r,g}id ->
  idmap {r,g}id in example smb.conf (bug #68318).

  10 Oct 2004; Jason Wever <weeve@gentoo.org> samba-3.0.7-r1.ebuild:
  Stable on sparc.

  08 Oct 2004; Guy Martin <gmsoft@gentoo.org> samba-3.0.7-r1.ebuild:
  Marked stable on hppa.

  08 Oct 2004; Christian Andreetta <satya@gentoo.org> samba-3.0.7-r1.ebuild:
  stable on x86 and amd64. Note on sendfile(2) (bug #66656). ADS and krb5 on
  amd64 also (bug #64815)

  01 Oct 2004; Stephen P. Becker <geoman@gentoo.org> samba-3.0.7.ebuild:
  stable on mips to satisfy repoman deps - stop breaking our stable tree

  27 Sep 2004; Christian Andreetta <satya@gentoo.org> samba-3.0.5-r1.ebuild,
  samba-3.0.6-r3.ebuild, samba-3.0.6-r4.ebuild, samba-3.0.7-r1.ebuild,
  samba-3.0.7.ebuild:
  gentoo mirrors updated: removing nomirror directive (see 16 Sep 2004)

  24 Sep 2004; <SeJo@gentoo.org> samba-3.0.7-r1.ebuild:
  removed the O1 section for ppc and pcc64 as not neccesary anymore

*samba-3.0.7-r1 (17 Sep 2004)

  17 Sep 2004; Christian Andreetta <satya@gentoo.org> +samba-3.0.7-r1.ebuild:
  libs preload on suid binaries only (bug #63884)

  16 Sep 2004; Christian Andreetta <satya@gentoo.org> samba-3.0.5-r1.ebuild,
  samba-3.0.6-r3.ebuild, samba-3.0.6-r4.ebuild, samba-3.0.7.ebuild:
  smbldap-0.8.5 changed retaining uri and version number. Forcing fetch from
  distributor.

  14 Sep 2004; Christian Andreetta <satya@gentoo.org>
  +files/samba-3.0.x-libdirsymlink.patch, -samba-3.0.1-r1.ebuild,
  -samba-3.0.2a-r2.ebuild, -samba-3.0.4-r1.ebuild, -samba-3.0.6-r1.ebuild,
  -samba-3.0.6-r2.ebuild, -samba-3.0.6.ebuild, samba-3.0.7.ebuild:
  some old files cleanup

*samba-3.0.7 (13 Sep 2004)

  13 Sep 2004; Mike Frysinger <vapier@gentoo.org> +samba-3.0.7.ebuild:
  Version bump for security!

  10 Sep 2004; Christian Andreetta <satya@gentoo.org> samba-3.0.6-r4.ebuild:
  fixed amd64 patch typo (bug #63542)

  09 Sep 2004; Danny van Dyk <kugelfang@gentoo.org> samba-3.0.6-r4.ebuild:
  Marked ~amd64 now. GLSA has been taken back.

  09 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> samba-3.0.6-r4.ebuild:
  Stable on sparc

  09 Sep 2004; Bryan Østergaard <kloeri@gentoo.org> samba-3.0.6-r4.ebuild:
  Stable on alpha, bug 62476.

  08 Sep 2004; Danny van Dyk <kugelfang@gentoo.org> samba-3.0.6-r4.ebuild:
  Added -L/usr/$(get_libdir) to come around a ./configure bug on amd64. Marked
  stable on amd64 (see BUG #62476).

*samba-3.0.6-r4 (06 Sep 2004)

  06 Sep 2004; Christian Andreetta <satya@gentoo.org>
  +files/smb.conf.example-samba3.gz, +samba-3.0.6-r4.ebuild:
  selinux (#62907) and linker issue (#62674)

  01 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> samba-3.0.6-r3.ebuild:
  Stable on sparc wrt #62476

*samba-3.0.6-r3 (01 Sep 2004)

  01 Sep 2004; Christian Andreetta <satya@gentoo.org>
  +files/samba-3.0.6-homes-reuse_v2.patch, +files/samba-3.0.6-samba.schema,
  +files/samba-3.0.6-winbind_getpwnam_v1.patch, files/smb.conf.example-samba3,
  +samba-3.0.6-r3.ebuild:
  adding latest Jerry Carter patches (bug #62476)

*samba-3.0.6-r2 (26 Aug 2004)

  26 Aug 2004; <mglauche@gentoo.org> samba-3.0.6-r2.ebuild,
  files/samba.schema:
  Fix for bug #61055. (ldap schema in examples had wrong id)
  Thanks to Torsten Kurbad <torsten@tk-webart.de> for the updates schema file.

  21 Aug 2004; Jeremy Huddleston <eradicator@gentoo.org>
  samba-3.0.5-r1.ebuild, samba-3.0.6-r1.ebuild, samba-3.0.6.ebuild:
  Fix bad bash... needed a space before ]

*samba-3.0.6-r1 (21 Aug 2004)

  21 Aug 2004; <mglauche@gentoo.org> samba-3.0.6-r1.ebuild:
  Fix for bug #61046. Thanks to Jeff Kowalczyk <jtk@yahoo.com> for 
  pointing it out

*samba-3.0.6 (20 Aug 2004)

  20 Aug 2004; <mglauche@gentoo.org> samba-3.0.6.ebuild:
  new upstream version, fixes memory leaks, winbindd and some cifs problems

  30 Jul 2004; Christian Andreetta <satya@gentoo.org> samba-3.0.5-r1.ebuild:
  empty dirs disappearance fixed (bug #53976)

  28 Jul 2004; Joshua Kinard <kumba@gentoo.org> samba-3.0.5-r1.ebuild,
  samba-3.0.5.ebuild:
  Marked stable on mips.

  24 Jul 2004; Christian Andreetta <satya@gentoo.org> samba-3.0.5-r1.ebuild:
  cosmetical minor changes in ebuild internal checks

*samba-3.0.5-r1 (23 Jul 2004)

  23 Jul 2004; Christian Andreetta <satya@gentoo.org> metadata.xml,
  +files/samba-3.0.x-python-setup.patch,
  +files/samba-3.0.x-smbumount-uid32.patch, +files/samba-3.0.x.patch,
  +samba-3.0.5-r1.ebuild, samba-3.0.5.ebuild:
  Various contributors (see comments in ebuild): development traced in bug #58090

*samba-3.0.5 (22 Jul 2004)

  22 Jul 2004; Michael Glauche <mglauche@gentoo.org> samba-3.0.5.ebuild:
  Version bump, fixes 2 buffer overruns.

  14 Jul 2004; Bryan Østergaard <kloeri@gentoo.org> samba-3.0.4-r1.ebuild:
  Stable on alpha.

  01 Jul 2004; Tom Gall <tgall@gentoo.org> samba-3.0.4-r1.ebuild:
  stable on ppc64, bug #54804

  30 Jun 2004; Guy Martin <gmsoft@gentoo.org> samba-3.0.4-r1.ebuild:
  Marked stable on hppa.

  28 Jun 2004; Gustavo Zacarias <gustavoz@gentoo.org> samba-3.0.4-r1.ebuild:
  Stable on sparc

  26 Jun 2004; Marius Mauch <genone@gentoo.org> samba-3.0.4-r1.ebuild:
  QA fix: moving manpages to /usr/share/man, removing unneccessary gzip
  call.

  21 Jun 2004; Christian Andreetta <satya@gentoo.org> samba-3.0.4-r1.ebuild:
  stable on x86

  18 Jun 2004; Christian Andreetta <satya@gentoo.org> samba-3.0.2a-r2.ebuild,
  samba-3.0.4-r1.ebuild:
  closing bug #53236 (Jaco Kroon), #53082: smbget and mount.cifs

  15 Jun 2004; Christian Andreetta <satya@gentoo.org> samba-3.0.2a-r2.ebuild:
  minor initscript fix (as per bug #53962), oav support fix (#52009, Alessandro
  Pisani)

  14 Jun 2004; Aron Griffis <agriffis@gentoo.org> samba-3.0.4-r1.ebuild:
  Fix use invocation

  12 Jun 2004; Christian Andreetta <satya@gentoo.org> metadata.xml,
  files/samba-init:
  minor init script, as per bug #53676

*samba-3.0.4-r1 (11 Jun 2004)

  11 Jun 2004; Christian Andreetta <satya@gentoo.org> samba-3.0.4-r1.ebuild,
  files/samba-3.0.4-python-setup.patch, files/samba-3.0.4.patch,
  files/samba-init files/samba-conf:
  version bump. new initscripts. _very_ nice group work for bug #48871,
  which resolves 30151, 31208, 36465, 38190, 41796, 42557, 49463 also.

  12 May 2004; Michael McCabe <randy@gentoo.org> samba-3.0.2a-r2.ebuild:
  Added s390 keywords

  10 May 2004; Michael Sterrett <mr_bones_@gentoo.org> samba-2.2.8a.ebuild,
  samba-3.0.0-r1.ebuild, samba-3.0.1.ebuild, samba-3.0.2a-r1.ebuild:
  prune old ebuilds

  04 May 2004; Michael Sterrett <mr_bones_@gentoo.org> samba-3.0.2a.ebuild:
  clean extra ebuild

  29 Apr 2004; Lars Weiler <pylon@gentoo.org> samba-3.0.2a-r2.ebuild:
  stable on ppc

  27 Apr 2004; Joshua Kinard <kumba@gentoo.org> samba-3.0.2a-r2.ebuild:
  Marked stable on mips.

  27 Apr 2004; Travis Tilley <lv@gentoo.org> samba-3.0.2a-r2.ebuild:
  stable on amd64

  27 Apr 2004; Guy Martin <gmsoft@gentoo.org> samba-3.0.2a-r2.ebuild:
  Marked stable on hppa.

  27 Apr 2004; Brandon Hale <tseng@gentoo.org> samba-3.0.2a-r2.ebuild:
  Stable on x86.

  27 Apr 2004; Jason Wever <weeve@gentoo.org> samba-3.0.2a-r2.ebuild:
  Stable on sparc wrt bug #41800.

  27 Apr 2004; Bryan Østergaard <kloeri@gentoo.org> samba-3.0.2a-r2.ebuild:
  Keyworded alpha, see bug #41800.

*samba-3.0.2a-r2 (26 Apr 2004)

  26 Apr 2004; <solar@gentoo.org> samba-3.0.2a-r2.ebuild, samba-3.0.2a.ebuild:
  net-fs/samba 3.x + kernel 2.6.x local root vulnerability - bug #41800

  22 Apr 2004; Jason Wever <weeve@gentoo.org> samba-3.0.2a-r1.ebuild:
  Fixed ebuild to ensure we're in the right place before applying the smbprint
  patch. Only should have effected PPC and SPARC.

*samba-3.0.2a-r1 (21 Apr 2004)

  21 Apr 2004; Deedra Waters,,, <dmwaters@gentoo.org> samba-3.0.2a-r1.ebuild,
  files/samba-3.0.2a-smbprint.patch:
  committing samba-3.0.2a-r1.ebuildsamba-3.0.2a-r1.ebuild.
  This ebuild will fix a local root exploitsee #41800 for more info.
  Thanks to mglauche and condordes for theese fixes.

  15 Apr 2004; Joshua Kinard <kumba@gentoo.org> samba-3.0.2a.ebuild:
  mips needs the statfs patch too, it seems.

  23 Mar 2004; Jon Portnoy <avenj@gentoo.org> samba-3.0.0-r1.ebuild,
  samba-3.0.1-r1.ebuild, samba-3.0.1.ebuild, samba-3.0.2a.ebuild :
  Fix broken USE constructs with 'amd64? () :'

  23 Mar 2004; Joshua Kinard <kumba@gentoo.org> samba-2.2.8a.ebuild,
  samba-3.0.2a.ebuild:
  Marked stable on mips.

  14 Mar 2004; Tom Gall <tgall@gentoo.org> samba-3.0.0-r1.ebuild,
  samba-3.0.1-r1.ebuild, samba-3.0.1.ebuild, samba-3.0.2a.ebuild:
  remove ppc64 for now

*samba-3.0.2a (15 Feb 2004)

  15 Feb 2004; Donny Davies <woodchip@gentoo.org> samba-3.0.2a.ebuild,
  files/smb.conf.example-samba3:
  #30019; USE=kerberos isn't enough to build ADS, #36296; code page typos
  in sample config file, #36454; quotas.h build headaches, #36782; USE=xml
  DEPENDS missing.  Update to smbldap tools 0.8.4.

  17 Jan 2004; Bartosch Pixa <darkspecter@gentoo.org> :
  manifest fix

  16 Jan 2004; Bartosch Pixa <darkspecter@gentoo.org> samba-3.0.1-r1.ebuild:
  set ppc in keywords

  16 Jan 2004; Bartosch Pixa <darkspecter@gentoo.org> samba-3.0.1-r1.ebuild:
  ppc needs the statfs patch too

  07 Jan 2004; <agriffis@gentoo.org> samba-3.0.1-r1.ebuild:
  add ~alpha and ia64 to keywords

*samba-3.0.1-r1 (24 Dec 2003)

  24 Dec 2003; Donny Davies <woodchip@gentoo.org> samba-3.0.1-r1.ebuild:
  Include patch from Michal in bug #36200; hardwire
  #define LINUX_QUOTAS_1 to help with sys-kernel/linux-headers dependency.

  23 Dec 2003; Brad House <brad_mssw@gentoo.org> samba-3.0.1.ebuild:
  samba 3.0.1 won't compile with the latest ~arch'd linux-headers for any
  platform. It requires headers > 2.4.21 apparently. When it's fixed, it can be
  unmasked again, though there are supposedly problems with other apps.

*samba-3.0.1 (20 Dec 2003)

  20 Dec 2003; Donny Davies <woodchip@gentoo.org> samba-3.0.1.ebuild:
  Version bump and add mount.cifs as from Antonio in #30834.

  17 Dec 2003; Lars Weiler <pylon@gentoo.org> samba-3.0.0-r1.ebuild:
  Stable on PPC

  09 Dec 2003; <spider@gentoo.org> samba-3.0.0-r1.ebuild, samba-3.0.0.ebuild,
  files/smb.conf.example-samba3:
  Fixing chown issues.

  02 Nov 2003; Donny Davies <woodchip@gentoo.org> metadata.xml:
  Add metadata.xml.

  17 Oct 2003; Joshua Kinard <kumba@gentoo.org> samba-2.2.8a.ebuild,
  samba-3.0.0-r1.ebuild:
  Added ~mips to KEYWORDS; Works for me well on mips, but still need wider use

*samba-3.0.0-r1 (25 Sep 2003)

  25 Sep 2003; Donny Davies <woodchip@gentoo.org> samba-3.0.0-r1.ebuild,
  files/smb.conf.example-samba3, files/winbind-init:
  This is what should have been samba-3.0.0.ebuild; was out of my control,
  sigh.  Added three more VFS modules: cap, default_quota, readonly.  Added
  the IDEALX scripts for managing LDAP backend user accounts, also the
  mkntpwd utility.  Added the clamav vscan plugin.  Added a decent
  smb.conf.example file, which documents important Samba-3 options.
  Tidied up the winbind rc-script.  Some documentation fixes.
  Various miscellaneous ebuild housekeeping.

  26 Sep 2003; Martin Holzer <mholzer@gentoo.org> samba-3.0.0.ebuild:
  minor ebuild fixes.

*samba-3.0.0 (25 Sep 2003)

  25 Sep 2003; Patrick Kursawe <phosphan@gentoo.org> samba-3.0.0.ebuild:
  Version bump

*samba-3.0.0_rc4 (15 Sep 2003)

  15 Sep 2003; Donny Davies <woodchip@gentoo.org> samba-3.0.0_rc4.ebuild:
  Update to latest _rc.

*samba-3.0.0_rc3 (10 Sep 2003)

  10 Sep 2003; Donny Davies <woodchip@gentoo.org> samba-3.0.0_rc3.ebuild:
  Bump to latest _rc plus latest samba-vscan.  All USE options should
  build ok again.  This code is going gold soon, we just need to tidy
  up the sample smb.conf.

  04 Sep 2003; Jason Wever <weeve@gentoo.org> samba-3.0.0_rc2.ebuild:
  Added previous patch from samba-2.2.8a to samba-3.0.0_rc2 to finish fixing bug
  #27858.

  03 Sep 2003; Jason Wever <weeve@gentoo.org> samba-2.2.8a.ebuild,
  files/samba-2.2.8-statfs.patch:
  Added a patch to samba to fix bug #27858. Patch originated from IBM at
  http://oss.software.ibm.com/linux/patches/?patch_id=764.

*samba-3.0.0_rc2 (29 Aug 2003)

  29 Aug 2003; Donny Davies <woodchip@gentoo.org> samba-3.0.0_rc2.ebuild:
  This is the plain samba-3.0.0rc2 release with a patch for the Python
  extensions build.

*samba-3.0.0_rc1-r1 (21 Aug 2003)

  21 Aug 2003; Donny Davies <woodchip@gentoo.org> samba-3.0.0_rc1-r1.ebuild,
  files/samba-3.0.0-python-setup.patch:
  SAMBA_3_0 CVS snapshot from 20030821 plus the latest samba-vscan CVS
  snapshot 0.3.4beta2cvs.  USE flags python and oav appear to be
  casualties of recent changes; patches welcome.  The "Using Samba"
  book moved to it's own CVS module, it's not in here anymore.

*samba-3.0.0_beta3-r1 (20 Jul 2003)

  20 Jul 2003; Donny Davies <woodchip@gentoo.org> samba-3.0.0_beta1-r1.ebuild,
  samba-3.0.0_beta3-r1.ebuild:
  SAMBA_3_0 CVS snapshot from 20030720; basically the beta3 release with
  added bug fixes.  Latest samba-vscan CVS snapshot HEAD-07-09-2003 is
  included.  All USE flags should build ok.  See WHATSNEW.txt again for
  important changes to idmap and winbindd.

*samba-3.0.0_beta2-r1 (06 Jul 2003)

  06 Jul 2003; Donny Davies <woodchip@gentoo.org> samba-3.0.0_beta2-r1.ebuild:
  SAMBA_3_0 CVS snapshot from 20030706; an slightly updated beta2 release.
  The latest samba-vscan CVS snapshot in included, I had trouble accessing
  their CVS.  All USE flags build OK here.  See WHATSNEW.txt for
  information on IdMap LDAP support and Trust Relationships.

*samba-3.0.0_beta1-r1 (17 Jun 2003)

  17 Jun 2003; Donny Davies <woodchip@gentoo.org> samba-3.0.0_beta1-r1.ebuild:
  This is another SAMBA_3_0 CVS snapshot as pulled on 20030616, so it's newer
  than the actual beta1 release.  USE flags `oav' and `python' are broken
  right now, and nisplussam still doesnt build yet (commented out).

*samba-3.0_alpha24-r1 (28 May 2003)

  28 May 2003; Donny Davies <woodchip@gentoo.org> Manifest,
  samba-3.0_alpha24-r1.ebuild, files/samba-pdb_ldap-exop.patch:
  This is basically SAMBA_3_0 as pulled from CVS on 20030528 with a small
  patch to fix `ldap passwd sync' against an OpenLDAP-2.1.x server.
  `oav' USE flag DOESNT work right now, neither does the nisplussam passdb.

*samba-3.0_alpha23 (11 Apr 2003)

  11 Apr 2003; Donny Davies <woodchip@gentoo.org> samba-3.0_alpha23.ebuild:
  Chase latest; nuke `torture' target; seems broken at the moment :\

*samba-2.2.8a (07 Apr 2003)

  07 Apr 2003; Daniel Ahlberg <aliz@gentoo.org> samba-2.2.8a.ebuild :
  Security update.

  28 Mar 2003; Donny Davies <woodchip@gentoo.org> :
  Clean out all old stuff.

*samba-2.2.8 (15 Mar 2003)

  07 Apr 2003; Guy Martin <gmsoft@gentoo.org> samba-2.2.8.ebuild :
  Added hppa to KEYWORDS.

  15 Mar 2003; Daniel Ahlberg <aliz@gentoo.org> :
  Security update.

*samba-3.0_alpha22 (11 Mar 2003)

  11 Mar 2003; Donny Davies <woodchip@gentoo.org> : Version bump.  Add
  dynrpc modules.  Fix readline configure.  Python stuff still has issues.

*samba-2.2.8_pre2 (01 Mar 2003)

  01 Mar 2003; Donny Davies <woodchip@gentoo.org> : About another 30 bugs
  fixed in this _pre update.  Quell smbwrapper/smbsh.

*samba-3.0_alpha21 (22 Feb 2003)

  22 Feb 2003; Donny Davies <woodchip@gentoo.org> : Initial import.
  Added to package.mask for now.

*samba-2.2.8_pre1 (22 Feb 2003)

  22 Feb 2003; Donny Davies <woodchip@gentoo.org> : This _pre update fixes
  about 30 bugs; see WHATSNEW.txt.  Updated to samba-vscan-0.3.2.  Install
  libsmbclient.h #15357.  Added --with-winbind-auth-challenge #15748.  Add
  --with-winbind-ldap-hack if USE=ldap.  Re-org some stuff.

  27 Jan 2003; Donny Davies <woodchip@gentoo.org> : #14644 adds reload().

*samba-2.2.7a (16 Dec 2002)

  16 Dec 2002; Donny Davies <woodchip@gentoo.org> : Update to latest,
  fixes large file copying bug, among others.  Changed the 'vscan'
  USE flag to 'oav'.  Added description for that to use.desc.

*samba-2.2.7 (20 Nov 2002)

  15 Dec 2002; Bjoern Brauel <bjb@gentoo.org> samba-2.2.7.ebuild :
  Add alpha to KEYWORDS

  07 Dec 2002; Jack Morgan <jmorgan@gentoo.org> samba-2.2.5-r1.ebuild, 
  samba-2.2.6-r2.ebuild, samba-2.2.7.ebuild :
  Changed sparc64 to sparc keyword samba-2.2.5-r1.ebuild
  Changed ~sparc64 to ~sparc keyword samba-2.2.6-r2.ebuild, samba-2.2.7.ebuild

  20 Nov 2002; Donny Davies <woodchip@gentoo.org> : Chase latest.  This release
  fixes a security problem.  --with-lockdir is changed to /var/cache/samba;
  thanks Achim for #10819.  Marked as latest stable.  Fix problem with USE=ldap
  and export VISUAL.

*samba-2.2.6-r2 (07 Nov 2002)

  07 Nov 2002; Donny Davies <woodchip@gentoo.org> : Added patch to fix fd leak.
  Made pam support optional.  Added --with-sendfile-support.  Fixup digest (vscan).
  Fix for #9249.

*samba-2.2.6-r1 (26 Oct 2002)

  26 Oct 2002; Jon Nall <nall@gentoo.org> : samba expects ldap to depend on sasl
  in order for libresolv.so to get linked in, but ldap need not be compiled with
  sasl support. in this case samba needs to link in libresolv.so

*samba-2.2.6 (24 Oct 2002)

  26 Oct 2002; Donny Davies <woodchip@gentoo.org> : Fix openldap dependency :)

  25 Oct 2002; Donny Davies <woodchip@gentoo.org> : Fix openldap dependency from #9249.

  24 Oct 2002; Donny Davies <woodchip@gentoo.org> : Chase latest release.  New local USE
  vscan flag for building the openantivirus project plugins.  Added several more ldap files
  and scripts.  Now builds the bundled VFS plugins.  Added more docs and findsmb script.
  Added lazy smbumount and VFS plugins reloc patches.

*samba-2.2.5-r1 (Aug 27 2002)

  20 Oct 2002; Michael Cohen <mjc@gentoo.org> samba-2.2.5-r1.ebuild:
  added portldap use flag for my nifty ldap stuff coming up.  no need 
  to bump version.

  27 Aug 2002; Donny Davies <woodchip@gentoo.org> samba-2.2.5-r1.ebuid,
  smb.conf.example :  Fix #6936; thanks shadow@ines.ro.  Fix #7133, thanks
  klebermass@limtec.de.

*samba-2.2.5 (23 Jun 2002)

  25 Aug 2002; Jack Morgan <jmorgan@gentoo.org> : Added sparc64 keyword

  14 Aug 2002; Pieter Van den Abeele <pvdabeel@gentoo.org> : Added ppc keyword

  23 Jun 2002; Donny Davies <woodchip@gentoo.org> :
  Update to latest; samba-2.2.5.  Please see the samba WHATSNEW.txt file
  in /usr/doc/samba for the detailed fixes.  

*samba-2.2.4-r1 (13 May 2002)

  13 May 2002; Donny Davies <woodchip@gentoo.org> :  Install smbmnt and smbumount
  suid root, close #2635. Pass --bindir to ./configure, close #2515. Add a few
  more codepages.

*samba-2.2.4 (6 May 2002)
  
  6 May 2002; Donny Davies <woodchip@gentoo.org> samba-2.2.4.ebuild,
  smb.conf.example, system-auth-winbind, samba-svc, winbind-init, lmhosts,
  samba-init, nsswitch.conf-winbind, nsswitch.conf-wins :
  Added a much better smb.conf.example.  Added smbwrapper (smbsh).  Added
  libnss_winbind (see /etc/nsswitch.conf-winbind).  Added libnss_wins
  (see /etc/nsswitch.conf-wins).  Added libsmbclient.  Added USE ssl and
  ldap support.  Added better winbind support including an example
  nsswitch.conf, a pam.d/ service snippet and a winbind initscript.  Also
  see smb.conf.example.  Mucho cleaned up the docs (no more 2 copies of
  the book!).  Removed the recycle bin patches.  Removed the afs patch.
  Added a few convenience directories for netlogon, profiles, samba-hosted
  printer drivers and the samba spool directory.

*samba-2.2.3a-r3 (3 May 2002)
  
  3 May 2002; Donny Davies <woodchip@gentoo.org> : Added LICENSE, SLOT, $Headers.

*samba-2.2.3a-r2 (27 March 2002)

  27 March 2002; Donny Davies <woodchip@gentoo.org> samba-2.2.3a-r2.ebuild,
  swat.xinetd, smbusers, samba.rc6, samba-2.2.3a-srv_spoolss_nt.patch :
  /etc/smb has moved to the better-suited /etc/samba directory.  Simply move
  your /etc/smb/* to /etc/samba.  Then delete the /etc/samba/codepages
  directory.  These files are now in /var/lib/samba/codepages.  /var/run/smb
  has moved to /var/run/samba.  Simply move your /var/run/smb/* to
  /var/run/samba.  If you have the string "/etc/smb" in your smb.conf file,
  then please change all occurances of that to "/etc/samba".  Added a
  sample smbusers file.  Added an xinetd snippet for the swat service.
  Added a patch to fix changing printer properties from Windows NT.

  10 March 2002; Donny Davies <woodchip@gentoo.org> files/samba.rc6 :
  Tweak initscript to kill the daemons via pidfile.

*samba-2.2.3a-r1 (5 March 2002)

  5 March 2002; M.Schlemmer <azarah@gentoo.org> samba-2.2.3a-r1.ebuild,
  samba-2.2.3a-loadparm.c.patch, samba-2.2.3a-proto.c.patch,
  samba-2.2.3a-reply.h.patch :
  Move the patches to ${FILESDIR}, as they have the same names as those for
  2.2.2, but is not the same, thus ibiblio do not cache the new ones, and
  we get digest errors.

*samba-2.2.3a (4 March 2002)

  4 March 2002; Donny Davies <woodchip@gentoo.org> samba-2.2.3a.ebuild, 
  files/samba-2.2.3a-cli_spoolss_notify.diff, files/samba-2.2.3a-pam_smbpass.diff,
  files/samba-2.2.2-XFS-quota.diff :
  Added acl USE flag support, patch to fix pam_smbpass compilation, patch for Win2k
  printing and removed XFS quota patch -- its merged upstream.  Updated to latest
  network recycle bin patches.  If you get md5 checksum errors with the recycle bin
  patches then:  delete the 3 patches from your local distfiles, and comment out
  your GENTOO_MIRRORS from make.conf/make.globals.  This will ensure that the
  proper patches are fetched from the author's site.

*samba-2.2.2-r9 (2 March 2002)

  2 March 2002; M.Schlemmer <azarah@gentoo.org> samba-2.2.2-r9.ebuild :
  Added creation of symlink for supporting cups printing.

*samba-2.2.2-r8 (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.