summaryrefslogtreecommitdiff
blob: a197eabc71cddaa727d9e3770f767bb09e8ad1df (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
# ChangeLog for net-ftp/proftpd
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/proftpd/ChangeLog,v 1.233 2010/08/20 04:48:55 phajdan.jr Exp $

  20 Aug 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  proftpd-1.3.3a.ebuild:
  x86 stable wrt bug #333507

*proftpd-1.3.3a (29 Jul 2010)

  29 Jul 2010; Bernard Cafarelli <voyageur@gentoo.org>
  +proftpd-1.3.3a.ebuild, files/proftpd.initd:
  Version bump and fix quiet mode in init script, thanks Lommerzheim
  <bernd@lommerzheim.com>, bugs #314055 and #330253

*proftpd-1.3.3-r1 (23 Jun 2010)

  23 Jun 2010; Bernard Cafarelli <voyageur@gentoo.org>
  -proftpd-1.3.2b.ebuild, -proftpd-1.3.2c.ebuild, +proftpd-1.3.3-r1.ebuild:
  Support newer mit-krb5, thanks Eray Aslan <eray.aslan@caf.com.tr> in bug
  #324903 for the patch

  17 Jun 2010; Patrick Lauer <patrick@gentoo.org> proftpd-1.3.2b.ebuild,
  proftpd-1.3.2c.ebuild, proftpd-1.3.2d.ebuild, proftpd-1.3.2e.ebuild,
  proftpd-1.3.3.ebuild:
  Migrating away from deprecated postgres virtuals

  02 Jun 2010; Torsten Veller <tove@gentoo.org> metadata.xml:
  Remove chtekk from metadata.xml (#103720)

  13 Mar 2010; Raúl Porcel <armin76@gentoo.org> proftpd-1.3.2d.ebuild:
  alpha/sparc stable wrt #305343

  12 Mar 2010; Jeroen Roovers <jer@gentoo.org> proftpd-1.3.2d.ebuild:
  Stable for HPPA (bug #305343).

  09 Mar 2010; Joseph Jezak <josejx@gentoo.org> proftpd-1.3.2d.ebuild:
  Marked ppc stable for bug #305343.

  08 Mar 2010; Brent Baude <ranger@gentoo.org> proftpd-1.3.2d.ebuild:
  Marking proftpd-1.3.2d ppc64 for bug 305343

*proftpd-1.3.3 (08 Mar 2010)
*proftpd-1.3.2e (08 Mar 2010)

  08 Mar 2010; Bernard Cafarelli <voyageur@gentoo.org>
  +proftpd-1.3.2e.ebuild, -proftpd-1.3.3_rc3-r1.ebuild,
  -proftpd-1.3.3_rc4.ebuild, +proftpd-1.3.3.ebuild:
  Maintenance release for 1.3.2, and final 1.3.3 release, bug #307075. Also
  remove 1.3.3 RCs

  07 Mar 2010; Markus Meier <maekke@gentoo.org> proftpd-1.3.2d.ebuild:
  amd64 stable, bug #305343

  05 Mar 2010; Christian Faulhammer <fauli@gentoo.org>
  proftpd-1.3.2d.ebuild:
  stable x86, security bug 305343

*proftpd-1.3.3_rc4 (17 Feb 2010)
*proftpd-1.3.2d (17 Feb 2010)

  17 Feb 2010; Bernard Cafarelli <voyageur@gentoo.org>
  +proftpd-1.3.2d.ebuild, +proftpd-1.3.3_rc4.ebuild, +files/proftpd.initd:
  Version bumps, by Bernd Lommerzheim <bernd@lommerzheim.com> in bug
  #305343. Also fixes bugs #301264 and #301266

*proftpd-1.3.3_rc3-r1 (18 Dec 2009)

  18 Dec 2009; Bernard Cafarelli <voyageur@gentoo.org>
  -proftpd-1.3.3_rc3.ebuild, +proftpd-1.3.3_rc3-r1.ebuild,
  +files/proftpd-1.3.3_rc3-tls-shmcache-bug3359.patch:
  Fix segfault on configuration checking, bug #297310

*proftpd-1.3.3_rc3 (15 Dec 2009)
*proftpd-1.3.2c (15 Dec 2009)

  15 Dec 2009; Bernard Cafarelli <voyageur@gentoo.org>
  +proftpd-1.3.2c.ebuild, -proftpd-1.3.3_rc2.ebuild,
  +proftpd-1.3.3_rc3.ebuild:
  Version bumps, fix bug #295545

  06 Nov 2009; Bernard Cafarelli <voyageur@gentoo.org>
  -proftpd-1.3.2-r2.ebuild, -files/proftpd-1.3.2-upstream-bug-3183.patch:
  Remove last security vulnerable version, security bug #290664

  04 Nov 2009; Markus Meier <maekke@gentoo.org> proftpd-1.3.2b.ebuild:
  amd64 stable, bug #290664

  01 Nov 2009; nixnut <nixnut@gentoo.org> proftpd-1.3.2b.ebuild:
  ppc stable #290664

  31 Oct 2009; Brent Baude <ranger@gentoo.org> proftpd-1.3.2b.ebuild:
  Marking proftpd-1.3.2b ppc64 for bug 290664

  30 Oct 2009; Jeroen Roovers <jer@gentoo.org> proftpd-1.3.2b.ebuild:
  Stable for HPPA (bug #290664).

  30 Oct 2009; Raúl Porcel <armin76@gentoo.org> proftpd-1.3.2b.ebuild:
  alpha/sparc stable wrt #290664

  28 Oct 2009; Christian Faulhammer <fauli@gentoo.org>
  proftpd-1.3.2b.ebuild:
  stable x86, security bug 290664

  27 Oct 2009; Bernard Cafarelli <voyageur@gentoo.org>
  -proftpd-1.3.2a.ebuild, -proftpd-1.3.3_rc1-r1.ebuild:
  Remove some security vulnerable versions, security bug #290664

*proftpd-1.3.3_rc2 (26 Oct 2009)
*proftpd-1.3.2b (26 Oct 2009)

  26 Oct 2009; Bernard Cafarelli <voyageur@gentoo.org>
  +proftpd-1.3.2b.ebuild, +proftpd-1.3.3_rc2.ebuild:
  Version bumps, by Bernd Lommerzheim <bernd@lommerzheim.com> in bug #290262

  24 Sep 2009; Bernard Cafarelli <voyageur@gentoo.org>
  proftpd-1.3.3_rc1-r1.ebuild:
  Fix compilation with kerberos and heimdal, bug #284853

  20 Sep 2009; Bernard Cafarelli <voyageur@gentoo.org>
  proftpd-1.3.3_rc1-r1.ebuild:
  Fix typo on README.mod_auth_gss, only use in mod_gss mit-krb5 if <1.7 (as
  in DEPEND)

*proftpd-1.3.3_rc1-r1 (16 Sep 2009)

  16 Sep 2009; Bernard Cafarelli <voyageur@gentoo.org>
  -proftpd-1.3.3_rc1.ebuild, +proftpd-1.3.3_rc1-r1.ebuild,
  files/proftpd.conf.sample:
  Check if old-style pid-file is present, remove ipv6 setting in default
  configuration, and other cleanups, by Bernd Lommerzheim

*proftpd-1.3.3_rc1 (08 Sep 2009)

  08 Sep 2009; Bernard Cafarelli <voyageur@gentoo.org>
  +proftpd-1.3.3_rc1.ebuild, +files/proftpd.conf.sample, +files/proftpd.rc7,
  metadata.xml:
  Bump to 1.3.3_rc1, ebuild rewritten by Bernd Lommerzheim
  <bernd@lommerzheim.com> in bug #276371, with lots of enhancements!

*proftpd-1.3.2a (07 Sep 2009)

  07 Sep 2009; Bernard Cafarelli <voyageur@gentoo.org>
  -proftpd-1.3.1_rc2-r3.ebuild, -proftpd-1.3.1.ebuild,
  -proftpd-1.3.1-r1.ebuild, -files/proftpd-1.3.1-CVE-2008-4242.patch,
  -files/proftpd-1.3.1-bug208840.patch,
  -files/proftpd-1.3.1-bug218850.patch,
  -files/proftpd-1.3.1_rc2-bug164612.patch,
  -files/proftpd-1.3.1_rc2-bug167003.patch,
  -files/proftpd-1.3.1_rc2-bug175082.patch,
  -files/proftpd-1.3.1_rc2-bug178866.patch,
  -files/proftpd-1.3.1_rc2-bug181712.patch, -proftpd-1.3.2_rc2.ebuild,
  -proftpd-1.3.2_rc2-r1.ebuild, -proftpd-1.3.2_rc2-r2.ebuild,
  -proftpd-1.3.2.ebuild, -proftpd-1.3.2-r1.ebuild,
  -files/proftpd-1.3.2_rc2-CVE-2008-4242.patch, +proftpd-1.3.2a.ebuild:
  Remove old versions, bump to 1.3.2a (with some modules), thanks to Bernd
  Lommerzheim <bernd@lommerzheim.com> in bug #276371. Also fix bug #280150,
  updating mit-krb5 dependency

  02 May 2009; Jeroen Roovers <jer@gentoo.org> proftpd-1.3.2-r2.ebuild:
  Stable for HPPA (bug #264370).

  12 Apr 2009; Friedrich Oslage <bluebird@gentoo.org>
  proftpd-1.3.2-r2.ebuild:
  Stable on sparc, bug #264370

  07 Apr 2009; Tobias Klausmann <klausman@gentoo.org>
  proftpd-1.3.2-r2.ebuild:
  Stable on alpha, bug #264370

  05 Apr 2009; Markus Meier <maekke@gentoo.org> proftpd-1.3.2-r2.ebuild:
  amd64/x86 stable, bug #264370

  04 Apr 2009; Brent Baude <ranger@gentoo.org> proftpd-1.3.2-r2.ebuild:
  stable ppc, bug 264370

  04 Apr 2009; Brent Baude <ranger@gentoo.org> proftpd-1.3.2-r2.ebuild:
  stable ppc64, bug 264370

  25 Feb 2009; Markus Meier <maekke@gentoo.org> proftpd-1.3.2.ebuild:
  amd64 stable, bug #258450

  25 Feb 2009; Tobias Scherbaum <dertobi123@gentoo.org>
  proftpd-1.3.2-r1.ebuild:
  ppc stable, bug #258450

  24 Feb 2009; Bernard Cafarelli <voyageur@gentoo.org>
  +files/proftpd-1.3.2-system-libltdl.patch, proftpd-1.3.2-r2.ebuild:
  Add kerberos support, thanks to Martin Mokrejš in bug #134922. Add patch
  to use system libltdl for the dynamic loader (needed for this new module)

*proftpd-1.3.2-r2 (23 Feb 2009)

  23 Feb 2009; Bernard Cafarelli <voyageur@gentoo.org>
  +proftpd-1.3.2-r2.ebuild:
  Enable mod_ctrls_admin module, bug #226047

  20 Feb 2009; Raúl Porcel <armin76@gentoo.org> proftpd-1.3.2.ebuild:
  sparc/x86 stable wrt #258450

  20 Feb 2009; Tobias Klausmann <klausman@gentoo.org>
  proftpd-1.3.2-r1.ebuild:
  Stable on alpha, bug #258450

  20 Feb 2009; Jeroen Roovers <jer@gentoo.org> proftpd-1.3.2.ebuild:
  Stable for HPPA (bug #258450).

  19 Feb 2009; Bernard Cafarelli <voyageur@gentoo.org>
  +files/proftpd-1.3.2-mysql-include.patch, proftpd-1.3.2.ebuild,
  proftpd-1.3.2-r1.ebuild:
  Fix mysql include when both SQL backends are enabled, thanks to jer for
  the patch, bug #259610

  18 Feb 2009; Brent Baude <ranger@gentoo.org> proftpd-1.3.2-r1.ebuild:
  Marking proftpd-1.3.2-r1 ppc64 for bug 258450

  18 Feb 2009; Bernard Cafarelli <voyageur@gentoo.org>
  proftpd-1.3.2-r1.ebuild:
  Fix typo in SRC_URI, spotted by Bernd Lommerzheim

*proftpd-1.3.2-r1 (17 Feb 2009)

  17 Feb 2009; Bernard Cafarelli <voyageur@gentoo.org>
  +files/proftpd-1.3.2-parallel-build.patch, files/proftpd.conf,
  files/proftpd.rc6, +proftpd-1.3.2-r1.ebuild:
  Remove append-ldflag, bug #226907, thanks Dustin Polke. Allows building
  ProFTPD with both mysql and postgresql (fixes bug #234003), fix some
  parallel building issues, thanks to Bernd Lommerzheim in bug #258838
  (fixes bug #178643). Update proftpd.conf sample file (DisplayFirstChdir
  was already deprecated in 1.3.1), fixes bug #235591. Display configuration
  errors/result on check, bug #254174

*proftpd-1.3.2 (17 Feb 2009)

  17 Feb 2009; Bernard Cafarelli <voyageur@gentoo.org>
  +files/proftpd-1.3.2-upstream-bug-3183.patch, +proftpd-1.3.2.ebuild:
  Version bump for security bug #258450, minimal changes from 1.3.2_rc2
  ebuild for security stabling

  15 Nov 2008; Markus Meier <maekke@gentoo.org> proftpd-1.3.2_rc2-r2.ebuild:
  amd64/x86 stable, bug #238762

  14 Nov 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  proftpd-1.3.2_rc2-r2.ebuild:
  ppc stable, bug #238762

  14 Nov 2008; Raúl Porcel <armin76@gentoo.org>
  proftpd-1.3.2_rc2-r2.ebuild:
  alpha/sparc/x86 stable wrt #238762

  13 Nov 2008; Jeroen Roovers <jer@gentoo.org> proftpd-1.3.2_rc2-r2.ebuild:
  Stable for HPPA (bug #238762).

  12 Nov 2008; Markus Rothe <corsair@gentoo.org>
  proftpd-1.3.2_rc2-r2.ebuild:
  Stable on ppc64; bug #238762

*proftpd-1.3.2_rc2-r2 (09 Nov 2008)
*proftpd-1.3.1-r1 (09 Nov 2008)

  09 Nov 2008; Christian Hoffmann <hoffie@gentoo.org>
  +files/proftpd-1.3.1-CVE-2008-4242.patch, +proftpd-1.3.1-r1.ebuild,
  +proftpd-1.3.2_rc2-r2.ebuild:
  adding proftpd-1.3.1-r1 to get a regression-free version of proftpd which
  ships a patch for security bug 238762, adding proftpd-1.3.2_rc2-r2 to fix
  a mod_shaper-related compile failure as pointed out by Joker in bug
  238762; also fixing bug 221275

  08 Nov 2008; Tobias Klausmann <klausman@gentoo.org>
  proftpd-1.3.2_rc2.ebuild:
  Stable on alpha, bug #238762

  08 Nov 2008; Markus Meier <maekke@gentoo.org> proftpd-1.3.2_rc2.ebuild:
  amd64/x86 stable, bug #238762

*proftpd-1.3.2_rc2-r1 (07 Nov 2008)

  07 Nov 2008; Christian Hoffmann <hoffie@gentoo.org>
  +proftpd-1.3.2_rc2-r1.ebuild:
  adding 1.3.2_rc2-r1; this is mainly a copy of 1.3.1, but including the
  security fix for bug 238762 (intention: don't cause a feature regression
  for ~arch users)

  07 Nov 2008; Christian Hoffmann <hoffie@gentoo.org>
  proftpd-1.3.2_rc2.ebuild:
  restoring ~ia64 keyword which I dropped by accident, thanks to Jeroen in
  bug 238762

  07 Nov 2008; Brent Baude <ranger@gentoo.org> proftpd-1.3.2_rc2.ebuild:
  Marking proftpd-1.3.2_rc2 ppc64 and ppc for bug 245230

  07 Nov 2008; Jeroen Roovers <jer@gentoo.org> proftpd-1.3.2_rc2.ebuild:
  Stable for HPPA (bug #238762).

*proftpd-1.3.2_rc2 (06 Nov 2008)

  06 Nov 2008; Christian Hoffmann <hoffie@gentoo.org>
  +files/proftpd-1.3.2_rc2-CVE-2008-4242.patch, +proftpd-1.3.2_rc2.ebuild:
  version bump and patch for security bug 238762 (CVE-2008-4242); this bump
  has been done due to lack of maintainer activity, as noted in the security
  handling policy; compile-tested on ~amd64 and seems to work von hardened
  x86; please don't bug me with anything except for regressions I caused;
  also fixes bug 238288 and bug 238691

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

  16 Jul 2008; Luca Longinotti <chtekk@gentoo.org>
  proftpd-1.3.1_rc2-r3.ebuild:
  Fix pgsql deps.

  21 May 2008; Tiziano Müller <dev-zero@gentoo.org>
  proftpd-1.3.1_rc2-r3.ebuild:
  Changed dependency for postgresql from dev-db/postgresql to
  virtual/postgresql-server

  24 Apr 2008; Luca Longinotti <chtekk@gentoo.org>
  +files/proftpd-1.3.1-bug218850.patch, proftpd-1.3.1.ebuild:
  Fix bug #218850.

  21 Apr 2008; Luca Longinotti <chtekk@gentoo.org> metadata.xml:
  Metadata update.

  17 Apr 2008; Luca Longinotti <chtekk@gentoo.org>
  +files/proftpd-1.3.1-bug208840.patch, proftpd-1.3.1.ebuild:
  Fix bug #208840. Remove mod_gzipfs, too old, breaks compile.

*proftpd-1.3.1 (17 Apr 2008)

  17 Apr 2008; Luca Longinotti <chtekk@gentoo.org>
  -files/proftpd-1.3.1_rc3-mod_mysql.patch, files/proftpd.rc6,
  -proftpd-1.3.1_rc3.ebuild, +proftpd-1.3.1.ebuild:
  Version bump to ProFTPd 1.3.1. Added reload command to init-script as well
  as improved configuration checking, fixes bug #97896. Added new modules:
  mod_ban, mod_case, mod_deflate, mod_gzipfs, fixes bug #146888 and bug
  #177991. Added support for LDAP TLS, fixes bug #203598. Updated mod_clamav
  to 0.7, fixes bug #212601. Cleaned up ebuild and added support for
  softquotas via Radius.

  11 Nov 2007; Raúl Porcel <armin76@gentoo.org> proftpd-1.3.1_rc3.ebuild:
  Add ~ia64 wrt #198769

  23 Sep 2007; Stefaan De Roeck <stefaan@gentoo.org>
  +files/proftpd-1.3.1_rc3-mod_mysql.patch, proftpd-1.3.1_rc3.ebuild:
  Incorporate upstream patch fixing trivial quoting mistake, bug #190316

*proftpd-1.3.1_rc3 (26 Aug 2007)

  26 Aug 2007; Luca Longinotti <chtekk@gentoo.org>
  -proftpd-1.3.1_rc2-r1.ebuild, proftpd-1.3.1_rc2-r3.ebuild,
  +proftpd-1.3.1_rc3.ebuild:
  AMD64 stable of 1.3.1_rc2-r3 to get rid of the broken 1.3.1_rc2-r1.
  Added 1.3.1_rc3 and updated mod_shaper to 0.6.3, fixes bug #186656.

  28 Jun 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  proftpd-1.3.1_rc2-r3.ebuild:
  ppc stable, bug #175082

*proftpd-1.3.1_rc2-r3 (26 Jun 2007)

  26 Jun 2007; Luca Longinotti <chtekk@gentoo.org>
  +files/proftpd-1.3.1_rc2-bug181712.patch, -proftpd-1.3.1_rc2-r2.ebuild,
  +proftpd-1.3.1_rc2-r3.ebuild:
  Fix bug #181712.

  11 Jun 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  proftpd-1.3.1_rc2-r2.ebuild:
  Stable on sparc wrt security #175082

  11 Jun 2007; Markus Rothe <corsair@gentoo.org>
  proftpd-1.3.1_rc2-r2.ebuild:
  Stable on ppc64; bug #175082

  10 Jun 2007; Raúl Porcel <armin76@gentoo.org>
  proftpd-1.3.1_rc2-r2.ebuild:
  alpha/x86 stable wrt #175082

  10 Jun 2007; Jeroen Roovers <jer@gentoo.org> proftpd-1.3.1_rc2-r2.ebuild:
  Stable for HPPA (bug #175082) again.

*proftpd-1.3.1_rc2-r2 (10 Jun 2007)

  10 Jun 2007; Luca Longinotti <chtekk@gentoo.org>
  +files/proftpd-1.3.1_rc2-bug178866.patch, -proftpd-1.3.1_rc2.ebuild,
  +proftpd-1.3.1_rc2-r2.ebuild:
  Fixes bug #178866.

  16 May 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  proftpd-1.3.1_rc2-r1.ebuild:
  ppc stable, bug #175082

  16 May 2007; Daniel Gryniewicz <dang@gentoo.org>
  proftpd-1.3.1_rc2-r1.ebuild:
  Marked stable on amd64 for bug #175082

  14 May 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  proftpd-1.3.1_rc2-r1.ebuild:
  Stable on sparc wrt security #175082

  14 May 2007; Jose Luis Rivero <yoswink@gentoo.org>
  proftpd-1.3.1_rc2-r1.ebuild:
  Stable on alpha wrt security #175082

  14 May 2007; Jeroen Roovers <jer@gentoo.org> proftpd-1.3.1_rc2-r1.ebuild:
  Stable for HPPA (bug #175082).

  13 May 2007; Raúl Porcel <armin76@gentoo.org>
  proftpd-1.3.1_rc2-r1.ebuild:
  x86 stable wrt bug 175082

  13 May 2007; Markus Rothe <corsair@gentoo.org>
  proftpd-1.3.1_rc2-r1.ebuild:
  Stable on ppc64; bug #175082

*proftpd-1.3.1_rc2-r1 (11 May 2007)

  11 May 2007; Luca Longinotti <chtekk@gentoo.org>
  +files/proftpd-1.3.1_rc2-bug164612.patch,
  +files/proftpd-1.3.1_rc2-bug167003.patch,
  +files/proftpd-1.3.1_rc2-bug175082.patch, +proftpd-1.3.1_rc2-r1.ebuild:
  Fix bugs #164612, #167003 and #175082.

  08 May 2007; Marius Mauch <genone@gentoo.org> proftpd-1.3.1_rc2.ebuild:
  Replacing einfo with elog

*proftpd-1.3.1_rc2 (25 Jan 2007)

  25 Jan 2007; Luca Longinotti <chtekk@gentoo.org>
  -files/proftpd-1.2.10-ftpshut.patch,
  -files/proftpd-1.2.10-gcc4_mod_quotatab_sql.patch,
  -files/proftpd-1.2.10-openssl_0.9.8.patch,
  -files/proftpd-1.2.10-sqlshowinfo.patch,
  -files/proftpd-1.3.0-main_commandbuf.patch,
  -files/proftpd-1.3.0-mod_ctrls_sighup.patch,
  -files/proftpd-1.3.0-mod_sql_mysql.patch,
  -files/proftpd-1.3.0-mod_tls_overflow.patch, -proftpd-1.2.10-r7.ebuild,
  -proftpd-1.3.0a.ebuild, -proftpd-1.3.1_rc1.ebuild,
  +proftpd-1.3.1_rc2.ebuild:
  Remove old 1.2.10 and 1.3.0a versions. Move 1.3.1_rc1 to 1.3.1_rc2, which
  just fixes a few bugs, two of which important/critical, see Gentoo bugs
  #159066 and #159772.

  23 Jan 2007; Steve Dibb <beandog@gentoo.org> proftpd-1.3.1_rc1.ebuild:
  amd64 stable, security bug 158122

  19 Jan 2007; Alexander H. Færøy <eroyf@gentoo.org>
  proftpd-1.3.0a.ebuild:
  Marked ~mips; bug #156720

  24 Dec 2006; René Nussbaumer <killerfox@gentoo.org>
  proftpd-1.3.1_rc1.ebuild:
  Stable on hppa. See bug #158122.

  23 Dec 2006; Bryan Østergaard <kloeri@gentoo.org>
  proftpd-1.3.1_rc1.ebuild:
  Stable on Alpha, bug 158122.

  21 Dec 2006; Andrej Kacian <ticho@gentoo.org> proftpd-1.3.1_rc1.ebuild:
  Stable on x86, security bug #158122.

  21 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  proftpd-1.3.1_rc1.ebuild:
  Stable on sparc wrt security #158122

  21 Dec 2006; Markus Rothe <corsair@gentoo.org> proftpd-1.3.1_rc1.ebuild:
  Stable on ppc64; bug #158122

  21 Dec 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  proftpd-1.3.1_rc1.ebuild:
  Stable on ppc wrt bug #158122.

*proftpd-1.3.1_rc1 (20 Dec 2006)

  20 Dec 2006; Luca Longinotti <chtekk@gentoo.org>
  +proftpd-1.3.1_rc1.ebuild:
  Update to 1.3.1_rc1 to fix security bug #158122. Update vroot module to
  0.7.2. Add nls USE flag to handle translated messages and UTF8 file paths.

  30 Nov 2006; Luca Longinotti <chtekk@gentoo.org> -proftpd-1.3.0-r1.ebuild,
  -proftpd-1.3.0-r2.ebuild, proftpd-1.3.0a.ebuild:
  AMD64 stable and remove old vulnerable versions.

  30 Nov 2006; Alexander H. Færøy <eroyf@gentoo.org>
  proftpd-1.3.0a.ebuild:
  Stable on Alpha; bug #154650

  30 Nov 2006; Markus Rothe <corsair@gentoo.org> proftpd-1.3.0a.ebuild:
  Stable on ppc64; bug #154650

  29 Nov 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  proftpd-1.3.0a.ebuild:
  ppc stable, bug #154650

  29 Nov 2006; Gustavo Zacarias <gustavoz@gentoo.org> proftpd-1.3.0a.ebuild:
  Stable on sparc wrt security #154650

  29 Nov 2006; Jeroen Roovers <jer@gentoo.org> proftpd-1.3.0a.ebuild:
  Stable for HPPA (bug #154650).

  28 Nov 2006; Christian Faulhammer <opfer@gentoo.org>
  proftpd-1.3.0a.ebuild:
  stable x86, security bug #154650

*proftpd-1.3.0a (28 Nov 2006)

  28 Nov 2006; Luca Longinotti <chtekk@gentoo.org>
  +files/proftpd-1.3.0-main_commandbuf.patch,
  +files/proftpd-1.3.0-mod_tls_overflow.patch, +proftpd-1.3.0a.ebuild:
  Fix security bugs #156503 and #154650. Update mod_shaper to 0.6.2.

  23 Nov 2006; Francesco Riosa <vivo@gentoo.org> proftpd-1.2.10-r7.ebuild,
  proftpd-1.3.0-r1.ebuild, proftpd-1.3.0-r2.ebuild:
  dev-db/mysql => virtual/mysql

  01 Oct 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  proftpd-1.3.0-r2.ebuild:
  hppa stable, bug #147654

  29 Sep 2006; <ticho@gentoo.org> proftpd-1.3.0-r2.ebuild:
  Stable on x86, bug #147654.

  27 Sep 2006; Stephanie Lockwood-Childs <wormo@gentoo.org>
  proftpd-1.3.0-r2.ebuild:
  stable on ppc (Bug #147654)

  25 Sep 2006; Jason Wever <weeve@gentoo.org> proftpd-1.3.0-r2.ebuild:
  Stable on SPARC wrt bug #147654.

  24 Sep 2006; <blubb@gentoo.org> proftpd-1.3.0-r2.ebuild:
  stable on amd64 wrt bug 147654

  24 Sep 2006; Markus Rothe <corsair@gentoo.org> proftpd-1.3.0-r2.ebuild:
  Stable on ppc64; bug #147654

*proftpd-1.3.0-r2 (23 Sep 2006)

  23 Sep 2006; Luca Longinotti <chtekk@gentoo.org>
  +files/proftpd-1.3.0-mod_ctrls_sighup.patch, files/proftpd.rc6,
  proftpd-1.2.10-r7.ebuild, proftpd-1.3.0-r1.ebuild,
  +proftpd-1.3.0-r2.ebuild:
  Fix redundant S definition. Update mod_clamav version, bug #141270. Fix PAM
  linking, bug #101672. Update init-script to use dns, bug #147350. Fix
  failure after SIGHUP, bug #147654.

  23 Sep 2006; Luca Longinotti <chtekk@gentoo.org>
  -files/openssl-0.9.8.patch, -files/proftpd-1.2.9-makefile.patch,
  -files/proftpd-1.2.9-privescal-fix.patch,
  -files/1.2.9_rc3-reversedns.diff, +files/proftpd-1.2.10-ftpshut.patch,
  +files/proftpd-1.2.10-gcc4_mod_quotatab_sql.patch,
  +files/proftpd-1.2.10-openssl_0.9.8.patch,
  +files/proftpd-1.2.10-sqlshowinfo.patch,
  +files/proftpd-1.3.0-mod_sql_mysql.patch, -files/ftp.pamd,
  -files/ftp.pamd-include, -files/gcc4-mod_quotatab_sql.patch,
  -files/mod_sql_mysql.diff, -files/mod_sql_postgres.c.patch,
  files/proftpd.conf, files/proftpd.rc6, -files/proftpd.rc6-r2,
  -files/proftpd-ftpshut.patch, -files/proftpd-sqlshowinfo.patch,
  proftpd-1.2.10-r7.ebuild, proftpd-1.3.0-r1.ebuild:
  General ebuild and filesdir cleanup, sync 1.2.10 and 1.3.0 ebuilds for
  easier maintainance. No functional or changes in the result, so no revbump.
  Fix stripping of files (QA notice). Fix default user not present, which
  broke the default sample config.

  23 Sep 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  proftpd-1.3.0-r1.ebuild:
  hppa stable, bug #146538

  22 Sep 2006; Luca Longinotti <chtekk@gentoo.org> metadata.xml:
  Set myself as maintainer.

  15 Sep 2006; Jason Wever <weeve@gentoo.org> proftpd-1.3.0-r1.ebuild:
  Stable on SPARC wrt bug #146538.

  09 Sep 2006; Stephanie Lockwood-Childs <wormo@gentoo.org>
  proftpd-1.3.0-r1.ebuild:
  stable on ppc (Bug #146538)

  09 Sep 2006; Thomas Cort <tcort@gentoo.org> proftpd-1.3.0-r1.ebuild:
  Stable on amd64 wrt Bug #146538.

  08 Sep 2006; Thomas Cort <tcort@gentoo.org> proftpd-1.3.0-r1.ebuild:
  Stable on alpha wrt Bug #146538.

  08 Sep 2006; Joshua Jackson <tsunam@gentoo.org> proftpd-1.3.0-r1.ebuild:
  Stable x86; bug #146538

  07 Sep 2006; Gustavo Felisberto <humpback@gentoo.org>;
  files/mod_sql_mysql.diff:
  Fixed format on patch. Should solve issue with <=sys-devel/patch-2.5.9

  06 Sep 2006; Gustavo Felisberto <humpback@gentoo.org>;
  +files/openssl-0.9.8.patch, files/mod_sql_mysql.diff,
  proftpd-1.2.10-r7.ebuild:
  Updated Unix socket patch for mysql auth in 1.3.0 (bug #111668). Added patch
  to build 1.2.10 with openssl 0.9.8 (bug #146534).

  06 Sep 2006; Markus Rothe <corsair@gentoo.org> proftpd-1.3.0-r1.ebuild:
  Stable on ppc64; bug #146538

  04 Sep 2006; Gustavo Felisberto <humpback@gentoo.org>;
  +files/gcc4-mod_quotatab_sql.patch, proftpd-1.2.10-r7.ebuild:
  Added patch to solve issue while building with gcc 4. Close bug #145940.
  Thanks to everyone in that bug.

  24 Jun 2006; Gustavo Felisberto <humpback@gentoo.org>;
  proftpd-1.3.0-r1.ebuild:
  Removed sendfile USE flag is this is on by default

  24 Jun 2006; Gustavo Felisberto <humpback@gentoo.org>;
  proftpd-1.3.0.ebuild:
  Updated to fix vroot and ifesession issues. Comments in bug 111668

*proftpd-1.3.0 (23 Jun 2006)

  23 Jun 2006; Gustavo Felisberto <humpback@gentoo.org>;
  +files/mod_sql_mysql.diff, +files/proftpd.rc6-r2, +proftpd-1.3.0.ebuild:
  Adding new version with extra modules. If any problems appear please report
  them back in bug #111668.

  27 May 2006; Gustavo Felisberto <humpback@gentoo.org>; metadata.xml,
  -proftpd-1.2.9-r2.ebuild, -proftpd-1.2.10.ebuild,
  -proftpd-1.2.10-r1.ebuild, -proftpd-1.2.10-r2.ebuild,
  -proftpd-1.2.10-r3.ebuild, -proftpd-1.2.10-r5.ebuild,
  -proftpd-1.2.10-r6.ebuild:
  Removed older versions at request from sollar@g.o (Ned Ludd)

  31 Dec 2005; Diego Pettenò <flameeyes@gentoo.org>
  proftpd-1.2.10-r5.ebuild:
  Change /bin/false to -1 in enewuser call.

  31 Jul 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  proftpd-1.2.10-r7.ebuild:
  Stable on sparc wrt #100364

  31 Jul 2005; Fernando J. Pereda <ferdy@gentoo.org>
  proftpd-1.2.10-r7.ebuild:
  stable on alpha wrt bug #100364

  30 Jul 2005; Rene Nussbaumer <killerfox@gentoo.org>
  proftpd-1.2.10-r7.ebuild:
  Stable on hppa. bug #100364

  29 Jul 2005; Markus Rothe <corsair@gentoo.org> proftpd-1.2.10-r7.ebuild:
  Stable on ppc64 (bug #100364)

  29 Jul 2005; Tobias Scherbaum <dertobi123@gentoo.org>
  proftpd-1.2.10-r7.ebuild:
  ppc stable, #100364

*proftpd-1.2.10-r7 (29 Jul 2005)

  29 Jul 2005; Roy Marples <uberlord@gentoo.org>
  +files/proftpd-ftpshut.patch, +files/proftpd-sqlshowinfo.patch,
  +proftpd-1.2.10-r7.ebuild:
  Fix ftpshut and SqlShowInfo, bug #100364
  Stable on amd64 and x86

  09 Jul 2005; Gustavo Felisberto <humpback@gentoo.org>;
  proftpd-1.2.10-r6.ebuild:
  Cosmetic.

*proftpd-1.2.10-r6 (08 Jul 2005)

  08 Jul 2005; Gustavo Felisberto <humpback@gentoo.org>;
  +proftpd-1.2.10-r6.ebuild:
  New revision that uses the new net-ftp/ftpbase. Nice work there UberLord.

  07 Jul 2005; Gustavo Felisberto <humpback@gentoo.org>;
  proftpd-1.2.9-r2.ebuild, proftpd-1.2.10.ebuild, proftpd-1.2.10-r1.ebuild,
  proftpd-1.2.10-r2.ebuild, proftpd-1.2.10-r3.ebuild,
  proftpd-1.2.10-r5.ebuild:
  Added addpredict /etc/krb5.conf to solve bug #98281. Thanks Jakub.

*proftpd-1.2.10-r5 (08 Jun 2005)

  08 Jun 2005; Gustavo Felisberto <humpback@gentoo.org>;
  -proftpd-1.2.10-r4.ebuild, +proftpd-1.2.10-r5.ebuild:
  Fixed problem with noauthunix flag. Thanks uberloard.

  06 Jun 2005; Markus Rothe <corsair@gentoo.org> proftpd-1.2.10-r3.ebuild:
  Stable on ppc64; bug #93484

  06 Jun 2005; Gustavo Felisberto <humpback@gentoo.org>;
  proftpd-1.2.10-r4.ebuild:
  Changed useflag to noauthunix as authunix is needed in linux (dont know
  about bsd, but bsd users can use useflag).

  04 Jun 2005; Gustavo Felisberto <humpback@gentoo.org>;
  proftpd-1.2.10-r4.ebuild:
  Small QA issues

*proftpd-1.2.10-r4 (04 Jun 2005)

  04 Jun 2005; Gustavo Felisberto <humpback@gentoo.org>;
  +files/ftp.pamd-include, +proftpd-1.2.10-r4.ebuild:
  Thanks to flameeyes in #93163 we now build and install in g/bsd.

  07 Mar 2005; Markus Rothe <corsair@gentoo.org> proftpd-1.2.10-r2.ebuild:
  Stable on ppc64

*proftpd-1.2.10-r3 (02 Mar 2005)

  02 Mar 2005; Gustavo Felisberto <humpback@gentoo.org>;
  +proftpd-1.2.10-r3.ebuild:
  As seen on bug #75072 and others mod_delay is causing lots of problems, and
  seems impossible to backport it to 1.2.10 as it is being developed for the cvs
  version. Also am fixing small issue with softquota as reported in #80002 by
  Michael Cramer. Also fixing bug #83312 and #63196 pam related credits Roy
  Marples <uberlord@gentoo.org>. As a bonus a fix for a small bug in dodoc
  reported by Thilo Bangert in #65320.

  21 Jan 2005; Markus Rothe <corsair@gentoo.org> proftpd-1.2.10-r2.ebuild:
  Added ~ppc64 to KEYWORDS; bug #78927

  09 Jan 2005; Sven Wegener <swegener@gentoo.org> proftpd-1.2.10-r1.ebuild,
  proftpd-1.2.10-r2.ebuild:
  Added missing parentheses in SRC_URI/*DEPEND/LICENSE.

*proftpd-1.2.10-r2 (06 Dec 2004)

  06 Dec 2004; Gustavo Felisberto <humpback@gentoo.org>;
  +proftpd-1.2.10-r2.ebuild, -proftpd-1.2.7.ebuild, -proftpd-1.2.8.ebuild:
  Removed older versions and added a new release that uses the sendfile()
  function. Use with care.

  30 Nov 2004; Guy Martin <gmsoft@gentoo.org> proftpd-1.2.10-r1.ebuild:
  Stable on hppa.

  30 Nov 2004; Bryan Østergaard <kloeri@gentoo.org>
  proftpd-1.2.10-r1.ebuild:
  Stable on alpha, bug 67648.

  29 Nov 2004; Simon Stelling <blubb@gentoo.org> proftpd-1.2.10-r1.ebuild:
  stable on amd64, see bug #67648

  29 Nov 2004; Gustavo Zacarias <gustavoz@gentoo.org>
  proftpd-1.2.10-r1.ebuild:
  Stable on sparc wrt #67648

  28 Nov 2004; Joseph Jezak <josejx@gentoo.org> proftpd-1.2.10-r1.ebuild:
  Marked ppc stable for bug #67648.

  27 Nov 2004; Gustavo Felisberto <humpback@gentoo.org>;
  proftpd-1.2.10-r1.ebuild:
  Stable on x86

*proftpd-1.2.10-r1 (26 Nov 2004)

  26 Nov 2004; Gustavo Felisberto <humpback@gentoo.org>;
  +proftpd-1.2.10-r1.ebuild:
  Adding version 1.2.10-r1 with fix for time attack bug
  #http://bugs.gentoo.org/show_bug.cgi?id=67648

  23 Nov 2004; Sven Wegener <swegener@gentoo.org> :
  Fixed digest.

  01 Nov 2004; Bryan Østergaard <kloeri@gentoo.org> proftpd-1.2.10.ebuild:
  Stable on alpha.

  19 Oct 2004; Dylan Carlson <absinthe@gentoo.org> proftpd-1.2.10.ebuild,
  proftpd-1.2.8.ebuild:
  Stable on amd64.

  11 Oct 2004; Guy Martin <gmsoft@gentoo.org> proftpd-1.2.10.ebuild:
  Marked stable on hppa.

  18 Sep 2004; Jason Wever <weeve@gentoo.org> proftpd-1.2.10.ebuild:
  Stable on sparc.

  16 Sep 2004; Gustavo Felisberto <humpback@gentoo.org>;
  proftpd-1.2.10.ebuild:
  Mod shaper causes problems again :( . Marking stable as the rest is rock solid.

*proftpd-1.2.10 (07 Sep 2004)

  07 Sep 2004; Gustavo Felisberto <humpback@gentoo.org>;
  +proftpd-1.2.10.ebuild, -proftpd-1.2.10_rc3-r1.ebuild:
  Adding version 1.2.10, mod_shaper is back and also adding selinux flag and
  dep, thanks to petre rodan on bug 62905 for this one

*proftpd-1.2.10_rc3-r1 (06 Sep 2004)

  06 Sep 2004; Ciaran McCreesh <ciaranm@gentoo.org>
  proftpd-1.2.10_rc3-r1.ebuild, proftpd-1.2.9-r2.ebuild:
  Switch to use epause and ebeep, bug #62950

  29 Jul 2004; Gustavo Felisberto <humpback@gentoo.org>;
  -proftpd-1.2.10_rc1-r1.ebuild:
  Removing the shaper module because it causes strange problems.

*proftpd-1.2.10_rc3 (14 Jul 2004)

  14 Jul 2004; Gustavo Felisberto <humpback@gentoo.org>;
  proftpd-1.2.10_rc1-r1.ebuild, +proftpd-1.2.10_rc3.ebuild:
  Adding rc3. Please report back (by mail) sucess stories

  14 Jul 2004; Gustavo Felisberto <humpback@gentoo.org>;
  proftpd-1.2.10_rc1-r1.ebuild:
  Added softquota flag to rc1-r1 and removed the old rc1 ebuild. 1.2.10_rc2 came
  out today but has a bug and will not build, I have contacted upstream and rc3
  will come out soon.

*proftpd-1.2.10_rc1-r1 (08 Jul 2004)

  08 Jul 2004; Gustavo Felisberto <humpback@gentoo.org>; metadata.xml,
  +proftpd-1.2.10_rc1-r1.ebuild:
  Adding suport fpr mod_shaper a trafic-shaper for all the server. Also
  rager@g seems to be missing so I will maintain this in the meantime.

*proftpd-1.2.10_rc1 (08 Jun 2004)

  08 Jun 2004; Nick Hadaway <raker@gentoo.org> proftpd-1.2.10_rc1.ebuild :
  Important security fixes.  From proftpd.org:  Additionally a flaw in 
  the CIDRACL code has been discovered which can lead to an escalation in 
  access rights within the ftp site. This flaw affects all versions up to 
  and including 1.2.9, it has been fixed in cvs and 1.2.10rc1. To avoid 
  the flaw do not use CIDR based ACLs on vulnerable versions or use 
  mod_wrap and /etc/hosts.allow|deny.

  05 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> proftpd-1.2.9-r2.ebuild:
  Stable on alpha.

  12 May 2004; Alexander Gabert <pappy@gentoo.org> proftpd-1.2.9-r2.ebuild:
  removed hardened-gcc logic, changed to use flag logic for capability bugfix

  06 May 2004; David Holm <dholm@gentoo.org> proftpd-1.2.9-r2.ebuild:
  Stable on ppc.

  05 May 2004; Jon Portnoy <avenj@gentoo.org> proftpd-1.2.9-r2.ebuild :
  Stable on x86.

  05 May 2004; Jason Wever <weeve@gentoo.org> proftpd-1.2.9-r2.ebuild:
  Stable on sparc wrt bug #49496.

  04 May 2004; Brandon Hale <tseng@gentoo.org> proftpd-1.2.9-r2.ebuild:
  Carry over stable flags on amd64 and hppa to -r2, I nuked their latest stable.

*proftpd-1.2.9-r2 (04 May 2004)

  04 May 2004; Brandon Hale <tseng@gentoo.org> -proftpd-1.2.9-r1.ebuild,
  +proftpd-1.2.9-r2.ebuild, -proftpd-1.2.9.ebuild:
  Add patch to close privelage escalation bug, see bug #49496. Removing affected
  versions.

  27 Apr 2004; Aron Griffis <agriffis@gentoo.org> proftpd-1.2.9-r1.ebuild:
  Add inherit eutils

  20 Apr 2004; Jeremy Huddleston <eradicator@gentoo.org>
  proftpd-1.2.9-r1.ebuild, proftpd-1.2.9.ebuild:
  is-flag -fPIC -> has_pic to work with new gcc builds and USE=hardened.

  09 Mar 2004; Daniel Ahlberg <aliz@gentoo.org> proftpd-1.2.9-r1.ebuild:
  Adding amd64 keyword. Closing #44105.

  12 Feb 2004; Stewart Honsberger <blkdeath@gentoo.org>
  proftpd-1.2.9-r1.ebuild, proftpd-1.2.9.ebuild:
  Re: Bug #40260; add warning to ebuild if both USE=postgres and mysql are set

*proftpd-1.2.9-r1 (12 Feb 2004)

  12 Feb 2004; Stewart Honsberger <blkdeath@gentoo.org>
  proftpd-1.2.9-r1.ebuild, files/proftpd-1.2.9-makefile.patch:
  Re: Bug #39678; apply patch to correct race condition for paralell build.

  31 Jan 2004; Christian Birchinger <joker@gentoo.org> proftpd-1.2.9.ebuild:
  Added sparc stable keyword

  29 Jan 2004; <tuxus@gentoo.org> proftpd-1.2.9.ebuild:
  Added ~mips to KEYWORDS.

  24 Jan 2004; Stewart Honsberger <blkdeath@gentoo.org> files/proftpd.rc6:
  Re: Bug #28345 added "--retry 20" to start-stop-daemon line in init script
  to account for stray processes.

  23 Jan 2004; Nick Hadaway <raker@gentoo.org> proftpd-1.2.9.ebuild:
  Removed libpcap dependancy.  See bug #36291.  Also removed unneeded
  src_unpack() section.

  23 Jan 2004; Stewart Honsberger <blkdeath@gentoo.org> files/proftpd.xinetd:
  Re: Bug #37457, fix proftpd.xinetd

  23 Jan 2004; Stewart Honsberger <blkdeath@gentoo.org> proftpd-1.2.9.ebuild:
  Marked stable on x86.

*proftpd-1.2.9 (05 Nov 2003)

  22 Jan 2004; Guy Martin <gmsoft@gentoo.org> proftpd-1.2.9.ebuild:
  Marked stable on hppa.

  05 Nov 2003; Stewart Honsberger <blkdeath@gentoo.org> proftpd-1.2.9.ebuild:
  Version bump. Security fixes, some memory leaks, IPv4 / IPv6 fixes.

  20 Oct 2003; Nick Hadaway <raker@gentoo.org> proftpd-1.2.9_rc3.ebuild:
  Added files/1.2.9_rc3-reversedns.diff which was taken from the 
  upstream cvs repository.  Gentoo bug #31465 and proftpd bug #2204.

*proftpd-1.2.9_rc3 (16 Oct 2003)

  16 Oct 2003; Nick Hadaway <raker@gentoo.org> proftpd-1.2.9_rc3.ebuild:
  Addresses bug #29639 and #30004.  Also includes a remote exploit fix.
  Version bump.  1.2.9 release is coming soon. :)

*proftpd-1.2.9_rc2-r1 (13 Oct 2003)

  13 Oct 2003; <solar@gentoo.org> proftpd-1.2.9_rc2-r1.ebuild,
  files/proftpd-1.2.9_rc2-dirtree-r118.patch:
  Adding TJ Saunders directive lookup code patch from Comment #10
  http://bugs.proftpd.org/show_bug.cgi?id=2183 for src/dirtree.c This should
  close Gentoo Bug #29639

  05 Oct 2003; <solar@gentoo.org> proftpd-1.2.9_rc2.ebuild:
  reversed yet_exec workaround, changing solution to make proftpd compile for
  users when -fPIC is found in C[XX]FLAGS or using hgcc.. see bug #30359

  05 Oct 2003; Alexander Gabert <pappy@gentoo.org> proftpd-1.2.9_rc2.ebuild:
  added yet_exec flags for configure run, otherwise build failure due to broken
  assembler syscall in cap module building

  02 Oct 2003; Brad House <brad_mssw@gentoo.org> proftpd-1.2.8.ebuild:
  add ~amd64 flag

  30 Sep 2003; Christian Birchinger <joker@gentoo.org>
  proftpd-1.2.9_rc2.ebuild:
  Added sparc stable keyword

  29 Sep 2003; <solar@gentoo.org> proftpd-1.2.9_rc2.ebuild:
  marked stable on x86

*proftpd-1.2.9_rc2 (23 Sep 2003)

  23 Sep 2003; Daniel Ahlberg <aliz@gentoo.org> proftpd-1.2.9_rc2.ebuild:
  Security update

  22 Jun 2003; root <root@gentoo.org> proftpd-1.2.9_rc1.ebuild:
  Changed install stanza so files install in the proper location

  17 Jun 2003; Nick Hadaway <raker@gentoo.org> proftpd-1.2.9_rc1.ebuild,
  proftpd-1.2.8.ebuild:
  Address bug #22963 which fixes compiling with the mysql module

*proftpd-1.2.9_rc1 (16 Jun 2003)

  16 Jun 2003; Nick Hadaway <raker@gentoo.org> proftpd-1.2.9_rc1.ebuild,
  files/digest-proftpd-1.2.9_rc1:
  Version bump.  einstall doesn't work in this version.  Added some
  commented code for the new mod_{radius,ifsession,rewrite} modules.
  A couple "New & Enhanced" configuration directives as well...
  AnonRejectPasswords, RootRevoke, SocketOptions, and ListOptions.
  Increased postgres depend to >=7.3 (bug #19675)

*proftpd-1.2.8 (02 June 2003)

  03 Jun 2003; Christian Birchinger <joker@gentoo.org> proftpd-1.2.8.ebuild:
  Added sparc stable keyword

  02 June 2003; Brad Laue <brad@gentoo.org> proftpd-1.2.8.ebuild:
  Marking stable, it's well tested.

*proftpd-1.2.8 (17 Mar 2003)

  17 Apr 2003; Martin Holzer <mholzer@gentoo.org> Manifest,
  proftpd-1.2.7.ebuild, proftpd-1.2.8.ebuild:
  Adding info about config file

  17 Mar 2003; Martin Holzer <mholzer@gentoo.org> proftpd-1.2.8.ebuild:
  Version bumped. Ebuild submitted in #17666 by bugsubmit@snerk.org

*proftpd-1.2.7 (15 Dec 2002)

  23 Mar 2003; Graham Forest <vladimir@gentoo.org> proftpd-1.2.7.ebuild:
  set ppc in keywords

  17 Jan 2003; Daniel Ahlberg <aliz@gentoo.org> files/proftpd.conf :
  Closes #13734.

  15 Dec 2002; Daniel Ahlberg <aliz@gentoo.org> proftpd-1.2.7.ebuild :
  Marked as stable.

  05 Mar 2003; Will Woods <wwoods@gentoo.org> proftpd-1.2.7.ebuild:
  Added alpha to KEYWORDS

  25 Feb 2003; Guy Martin <gmsoft@gentoo.org> proftpd-1.2.7.ebuild :
  Added hppa to keywords.

  15 Dec 2002; Daniel Ahlberg <aliz@gentoo.org> proftpd-1.2.7.ebuild :
  Version bump.

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
  23 Nov 2002; Maik Schreiber <blizzy@gentoo.org> proftpd-1.2.7_rc3.ebuild:
  Changed KEYWORDS to "~x86 ~ppc ~sparc ~sparc64", as proftpd-1.2.7_rc2.ebuild
  has. Also fixed ChangeLog.

  19 Nov 2002; L. Boshell <leonardop@gentoo.org> proftpd-1.2.7_rc3.ebuild:
  Modified tcp-wrappers dep, so default-1.0 users don't have problems with it.
  See bug #10930.

*proftpd-1.2.7_rc3 (17 Nov 2002)
  
  17 Nov 2002; Bruce A. Locke <blocke@shivan.org> proftpd-1.2.7_rc3.ebuild:
  Version bump, ebuild cleanups, and:

  - mod_ldap TLS enable suggested by psi-jack@myrealbox.com (Eric Renfro)
  - mod_tls added (suggestion from stian@barmen.nu (Stian B. Barmen))
  - mod_wrap for TCP wrappers support
  - sample config file location in rc6 message changed

  09 Nov 2002; Ryan Phillips <rphillips@gentoo.org> : set emake to make.  Fixes #10267

*proftpd-1.2.7_rc2 (02 Nov 2002)

  02 Nov 2002; Maik Schreiber <blizzy@gentoo.org> : New version. Also we use
  user/group "proftpd" from now on instead of nobody/nogroup.

  07 Sep 2002; Seemant Kulleen <seemant@gentoo.org> proftpd-1.2.5-r1.ebuild,
  proftpd-1.2.6_rc1-r1.ebuild: Removed redundant glibc dependency and replaced
  it with the libpcap. Thanks to: saragon@home.se (Daniel) in bug #7614.

*proftpd-1.2.6_rc1-r1 (03 Aug 2002)

  03 Aug 2002; Bruce A. Locke <blocke@shivan.org> proftpd-1.2.6_rc1-r1.ebuild,
  files/digest-proftpd-1.2.6_rc1-r1:
  Added xinetd file contributed by alextxm@tin.it (Alessandro Pisani) and
  fixed minor directory and documentation buglets
  
*proftpd-1.2.6_rc1 (19 Jul 2002)

  19 Jul 2002; Kyle Manna <nitro@gentoo.org> proftpd-1.2.6_rc1.ebuild:
  Added masked release candidate.  Please test.

  28 Jun 2002; J.Alberto Suárez L. <bass@gentoo.org> proftpd-1.2.5-r1.ebuild:

  Fix bug #3791 In mod_sql_postgres.c line 38: #inlcude <pgsql/libpq-fe.h>
  is patched to: #include <postgresql/libpq-fe.h>.

*proftpd-1.2.5-r1 (20 Jun 2002)

  20 Jun 2002; Kyle Manna <nitro@gentoo.org> proftpd-1.2.5-r1.ebuild :
  Now we copy pam ftp file if we 'use pam'

*proftpd-1.2.5 (09 Jun 2002)

  09 Jun 2002; Kyle Manna <nitro@gentoo.org> proftpd-1.2.5.ebuild :

  Version bump, added SLOT="0" and LICENSE="GPL-2"

  2 Apr 2002; Tod Neidt <tod@gentoo.org> proftpd-1.2.4-r7.ebuild :

  Specified rundir in make install, needed to avoid sandbox violation of
  'mkdir /var/run/proftp' on initial install.

*proftpd-1.2.4-r7 (18 Mar 2002)
  
  18 Mar 2002; Donny Davies <woodchip@gentoo.org> proftpd-1.2.4-r7.ebuild :

  Fix compilation with USE ldap.  Closes #722, thanks goto rectrix@rectrix.cx (Tim Hobbs)
  for report and suggested resolution.

*proftpd-1.2.4-r6 (01 Feb 2002)

  01 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.