summaryrefslogtreecommitdiff
blob: 6c7e60dd8d236126f449a5c73055e1b346c5d5a7 (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
# ChangeLog for app-shells/bash-completion
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.205 2009/12/25 02:32:43 darkside Exp $

*bash-completion-1.1-r5 (25 Dec 2009)

  25 Dec 2009; Jeremy Olexa <darkside@gentoo.org>
  -bash-completion-1.1-r4.ebuild, +bash-completion-1.1-r5.ebuild:
  Fix rsync ssh completion, bug 297818

  15 Dec 2009; Raúl Porcel <armin76@gentoo.org>
  bash-completion-1.1-r4.ebuild:
  alpha/ia64/s390 stable wrt #295348

  11 Dec 2009; Brent Baude <ranger@gentoo.org>
  bash-completion-1.1-r4.ebuild:
  Marking bash-completion-1.1-r4 ppc64 for bug 295348

  07 Dec 2009; Tiago Cunha <tcunha@gentoo.org>
  bash-completion-1.1-r4.ebuild:
  stable sparc, bug 295348

  07 Dec 2009; Jeroen Roovers <jer@gentoo.org>
  bash-completion-1.1-r4.ebuild:
  Stable for HPPA (bug #295348).

  02 Dec 2009; Markus Meier <maekke@gentoo.org>
  bash-completion-1.1-r4.ebuild:
  amd64/arm/x86 stable, bug #295348

*bash-completion-1.1-r4 (01 Dec 2009)

  01 Dec 2009; Jeremy Olexa <darkside@gentoo.org>
  -bash-completion-1.1-r3.ebuild, +bash-completion-1.1-r4.ebuild,
  files/bash-completion.sh:
  Revbump for minor ommision in bash-completion.sh file which didn't clean
  up the env properly. bug 293871

  11 Nov 2009; Fabian Groffen <grobian@gentoo.org>
  bash-completion-1.1-r3.ebuild:
  Marked ~m68k-mint, thanks Alan Hourihane, bug #291402

*bash-completion-1.1-r3 (21 Oct 2009)

  21 Oct 2009; Jeremy Olexa <darkside@gentoo.org>
  -bash-completion-1.1-r2.ebuild, +bash-completion-1.1-r3.ebuild:
  revbump to fix bug 263105 - long standing issue since bash-4 was
  stabilized

*bash-completion-1.1-r2 (16 Oct 2009)

  16 Oct 2009; Jeremy Olexa <darkside@gentoo.org>
  -bash-completion-1.1-r1.ebuild, +bash-completion-1.1-r2.ebuild,
  files/bash-completion.sh:
  revbump for another init script ommision, forgot to source
  ~/.bash_completion.d/base. Add Gentoo Prefix compatibility to ebuild

  16 Oct 2009; Jeremy Olexa <darkside@gentoo.org>
  bash-completion-1.1-r1.ebuild:
  Fix postinst message to be relevant again

*bash-completion-1.1-r1 (16 Oct 2009)

  16 Oct 2009; Jeremy Olexa <darkside@gentoo.org>
  -bash-completion-1.1.ebuild, +bash-completion-1.1-r1.ebuild,
  files/bash-completion.sh:
  Fix my previous screwup. The base module exists again and hopefully works,
  bug 289240

*bash-completion-1.1 (15 Oct 2009)

  15 Oct 2009; Jeremy Olexa <darkside@gentoo.org>
  -bash-completion-1.0-r3.ebuild, +bash-completion-1.1.ebuild,
  files/bash-completion.sh:
  Version bump. Many new completion modules. Note: the 'base' module is
  always enabled now.

  09 Oct 2009; Raúl Porcel <armin76@gentoo.org>
  bash-completion-1.0-r5.ebuild:
  ia64/s390 stable wrt #270008

  03 Oct 2009; Markus Meier <maekke@gentoo.org>
  bash-completion-1.0-r5.ebuild:
  arm stable, bug #270008

  03 Oct 2009; Tiago Cunha <tcunha@gentoo.org>
  bash-completion-1.0-r5.ebuild:
  stable sparc, bug 270008

  26 Sep 2009; Brent Baude <ranger@gentoo.org>
  bash-completion-1.0-r5.ebuild:
  Marking bash-completion-1.0-r5 ppc64 for bug 270008

  19 Sep 2009; nixnut <nixnut@gentoo.org> bash-completion-1.0-r5.ebuild:
  ppc stable #270008

  16 Sep 2009; Christian Faulhammer <fauli@gentoo.org>
  bash-completion-1.0-r5.ebuild:
  stable x86, bug 270008

  15 Sep 2009; Jeroen Roovers <jer@gentoo.org>
  bash-completion-1.0-r5.ebuild:
  Stable for HPPA (bug #270008).

  11 Sep 2009; Jeremy Olexa <darkside@gentoo.org>
  bash-completion-1.0-r5.ebuild:
  amd64 stable, bug 270008

  07 Sep 2009; Tobias Klausmann <klausman@gentoo.org>
  bash-completion-1.0-r5.ebuild:
  Stable on alpha, bug #270008

*bash-completion-1.0-r5 (13 Jun 2009)

  13 Jun 2009; Jeremy Olexa <darkside@gentoo.org>
  +files/bash-completion-1.0-shadow-compat.patch,
  -bash-completion-1.0-r4.ebuild, +bash-completion-1.0-r5.ebuild:
  Add upstream patch for buggy chsh behavior, bug 271521

*bash-completion-1.0-r4 (03 Jun 2009)

  03 Jun 2009; Jeremy Olexa <darkside@gentoo.org>
  +bash-completion-1.0-r4.ebuild:
  Fix incompatibility with sys-apps/module-init-tools-3.8, bug 271286

  03 Jun 2009; Jeremy Olexa <darkside@gentoo.org>
  -bash-completion-0.20081219-r1.ebuild:
  remove old

  31 May 2009; Brent Baude <ranger@gentoo.org>
  bash-completion-1.0-r3.ebuild:
  Marking bash-completion-1.0-r3 ppc64 for bug 265504

  21 May 2009; Raúl Porcel <armin76@gentoo.org>
  bash-completion-1.0-r3.ebuild:
  arm/ia64/s390 stable wrt #265504

  19 May 2009; Tiago Cunha <tcunha@gentoo.org>
  bash-completion-1.0-r3.ebuild:
  stable sparc, bug 265504

  18 May 2009; Christian Faulhammer <fauli@gentoo.org>
  bash-completion-1.0-r3.ebuild:
  stable x86, bug 265504

  17 May 2009; nixnut <nixnut@gentoo.org> bash-completion-1.0-r3.ebuild:
  ppc stable #265504

  16 May 2009; Jeremy Olexa <darkside@gentoo.org>
  bash-completion-1.0-r3.ebuild:
  amd64 stable, bug 265504

  16 May 2009; Jeroen Roovers <jer@gentoo.org>
  bash-completion-1.0-r3.ebuild:
  Stable for HPPA (bug #265504).

  16 May 2009; Tobias Klausmann <klausman@gentoo.org>
  bash-completion-1.0-r3.ebuild:
  Stable on alpha, bug #265504

*bash-completion-1.0-r3 (14 Apr 2009)

  14 Apr 2009; Jeremy Olexa <darkside@gentoo.org>
  -bash-completion-1.0-r2.ebuild, +bash-completion-1.0-r3.ebuild:
  it is better to have a revision bump here so we can avoid any file collision
  business in the future.

  14 Apr 2009; Jeremy Olexa <darkside@gentoo.org>
  bash-completion-1.0-r2.ebuild:
  add cowsay blocker due to file collision, bug 266112

*bash-completion-1.0-r2 (12 Apr 2009)

  12 Apr 2009; Jeremy Olexa <darkside@gentoo.org>
  -bash-completion-1.0-r1.ebuild, +bash-completion-1.0-r2.ebuild:
  Fix inconsistent file name change during upgrade path. Do not break existing
  setups. bug 265807

*bash-completion-0.20081219-r1 (10 Apr 2009)

  10 Apr 2009; Jeremy Olexa <darkside@gentoo.org>
  +bash-completion-0.20081219-r1.ebuild,
  -bash-completion-20081219-r1.ebuild:
  sort out the upgrade path. This will make it 'seem' like a downgrade but it
  is not. v0.* is stable, v1.0* is ~arch

*bash-completion-1.0-r1 (09 Apr 2009)

  09 Apr 2009; Jeremy Olexa <darkside@gentoo.org>
  +files/bash-completion-1.0-bash4.patch, -bash-completion-1.0.ebuild,
  +bash-completion-1.0-r1.ebuild:
  Add patch for bash4, see bug 262246

  09 Apr 2009; Jeremy Olexa <darkside@gentoo.org>
  bash-completion-1.0.ebuild, bash-completion-20081219-r1.ebuild:
  Add missing dep on sys-apps/miscfiles. bug 262291 by Jeroen Roovers

*bash-completion-1.0 (09 Apr 2009)

  09 Apr 2009; Jeremy Olexa <darkside@gentoo.org>
  +files/bash-completion-1.0-gentoo.patch, +bash-completion-1.0.ebuild:
  Version bump, bug 265240. Big thanks to ColdWind for re-working the awk
  split in the ebuild

  07 Apr 2009; Jeremy Olexa <darkside@gentoo.org>
  -files/20050121/01_all_gkrellm.diff, -files/20050121/03_all_timidity.diff,
  -files/20050121/07_all_find.diff, -files/20050121/02_all_cvs.diff,
  -files/20050121/04_all_mplayer.diff, -files/20050121/08_all_lvm.diff,
  -files/20050121/05_all_muttng.diff, -files/20050121/09_all_command.diff,
  -files/20050121/06_all_tar.diff, -files/20050721/01_all_gkrellm.diff,
  -files/20050721/02_all_cvs.diff, -files/20050721/03_all_find.diff,
  -files/20050721/04_all_command.diff, -files/20060301/01_all_no_xine.diff,
  -files/20060301/02_all_mplayer_flac.diff,
  -bash-completion-20050121-r10.ebuild, -bash-completion-20050721.ebuild,
  -bash-completion-20060301.ebuild, -bash-completion-20060301-r3.ebuild:
  remove old

  18 Mar 2009; Joseph Jezak <josejx@gentoo.org>
  bash-completion-20081219-r1.ebuild:
  Marked ppc stable for bug #259724.

  15 Mar 2009; Brent Baude <ranger@gentoo.org>
  bash-completion-20081219-r1.ebuild:
  stable ppc64, bug 259724

  14 Mar 2009; Raúl Porcel <armin76@gentoo.org>
  bash-completion-20081219-r1.ebuild:
  arm/ia64/s390 stable wrt #259724

  09 Mar 2009; Tiago Cunha <tcunha@gentoo.org>
  bash-completion-20081219-r1.ebuild:
  stable sparc, bug 259724

  08 Mar 2009; Tobias Klausmann <klausman@gentoo.org>
  bash-completion-20081219-r1.ebuild:
  Stable on alpha, bug #259724

  07 Mar 2009; Christian Faulhammer <fauli@gentoo.org>
  bash-completion-20081219-r1.ebuild:
  x86 stable, bug 259724

  07 Mar 2009; Jeremy Olexa <darkside@gentoo.org>
  bash-completion-20081219-r1.ebuild:
  amd64 stable, bug 259724

  06 Mar 2009; Jeroen Roovers <jer@gentoo.org>
  bash-completion-20081219-r1.ebuild:
  Stable for HPPA (bug #259724).

  27 Feb 2009; Jeremy Olexa <darkside@gentoo.org> metadata.xml:
  I will monitor this through the shell-tools alias

*bash-completion-20081219-r1 (21 Feb 2009)

  21 Feb 2009; Jeremy Olexa <darkside@gentoo.org>
  -bash-completion-20081219.ebuild, +bash-completion-20081219-r1.ebuild:
  remove hg completion. dev-util/mercurial provides it & upstream b-c dropped
  it as well in future versions. bug 259818

  20 Feb 2009; Jeremy Olexa <darkside@gentoo.org>
  -bash-completion-20081218-r1.ebuild, +bash-completion-20081219.ebuild:
  New snapshot from upstream repo, only change is subversion module is now
  split up. Fixes bug 171909

*bash-completion-20081219 (20 Feb 2009)

  20 Feb 2009; Jeremy Olexa <darkside@gentoo.org>
  -bash-completion-20081218-r1.ebuild, +bash-completion-20081219.ebuild:
  New snapshot from upstream, only change is subversion module is now split
  up. Fixes bug 171909

  20 Feb 2009; Jeremy Olexa <darkside@gentoo.org>
  bash-completion-20081218-r1.ebuild:
  don't provide svk completion. svk upstream provides it and we assume that
  copy is as good or better. bug #146726

*bash-completion-20081218-r1 (20 Feb 2009)

  20 Feb 2009; Jeremy Olexa <darkside@gentoo.org>
  -bash-completion-20081218.ebuild, +bash-completion-20081218-r1.ebuild:
  Fix bug in bash completion for lzma man pages. Fix by Jan Hruban in bug
  254814. Convert to EAPI-2, add die() messages as needed

  11 Feb 2009; Jeremy Olexa <darkside@gentoo.org> metadata.xml:
  add myself to metadata

  08 Feb 2009; Joseph Jezak <josejx@gentoo.org>
  bash-completion-20060301.ebuild:
  Marked ppc/ppc64 stable for bug #171297.

  06 Feb 2009; Jeroen Roovers <jer@gentoo.org>
  bash-completion-20060301.ebuild:
  Stable for HPPA (bug #171297).

  31 Jan 2009; Tobias Klausmann <klausman@gentoo.org>
  bash-completion-20060301.ebuild:
  Stable on alpha, bug #171297

  11 Jan 2009; Markus Meier <maekke@gentoo.org>
  bash-completion-20060301.ebuild:
  x86 stable, bug #171297

  08 Jan 2009; Jeremy Olexa <darkside@gentoo.org>
  bash-completion-20060301.ebuild:
  amd64 stable, bug 171297

*bash-completion-20081218 (18 Dec 2008)

  18 Dec 2008; Santiago M. Mola <coldwind@gentoo.org>
  +bash-completion-20081218.ebuild:
  Version bump, #249271. Fixes #145727, #193731, #204702, #211250, #226009
  and #251096.

  14 Dec 2008; Santiago M. Mola <coldwind@gentoo.org>
  bash-completion-20060301-r3.ebuild:
  Add a pkg_postinst message about sourcing bash-completion.sh on non-login
  shells (bug #250838). Fixed a typo.

*bash-completion-20060301-r3 (15 Jun 2008)

  15 Jun 2008; Bo Ørsted Andresen <zlin@gentoo.org>
  files/bash-completion.sh, -bash-completion-20060301-r2.ebuild,
  +bash-completion-20060301-r3.ebuild:
  Get rid of 'bash: BASH_COMPLETION: readonly variable' message.

  12 Jan 2008; Vlastimil Babka <caster@gentoo.org>
  bash-completion-20050121-r10.ebuild, bash-completion-20050721.ebuild,
  bash-completion-20060301.ebuild, bash-completion-20060301-r2.ebuild:
  Convert einfo to elog.

  31 May 2007; Mike Kelly <pioto@gentoo.org> metadata.xml:
  Remove myself from maintainers.xml. I haven't had success getting this
  up-to-date.

  19 Mar 2007; Bryan Østergaard <kloeri@gentoo.org> metadata.xml:
  Remove ka0ttic from metadata.xml due to retirement.

  21 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog:
  Transition to Manifest2.

  04 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> ChangeLog:
  Regenerate digest in Manifest2 format.

  12 Dec 2006; Mike Kelly <pioto@gentoo.org> metadata.xml:
  Add myself to metadata.xml

*bash-completion-20060301-r2 (22 Nov 2006)

  22 Nov 2006; Aron Griffis <agriffis@gentoo.org> files/bash-completion.sh,
  -bash-completion-20060301-r1.ebuild, +bash-completion-20060301-r2.ebuild:
  Fix bugs in files/bash-completion.sh, in particular default was renamed to
  base during development but forgot to change it here

*bash-completion-20060301-r1 (20 Nov 2006)

  20 Nov 2006; Aron Griffis <agriffis@gentoo.org> +files/bash-completion.sh,
  +bash-completion-20060301-r1.ebuild:
  Break /etc/bash_completion into /usr/share/bash-completion/{.pre,base,.post}
  so that the base definitions can be eselected. Rename
  /etc/profile.d/bash-completion to have a .sh extension so it's loaded
  automatically by /etc/profile. This is okay because it doesn't do anything
  until modules have been eselected. All of this makes it possible to
  configure bash-completions entirely with eselect instead of needing to add
  snippets to one's .bashrc

*bash-completion-20060301 (02 Mar 2006)

  02 Mar 2006; Aaron Walker <ka0ttic@gentoo.org>
  +files/20060301/01_all_no_xine.diff,
  +files/20060301/02_all_mplayer_flac.diff,
  +bash-completion-20060301.ebuild:
  Version bump; closes bugs 101311, 111681, 111765, 117770, and 122591.

  25 Nov 2005; Tom Gall <tgall@gentoo.org> 
  bash-completion-20050121-r10.ebuild:
  stable on ppc64

*bash-completion-20050121-r10 (24 Jul 2005)

  24 Jul 2005; Aaron Walker <ka0ttic@gentoo.org>
  files/20050121/06_all_tar.diff, -bash-completion-20050121-r9.ebuild,
  +bash-completion-20050121-r10.ebuild:
  Revision bump; updated tar patch so 'tar tf' works as expected on
  uncompressed .tar files (bug 99996). Keeping keywords.

*bash-completion-20050721 (21 Jul 2005)

  21 Jul 2005; Aaron Walker <ka0ttic@gentoo.org>
  -files/20050712/01_all_gkrellm.diff, -files/20050712/03_all_find.diff,
  +files/20050721/01_all_gkrellm.diff, -files/20050712/02_all_cvs.diff,
  -files/20050712/04_all_command.diff, +files/20050721/02_all_cvs.diff,
  +files/20050721/03_all_find.diff, +files/20050721/04_all_command.diff,
  -bash-completion-20050712.ebuild, +bash-completion-20050721.ebuild:
  Version bump; this version disables code that triggers a bash-3 bug (see bug
  99540).

  14 Jul 2005; Aaron Walker <ka0ttic@gentoo.org>
  bash-completion-20050121-r9.ebuild, bash-completion-20050712.ebuild:
  Update pkg_postinst instructions to explicitly state that
  /etc/profile.d/bsh-completion should be sourced towards the beginning of
  your ~/.bashrc, or at least before any aliases are set to avoid a)
  unintentional misuse (bug 98627), or b) clobbering (as bashcomp does set
  some aliases under certain conditions).

*bash-completion-20050712 (13 Jul 2005)

  13 Jul 2005; Aaron Walker <ka0ttic@gentoo.org>
  -files/20050121-gentoo.diff, +files/20050712/01_all_gkrellm.diff,
  -files/gentoo-bashcomp-20050117-equery.diff,
  +files/20050712/02_all_cvs.diff, +files/20050712/03_all_find.diff,
  +files/20050712/04_all_command.diff, -bash-completion-20050121-r1.ebuild,
  +bash-completion-20050712.ebuild:
  Version bump; removed old ebuild/patches.

  28 Jun 2005; Joshua Kinard <kumba@gentoo.org>
  bash-completion-20050121-r9.ebuild:
  Marked stable on mips.

  18 Jun 2005; Fernando J. Pereda <ferdy@gentoo.org>
  bash-completion-20050121-r9.ebuild:
  Stable on alpha

  04 Jun 2005; Tobias Scherbaum <dertobi123@gentoo.org>
  bash-completion-20050121-r9.ebuild:
  Stable on ppc.

  30 May 2005; Christian Birchinger <joker@gentoo.org>
  bash-completion-20050121-r9.ebuild:
  Added sparc stable keyword

  29 May 2005; Marcus D. Hanwell <marcus@gentoo.org>
  bash-completion-20050121-r9.ebuild:
  Stable on amd64.

  29 May 2005; Rene Nussbaumer <killerfox@gentoo.org>
  bash-completion-20050121-r9.ebuild:
  Stable on hppa.

  28 May 2005; Aaron Walker <ka0ttic@gentoo.org>
  bash-completion-20050121-r9.ebuild:
  Stable on x86.

*bash-completion-20050121-r9 (19 May 2005)

  19 May 2005; Aaron Walker <ka0ttic@gentoo.org>
  files/20050121/02_all_cvs.diff, -bash-completion-20050121-r8.ebuild,
  +bash-completion-20050121-r9.ebuild:
  Revision bump; updated _cvs patch so that 'cvs add' completion ignores files
  matching *~.

*bash-completion-20050121-r8 (06 May 2005)

  06 May 2005; Aaron Walker <ka0ttic@gentoo.org>
  +files/20050121/09_all_command.diff, -bash-completion-20050121-r7.ebuild,
  +bash-completion-20050121-r8.ebuild:
  Revision bump; add patch for bug in _command meta-completion (sudo -<TAB> fex).

  20 Apr 2005; Aaron Walker <ka0ttic@gentoo.org>
  -files/20041017-gentoo.diff, -files/20041017-rcs.diff,
  -files/20050121-find.diff, -files/20050121-muttng.diff,
  -files/20050121-tar.diff, -bash-completion-20041017-r3.ebuild:
  Tidy.

*bash-completion-20050121-r7 (20 Apr 2005)

  20 Apr 2005; Aaron Walker <ka0ttic@gentoo.org>
  +files/20050121/02_all_cvs.diff, +files/20050121/04_all_mplayer.diff,
  +files/20050121/03_all_timidity.diff, +files/20050121/05_all_muttng.diff,
  +files/20050121/01_all_gkrellm.diff, +files/20050121/06_all_tar.diff,
  +files/20050121/07_all_find.diff, +files/20050121/08_all_lvm.diff,
  -bash-completion-20050121-r6.ebuild, +bash-completion-20050121-r7.ebuild:
  Revision bump; fixes bug 82810. New patch layout since we're starting to get
  quite a few. Also include gkrellm patch which was accidentally dropped at
  some point.

  06 Apr 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  bash-completion-20050121-r1.ebuild:
  mips stable

*bash-completion-20050121-r6 (06 Apr 2005)

  06 Apr 2005; Aaron Walker <ka0ttic@gentoo.org> +files/20050121-find.diff,
  -bash-completion-20050121-r5.ebuild, +bash-completion-20050121-r6.ebuild:
  Revision bump; fix find completion so that it properly completes on
  -?(i)wholename. Thanks to ciaranm for the patch.

  30 Mar 2005; Michael Hanselmann <hansmi@gentoo.org>
  bash-completion-20050121-r1.ebuild:
  Stable on ppc.

*bash-completion-20050121-r5 (29 Mar 2005)

  29 Mar 2005; Aaron Walker <ka0ttic@gentoo.org> +files/20050121-tar.diff,
  -bash-completion-20050121-r2.ebuild, -bash-completion-20050121-r3.ebuild,
  -bash-completion-20050121-r4.ebuild, +bash-completion-20050121-r5.ebuild:
  Revision bump; updated tar completion so -xf will work with both gzip and
  bzip2 archives now that tar-1.15.1 is stable. Closes bug 76957. Tidy old
  ebuilds.

*bash-completion-20050121-r4 (28 Mar 2005)

  28 Mar 2005; Aaron Walker <ka0ttic@gentoo.org>
  +files/20050121-muttng.diff, +bash-completion-20050121-r4.ebuild:
  Revision bump; extend mutt completion to also work with muttng. Thanks to
  Marcin 'aye' Kryczek <aye@gentoo.pl> in bug 86853 for the patch.

  27 Mar 2005; Bryan Østergaard <kloeri@gentoo.org>
  bash-completion-20050121-r1.ebuild:
  Stable on alpha.

*bash-completion-20050121-r3 (16 Mar 2005)

  16 Mar 2005; Aaron Walker <ka0ttic@gentoo.org>
  +bash-completion-20050121-r3.ebuild:
  Revision bump; broke gentoo-bashcomp out into its own ebuild. Added as PDEPEND.

  13 Mar 2005; Marcus D. Hanwell <cryos@gentoo.org> :
  Marked stable on amd64.

  28 Feb 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  bash-completion-20050121-r1.ebuild:
  Stable on sparc

  25 Feb 2005; Aaron Walker <ka0ttic@gentoo.org>
  bash-completion-20050121-r1.ebuild:
  Marked stable on x86.

*bash-completion-20050121-r2 (07 Feb 2005)

  07 Feb 2005; Aaron Walker <ka0ttic@gentoo.org>
  +bash-completion-20050121-r2.ebuild:
  Revision bump; new gentoo-bashcomp release including bug fixes, as well as
  new webapp-config and portageq completion. Also emerge -C and equery now
  support completion on package names only.

*bash-completion-20050121-r1 (04 Feb 2005)

  04 Feb 2005; Aaron Walker <ka0ttic@gentoo.org>
  +files/gentoo-bashcomp-20050117-equery.diff,
  +bash-completion-20050121-r1.ebuild, -bash-completion-20050121.ebuild:
  Revision bump for bug 78922; fixes a few equery completion bugs.

*bash-completion-20050121 (21 Jan 2005)

  21 Jan 2005; Aaron Walker <ka0ttic@gentoo.org>
  -files/20050112-gentoo.diff, -files/20050120-gentoo.diff,
  +files/20050121-gentoo.diff, -bash-completion-20040704-r1.ebuild,
  -bash-completion-20040711.ebuild, -bash-completion-20041017-r1.ebuild,
  -bash-completion-20050112-r1.ebuild, -bash-completion-20050120.ebuild,
  +bash-completion-20050121.ebuild:
  New upstream release; early spring cleansing now that 20041017-r3 has been
  keyworded properly.

  21 Jan 2005; Lars Weiler <pylon@gentoo.org>
  bash-completion-20041017-r3.ebuild:
  Stable on ppc.

  21 Jan 2005; Mike Doty <kingtaco@gentoo.org>
  bash-completion-20041017-r3.ebuild:
  stable on amd64 per ka0ttics request

  21 Jan 2005; Aaron Walker <ka0ttic@gentoo.org>
  bash-completion-20041017-r1.ebuild, bash-completion-20041017-r3.ebuild,
  bash-completion-20050112-r1.ebuild, bash-completion-20050120.ebuild:
  Don't install subversion completion, since subversion itself offers a much
  nicer one.

*bash-completion-20050120 (20 Jan 2005)

  20 Jan 2005; Aaron Walker <ka0ttic@gentoo.org>
  +files/20050120-gentoo.diff, +bash-completion-20050120.ebuild:
  Version bump; also updated gentoo patch with fix for bug 78439.

  18 Jan 2005; Joshua Kinard <kumba@gentoo.org>
  bash-completion-20041017-r3.ebuild:
  Marked stable on mips.

*bash-completion-20050112-r1 (17 Jan 2005)

  17 Jan 2005; Aaron Walker <ka0ttic@gentoo.org>
  -files/20050103-gentoo.diff, -files/gentoo-bashcomp-20050112.diff,
  -bash-completion-20050103-r2.ebuild, +bash-completion-20050112-r1.ebuild,
  -bash-completion-20050112.ebuild:
  Revision bump; new gentoo-bashcomp release.

  18 Jan 2005; Bryan Østergaard <kloeri@gentoo.org>
  bash-completion-20041017-r3.ebuild:
  Stable on alpha.

*bash-completion-20050112 (13 Jan 2005)

  13 Jan 2005; Aaron Walker <ka0ttic@gentoo.org>
  +files/20050112-gentoo.diff, +bash-completion-20050112.ebuild:
  New upstream release.

*bash-completion-20050103-r2 (12 Jan 2005)

  12 Jan 2005; Aaron Walker <ka0ttic@gentoo.org>
  -files/gentoo-bashcomp-20040108.diff,
  +files/gentoo-bashcomp-20050112.diff, -bash-completion-20050103-r1.ebuild,
  +bash-completion-20050103-r2.ebuild:
  Revision bump; gentoo-bashcomp patch update. See bug 75225. Thanks to Ed
  Catmur.

*bash-completion-20050103-r1 (08 Jan 2005)

  08 Jan 2005; Aaron Walker <ka0ttic@gentoo.org>
  +files/gentoo-bashcomp-20040108.diff, +bash-completion-20050103-r1.ebuild,
  -bash-completion-20050103.ebuild:
  Revision bump; added diff against gentoo-bashcomp cvs HEAD that closes bugs
  74733, 75332, and 76416.

  04 Jan 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  bash-completion-20041017-r3.ebuild:
  Stable on sparc

*bash-completion-20050103 (04 Jan 2005)

  04 Jan 2005; Aaron Walker <ka0ttic@gentoo.org>
  +files/20050103-gentoo.diff, -bash-completion-20041017-r2.ebuild,
  bash-completion-20041017-r3.ebuild, +bash-completion-20050103.ebuild:
  New upstream release; marked 20041017-r3 stable on x86.

  02 Jan 2005; Aaron Walker <ka0ttic@gentoo.org> +files/20041017-rcs.diff,
  bash-completion-20041017-r3.ebuild:
  Added 20041017-rcs.diff which fixes a rcs completion issue (see bug 75253);
  Thanks to Ed Catmur <ed@catmur.co.uk> for the patch. Waiting on a few
  gentoo-bashcomp bugs to be closed before revbumping to r4.

  28 Dec 2004; Guy Martin <gmsoft@gentoo.org>
  bash-completion-20041017-r1.ebuild:
  Stable on hppa.

  25 Dec 2004; Aaron Walker <ka0ttic@gentoo.org>
  bash-completion-20041017-r3.ebuild:
  RDEPEND on bash or zsh, since zsh is also able to read bash-completions; bug
  75384. Also added some einfo's with URL's to more info for zsh users.

  16 Dec 2004; Dylan Carlson <absinthe@gentoo.org>
  bash-completion-20041017-r1.ebuild:
  Stable on amd64.

  11 Dec 2004; Bryan Østergaard <kloeri@gentoo.org>
  bash-completion-20041017-r1.ebuild:
  Stable on alpha.

*bash-completion-20041017-r3 (06 Dec 2004)

  06 Dec 2004; Aaron Walker <ka0ttic@gentoo.org>
  +bash-completion-20041017-r3.ebuild:
  Revision bump. New gentoo-bashcomp release which includes new ekeyword
  completion (thanks ciaranm) in addition to fixing bug 73266. Also, as of
  this release, the gentoo completions file is installed into
  /usr/share/bash-completion, with a symlink taking its old location
  (/etc/bash_completion.d).

  01 Dec 2004; Gustavo Zacarias <gustavoz@gentoo.org>
  bash-completion-20041017-r1.ebuild:
  Stable on sparc

*bash-completion-20041017-r2 (27 Nov 2004)

  27 Nov 2004; Aaron Walker <ka0ttic@gentoo.org>
  +files/20041017-gentoo.diff, -bash-completion-20040704.ebuild,
  bash-completion-20041017-r1.ebuild, +bash-completion-20041017-r2.ebuild,
  -bash-completion-20041017.ebuild:
  Revision bump; new gentoo-bashcomp release. Also, added gentoo patch for
  extra filetypes support for .ts (bug 67201) and others. Fixed gkrellm
  completion to complete for gkrellm2 as well. Marked 20041017-r1 stable on
  x86.

  15 Nov 2004; Aaron Walker <ka0ttic@gentoo.org>
  bash-completion-20041017-r1.ebuild:
  Use has_version to determine whether or not to install subversion completion.

  12 Nov 2004; Aaron Walker <ka0ttic@gentoo.org> files/bash-completion:
  Clean up profile.d file thanks to Joker.

*bash-completion-20041017-r1 (12 Nov 2004)

  12 Nov 2004; Aaron Walker <ka0ttic@gentoo.org>
  +bash-completion-20041017-r1.ebuild:
  Don't install subversion completion since >=dev-util/subversion-1.1.1-r1
  provides a much better one.

  09 Nov 2004; Aaron Walker <ka0ttic@gentoo.org> files/bash-completion:
  Updated profile.d file to also source anything in ~/.bash_completion.d

  05 Nov 2004; Joshua Kinard <kumba@gentoo.org>
  bash-completion-20040711.ebuild:
  Marked stable on mips.

  04 Nov 2004; Markus Rothe <corsair@gentoo.org>
  bash-completion-20041017.ebuild:
  Marked ~ppc64

  01 Nov 2004; Gustavo Zacarias <gustavoz@gentoo.org>
  bash-completion-20040711.ebuild:
  Stable on sparc

  30 Oct 2004; Aaron Walker <ka0ttic@gentoo.org>
  -files/gentoo.completion-20040526, -bash-completion-20040526.ebuild,
  bash-completion-20040711.ebuild:
  Marked 20040711 stable on x86; removed 20040526.

  27 Oct 2004; Kito <kito@gentoo.org> bash-completion-20041017.ebuild:
  added ~ppc-macos

*bash-completion-20041017 (19 Oct 2004)

  19 Oct 2004; Aaron Walker <ka0ttic@gentoo.org>
  +bash-completion-20041017.ebuild:
  Version bump; includes new version of gentoo-bashcomp as well (new equery
  completion available which closes #55687).

*bash-completion-20040711 (11 Oct 2004)

  11 Oct 2004; Aaron Walker <ka0ttic@gentoo.org>
  +bash-completion-20040711.ebuild:
  Version bump; closes #67148.

  11 Oct 2004; Aaron Walker <ka0ttic@gentoo.org> metadata.xml:
  Updated metadata to reflect new shell-tools herd.

  01 Sep 2004; Christian Birchinger <joker@gentoo.org>
  bash-completion-20040704-r1.ebuild:
  Marked stable

*bash-completion-20040704-r1 (28 Jul 2004)

  28 Jul 2004; Mike Frysinger <vapier@gentoo.org> files/bash-completion,
  +bash-completion-20040704-r1.ebuild:
  Add version detection for bash3 #58708 by blubbfisch.

*bash-completion-20040704 (04 Jul 2004)

  04 Jul 2004; Christian Birchinger <joker@gentoo.org>
  +bash-completion-20040704.ebuild:
  Version bump

  01 Jul 2004; Christian Birchinger <joker@gentoo.org>
  bash-completion-20040526-r2.ebuild:
  Replaced fperms with doexec and added ROOT variable to pkg_postinst tests.

*bash-completion-20040526-r2 (16 Jun 2004)

  16 Jun 2004; Christian Birchinger <joker@gentoo.org>
  bash-completion-20040526-r2.ebuild:
  Adjusted permission of profile.d init script

*bash-completion-20040526-r1 (12 Jun 2004)

  12 Jun 2004; Christian Birchinger <joker@gentoo.org>
  bash-completion-20040526-r1.ebuild:
  Added a new gentoo completion from
  http://sourceforge.net/projects/gentoo-bashcomp/

  29 May 2004; Michael Sterrett <mr_bones_@gentoo.org>
  bash-completion-20040331-r1.ebuild, bash-completion-20040526.ebuild:
  no need to install COPYING

*bash-completion-20040526 (26 May 2004)

  26 May 2004; Christian Birchinger <joker@gentoo.org>
  bash-completion-20040526.ebuild, files/gentoo.completion-20040526:
  Version bump. Fixed Bug #51071 in gentoo-completion

  25 Apr 2004; Christian Birchinger <joker@gentoo.org>
  bash-completion-20040331-r1.ebuild:
  Marked stable

*bash-completion-20040331-r1 (18 Apr 2004)

  18 Apr 2004; Christian Birchinger <joker@gentoo.org>
  bash-completion-20040331-r1.ebuild, files/gentoo.completion-20040331-r1:
  Changed opengl-update so it handles more than xfree and nvidia

  14 Apr 2004; Christian Birchinger <joker@gentoo.org> :
  Version bump

  02 Mar 2004; Brian Jackson <iggy@gentoo.org>
  bash-completion-20040210-r1.ebuild:
  s390 keywords

*bash-completion-20040210-r1 (27 Feb 2004)

  27 Feb 2004; Christian Birchinger <joker@gentoo.org>
  bash-completion-20040210-r1.ebuild, files/gentoo.completion-20040210-r1:
  nospace fix for bug #42878

*bash-completion-20040210 (11 Feb 2004)

  11 Feb 2004; Christian Birchinger <joker@gentoo.org>
  bash-completion-20040210.ebuild, files/gentoo.completion-20040210:
  Version bump

  10 Feb 2004; Christian Birchinger <joker@gentoo.org>
  bash-completion-20040101-r1.ebuild:
  Marked stable

*bash-completion-20040101-r1 (25 Jan 2004)

  25 Jan 2004; Christian Birchinger <joker@gentoo.org>
  bash-completion-20040101-r1.ebuild, files/gentoo.completion-20040101-r1:
  All optional contrib scripts are now installed in /usr/share/bash-completion
  and can be symlinked to /etc/bash_completion.d

  23 Jan 2004; Christian Birchinger <joker@gentoo.org>
  bash-completion-20040101.ebuild:
  Marked stable

*bash-completion-20040101 (04 Jan 2004)

  04 Jan 2004; Christian Birchinger <joker@gentoo.org>
  bash-completion-20040101.ebuild, files/gentoo.completion,
  files/gentoo.completion-20040101:
  Version bump and fix for bug #36910

*bash-completion-20031225 (25 Dec 2003)

  25 Dec 2003; Christian Birchinger <joker@gentoo.org>
  bash-completion-20031215.ebuild, bash-completion-20031225.ebuild,
  files/gentoo.completion-20031225:
  Version bump

*bash-completion-20031215 (19 Dec 2003)

  19 Dec 2003; Christian Birchinger <joker@gentoo.org>
  bash-completion-20031215.ebuild, files/gentoo.completion-20031215:
  Version bump

*bash-completion-20031125-r1 (13 Dec 2003)

  13 Dec 2003; Christian Birchinger <joker@gentoo.org>
  bash-completion-20031125-r1.ebuild, files/gentoo.completion-20031125-r1:
  Added rc and rc-status completion

  13 Dec 2003; Christian Birchinger <joker@gentoo.org>
  bash-completion-20031125.ebuild:
  Marked stable

  27 Nov 2003; Christian Birchinger <joker@gentoo.org>
  bash-completion-20031112.ebuild:
  Marked stable on all archs

*bash-completion-20031125 (26 Nov 2003)

  26 Nov 2003; Martin Holzer <mholzer@gentoo.org>
  bash-completion-20031125.ebuild:
  Version bumped.

*bash-completion-20031112 (12 Nov 2003)

  12 Nov 2003; Christian Birchinger <joker@gentoo.org>
  bash-completion-20031112.ebuild:
  Version bump

  12 Nov 2003; Christian Birchinger <joker@gentoo.org>
  bash-completion-20031022.ebuild:
  Marked stable

*bash-completion-20031022 (01 Nov 2003)

  01 Nov 2003; Christian Birchinger <joker@gentoo.org>
  bash-completion-20030821.ebuild, bash-completion-20030911.ebuild,
  bash-completion-20031022.ebuild:
  Version bump

*bash-completion-20030911-r1 (25 Sep 2003)

  25 Sep 2003; Christian Birchinger <joker@gentoo.org>
  bash-completion-20030505-r1.ebuild, bash-completion-20030713.ebuild,
  bash-completion-20030721.ebuild, bash-completion-20030911-r1.ebuild,
  files/gentoo.completion:
  New gentoo distcc-config completion feature. Removed old versions.

*bash-completion-20030911 (12 Sep 2003)

  12 Sep 2003; Christian Birchinger <joker@gentoo.org>
  bash-completion-20030911.ebuild:
  Version bump

  12 Sep 2003; Christian Birchinger <joker@gentoo.org>
  bash-completion-20030821.ebuild:
  Added stable keywords

*bash-completion-20030821 (10 Sep 2003)

  10 Sep 2003; Christian Birchinger <joker@gentoo.org>
  bash-completion-20030821.ebuild, files/gentoo.completion:
  Version bump and new version of gentoo.completion which has
  limmited init.d support

*bash-completion-20030721 (21 Jul 2003)

  21 Jul 2003; Christian Birchinger <joker@gentoo.org>
  bash-completion-20030721.ebuild:
  Version bump

*bash-completion-20030713 (18 Jul 2003)

  18 Jul 2003; Christian Birchinger <joker@gentoo.org>
  bash-completion-20030713.ebuild:
  Version bump

*bash-completion-20030505-r1 (24 May 2003)

  24 May 2003; Christian Birchinger <joker@gentoo.org>
  bash-completion-20030505-r1.ebuild, files/gentoo.completion:
  Fixed gentoo completion included

  18 May 2003; Christian Birchinger <joker@gentoo.org>
  bash-completion-20030505.ebuild:
  Marked stable on all archs. New Gentoo completion from Zach Forrest <zach@disinformation.ca>
  is really needed for the latest portage releases.

*bash-completion-20030505 (16 May 2003)

  16 May 2003; Christian Birchinger <joker@gentoo.org>
  bash-completion-20030505.ebuild, files/gentoo.completion:
  Version bump and new Gentoo completion included

*bash-completion-20030327 (27 Mar 2003)

  27 Mar 2003; Christian Birchinger <joker@gentoo.org>
  bash-completion-20030327.ebuild:
  Version bump to 20030327 (on all archs)

  13 Mar 2003; Olivier Reisch <doctomoe@gentoo.org> bash-completion-20021231.ebuild:
  Marked ppc stable

*bash-completion-20030209 (17 Feb 2003)

  17 Feb 2003; Seemant Kulleen <seemant@gentoo.org> bash-completion-20030209.ebuild files/digest-bash-completion-20030209 :
  version bump, thanks to Jeff Stuart <jstuart@computer-city.net> in bug #15553

*bash-completion-20021231 (08 Dec 2003)

  08 Dec 2003; Maik Schreiber <blizzy@gentoo.org> : new version

  07 Jan 2003; Mark Guertin <gerk@gentoo.org> bash-completion-20021221.ebuild:
  set ppc in keywords

*bash-completion-20021221 (21 Dec 2002)

  21 Dec 2002; Maik Schreiber <blizzy@gentoo.org> : new version

*bash-completion-20021213 (13 Dec 2002)

  13 Dec 2002; Maik Schreiber <blizzy@gentoo.org> : new version

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
*bash-completion-20021026 (26 Oct 2002)

  26 Oct 2002; Maik Schreiber <blizzy@gentoo.org> : new version

*bash-completion-20021022 (22 Oct 2002)

  22 Oct 2002; Maik Schreiber <blizzy@gentoo.org> : new version

*bash-completion-20021021 (21 Oct 2002)

  21 Oct 2002; Maik Schreiber <blizzy@gentoo.org> : new version

*bash-completion-20021017 (17 Oct 2002)

  17 Oct 2002; Maik Schreiber <blizzy@gentoo.org> : new version

*bash-completion-20021013 (14 Oct 2002)

  14 Oct 2002; Maik Schreiber <blizzy@gentoo.org> : new version

*bash-completion-20021007 (12 Oct 2002)

  12 Oct 2002; Maik Schreiber <blizzy@gentoo.org> : new version

*bash-completion-20020819 (22 Aug 2002)

  22 Aug 2002; Maik Schreiber <blizzy@gentoo.org> : new version

*bash-completion-20020812 (12 Aug 2002)

  12 Aug 2002; Maik Schreiber <blizzy@gentoo.org> : new version

*bash-completion-20020727 (27 Jul 2002)

  28 Jul 2002; Calum Selkirk <cselkirk@gentoo.org>
  bash-completion-20020727.ebuild, bash-completion-20020624.ebuild: Added ppc
  to KEYWORDS.

  27 Jul 2002; Maik Schreiber <blizzy@gentoo.org> : new version

  05 Jul 2002; Seemant Kulleen <seemant@gentoo.org>
  bash-completion-20020624.ebuild: typo fix in S= assignment.  Closes bug #4564
  by yurkjes@iit.edu

  25 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> bash-completion-20020624.ebuild:
  Added KEYWORDS.

  24 Jun 2002; Thilo Bangert <bangert@gentoo.org> bash-completion-20020624.ebuild:
  fixed SLOT

*bash-completion-20020624 (24 Jun 2002)

  24 Jun 2002; Thilo Bangert <bangert@gentoo.org> : version bump

*bash-completion-20020621 (19 Jun 2002)

  21 Jun 2002; Thilo Bangert <bangert@gentoo.org> : version bump

  20 Jun 2002; Thilo Bangert <bangert@gentoo.org> bash-completion-20020619.ebuild:
  added support for /etc/profile.d/bash-completion
  
*bash-completion-20020619 (19 Jun 2002)

  19 Jun 2002; Thilo Bangert <bangert@gentoo.org> : version bump

*bash-completion-20020521 (21 May 2002)

  21 May 2002; Thilo Bangert <bangert@gentoo.org> bash-completion-20020521.ebuild:
  version bump - LICENSE & minor fixor

*bash-completion-20020427 (27 Apr 2002)

  27 Apr 2002; Thilo Bangert <bangert@gentoo.org> : version bump

*bash-completion-20020422 (23 Apr 2002)

  23 Apr 2002; Thilo Bangert <bangert@gentoo.org> : initial release