summaryrefslogtreecommitdiff
blob: 45feec0185133191dd122f4857dd3cc18ec66efe (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
# ChangeLog for net-mail/getmail
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/ChangeLog,v 1.223 2013/05/02 07:26:04 radhermit Exp $

*getmail-4.40.1 (02 May 2013)

  02 May 2013; Tim Harder <radhermit@gentoo.org> +getmail-4.40.1.ebuild:
  Version bump.

*getmail-4.39.1 (12 Mar 2013)

  12 Mar 2013; Tim Harder <radhermit@gentoo.org> +getmail-4.39.1.ebuild:
  Version bump.

  25 Feb 2013; Tim Harder <radhermit@gentoo.org> -getmail-4.24.0.ebuild,
  -getmail-4.35.0.ebuild:
  Remove old.

*getmail-4.39.0 (25 Feb 2013)

  25 Feb 2013; Tim Harder <radhermit@gentoo.org> +getmail-4.39.0.ebuild:
  Version bump.

  14 Feb 2013; Agostino Sarubbo <ago@gentoo.org> getmail-4.36.0.ebuild:
  Stable for ppc, wrt bug #457432

  14 Feb 2013; Agostino Sarubbo <ago@gentoo.org> getmail-4.36.0.ebuild:
  Stable for x86, wrt bug #457432

  14 Feb 2013; Agostino Sarubbo <ago@gentoo.org> getmail-4.36.0.ebuild:
  Stable for amd64, wrt bug #457432

*getmail-4.37.0 (14 Feb 2013)

  14 Feb 2013; Tim Harder <radhermit@gentoo.org> +getmail-4.37.0.ebuild:
  Version bump.

  19 Dec 2012; Tim Harder <radhermit@gentoo.org> -getmail-4.34.0.ebuild:
  Remove old.

*getmail-4.36.0 (19 Dec 2012)

  19 Dec 2012; Tim Harder <radhermit@gentoo.org> +getmail-4.36.0.ebuild:
  Version bump. Migrate to distutils-r1.

  26 Oct 2012; Tim Harder <radhermit@gentoo.org> -getmail-4.17.0.ebuild,
  -getmail-4.32.0.ebuild, -getmail-4.33.0.ebuild:
  Remove old.

*getmail-4.35.0 (26 Oct 2012)

  26 Oct 2012; Tim Harder <radhermit@gentoo.org> +getmail-4.35.0.ebuild:
  Version bump.

  30 Sep 2012; Raúl Porcel <armin76@gentoo.org> getmail-4.17.0.ebuild,
  getmail-4.24.0.ebuild, getmail-4.32.0.ebuild, getmail-4.33.0.ebuild,
  getmail-4.34.0.ebuild:
  Drop alpha keywords

*getmail-4.34.0 (09 Sep 2012)

  09 Sep 2012; Tim Harder <radhermit@gentoo.org> +getmail-4.34.0.ebuild:
  Version bump.

  09 Aug 2012; Tim Harder <radhermit@gentoo.org> -getmail-4.27.0.ebuild,
  -getmail-4.30.1.ebuild, -getmail-4.30.2.ebuild:
  Remove old.

*getmail-4.33.0 (09 Aug 2012)

  09 Aug 2012; Tim Harder <radhermit@gentoo.org> +getmail-4.33.0.ebuild:
  Version bump.

*getmail-4.32.0 (09 Jul 2012)

  09 Jul 2012; Tim Harder <radhermit@gentoo.org> +getmail-4.32.0.ebuild:
  Version bump.

*getmail-4.30.2 (28 Jun 2012)

  28 Jun 2012; Tim Harder <radhermit@gentoo.org> +getmail-4.30.2.ebuild:
  Version bump.

  22 Jun 2012; Tim Harder <radhermit@gentoo.org> -getmail-4.26.0.ebuild,
  -getmail-4.29.0.ebuild, -getmail-4.30.0.ebuild:
  Remove old.

*getmail-4.30.1 (22 Jun 2012)

  22 Jun 2012; Tim Harder <radhermit@gentoo.org> +getmail-4.30.1.ebuild:
  Version bump.

*getmail-4.30.0 (22 Jun 2012)

  22 Jun 2012; Tim Harder <radhermit@gentoo.org> +getmail-4.30.0.ebuild:
  Version bump.

*getmail-4.29.0 (21 Jun 2012)

  21 Jun 2012; Tim Harder <radhermit@gentoo.org> +getmail-4.29.0.ebuild:
  Version bump. Migrate to python-distutils-ng eclass.

  31 May 2012; Tim Harder <radhermit@gentoo.org> -getmail-4.25.0.ebuild:
  Remove old.

*getmail-4.27.0 (31 May 2012)

  31 May 2012; Tim Harder <radhermit@gentoo.org> +getmail-4.27.0.ebuild:
  Version bump.

*getmail-4.26.0 (15 Apr 2012)

  15 Apr 2012; Tim Harder <radhermit@gentoo.org> +getmail-4.26.0.ebuild:
  Version bump.

  25 Feb 2012; Patrick Lauer <patrick@gentoo.org> getmail-4.17.0.ebuild,
  getmail-4.24.0.ebuild, getmail-4.25.0.ebuild:
  Restricting pypy

  16 Feb 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> getmail-4.24.0.ebuild:
  x86 stable wrt bug #402641

  15 Feb 2012; Brent Baude <ranger@gentoo.org> getmail-4.24.0.ebuild:
  Marking getmail-4.24.0 ppc for bug 402641

  08 Feb 2012; Agostino Sarubbo <ago@gentoo.org> getmail-4.24.0.ebuild:
  Stable for amd64, wrt bug #402641

  07 Feb 2012; Tim Harder <radhermit@gentoo.org> -getmail-4.22.1.ebuild,
  -getmail-4.22.2.ebuild, -getmail-4.23.0.ebuild:
  Remove old.

*getmail-4.25.0 (07 Feb 2012)

  07 Feb 2012; Tim Harder <radhermit@gentoo.org> +getmail-4.25.0.ebuild:
  Version bump.

*getmail-4.24.0 (12 Dec 2011)

  12 Dec 2011; Tim Harder <radhermit@gentoo.org> +getmail-4.24.0.ebuild:
  Version bump.

*getmail-4.23.0 (20 Nov 2011)

  20 Nov 2011; Tim Harder <radhermit@gentoo.org> +getmail-4.23.0.ebuild:
  Version bump.

  13 Nov 2011; Tim Harder <radhermit@gentoo.org> -getmail-4.20.2.ebuild,
  -getmail-4.20.3.ebuild, -getmail-4.20.4.ebuild, -getmail-4.22.0.ebuild:
  Remove old.

*getmail-4.22.2 (13 Nov 2011)

  13 Nov 2011; Tim Harder <radhermit@gentoo.org> +getmail-4.22.2.ebuild:
  Version bump.

*getmail-4.22.1 (01 Oct 2011)

  01 Oct 2011; Tim Harder <radhermit@gentoo.org> +getmail-4.22.1.ebuild:
  Version bump.

*getmail-4.22.0 (27 Sep 2011)

  27 Sep 2011; Tim Harder <radhermit@gentoo.org> +getmail-4.22.0.ebuild:
  Version bump.

*getmail-4.20.4 (24 Aug 2011)

  24 Aug 2011; Tim Harder <radhermit@gentoo.org> +getmail-4.20.4.ebuild:
  Version bump.

*getmail-4.20.3 (07 Jun 2011)

  07 Jun 2011; Eray Aslan <eras@gentoo.org> +getmail-4.20.3.ebuild:
  Version bump

*getmail-4.20.2 (25 Apr 2011)

  25 Apr 2011; Eray Aslan <eras@gentoo.org> +getmail-4.20.2.ebuild:
  version bump - bug #364803

  25 Apr 2011; Raúl Porcel <armin76@gentoo.org> getmail-4.9.1.ebuild,
  getmail-4.9.2.ebuild, getmail-4.13.0.ebuild, getmail-4.16.0-r1.ebuild,
  getmail-4.17.0.ebuild:
  Drop sparc keywords

  11 Apr 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  getmail-4.17.0.ebuild:
  x86 stable wrt bug #358539

  05 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  getmail-4.9.1.ebuild, getmail-4.9.2.ebuild, getmail-4.13.0.ebuild:
  Fix deprecation warnings.

  27 Mar 2011; Tobias Klausmann <klausman@gentoo.org> getmail-4.17.0.ebuild:
  Stable on alpha, bug #358539

  13 Mar 2011; Markos Chandras <hwoarang@gentoo.org> getmail-4.17.0.ebuild:
  Stable on amd64 wrt bug #358593

  12 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> getmail-4.17.0.ebuild:
  ppc stable wrt #358539

*getmail-4.17.0 (06 May 2010)

  06 May 2010; Torsten Veller <tove@gentoo.org> +getmail-4.17.0.ebuild:
  Version bump

*getmail-4.16.0-r1 (17 Apr 2010)

  17 Apr 2010; Torsten Veller <tove@gentoo.org> -getmail-4.16.0.ebuild,
  +getmail-4.16.0-r1.ebuild:
  Works only with python-2 (#315331). Thanks to arfrever for the patch and
  ohnobinki for testing. More docdir workarounds

*getmail-4.16.0 (06 Jan 2010)

  06 Jan 2010; Torsten Veller <tove@gentoo.org> +getmail-4.16.0.ebuild:
  Version bump

  24 Oct 2009; Fabian Groffen <grobian@gentoo.org> getmail-4.13.0.ebuild:
  Marked ~x86-macos, bug #290329

*getmail-4.13.0 (18 Oct 2009)

  18 Oct 2009; Torsten Veller <tove@gentoo.org> +getmail-4.13.0.ebuild:
  Version bump

  17 Oct 2009; Torsten Veller <tove@gentoo.org> -getmail-4.7.6.ebuild,
  -getmail-4.8.1.ebuild, -getmail-4.8.4.ebuild, -getmail-4.9.0.ebuild:
  Cleanup

  11 Oct 2009; Fabian Groffen <grobian@gentoo.org> getmail-4.9.2.ebuild:
  Use ED for Prefix compatability, marked ~ppc-macos and ~x64-solaris

  02 Oct 2009; Tiago Cunha <tcunha@gentoo.org> getmail-4.9.1.ebuild:
  stable sparc, bug 278891

  26 Aug 2009; Tobias Klausmann <klausman@gentoo.org> getmail-4.9.1.ebuild:
  Stable on alpha, bug #278891

  09 Aug 2009; nixnut <nixnut@gentoo.org> getmail-4.9.1.ebuild:
  ppc stable #278891

  02 Aug 2009; Markus Meier <maekke@gentoo.org> getmail-4.9.1.ebuild:
  x86 stable, bug #278891

  31 Jul 2009; <chainsaw@gentoo.org> getmail-4.9.1.ebuild:
  Marked stable on AMD64 as requested by Tiago Cunha <tcunha@gentoo.org> in
  bug #278891. Compile-tested on a dual hex-core Opteron.

*getmail-4.9.2 (23 Jul 2009)

  23 Jul 2009; Torsten Veller <tove@gentoo.org> +getmail-4.9.2.ebuild:
  Version bump

  02 Jun 2009; Torsten Veller <tove@gentoo.org> getmail-4.9.1.ebuild:
  Remove the getmail-3 conditional code.

*getmail-4.9.1 (02 Jun 2009)

  02 Jun 2009; Torsten Veller <tove@gentoo.org> +getmail-4.9.1.ebuild:
  Version bump

*getmail-4.9.0 (07 Apr 2009)

  07 Apr 2009; Torsten Veller <tove@gentoo.org> +getmail-4.9.0.ebuild:
  Version bump

  27 Sep 2008; Torsten Veller <tove@gentoo.org> -getmail-4.7.7.ebuild,
  -getmail-4.7.8.ebuild:
  Cleanup

*getmail-4.8.4 (27 Sep 2008)

  27 Sep 2008; Torsten Veller <tove@gentoo.org> +getmail-4.8.4.ebuild:
  Version bump

*getmail-4.8.1 (28 Mar 2008)

  28 Mar 2008; Andrej Kacian <ticho@gentoo.org> -getmail-4.8.0.ebuild,
  +getmail-4.8.1.ebuild:
  Version bump. Removed ebuild for previous version, as it contained bug,
  preventing it to run on python-2.3.

*getmail-4.8.0 (29 Feb 2008)

  29 Feb 2008; Andrej Kacian <ticho@gentoo.org> +getmail-4.8.0.ebuild:
  Version bump.

*getmail-4.7.8 (13 Feb 2008)

  13 Feb 2008; Andrej Kacian <ticho@gentoo.org> -getmail-4.6.2.ebuild,
  -getmail-4.7.2.ebuild, -getmail-4.7.3.ebuild, -getmail-4.7.4.ebuild,
  -getmail-4.7.5.ebuild, getmail-4.7.6.ebuild, getmail-4.7.7.ebuild,
  +getmail-4.7.8.ebuild:
  Version bump. Removed old ebuilds. Fix variable quoting.

  20 Nov 2007; Raúl Porcel <armin76@gentoo.org> getmail-4.7.6.ebuild:
  alpha/sparc stable wrt #195991

  16 Nov 2007; nixnut <nixnut@gentoo.org> getmail-4.7.6.ebuild:
  Stable on ppc wrt bug 195991

  14 Nov 2007; Steve Dibb <beandog@gentoo.org> getmail-4.7.6.ebuild:
  amd64 stable, bug 195991

  12 Nov 2007; Dawid Węgliński <cla@gentoo.org> getmail-4.7.6.ebuild:
  Stable on x86 (bug #195991)

*getmail-4.7.7 (08 Nov 2007)

  08 Nov 2007; Andrej Kacian <ticho@gentoo.org> +getmail-4.7.7.ebuild:
  Version bump.

*getmail-4.7.6 (09 Aug 2007)

  09 Aug 2007; Andrej Kacian <ticho@gentoo.org> +getmail-4.7.6.ebuild:
  Version bump.

  19 Jun 2007; Raúl Porcel <armin76@gentoo.org> getmail-4.7.2.ebuild:
  alpha stable wrt #172722

*getmail-4.7.5 (06 Jun 2007)

  06 Jun 2007; Andrej Kacian <ticho@gentoo.org> +getmail-4.7.5.ebuild:
  Version bump.

*getmail-4.7.4 (25 Apr 2007)

  25 Apr 2007; Andrej Kacian <ticho@gentoo.org> +getmail-4.7.4.ebuild:
  Version bump.

  16 Apr 2007; Daniel Gryniewicz <dang@gentoo.org> getmail-4.7.2.ebuild:
  Marked stable on amd64 for bug #172722

  02 Apr 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  getmail-4.7.2.ebuild:
  ppc stable, bug #172722

  31 Mar 2007; Andrej Kacian <ticho@gentoo.org> -getmail-4.6.7.ebuild,
  -getmail-4.7.0.ebuild, -getmail-4.7.1.ebuild, getmail-4.7.2.ebuild,
  getmail-4.7.3.ebuild:
  Remove line that removes COPYING file - upstream stopped installing it by
  default. Remove obsolete ebuilds.

  30 Mar 2007; Gustavo Zacarias <gustavoz@gentoo.org> getmail-4.7.2.ebuild:
  Stable on sparc wrt #172722

  30 Mar 2007; Christian Faulhammer <opfer@gentoo.org> getmail-4.7.2.ebuild:
  stable x86, bug 172722

*getmail-4.7.3 (19 Mar 2007)

  19 Mar 2007; Andrej Kacian <ticho@gentoo.org> +getmail-4.7.3.ebuild:
  Version bump.

*getmail-4.7.2 (21 Feb 2007)

  21 Feb 2007; Andrej Kacian <ticho@gentoo.org> +getmail-4.7.2.ebuild:
  Version bump.

*getmail-4.7.1 (02 Feb 2007)

  02 Feb 2007; Andrej Kacian <ticho@gentoo.org> +getmail-4.7.1.ebuild:
  Version bump.

  29 Jan 2007; Andrej Kacian <ticho@gentoo.org> getmail-4.6.2.ebuild,
  getmail-4.6.7.ebuild, getmail-4.7.0.ebuild:
  Do not gzip files installed to docdir. Bug #164308.

*getmail-4.7.0 (26 Jan 2007)

  26 Jan 2007; Andrej Kacian <ticho@gentoo.org> +getmail-4.7.0.ebuild:
  Version bump.

  06 Jan 2007; Fernando J. Pereda <ferdy@gentoo.org> -getmail-4.6.3.ebuild,
  -getmail-4.6.4.ebuild, -getmail-4.6.5.ebuild, -getmail-4.6.6.ebuild:
  QA: Clean unused versions.

*getmail-4.6.7 (05 Jan 2007)

  05 Jan 2007; Andrej Kacian <ticho@gentoo.org> -getmail-4.4.4.ebuild,
  -getmail-4.5.4.ebuild, -getmail-4.6.0.ebuild, -getmail-4.6.1.ebuild,
  +getmail-4.6.7.ebuild:
  Version bump. Removed obsolete ebuilds.

*getmail-4.6.6 (12 Dec 2006)

  12 Dec 2006; Andrej Kacian <ticho@gentoo.org> +getmail-4.6.6.ebuild:
  Version bump.

  01 Nov 2006; Steve Dibb <beandog@gentoo.org> getmail-4.6.2.ebuild:
  amd64 stable, wrt bug #143980

*getmail-4.6.5 (21 Oct 2006)

  21 Oct 2006; Andrej Kacian <ticho@gentoo.org> +getmail-4.6.5.ebuild:
  Version bump.

  21 Oct 2006; Aron Griffis <agriffis@gentoo.org> getmail-4.6.2.ebuild:
  Mark 4.6.2 stable on alpha

*getmail-4.6.4 (29 Sep 2006)

  29 Sep 2006; <ticho@gentoo.org> +getmail-4.6.4.ebuild:
  Version bump.

  18 Aug 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  getmail-4.6.2.ebuild:
  ppc stable, bug #143980

  16 Aug 2006; Gustavo Zacarias <gustavoz@gentoo.org> getmail-4.6.2.ebuild:
  Stable on sparc wrt #143980

  16 Aug 2006; Joshua Jackson <tsunam@gentoo.org> getmail-4.6.2.ebuild:
  Stable x86; bug #143980

*getmail-4.6.3 (24 Jun 2006)

  24 Jun 2006; Andrej Kacian <ticho@gentoo.org> +getmail-4.6.3.ebuild:
  Version bump.

  10 Jun 2006; Michael Hanselmann <hansmi@gentoo.org> getmail-4.6.0.ebuild:
  Stable on ppc.

*getmail-4.6.2 (09 Jun 2006)

  09 Jun 2006; Andrej Kacian <ticho@gentoo.org> +getmail-4.6.2.ebuild:
  Version bump.

  06 Jun 2006; Gustavo Zacarias <gustavoz@gentoo.org> getmail-4.6.0.ebuild:
  Stable on sparc

*getmail-4.6.1 (31 May 2006)

  31 May 2006; Andrej Kacian <ticho@gentoo.org> -getmail-4.4.3.ebuild,
  getmail-4.6.0.ebuild, +getmail-4.6.1.ebuild:
  Version bump. Removed 4.4.3. Marked 4.6.0 stable on x86.

*getmail-4.6.0 (07 Apr 2006)

  07 Apr 2006; Andrej Kacian <ticho@gentoo.org> +getmail-4.6.0.ebuild:
  Version bump.

  22 Mar 2006; Michael Hanselmann <hansmi@gentoo.org> getmail-4.5.4.ebuild:
  Stable on ppc.

  20 Mar 2006; Gustavo Zacarias <gustavoz@gentoo.org> getmail-4.5.4.ebuild:
  Stable on sparc

  18 Mar 2006; <ticho@gentoo.org> -getmail-4.5.2.ebuild,
  -getmail-4.5.3.ebuild, getmail-4.5.4.ebuild:
  4.5.4 stable on x86. Pruned obsolete ebuilds.

  17 Feb 2006; Michael Hanselmann <hansmi@gentoo.org> getmail-4.4.4.ebuild:
  Stable on ppc.

*getmail-4.5.4 (15 Feb 2006)

  15 Feb 2006; Andrej Kacian <ticho@gentoo.org> -getmail-4.3.11.ebuild,
  -getmail-4.3.14.ebuild, -getmail-4.4.1.ebuild, -getmail-4.4.2.ebuild,
  +getmail-4.5.4.ebuild:
  Version bump. Scrapped obsolete versions.

*getmail-4.5.3 (09 Feb 2006)

  09 Feb 2006; Andrej Kacian <ticho@gentoo.org> +getmail-4.5.3.ebuild:
  Version bump.

*getmail-4.5.2 (07 Feb 2006)

  07 Feb 2006; Andrej Kacian <ticho@gentoo.org> -getmail-4.5.1.ebuild,
  +getmail-4.5.2.ebuild:
  Version bump. Removed 4.5.1

  07 Feb 2006; Simon Stelling <blubb@gentoo.org> getmail-4.4.4.ebuild:
  stable on amd64

  07 Feb 2006; Aron Griffis <agriffis@gentoo.org> getmail-4.4.4.ebuild:
  Mark 4.4.4 stable on alpha

*getmail-4.5.1 (03 Feb 2006)

  03 Feb 2006; Andrej Kacian <ticho@gentoo.org> -getmail-4.5.0.ebuild,
  +getmail-4.5.1.ebuild:
  Another version bump, 4.5.1 fixes a bug in 4.5.0, which I removed.

*getmail-4.5.0 (03 Feb 2006)

  03 Feb 2006; Andrej Kacian <ticho@gentoo.org> +getmail-4.5.0.ebuild:
  Version bump.

  03 Feb 2006; Gustavo Zacarias <gustavoz@gentoo.org> getmail-4.4.4.ebuild:
  Stable on sparc

  02 Feb 2006; Andrej Kacian <ticho@gentoo.org> getmail-4.4.4.ebuild:
  Stable on x86.

  15 Jan 2006; Michael Hanselmann <hansmi@gentoo.org> getmail-4.4.3.ebuild:
  Stable on ppc.

  05 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org> getmail-4.4.3.ebuild:
  Stable on sparc

  03 Jan 2006; Fernando J. Pereda <ferdy@gentoo.org> getmail-4.4.3.ebuild:
  Stable on alpha

*getmail-4.4.4 (03 Jan 2006)

  03 Jan 2006; Andrej Kacian <ticho@gentoo.org> getmail-4.4.3.ebuild,
  +getmail-4.4.4.ebuild:
  Version bump. 4.4.3 stable on x86.

  24 Dec 2005; Michael Hanselmann <hansmi@gentoo.org> getmail-4.4.2.ebuild:
  Stable on ppc.

  20 Dec 2005; Gustavo Zacarias <gustavoz@gentoo.org> getmail-4.4.2.ebuild:
  Stable on sparc

  19 Dec 2005; Andrej Kacian <ticho@gentoo.org> getmail-4.4.2.ebuild:
  Stable on x86.

  12 Dec 2005; Gustavo Zacarias <gustavoz@gentoo.org> getmail-4.4.1.ebuild:
  Stable on sparc

  12 Dec 2005; Andrej Kacian <ticho@gentoo.org> getmail-4.3.14.ebuild,
  getmail-4.4.1.ebuild:
  4.3.14 and 4.4.1 stable on x86.

*getmail-4.4.3 (02 Dec 2005)

  02 Dec 2005; Andrej Kacian <ticho@gentoo.org> +getmail-4.4.3.ebuild:
  Version bump.

*getmail-4.4.2 (13 Nov 2005)

  13 Nov 2005; Andrej Kacian <ticho@gentoo.org> +getmail-4.4.2.ebuild:
  Version bump.

*getmail-4.4.1 (10 Nov 2005)

  10 Nov 2005; Andrej Kacian <ticho@gentoo.org> -getmail-4.3.12.ebuild,
  -getmail-4.3.13.ebuild, -getmail-4.4.0.ebuild, +getmail-4.4.1.ebuild:
  Version bump. Removing older ebuilds.

*getmail-4.4.0 (09 Nov 2005)

  09 Nov 2005; Andrej Kacian <ticho@gentoo.org> +getmail-4.4.0.ebuild:
  Version bump. Removed unnecessarry sed call.

*getmail-4.3.14 (02 Nov 2005)

  02 Nov 2005; Andrej Kacian <ticho@gentoo.org> +getmail-4.3.14.ebuild:
  Version bump.

*getmail-4.3.13 (15 Oct 2005)

  15 Oct 2005; Andrej Kacian <ticho@gentoo.org> +getmail-4.3.13.ebuild:
  Version bump.

  14 Oct 2005; Andrej Kacian <ticho@gentoo.org> -getmail-4.3.6.ebuild,
  -getmail-4.3.7.ebuild, -getmail-4.3.8.ebuild, -getmail-4.3.10.ebuild,
  getmail-4.3.11.ebuild:
  4.3.11 stable on amd64. Removed older ebuilds.

  14 Oct 2005; Andrej Kacian <ticho@gentoo.org> -getmail-4.3.3.ebuild,
  -getmail-4.3.4.ebuild, -getmail-4.3.5.ebuild:
  Removed older ebuilds.

*getmail-4.3.12 (14 Oct 2005)

  14 Oct 2005; Andrej Kacian <ticho@gentoo.org> +getmail-4.3.12.ebuild:
  Version bump. Added postinst and postrm python magic.

  13 Aug 2005; Michael Hanselmann <hansmi@gentoo.org> getmail-4.3.11.ebuild:
  Stable on ppc.

  01 Aug 2005; Fernando J. Pereda <ferdy@gentoo.org> getmail-4.3.11.ebuild:
  stable on alpha

  07 Jul 2005; Gustavo Zacarias <gustavoz@gentoo.org> getmail-4.3.11.ebuild:
  Stable on sparc

  07 Jul 2005; Andrej Kacian <ticho@gentoo.org> getmail-4.3.11.ebuild:
  Stable on x86.

  02 Jul 2005; Bryan Østergaard <kloeri@gentoo.org> getmail-4.3.10.ebuild:
  Stable on alpha.

  26 Jun 2005; Michael Hanselmann <hansmi@gentoo.org> getmail-4.3.10.ebuild:
  Stable on ppc.

  21 Jun 2005; Gustavo Zacarias <gustavoz@gentoo.org> getmail-4.3.10.ebuild:
  Stable on sparc

  18 Jun 2005; Andrej Kacian <ticho@gentoo.org> getmail-4.3.10.ebuild:
  Stable on x86.

*getmail-4.3.11 (18 Jun 2005)

  18 Jun 2005; Andrej Kacian <ticho@gentoo.org> +getmail-4.3.11.ebuild:
  Version bump.

  17 Jun 2005; Michael Hanselmann <hansmi@gentoo.org> getmail-4.3.8.ebuild:
  Stable on ppc.

  12 Jun 2005; Bryan Østergaard <kloeri@gentoo.org> getmail-4.3.8.ebuild:
  Stable on alpha.

  08 Jun 2005; Gustavo Zacarias <gustavoz@gentoo.org> getmail-4.3.8.ebuild:
  Stable on sparc

  06 Jun 2005; Andrej Kacian <ticho@gentoo.org> getmail-4.3.8.ebuild:
  Stable on x86.

  24 May 2005; Andrej Kacian <ticho@gentoo.org>
  -files/getmail-4.3.9-fix.patch, -getmail-4.3.9.ebuild:
  Removed 4.3.9, as it was faulty.

*getmail-4.3.10 (19 May 2005)

  19 May 2005; Andrej Kacian <ticho@gentoo.org> +getmail-4.3.10.ebuild:
  Version bump.

  19 May 2005; Andrej Kacian <ticho@gentoo.org>
  +files/getmail-4.3.9-fix.patch, getmail-4.3.9.ebuild:
  Fix missing import and deprecation warning for python 2.4.

*getmail-4.3.9 (19 May 2005)

  19 May 2005; Andrej Kacian <ticho@gentoo.org> +getmail-4.3.9.ebuild:
  Version bump.

  17 May 2005; Michael Hanselmann <hansmi@gentoo.org> getmail-4.3.6.ebuild:
  Stable on ppc.

  13 May 2005; Fernando J. Pereda <ferdy@gentoo.org> getmail-4.3.6.ebuild:
  4.3.6 alpha stable

*getmail-4.3.8 (06 May 2005)

  06 May 2005; Andrej Kacian <ticho@gentoo.org> +getmail-4.3.8.ebuild:
  Version bump.

  01 May 2005; Tom Martin <slarti@gentoo.org> getmail-4.3.6.ebuild:
  Stable on amd64, sparc.

  01 May 2005; Andrej Kacian <ticho@gentoo.org> getmail-4.3.6.ebuild:
  Stable on x86.

*getmail-4.3.7 (01 May 2005)

  01 May 2005; Andrej Kacian <ticho@gentoo.org> getmail-4.3.4.ebuild,
  getmail-4.3.5.ebuild, +getmail-4.3.7.ebuild:
  Version bump. Mark 4.3.4 and 4.3.5 stable on x86.

*getmail-4.3.6 (09 Apr 2005)

  09 Apr 2005; Andrej Kacian <ticho@gentoo.org> +getmail-4.3.6.ebuild:
  Version bump. Closes #88465, reported by Thomas Kirchner <gentoo@halffull.org>.

*getmail-4.3.5 (06 Apr 2005)

  06 Apr 2005; Andrej Kacian <ticho@gentoo.org> +getmail-4.3.5.ebuild:
  Version bump.

  30 Mar 2005; Andrej Kacian <ticho@gentoo.org> -getmail-4.2.5.ebuild,
  -getmail-4.2.5-r1.ebuild, -getmail-4.2.6.ebuild, -getmail-4.3.0.ebuild,
  -getmail-4.3.1.ebuild, -getmail-4.3.1-r1.ebuild, -getmail-4.3.2.ebuild:
  Removed old deprecated ebuilds.

  30 Mar 2005; Bryan Østergaard <kloeri@gentoo.org> getmail-4.3.3.ebuild:
  Stable on alpha, bug 87181.

  30 Mar 2005; Karol Wojtaszek <sekretarz@gentoo.org> getmail-4.3.3.ebuild:
  Stable on amd64, bug #87181

  30 Mar 2005; Michael Hanselmann <hansmi@gentoo.org> getmail-4.3.3.ebuild:
  Stable on ppc.

  29 Mar 2005; Gustavo Zacarias <gustavoz@gentoo.org> getmail-4.3.3.ebuild:
  Stable on sparc wrt #87181

*getmail-4.3.4 (29 Mar 2005)

  29 Mar 2005; Andrej Kacian <ticho@gentoo.org> getmail-4.3.3.ebuild,
  +getmail-4.3.4.ebuild:
  Version bump. 4.3.3 stable on x86.

  19 Mar 2005; Bryan Østergaard <kloeri@gentoo.org> getmail-4.3.1.ebuild:
  Stable on alpha.

*getmail-4.3.3 (21 Feb 2005)

  21 Feb 2005; Andrej Kacian <ticho@gentoo.org> +getmail-4.3.3.ebuild:
  Version bump.

  17 Feb 2005; Andrej Kacian <ticho@gentoo.org> getmail-4.2.5-r1.ebuild,
  getmail-4.2.5.ebuild, getmail-4.2.6.ebuild, getmail-4.3.0.ebuild,
  getmail-4.3.1-r1.ebuild, getmail-4.3.1.ebuild, getmail-4.3.2.ebuild:
  Project page moved, adjusted HOMEPAGE and SRC_URI in all ebuilds.

  14 Feb 2005; Gustavo Zacarias <gustavoz@gentoo.org> getmail-4.3.1.ebuild:
  Stable on sparc

*getmail-4.2.5-r1 (09 Feb 2005)

  09 Feb 2005; Andrej Kacian <ticho@gentoo.org> +files/python2.4-fix.patch,
  +getmail-4.2.5-r1.ebuild, +getmail-4.3.1-r1.ebuild, getmail-4.3.2.ebuild:
  Fix deprecation warnings for "strict" usage in python 2.4. Patch submitted
  by Marien Zwart <m_zwart@123mail.org>, bug #80073.

*getmail-4.3.2 (09 Feb 2005)

  09 Feb 2005; Andrej Kacian <ticho@gentoo.org> getmail-4.2.5.ebuild,
  getmail-4.2.6.ebuild, getmail-4.3.0.ebuild, getmail-4.3.1.ebuild,
  +getmail-4.3.2.ebuild:
  Version bump. Stable on x86 up to 4.3.1. 4.2.5 unstable on ppc, due to
  lack of stable >=python-2.3.3.

  05 Feb 2005; Andrej Kacian <ticho@gentoo.org> -getmail-4.2.0.ebuild,
  -getmail-4.2.2.ebuild, -getmail-4.2.3.ebuild, -getmail-4.2.4.ebuild:
  Removed old ebuilds.

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

  21 Jan 2005; Michael Hanselmann <hansmi@gentoo.org> getmail-4.2.5.ebuild:
  Stable on ppc, bug 78609.

  19 Jan 2005; Jan Brinkmann <luckyduck@gentoo.org> getmail-4.2.5.ebuild:
  stable on amd64.

*getmail-4.3.1 (19 Jan 2005)

  19 Jan 2005; Andrej Kacian <ticho@gentoo.org> +getmail-4.3.1.ebuild:
  Version bump.

  17 Jan 2005; Gustavo Zacarias <gustavoz@gentoo.org> getmail-4.2.5.ebuild:
  Stable on sparc

  14 Jan 2005; Andrej Kacian <ticho@gentoo.org> getmail-4.2.3.ebuild,
  getmail-4.2.4.ebuild, getmail-4.2.5.ebuild:
  Stable on x86.

*getmail-4.3.0 (11 Jan 2005)

  11 Jan 2005; Andrej Kacian <ticho@gentoo.org> +getmail-4.3.0.ebuild:
  Version bump. Closes #77459, reported by Daniel Webert
  <rockoo@rockoo.homelinux.org>.

*getmail-4.2.6 (09 Jan 2005)

  09 Jan 2005; Andrej Kacian <ticho@gentoo.org> :
  Version bump. Closes #77037, reported by Daniel Webert
  <rockoo@rockoo.homelinux.org>.

*getmail-4.2.5 (12 Dec 2004)

  12 Dec 2004; Andrej Kacian <ticho@gentoo.org> +getmail-4.2.5.ebuild:
  Version bump. Closes #74194, reported by Daniel Webert
  <rockoo@rockoo.homelinux.org>.

  07 Dec 2004; Gustavo Zacarias <gustavoz@gentoo.org> getmail-4.2.2.ebuild:
  Stable on sparc

  04 Dec 2004; Tom Martin <slarti@gentoo.org> getmail-4.2.2.ebuild:
  Stable on amd64.

  24 Nov 2004; Andrej Kacian <ticho@gentoo.org> getmail-4.2.2.ebuild:
  Stable on x86.

*getmail-4.2.4 (23 Nov 2004)

  23 Nov 2004; Andrej Kacian <ticho@gentoo.org> +getmail-4.2.4.ebuild:
  Version bump. Closes #72222, reported by Daniel Webert
  <rockoo@rockoo.homelinux.org>.

*getmail-4.2.3 (20 Nov 2004)

  20 Nov 2004; Andrej Kacian <ticho@gentoo.org> +getmail-4.2.3.ebuild:
  Version bump. Closes #71829, reported by Daniel Webert
  <rockoo@rockoo.homelinux.org>.

*getmail-4.2.2 (14 Oct 2004)

  14 Oct 2004; Andrej Kacian <ticho@gentoo.org> +getmail-4.2.2.ebuild:
  Version bump. Closes #67344, reported by tove <bugs@veller.net>.

  14 Oct 2004; Andrej Kacian <ticho@gentoo.org> -getmail-4.0.10.ebuild,
  -getmail-4.0.2-r1.ebuild, -getmail-4.0.6.ebuild, -getmail-4.0.8.ebuild,
  -getmail-4.1.3.ebuild, -getmail-4.1.4.ebuild, -getmail-4.1.5.ebuild:
  Removed all ebuilds < 4.2.0 (#67344, #64643).

*getmail-3.2.4 (21 Sep 2004)

  21 Sep 2004; Andrej Kacian <ticho@gentoo.org> -getmail-3.1.7.ebuild,
  -getmail-3.2.1.ebuild, -getmail-3.2.4.ebuild:
  Removed all getmail-3 ebuilds, since 4.2.0 is now stable on all archs set in
  KEYWORDS.

  21 Sep 2004; Danny van Dyk <kugelfang@gentoo.org> getmail-4.2.0.ebuild:
  Marked stable on amd64.

  20 Sep 2004; Bryan Østergaard,,, <kloeri@gentoo.org> getmail-4.2.0.ebuild:
  Stable on alpha, bug 64643.

  20 Sep 2004; Andrej Kacian <ticho@gentoo.org> getmail-4.2.0.ebuild:
  Stable on x86 (GLSA bug #64643)

  20 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> getmail-4.2.0.ebuild:
  Stable on sparc wrt #64643

  20 Sep 2004; <SeJo@gentoo.org> getmail-4.2.0.ebuild:
  marked ppc gsla bug: 64643

*getmail-4.2.0 (19 Sep 2004)

  19 Sep 2004; Andrej Kacian <ticho@gentoo.org> +getmail-4.2.0.ebuild:
  Version bump for security bug #64643.

*getmail-4.1.5 (15 Sep 2004)

  15 Sep 2004; Andrej Kacian <ticho@gentoo.org> +getmail-4.1.5.ebuild:
  Version bump. Closes (once again) #61527, reported by tove <bugs@veller.net>.

  14 Sep 2004; Andrej Kacian <ticho@gentoo.org> getmail-4.0.2-r1.ebuild:
  Pretty much stable on x86.

*getmail-4.1.4 (04 Sep 2004)

  04 Sep 2004; Andrej Kacian <ticho@gentoo.org> +getmail-4.1.4.ebuild:
  Version bump.

*getmail-4.1.3 (01 Sep 2004)

  01 Sep 2004; Andrej Kacian <ticho@gentoo.org> :
  Version bump, closes #61527, thanks to Daniel Webert
  <rockoo@rockoo.homelinux.org>.

  13 Aug 2004; Ciaran McCreesh <ciaranm@gentoo.org> getmail-4.0.2-r1.ebuild:
  Stable on sparc

  13 Aug 2004; Tom Martin <slarti@gentoo.org> getmail-4.0.2-r1.ebuild:
  Marked stable on amd64.

*getmail-4.0.10 (13 Aug 2004)

  13 Aug 2004; Tom Martin <slarti@gentoo.org> +getmail-4.0.10.ebuild:
  Version bumped to getmail-4.0.10. Thanks to Daniel Webert
  <rockoo@rockoo.homelinux.org> for reporting in bug 60183.

  06 Aug 2004; Tom Martin <slarti@gentoo.org> getmail-4.0.6.ebuild,
  getmail-4.0.8.ebuild:
  Stylistic changes in gzipping of man pages.

*getmail-4.0.8 (06 Aug 2004)

  06 Aug 2004; Tom Martin <slarti@gentoo.org> getmail-4.0.6.ebuild,
  +getmail-4.0.8.ebuild:
  Version bump -> 4.0.8. Tidy, and handle upstream's new method of handling docs
  so it's consistent with Gentoo's. Thanks to Frank Benkstein <benkstein@gmx.de>
  for reporting the new version in bug 59618.

*getmail-4.0.6 (06 Aug 2004)

  04 Aug 2004; Tom Martin <slarti@gentoo.org> :
  Version bump, thanks to Martin Klaffenböck <martin.klaffenboeck@gmx.de> for
  reporting. Resolves bug #59400.

*getmail-4.0.2-r1 (02 Aug 2004)

  02 Aug 2004; Tuan Van <langthang@gentoo.org> +getmail-4.0.2-r1.ebuild:
  Revision bump. Thanks to Frank Benkstein <benkstein@gmx.de>. Resolved 
  bug #59101.

*getmail-4.0.2 (31 Jul 2004)

  31 Jul 2004; Tuan Van <langthang@gentoo.org> +getmail-4.0.2.ebuild:
  Version bump, resolve bug #58998.

*getmail-4.0.1 (30 Jul 2004)

  30 Jul 2004; Tuan Van <langthang@gentoo.org> +getmail-4.0.1.ebuild:
  version bump, resolve bug #56673.

  07 Jul 2004; Tuan Van<langthang@gentoo.org> :
  Version bump bug #47741. Thanks to tove <bugs-at-veller-dot-net>, Daniel 
  Webert <daniel_webert-at-web-dot-de>.

  07 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> getmail-3.2.1.ebuild:
  Stable on alpha.

  08 Nov 2003; Brad House <brad_mssw@gentoo.org> getmail-3.2.1.ebuild:
  add ~amd64 flag

*getmail-3.2.1 (19 Oct 2003)

  19 Oct 2003; Heinrich Wendel <lanius@gentoo.org> getmail-3.1.7.ebuild,
  getmail-3.2.1.ebuild:
  stable bump, version bump

*getmail-3.1.7 (21 Jun 2003)

  21 Jun 2003; Jon Portnoy <avenj@gentoo.org> getmail-3.1.7.ebuild :
  Version bump, submitted by Wim Uyttebroek in bug 22785.

*getmail-3.1.3 (12 May 2003)
 
  13 Jul 2003; Daniel Ahlberg <aliz@gentoo.org> :
  Added missing changelog entry.

*getmail-3.1.1 (11 May 2003)

  11 May 2003; Jon Portnoy <avenj@gentoo.org> getmail-3.1.3.ebuild :
  Version bump, submitted by Alex F and webmaster@quantumz.net in 
  bug 16204.

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
*getmail-2.3.8 (18 Jun 2002)

  4 Aug 2002; Calum Selkirk <cselkirk@gentoo.org> getmail-2.3.8.ebuild :

  Added ppc to KEYWORDS.

  18 Jun 2002; Gabriele Giorgetti <stroke@gentoo.org> ChangeLog :

  New package. Ebuild author:  Jeremiah Mahler <jmahler@pacbell.net>