aboutsummaryrefslogtreecommitdiff
blob: 9c1c4eec3329243663d3fb7f1d36fa10584e1559 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
# ChangeLog for app-editors/vim-core
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/vim-core/ChangeLog,v 1.342 2010/09/27 21:12:58 redhatter Exp $

  27 Sep 2010; Stuart Longland <redhatter@gentoo.org> vim-core-7.3.ebuild:
  Tested and working on MIPS, keyworded ~mips. Resolves bug #329121.

*vim-core-7.3 (16 Aug 2010)

  16 Aug 2010; Jim Ramsay <lack@gentoo.org> +vim-core-7.3.ebuild:
  New release: vim-7.3

  13 Aug 2010; Joseph Jezak <josejx@gentoo.org> vim-core-7.2.442.ebuild:
  Marked ppc/ppc64 stable for bug #328261.

  01 Aug 2010; Raúl Porcel <armin76@gentoo.org> vim-core-7.2.442.ebuild:
  alpha/ia64/m68k/s390/sh/sparc stable wrt #328261

  16 Jul 2010; Markus Meier <maekke@gentoo.org> vim-core-7.2.442.ebuild:
  arm stable, bug #328261

  16 Jul 2010; Markus Meier <maekke@gentoo.org> vim-core-7.2.442.ebuild:
  x86 stable, bug #328261

  16 Jul 2010; Jeremy Olexa <darkside@gentoo.org> vim-core-7.2.442.ebuild:
  QA: Revert previous commit because a) the manifest is broke, b) will
  create circular deps since app-editors/vim wasn't keyworded at the same
  time

  15 Jul 2010; Markus Meier <maekke@gentoo.org> vim-core-7.2.442.ebuild:
  arm/x86 stable, bug #328261

  15 Jul 2010; Markos Chandras <hwoarang@gentoo.org>
  vim-core-7.2.442.ebuild:
  Stable on amd64 wrt bug #328261

  14 Jul 2010; Jeroen Roovers <jer@gentoo.org> vim-core-7.2.442.ebuild:
  Stable for HPPA (bug #328261).

  14 Jun 2010; Jim Ramsay <lack@gentoo.org> -vim-core-7.2.182.ebuild,
  -vim-core-7.2.264-r1.ebuild, -vim-core-7.2.359.ebuild,
  -vim-core-7.2.376.ebuild, -vim-core-7.2.402.ebuild,
  -vim-core-7.2.411.ebuild, -vim-core-7.2.416.ebuild:
  Version cleanup

*vim-core-7.2.442 (07 Jun 2010)

  07 Jun 2010; Jim Ramsay <lack@gentoo.org> +vim-core-7.2.442.ebuild:
  vim-7.2.442 is released (Fixes bug #308927)

*vim-core-7.2.416 (09 May 2010)

  09 May 2010; Jim Ramsay <lack@gentoo.org> +vim-core-7.2.416.ebuild:
  Version bump: 7.2.416 is released

*vim-core-7.2.411 (18 Apr 2010)

  18 Apr 2010; Jim Ramsay <lack@gentoo.org> +vim-core-7.2.411.ebuild:
  Version bump: 7.2.411

  15 Apr 2010; Jeremy Olexa <darkside@gentoo.org> vim-core-7.2.402.ebuild,
  files/vimrc-r4:
  Import Gentoo Prefix changes, convert to EAPI3, add keywords. bug 310991

*vim-core-7.2.402 (17 Mar 2010)

  17 Mar 2010; Jim Ramsay <lack@gentoo.org> +vim-core-7.2.402.ebuild:
  Version bump: 7.2.402 is released

  09 Mar 2010; Jim Ramsay <lack@gentoo.org> files/vimrc-r4:
  Fix /etc/vim/vimrc so it does not accidentally override last-position-jump
  (Bug #308545)

*vim-core-7.2.376 (24 Feb 2010)

  24 Feb 2010; Jim Ramsay <lack@gentoo.org> +vim-core-7.2.376.ebuild:
  Version bump 7.2.376, now with ruby-1.9 support! (Bug #268608)

*vim-core-7.2.359 (12 Feb 2010)

  12 Feb 2010; Jim Ramsay <lack@gentoo.org> +vim-core-7.2.359.ebuild:
  Version bump to 7.2.359, also fixes bug #295258

  10 Feb 2010; Raúl Porcel <armin76@gentoo.org> vim-core-7.2.303.ebuild:
  alpha/ia64/m68k/s390/sh/sparc stable wrt #301975

  09 Feb 2010; Jeroen Roovers <jer@gentoo.org> vim-core-7.2.303.ebuild:
  Stable for HPPA (bug #301975).

  07 Feb 2010; Markus Meier <maekke@gentoo.org> vim-core-7.2.303.ebuild:
  amd64/arm/x86 stable, bug #301975

  01 Feb 2010; Brent Baude <ranger@gentoo.org> vim-core-7.2.303.ebuild:
  Marking vim-core-7.2.303 ppc for bug 301975

  01 Feb 2010; Brent Baude <ranger@gentoo.org> vim-core-7.2.303.ebuild:
  Marking vim-core-7.2.303 ppc64 for bug 301975

  17 Dec 2009; Christian Faulhammer <fauli@gentoo.org>
  vim-core-7.2.303.ebuild:
  QA: add prefix keywords

*vim-core-7.2.303 (24 Nov 2009)

  24 Nov 2009; Jim Ramsay <lack@gentoo.org> +vim-core-7.2.303.ebuild:
  Version bump: 7.2.303 (Bug #294328)

*vim-core-7.2.264-r1 (17 Oct 2009)

  17 Oct 2009; Jim Ramsay <lack@gentoo.org> -vim-core-7.2.264.ebuild,
  +vim-core-7.2.264-r1.ebuild:
  Revbump vim-core-7.2.264 to add tar.lzma and tar.xz support (Bug #286712)

  17 Oct 2009; Jim Ramsay <lack@gentoo.org> -vim-core-7.2.ebuild,
  -vim-core-7.2.108.ebuild, -vim-core-7.2.238.ebuild,
  vim-core-7.2.264.ebuild:
  Version cleanup and PDEPEND moved into vim.eclass

*vim-core-7.2.264 (27 Sep 2009)

  27 Sep 2009; Jim Ramsay <lack@gentoo.org> +vim-core-7.2.264.ebuild:
  Version bump, plus fix for bug #285502

  26 Jul 2009; Brent Baude <ranger@gentoo.org> vim-core-7.2.182.ebuild:
  Marking vim-core-7.2.182 ppc64 for bug 257007

*vim-core-7.2.238 (22 Jul 2009)

  22 Jul 2009; Jim Ramsay <lack@gentoo.org> +vim-core-7.2.238.ebuild,
  +files/vimrc-r4:
  Version bump, also includes bug #263333

  22 Jul 2009; Jeremy Olexa <darkside@gentoo.org> vim-core-7.2.182.ebuild:
  amd64 stable, security bug 257007

  19 Jul 2009; nixnut <nixnut@gentoo.org> vim-core-7.2.182.ebuild:
  ppc stable #257007

  15 Jul 2009; Jeroen Roovers <jer@gentoo.org> vim-core-7.2.182.ebuild:
  Stable for HPPA (bug #257007).

  15 Jul 2009; Raúl Porcel <armin76@gentoo.org> vim-core-7.2.182.ebuild:
  alpha/arm/ia64/m68k/s390/sh stable wrt #257007

  15 Jul 2009; Christian Faulhammer <fauli@gentoo.org>
  vim-core-7.2.182.ebuild:
  stable x86, security bug 257007

  14 Jul 2009; Ferris McCormick <fmccor@gentoo.org> vim-core-7.2.182.ebuild:
  Sparc stable, part of security bug #257007.

*vim-core-7.2.182 (18 May 2009)

  18 May 2009; Jim Ramsay <lack@gentoo.org> +vim-core-7.2.182.ebuild:
  Version bump: 7.2.182

*vim-core-7.1.330 (19 Feb 2009)
*vim-core-7.0.243 (19 Feb 2009)

  19 Feb 2009; Jim Ramsay <lack@gentoo.org> +vim-core-7.0.243.ebuild,
  +vim-core-7.1.330.ebuild:
  Added latest patchlevels of 7.0 and 7.1

*vim-core-7.2.108 (19 Feb 2009)

  19 Feb 2009; Jim Ramsay <lack@gentoo.org> -vim-core-7.2.021.ebuild,
  +vim-core-7.2.108.ebuild:
  Version 7.2.021 wasn't actually applying any patches (It was equivalent to
  7.2), and patchset 108 is now out. Bug #238120

*vim-core-7.2.021 (19 Sep 2008)

  19 Sep 2008; Ali Polatel <hawking@gentoo.org> +vim-core-7.2.021.ebuild:
  Version bump. Fixes #238120.

  30 Aug 2008; Ali Polatel <hawking@gentoo.org>
  -files/rphillips-invalcolorpatch.diff, -files/vimrc-r2,
  -vim-core-6.4.ebuild, -vim-core-7.1.042.ebuild, -vim-core-7.1.164.ebuild,
  -vim-core-7.1.213.ebuild, -vim-core-7.1.266.ebuild,
  -vim-core-7.1.285.ebuild, -vim-core-7.1.319.ebuild:
  Drop old.

  15 Aug 2008; Markus Meier <maekke@gentoo.org> vim-core-7.2.ebuild:
  x86 stable, bug #232890

  15 Aug 2008; Jeroen Roovers <jer@gentoo.org> vim-core-7.2.ebuild:
  Stable for HPPA (bug #232890).

  14 Aug 2008; Brent Baude <ranger@gentoo.org> vim-core-7.2.ebuild:
  Marking vim-core-7.2 ppc64 and ppc for bug 232890

  14 Aug 2008; Raúl Porcel <armin76@gentoo.org> vim-core-7.2.ebuild:
  alpha/ia64/x86 stable wrt #232890

  14 Aug 2008; Ferris McCormick <fmccor@gentoo.org> vim-core-7.2.ebuild:
  Sparc stable, security Bug #232890.

*vim-core-7.2 (14 Aug 2008)

  14 Aug 2008; Ali Polatel <hawking@gentoo.org> +vim-core-7.2.ebuild:
  Version bump. Fixing bugs 227453, 232890, 234652 and 234587.

  07 Jul 2008; Raúl Porcel <armin76@gentoo.org> vim-core-7.1.319.ebuild:
  alpha/ia64 stable wrt security #227453

  07 Jul 2008; Brent Baude <ranger@gentoo.org> vim-core-7.1.319.ebuild:
  Marking vim-core-7.1.319 ppc64 and ppc for bug 227453

  06 Jul 2008; Ferris McCormick <fmccor@gentoo.org> vim-core-7.1.319.ebuild:
  Sparc stable, critical bug #227453, fine for a couple weeks now.

  06 Jul 2008; Jeroen Roovers <jer@gentoo.org> vim-core-7.1.319.ebuild:
  Stable for HPPA (bug #227453).

  06 Jul 2008; Dawid Węgliński <cla@gentoo.org> vim-core-7.1.319.ebuild:
  Stable on x86/amd64 (bug #227453)

*vim-core-7.1.319 (20 Jun 2008)

  20 Jun 2008; Ali Polatel <hawking@gentoo.org> +vim-core-7.1.319.ebuild:
  Version bump.

  07 Apr 2008; Raúl Porcel <armin76@gentoo.org> vim-core-7.1.266.ebuild:
  ia64/sparc stable wrt #216151

  04 Apr 2008; Richard Freeman <rich0@gentoo.org> vim-core-7.1.266.ebuild:
  amd64 stable - 216151

  04 Apr 2008; Jeroen Roovers <jer@gentoo.org> vim-core-7.1.266.ebuild:
  Stable for HPPA (bug #216151).

  04 Apr 2008; Brent Baude <ranger@gentoo.org> vim-core-7.1.266.ebuild:
  Marking vim-core-7.1.266 ppc64 and ppc for bug 216151

  04 Apr 2008; Tobias Klausmann <klausman@gentoo.org>
  vim-core-7.1.266.ebuild:
  Stable on alpha, bug #216151

  04 Apr 2008; Dawid Węgliński <cla@gentoo.org> vim-core-7.1.266.ebuild:
  Stable on x86 (bug #216151)

*vim-core-7.1.285 (21 Mar 2008)

  21 Mar 2008; Ali Polatel <hawking@gentoo.org> +vim-core-7.1.285.ebuild:
  Version bump.

  04 Mar 2008; Jeroen Roovers <jer@gentoo.org> Manifest:
  Fix Manifest.

*vim-core-7.1.266 (03 Mar 2008)

  03 Mar 2008; Ali Polatel <hawking@gentoo.org> +vim-core-7.1.266.ebuild:
  Version bump. Fixes some memory leaks and other bugs.

*vim-core-7.1.213 (09 Jan 2008)

  09 Jan 2008; Ali Polatel <hawking@gentoo.org> +vim-core-7.1.213.ebuild:
  Version bump.

*vim-core-7.1.164 (30 Nov 2007)

  30 Nov 2007; Ali Polatel <hawking@gentoo.org> +vim-core-7.1.164.ebuild:
  Version bump.

  10 Nov 2007; Markus Rothe <corsair@gentoo.org> vim-core-7.1.123.ebuild:
  Stable on ppc64; bug #198574

  10 Nov 2007; Daniel Gryniewicz <dang@gentoo.org> vim-core-7.1.123.ebuild:
  Marked stable on amd64 for bug #198574

  09 Nov 2007; nixnut <nixnut@gentoo.org> vim-core-7.1.123.ebuild:
  Stable on ppc wrt bug 198574

  09 Nov 2007; Raúl Porcel <armin76@gentoo.org> vim-core-7.1.123.ebuild:
  alpha/ia64/x86 stable wrt #198574

  09 Nov 2007; Ferris McCormick <fmccor@gentoo.org> vim-core-7.1.123.ebuild:
  Sparc stable --- Bug #198574

  30 Oct 2007; Jeroen Roovers <jer@gentoo.org> vim-core-7.1.123.ebuild:
  Stable for HPPA.

*vim-core-7.1.123 (27 Sep 2007)

  27 Sep 2007; Ali Polatel <hawking@gentoo.org> -files/vimrc,
  -files/vimrc-r1, -vim-core-7.0.174.ebuild, -vim-core-7.1.ebuild,
  -vim-core-7.1-r1.ebuild, -vim-core-7.1.002.ebuild,
  -vim-core-7.1.028.ebuild, -vim-core-7.1.087.ebuild,
  +vim-core-7.1.123.ebuild:
  Version bump. Drop old.

*vim-core-7.1.087 (23 Aug 2007)

  23 Aug 2007; Ali Polatel <hawking@gentoo.org> +vim-core-7.1.087.ebuild:
  Version bump.

  01 Aug 2007; Brent Baude <ranger@gentoo.org> vim-core-7.1.042.ebuild:
  Marking 7.1.042 ppc and ppc64 stable for bug 185677

  01 Aug 2007; Raúl Porcel <armin76@gentoo.org> vim-core-7.1.042.ebuild:
  alpha/ia64 stable wrt security #185677

  31 Jul 2007; Jeroen Roovers <jer@gentoo.org> vim-core-7.1.042.ebuild:
  Stable for HPPA (bug #185677).

  31 Jul 2007; Ferris McCormick <fmccor@gentoo.org> vim-core-7.1.042.ebuild:
  Sparc stable --- Security Bug #185677

  31 Jul 2007; Markus Ullmann <jokey@gentoo.org> vim-core-7.1.042.ebuild:
  Stable on x86 wrt security bug #185677

  31 Jul 2007; Christoph Mende <angelos@gentoo.org> vim-core-7.1.042.ebuild:
  Stable on amd64 wrt security bug #185677

*vim-core-7.1.042 (27 Jul 2007)

  27 Jul 2007; Ali Polatel <hawking@gentoo.org> +vim-core-7.1.042.ebuild:
  version bump, fixes security issue with helptags and other bugs

*vim-core-7.1.028 (15 Jul 2007)

  15 Jul 2007; Ali Polatel <hawking@gentoo.org> +vim-core-7.1.028.ebuild:
  Version bump, fixing many small problems

*vim-core-7.1.002 (31 May 2007)

  31 May 2007; Mike Kelly <pioto@gentoo.org> +vim-core-7.1.002.ebuild:
  Version bump. Also, include sources for non-english languages, and other
  extras. Fixes Bug #179133.

*vim-core-7.1-r1 (14 May 2007)

  14 May 2007; Mike Kelly <pioto@gentoo.org> +vim-core-7.1-r1.ebuild:
  Revision bump. Add a patch to fix the patch to fix the libintl compile error
  from Bug #176566.

  13 May 2007; Mike Kelly <pioto@gentoo.org> -vim-core-7.0.17.ebuild:
  Remove old version.

*vim-core-7.1 (13 May 2007)

  13 May 2007; Mike Kelly <pioto@gentoo.org> -vim-core-7.1_beta001.ebuild,
  +vim-core-7.1.ebuild:
  Version bump. New stable version. Remove unstable beta.

  13 May 2007; Joshua Kinard <kumba@gentoo.org> vim-core-7.0.235.ebuild:
  Stable on mips, per #176464.

*vim-core-7.1_beta001 (10 May 2007)

  10 May 2007; Mike Kelly <pioto@gentoo.org> +vim-core-7.1_beta001.ebuild:
  Version bump, new beta version w/ updated runtime files, etc.

  09 May 2007; Mike Kelly <pioto@gentoo.org> -vim-core-7.0.91.ebuild,
  -vim-core-7.0.146.ebuild, -vim-core-7.0.201.ebuild:
  Remove old versions.

  04 May 2007; Daniel Gryniewicz <dang@gentoo.org> vim-core-7.0.235.ebuild:
  Marked stable on amd64 for bug #176464

  03 May 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  vim-core-7.0.235.ebuild:
  ppc stable, bug #176464

  02 May 2007; Markus Rothe <corsair@gentoo.org> vim-core-7.0.235.ebuild:
  Stable on ppc64; bug #176464

  02 May 2007; Jeroen Roovers <jer@gentoo.org> vim-core-7.0.235.ebuild:
  Stable for HPPA (bug #176464).

  02 May 2007; Bryan Østergaard <kloeri@gentoo.org>
  vim-core-7.0.235.ebuild:
  Stable on Alpha, bug 176464.

  02 May 2007; Ferris McCormick <fmccor@gentoo.org> vim-core-7.0.235.ebuild:
  Stable on sparc --- Bug #176464

  02 May 2007; Raúl Porcel <armin76@gentoo.org> vim-core-7.0.235.ebuild:
  ia64 + x86 stable wrt security bug 176464

*vim-core-7.0.235 (29 Apr 2007)

  29 Apr 2007; Mike Kelly <pioto@gentoo.org> +vim-core-7.0.235.ebuild:
  Version bump. Fixes 2 security issues with modelines and other bugs.

  21 Mar 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  vim-core-7.0.174.ebuild:
  Stable on alpha/ia64 wrt bug #167816.

  07 Mar 2007; Alexander H. Færøy <eroyf@gentoo.org>
  vim-core-7.0.174.ebuild:
  Marked ~mips; bug #168008

  26 Feb 2007; Daniel Gryniewicz <dang@gentoo.org> vim-core-7.0.174.ebuild:
  Marked stable on amd64 For bug #167816

*vim-core-7.0.201 (24 Feb 2007)

  24 Feb 2007; Mike Kelly <pioto@gentoo.org> +vim-core-7.0.201.ebuild:
  Version bump.

  21 Feb 2007; Markus Rothe <corsair@gentoo.org> vim-core-7.0.174.ebuild:
  Stable on ppc64; bug #167816

  21 Feb 2007; Ferris McCormick <fmccor@gentoo.org> vim-core-7.0.174.ebuild:
  Stable on sparc --- Bug #167816

  21 Feb 2007; Jeroen Roovers <jer@gentoo.org> vim-core-7.0.174.ebuild:
  Stable for HPPA (bug #167816).

  21 Feb 2007; Joseph Jezak <josejx@gentoo.org> vim-core-7.0.174.ebuild:
  Marked ppc stable for bug #167816.

  21 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  vim-core-7.0.174.ebuild:
  stable x86; bug 167816

  18 Feb 2007; Markus Rothe <corsair@gentoo.org> vim-core-7.0.91.ebuild:
  Stable on ppc64

  03 Dec 2006; Jeroen Roovers <jer@gentoo.org> vim-core-7.0.91.ebuild:
  Stable for HPPA.

*vim-core-7.0.174 (30 Nov 2006)

  30 Nov 2006; Mike Kelly <pioto@gentoo.org> +vim-core-7.0.174.ebuild:
  Version bump.

  25 Oct 2006; Fabian Groffen <grobian@gentoo.org> vim-core-7.0.17.ebuild,
  vim-core-7.0.91.ebuild:
  Dropped ppc-macos, see you in prefix.

  25 Oct 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  vim-core-7.0.91.ebuild:
  Stable on sparc

  24 Oct 2006; Mike Kelly <pioto@gentoo.org> vim-core-7.0.146.ebuild:
  Dropping ppc-macos keyword, since eselect-1.0.6 isn't keyworded for it,
  either.

*vim-core-7.0.146 (22 Oct 2006)

  22 Oct 2006; Mike Kelly <pioto@gentoo.org> -vim-core-7.0.109.ebuild,
  +vim-core-7.0.146.ebuild:
  Version bump. Includes a patch to the German translation, Bug #134448).

  19 Oct 2006; Aron Griffis <agriffis@gentoo.org> vim-core-7.0.91.ebuild:
  Mark 7.0.91 stable on ia64

  18 Oct 2006; Aron Griffis <agriffis@gentoo.org> vim-core-7.0.91.ebuild:
  Mark 7.0.91 stable on alpha

  18 Oct 2006; Roy Marples <uberlord@gentoo.org> vim-core-7.0.91.ebuild,
  vim-core-7.0.109.ebuild:
  Added ~sparc-fbsd keyword.

  28 Sep 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  vim-core-7.0.17.ebuild:
  Stable on hppa

*vim-core-7.0.109 (20 Sep 2006)

  20 Sep 2006; Mike Kelly <pioto@gentoo.org> +vim-core-7.0.109.ebuild:
  Version bump, addition of support for eselect-vim (currently masked).

*vim-core-7.0.91 (08 Sep 2006)

  08 Sep 2006; Seemant Kulleen <seemant@gentoo.org> +vim-core-7.0.91.ebuild:
  Version bump, thanks to Ryan Phillips

  06 Sep 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  vim-core-7.0.17.ebuild:
  ppc stable

  05 Sep 2006; Joshua Kinard <kumba@gentoo.org> vim-core-7.0.17.ebuild:
  Marked stable on mips.

  04 Sep 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  vim-core-7.0.17.ebuild:
  Stable on sparc

  04 Sep 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  vim-core-7.0.17.ebuild:
  stable on x86 (bug #145694)

  31 Aug 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  vim-core-7.0.17.ebuild:
  Into the ~hppa fold

  18 Aug 2006; Bryan Østergaard <kloeri@gentoo.org> vim-core-7.0.17.ebuild:
  Stable on alpha.

  18 Aug 2006; Markus Rothe <corsair@gentoo.org> vim-core-7.0.17.ebuild:
  Stable on ppc64

  18 Aug 2006; Michael Cummings <mcummings@gentoo.org>
  vim-core-7.0.17.ebuild:
  Marking amd64 stable

  10 Jul 2006; Aron Griffis <agriffis@gentoo.org> vim-core-7.0.17.ebuild:
  Mark 7.0.17 stable on ia64

  28 May 2006; <rphillips@gentoo.org> -vim-core-7.0.ebuild,
  -vim-core-7.0-r1.ebuild, -vim-core-7.0-r2.ebuild:
  removed old ebuilds

*vim-core-7.0.17 (28 May 2006)

  28 May 2006; <rphillips@gentoo.org> +vim-core-7.0.17.ebuild:
  version bump to 7.0.17 and vimtutor fix

*vim-core-7.0-r2 (12 May 2006)

  12 May 2006; <rphillips@gentoo.org> +vim-core-7.0-r2.ebuild:
  Changed vim tarball to be -r1.

*vim-core-7.0-r1 (10 May 2006)

  10 May 2006; <rphillips@gentoo.org> +vim-core-7.0-r1.ebuild:
  Added 7.0.10

  10 May 2006; <rphillips@gentoo.org> files/digest-vim-core-7.0, Manifest:
  fixed package. removed spell files

  08 May 2006; Ferris McCormick <fmccor@gentoo.org> vim-core-7.0.ebuild:
  Add ~sparc keyword.

*vim-core-7.0 (08 May 2006)

  08 May 2006; <rphillips@gentoo.org> -vim-core-7.0_beta.ebuild,
  +vim-core-7.0.ebuild:
  Version bump to 7.0

  31 Mar 2006; Diego Pettenò <flameeyes@gentoo.org>
  vim-core-7.0_beta.ebuild:
  Add ~x86-fbsd keyword.

  29 Mar 2006; Markus Rothe <corsair@gentoo.org> vim-core-7.0_beta.ebuild:
  Added ~ppc64

  29 Mar 2006; Michael Sterrett <mr_bones_@gentoo.org>
  -vim-core-7.0_alpha20060228.ebuild, -vim-core-7.0_alpha20060306.ebuild,
  -vim-core-7.0_alpha20060320.ebuild:
  remove old 7.0_alpha ebuilds since they shouldn't be used anymore (per ciaranm)

  26 Mar 2006; Fernando J. Pereda <ferdy@gentoo.org>
  vim-core-7.0_beta.ebuild:
  Add ~alpha keyword

*vim-core-7.0_beta (25 Mar 2006)

  25 Mar 2006; Stefan Schweizer <genstef@gentoo.org> +files/vimrc-r3,
  +vim-core-7.0_beta.ebuild:
  Vim update, commit for ciaranm, thanks to Ed Catmur, bug 122562

*vim-core-7.0_alpha20060306 (06 Mar 2006)

  06 Mar 2006; Ciaran McCreesh <ciaranm@gentoo.org>
  +vim-core-7.0_alpha20060306.ebuild:
  New vim7 snapshot.

  28 Feb 2006; Ciaran McCreesh <ciaranm@gentoo.org>
  -vim-core-7.0_alpha20060123.ebuild, -vim-core-7.0_alpha20060205.ebuild,
  -vim-core-7.0_alpha20060218.ebuild:
  Tidy up.

*vim-core-7.0_alpha20060228 (28 Feb 2006)

  28 Feb 2006; Ciaran McCreesh <ciaranm@gentoo.org>
  +vim-core-7.0_alpha20060228.ebuild:
  New vim7 snapshot, with tabs that don't segfault.

*vim-core-7.0_alpha20060218 (18 Feb 2006)

  18 Feb 2006; Ciaran McCreesh <ciaranm@gentoo.org>
  +vim-core-7.0_alpha20060218.ebuild:
  New vim7 snapshot

*vim-core-7.0_alpha20060205 (05 Feb 2006)

  05 Feb 2006; Ciaran McCreesh <ciaranm@gentoo.org>
  +vim-core-7.0_alpha20060205.ebuild:
  New vim7 snapshot.

  23 Jan 2006; Ciaran McCreesh <ciaranm@gentoo.org>
  -vim-core-7.0_alpha20060113.ebuild:
  Tidy up vim7 snapshots.

*vim-core-7.0_alpha20060123 (23 Jan 2006)

  23 Jan 2006; Ciaran McCreesh <ciaranm@gentoo.org>
  +vim-core-7.0_alpha20060123.ebuild:
  New vim7 snapshot.

  13 Jan 2006; Ciaran McCreesh <ciaranm@gentoo.org>
  -vim-core-7.0_alpha20051207.ebuild, -vim-core-7.0_alpha20051215.ebuild,
  -vim-core-7.0_alpha20051224.ebuild:
  Tidy up old versions

*vim-core-7.0_alpha20060113 (13 Jan 2006)

  13 Jan 2006; Ciaran McCreesh <ciaranm@gentoo.org>
  +vim-core-7.0_alpha20060113.ebuild:
  New vim7 snapshot

*vim-core-7.0_alpha20051224 (24 Dec 2005)

  24 Dec 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  +vim-core-7.0_alpha20051224.ebuild:
  New vim7 snapshot

*vim-core-7.0_alpha20051215 (15 Dec 2005)

  15 Dec 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  +vim-core-7.0_alpha20051215.ebuild:
  New vim7 snapshot.

*vim-core-7.0_alpha20051207 (07 Dec 2005)

  07 Dec 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  -vim-core-7.0_alpha20050928.ebuild, -vim-core-7.0_alpha20051127.ebuild,
  +vim-core-7.0_alpha20051207.ebuild:
  New vim7 snapshot. Qt/KDE support removed, tcl support removed.

*vim-core-7.0_alpha20051127 (27 Nov 2005)

  27 Nov 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  +vim-core-7.0_alpha20051127.ebuild:
  New vim7 snapshot.

  21 Nov 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  -vim-core-6.3.084.ebuild, -vim-core-6.3.084-r2.ebuild,
  -vim-core-6.3.086.ebuild, -vim-core-6.4_beta.ebuild:
  Tidy up older ebuilds.

  20 Nov 2005; Hardave Riar <hardave@gentoo.org> vim-core-6.4.ebuild:
  Stable on mips, bug #112226.

  19 Nov 2005; Guy Martin <gmsoft@gentoo.org> vim-core-6.4.ebuild:
  Stable on hppa.

  13 Nov 2005; Jason Wever <weeve@gentoo.org> vim-core-6.4.ebuild:
  Stable on SPARC wrt bug #112226.

  12 Nov 2005; Brent Baude <ranger@gentoo.org> vim-core-6.4.ebuild:
  Marking vim-core-6.4 ppc64 for bug 112226

  12 Nov 2005; Fernando J. Pereda <ferdy@gentoo.org> vim-core-6.4.ebuild:
  stable on alpha wrt bug #112226

  12 Nov 2005; Luca Barbato <lu_zero@gentoo.org> vim-core-6.4.ebuild:
  Marked ppc

  12 Nov 2005; Konstantin Arkhipov <voxus@gentoo.org> vim-core-6.4.ebuild:
  Stable on amd64.

  11 Nov 2005; Andrej Kacian <ticho@gentoo.org> vim-core-6.4.ebuild:
  Stable on x86, bug #112226.

*vim-core-6.4 (15 Oct 2005)

  15 Oct 2005; Ciaran McCreesh <ciaranm@gentoo.org> +vim-core-6.4.ebuild:
  New version. More fstab fixes, bug #108732.

  09 Oct 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  -vim-core-6.3.068.ebuild, -vim-core-6.3.074.ebuild,
  -vim-core-6.3.075.ebuild:
  Tidy up

*vim-core-6.4_beta (09 Oct 2005)

  09 Oct 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  +vim-core-6.4_beta.ebuild:
  New version. Dropped selinux support, bug #106912.

*vim-core-7.0_alpha20050928 (28 Sep 2005)

  28 Sep 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  -vim-core-7.0_alpha20050922.ebuild, +vim-core-7.0_alpha20050928.ebuild:
  New vim7 snapshot

*vim-core-7.0_alpha20050922 (22 Sep 2005)

  22 Sep 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  -vim-core-7.0_alpha20050825.ebuild, +vim-core-7.0_alpha20050922.ebuild:
  New vim7 snapshot.

*vim-core-6.3.086 (22 Sep 2005)

  22 Sep 2005; Ciaran McCreesh <ciaranm@gentoo.org> files/vimrc-r2,
  +vim-core-6.3.086.ebuild:
  New version. Drop termcap support, bug #103105. Drop gtk1 support, bug
  #106560. Make minimal USE flag not need vim-core. Fix vimrc to work with vim
  built with -eval.

*vim-core-7.0_alpha20050825 (25 Aug 2005)

  25 Aug 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  -vim-core-7.0_alpha20050809.ebuild, -vim-core-7.0_alpha20050817.ebuild,
  +vim-core-7.0_alpha20050825.ebuild:
  Update vim7 snapshot.

  17 Aug 2005; Aron Griffis <agriffis@gentoo.org>
  vim-core-7.0_alpha20050809.ebuild:
  Mark -alpha since varargs stuff is broken

*vim-core-7.0_alpha20050817 (17 Aug 2005)

  17 Aug 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  +vim-core-7.0_alpha20050817.ebuild:
  New vim7 snapshot, should fix the compile problems on some archs.

  15 Aug 2005; Aron Griffis <agriffis@gentoo.org>
  vim-core-7.0_alpha20050809.ebuild:
  add ~ia64

*vim-core-6.3.084-r2 (12 Aug 2005)

  12 Aug 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  -vim-core-6.3.084-r1.ebuild, +vim-core-6.3.084-r2.ebuild:
  Update to a newer Netrw snapshot to fix problems with vim7-specific code
  being used unconditionally. Bug #102252.

*vim-core-7.0_alpha20050809 (09 Aug 2005)

  09 Aug 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  -vim-core-7.0_alpha20050622.ebuild, -vim-core-7.0_alpha20050721.ebuild,
  +vim-core-7.0_alpha20050809.ebuild:
  New vim7 snapshot. Tidy up old snapshots for eclass changes.

*vim-core-6.3.084-r1 (09 Aug 2005)

  09 Aug 2005; Ciaran McCreesh <ciaranm@gentoo.org> +files/vimrc-r2,
  +vim-core-6.3.084-r1.ebuild:
  Update runtime snapshot to 20050809. Include grub syntax highlighting fix
  from Toralf Förster, bug #96155. Include check for empty &shell, bug
  #101665. Default sh syntax highlighting mode is now bash rather than ksh,
  bug #101819.

  23 Jul 2005; Hardave Riar <hardave@gentoo.org> vim-core-6.3.084.ebuild:
  Stable on mips, bug #99578.

  23 Jul 2005; Bryan Østergaard <kloeri@gentoo.org>
  vim-core-6.3.084.ebuild:
  Stable on ia64, bug 99578.

  22 Jul 2005; Bryan Østergaard <kloeri@gentoo.org>
  vim-core-6.3.084.ebuild:
  Stable on alpha, bug 99578.

  22 Jul 2005; Markus Rothe <corsair@gentoo.org> vim-core-6.3.084.ebuild:
  Stable on ppc64 (bug #99578)

  21 Jul 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  vim-core-6.3.084.ebuild:
  Stable on sparc wrt #99578

  21 Jul 2005; Joseph Jezak <josejx@gentoo.org> vim-core-6.3.084.ebuild:
  Marked ppc stable for bug #99578.

  21 Jul 2005; Rene Nussbaumer <killerfox@gentoo.org>
  vim-core-6.3.084.ebuild:
  Stable on hppa. bug #99578

  21 Jul 2005; Herbie Hopkins <herbs@gentoo.org> vim-core-6.3.084.ebuild:
  Stable on amd64 wrt bug #99578.

*vim-core-7.0_alpha20050721 (21 Jul 2005)

  21 Jul 2005; <rphillips@gentoo.org> -vim-core-7.0_alpha20050321.ebuild,
  -vim-core-7.0_alpha20050326.ebuild, +vim-core-7.0_alpha20050721.ebuild:
  version bump vim7 ebuild and remove outdated packages

  21 Jul 2005; <rphillips@gentoo.org> :
  Version bump to 084 caused by security flaw. see bug #99578
  Removed old ebuilds

  21 Jul 2005; Markus Rothe <corsair@gentoo.org> vim-core-6.3.075.ebuild:
  Stable on ppc64

  21 Jul 2005; Joseph Jezak <josejx@gentoo.org> vim-core-6.3.075.ebuild:
  Marked ppc stable.

  18 Jul 2005; Aron Griffis <agriffis@gentoo.org> vim-core-6.3.075.ebuild:
  Stable alpha amd64 hppa ia64 mips sparc x86

  07 Jul 2005; Markus Rothe <corsair@gentoo.org> vim-core-6.3.068.ebuild:
  Stable on ppc64

*vim-core-6.3.075 (01 Jun 2005)

  01 Jun 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  +vim-core-6.3.075.ebuild:
  Update to upstream 6.3.075 and runtime snapshot as of 20050601. Include
  improved sh.vim keyword list, thanks to Ian Leitch in bug #93983. Include
  (more) fstab syntax highlighting fixes, bug #92263. Switch to using ncurses
  by default (with termcap-compat local USE flag for those who really want it)
  to keep *BSD happy, bug #93970.

*vim-core-7.0_alpha20050622 (23 Jun 2005)

  23 Jun 2005; <rphillips@gentoo.org> +vim-core-7.0_alpha20050622.ebuild:
  version bump

*vim-core-6.3.074 (23 May 2005)

  23 May 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  +vim-core-6.3.074.ebuild:
  Update to upstream patch 074. Add fixes for bug #92263, bug #93378.

  30 Apr 2005; Bryan Østergaard <kloeri@gentoo.org>
  vim-core-6.3.068.ebuild:
  Stable on ia64.

  14 Apr 2005; Bryan Østergaard <kloeri@gentoo.org>
  vim-core-6.3.068.ebuild:
  Stable on alpha.

  09 Apr 2005; Michael Hanselmann <hansmi@gentoo.org>
  vim-core-6.3.068.ebuild:
  Stable on ppc.

  05 Apr 2005; Marcus D. Hanwell <cryos@gentoo.org> vim-core-6.3.068.ebuild:
  Marked stable on amd64.

  05 Apr 2005; Michael Hanselmann <hansmi@gentoo.org>
  vim-core-6.3.068.ebuild:
  Stable on hppa.

  02 Apr 2005; Ciaran McCreesh <ciaranm@gentoo.org> vim-core-6.3.068.ebuild:
  x86 sparc mips stable

*vim-core-7.0_alpha20050326 (26 Mar 2005)

  26 Mar 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  +vim-core-7.0_alpha20050326.ebuild:
  New vim7 snapshot, hopefully with working tcltk support (bug #86709)

*vim-core-6.3.068 (25 Mar 2005)

  25 Mar 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  +vim-core-6.3.068.ebuild:
  New release. Fixes bug #79981, bug #81289, bug #83383, bug #83416, bug
  #83565, bug #85758, upstream patches up to 6.3.068.

  22 Mar 2005; Aron Griffis <agriffis@gentoo.org> vim-core-6.3-r4.ebuild:
  Stable on alpha

*vim-core-7.0_alpha20050321 (21 Mar 2005)

  21 Mar 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  -vim-core-7.0_alpha20050308.ebuild, +vim-core-7.0_alpha20050321.ebuild:
  New vim7 snapshot

  17 Mar 2005; Lina Pezzella <j4rg0n@gentoo.org>
  vim-core-7.0_alpha20050308.ebuild:
  Testing ppc-macos progressive profile

*vim-core-7.0_alpha20050308 (08 Mar 2005)

  08 Mar 2005; Ciaran McCreesh <ciaranm@gentoo.org> +files/vimrc-r1,
  -vim-core-7.0_alpha20050122.ebuild, -vim-core-7.0_alpha20050126.ebuild,
  -vim-core-7.0_alpha20050201.ebuild, +vim-core-7.0_alpha20050308.ebuild:
  Updated vim7 snapshot

  06 Mar 2005; Marcus D. Hanwell <cryos@gentoo.org> vim-core-6.3-r4.ebuild:
  Marked stable on amd64.

  03 Mar 2005; Guy Martin <gmsoft@gentoo.org> vim-core-6.3-r4.ebuild:
  Stable on hppa.

  02 Mar 2005; Daniel Goller <morfic@gentoo.org> vim-core-6.3-r4.ebuild:
  Stable on ppc

  17 Feb 2005; Ciaran McCreesh <ciaranm@gentoo.org> vim-core-6.3-r4.ebuild:
  Stable on x86, sparc, mips

*vim-core-7.0_alpha20050201 (01 Feb 2005)

  01 Feb 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  +vim-core-7.0_alpha20050201.ebuild:
  Updated vim7 snapshot

*vim-core-7.0_alpha20050126 (26 Jan 2005)

  26 Jan 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  -vim-core-7.0_alpha20050113.ebuild, +vim-core-7.0_alpha20050126.ebuild:
  Updated vim7 snapshot

*vim-core-7.0_alpha20050122 (22 Jan 2005)

  22 Jan 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  +vim-core-7.0_alpha20050122.ebuild:
  Updated vim7 snapshot.

  22 Jan 2005; Ciaran McCreesh <ciaranm@gentoo.org> +files/xxd-completion:
  Add bash-completion script. For now this is vim-7 only. If it seems to work
  well, it'll be included in a later vim-6 revision.

*vim-core-6.3-r4 (21 Jan 2005)

  21 Jan 2005; Ciaran McCreesh <ciaranm@gentoo.org> +vim-core-6.3-r4.ebuild:
  Version bump. New runtime snapshot from upstream, plus fixes for bugs
  #75816, #76713, #68622. We now pull in Gentoo Syntax as a PDEPEND (hey,
  we're already installing Debian-specific things, might as well bring in
  something useful...).

  15 Jan 2005; Ciaran McCreesh <ciaranm@gentoo.org> -vim-core-6.2-r9.ebuild,
  -vim-core-6.3-r1.ebuild, -vim-core-6.3-r2.ebuild, vim-core-6.3-r3.ebuild,
  -vim-core-6.3.ebuild:
  6.3-r3 stable on s390, arm. Remove older versions.

  14 Jan 2005; Ciaran McCreesh <ciaranm@gentoo.org> files/vimrc:
  Update vimrc to only try to use ftplugins if we have a valid ftplugin
  directory (for livecds)

*vim-core-7.0_alpha20050113 (13 Jan 2005)

  13 Jan 2005; Ciaran McCreesh <ciaranm@gentoo.org>
  -vim-core-7.0_alpha20041211.ebuild, +vim-core-7.0_alpha20050113.ebuild:
  Update vim7 snapshot

  10 Jan 2005; Aron Griffis <agriffis@gentoo.org>
  vim-core-7.0_alpha20041211.ebuild:
  add ~alpha

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

  14 Dec 2004; Akinori Hattori <hattya@gentoo.org> vim-core-6.3-r3.ebuild:
  stable on ia64, #bug #73715.

  14 Dec 2004; <SeJo@gentoo.org> vim-core-6.3-r3.ebuild:
  stable on ppc bug 73715

  13 Dec 2004; Markus Rothe <corsair@gentoo.org> vim-core-6.3-r3.ebuild:
  Stable on ppc64

  12 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> files/vimrc:
  Update the vimrc link to the new devrel handbook rather than the old howtos

*vim-core-7.0_alpha20041211 (11 Dec 2004)

  11 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org>
  -vim-core-7.0_alpha20041128.ebuild, +vim-core-7.0_alpha20041211.ebuild:
  Update vim7 snapshots (still in package.mask)

  11 Dec 2004; Guy Martin <gmsoft@gentoo.org> vim-core-6.3-r3.ebuild:
  Stable on hppa.

  10 Dec 2004; Bryan Østergaard <kloeri@gentoo.org> vim-core-6.3-r3.ebuild:
  Stable on alpha.

  09 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> vim-core-6.3-r3.ebuild:
  sparc, mips, x86 stable

  09 Dec 2004; Simon Stelling <blubb@gentoo.org> vim-core-6.3-r3.ebuild:
  stable on amd64

*vim-core-6.3-r3 (09 Dec 2004)

  09 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> files/vimrc,
  +vim-core-6.3-r3.ebuild:
  Update to 6.3.045 from vim.org and updated the runtime snapshot

  07 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> files/vimrc:
  Update the vimrc comments regarding modelines. If you need more information
  on this, either email me or await the next vim release.

*vim-core-7.0_alpha20041128 (28 Nov 2004)

  28 Nov 2004; Ciaran McCreesh <ciaranm@gentoo.org>
  +vim-core-7.0_alpha20041128.ebuild:
  Added package.masked vim-7.0aa ebuilds. Not suitable for general use.

  25 Nov 2004; Ciaran McCreesh <ciaranm@gentoo.org> files/vimrc:
  Turn on ftplugins by default, more comments

  20 Oct 2004; Akinori Hattori <hattya@gentoo.org> vim-core-6.3-r2.ebuild:
  stable on ia64, bug #66772

  05 Oct 2004; Pieter Van den Abeele <pvdabeel@gentoo.org>
  vim-core-6.3-r2.ebuild:
  Masked vim-core-6.3-r2.ebuild stable for ppc

  04 Oct 2004; Guy Martin <gmsoft@gentoo.org> vim-core-6.3-r2.ebuild:
  Stable on hppa.

  22 Sep 2004; Danny van Dyk <kugelfang@gentoo.org> vim-core-6.3-r2.ebuild:
  Stable on amd64 and s390.

  19 Sep 2004; Bryan Østergaard,,, <kloeri@gentoo.org> vim-core-6.3-r2.ebuild:
  Stable on alpha.

  18 Sep 2004; Ciaran McCreesh <ciaranm@gentoo.org> vim-core-6.3-r2.ebuild:
  Stable on x86, sparc, mips

*vim-core-6.3-r2 (11 Sep 2004)

  11 Sep 2004; Ciaran McCreesh <ciaranm@gentoo.org> +vim-core-6.3-r2.ebuild:
  Version bump. Include an updated runtime snapshot and better vixie-cron
  support (bug #61879)

  19 Aug 2004; Ciaran McCreesh <ciaranm@gentoo.org> files/vimrc:
  Use setfiletype rather than set filetype= in our vimrc so that we can override
  it from plugins

  17 Jul 2004; Tom Gall <tgall@gentoo.org> vim-core-6.3-r1.ebuild:
  stable on ppc64

  16 Jul 2004; Bryan Østergaard <kloeri@gentoo.org> vim-core-6.3-r1.ebuild:
  Stable on alpha.

  16 Jul 2004; Guy Martin <gmsoft@gentoo.org> vim-core-6.3-r1.ebuild:
  Marked stable on hppa.

  15 Jul 2004; Travis Tilley <lv@gentoo.org> vim-core-6.3-r1.ebuild:
  stable on amd64

  15 Jul 2004; Luca Barbato <lu_zero@gentoo.org> vim-core-6.3-r1.ebuild:
  Marked ppc

  15 Jul 2004; Ciaran McCreesh <ciaranm@gentoo.org> vim-core-6.3-r1.ebuild:
  Stable on x86, sparc, mips. Archs with vim-core-6.3 stable, please consider
  stabling vim-core-6.3-r1.

*vim-core-6.3-r1 (07 Jul 2004)

  07 Jul 2004; Aron Griffis <agriffis@gentoo.org> vim-core-6.3-r1.ebuild:
  Bump runtime snapshot to fix netrw problems with rsync-over-ssh

  28 Jun 2004; Tom Gall <tgall@gentoo.org> vim-core-6.2-r9.ebuild:
  stable on ppc64

  25 Jun 2004; Ciaran McCreesh <ciaranm@gentoo.org> -vim-core-6.2-r4.ebuild,
  -vim-core-6.2-r5.ebuild, -vim-core-6.2-r6.ebuild, -vim-core-6.2-r7.ebuild,
  -vim-core-6.2-r8.ebuild:
  Remove old versions for eclass updates, bug #53777

  25 Jun 2004; Tom Gall <tgall@gentoo.org> vim-core-6.3.ebuild:
  Stable on ppc64

  22 Jun 2004; Gustavo Zacarias <gustavoz@gentoo.org> vim-core-6.3.ebuild:
  Stable on hppa

  21 Jun 2004; <agriffis@gentoo.org> files/vimrc:
  Fix bug 54541: set ttymouse=xterm2 when running in xterm. Additionally comment
  out some deprecated settings

  21 Jun 2004; Ciaran McCreesh <ciaranm@gentoo.org> vim-core-6.2-r9.ebuild:
  Moving s390 stable up to 6.2-r9 so that I can tidy up older versions and
  update the eclass (the s390 development team is on extended leave).

  20 Jun 2004; Aron Griffis <agriffis@gentoo.org> vim-core-6.3.ebuild:
  Stable on alpha and ia64

  20 Jun 2004; Guy Martin <gmsoft@gentoo.org> vim-core-6.2-r9.ebuild:
  Marked stable on hppa.

  20 Jun 2004; Michael Hanselmann <hansmi@gentoo.org> vim-core-6.3.ebuild:
  Stable on ppc.

  20 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> vim-core-6.2-r9.ebuild:
  Stable on alpha.

  18 Jun 2004; Brandon Hale <tseng@gentoo.org> vim-core-6.3.ebuild:
  Stable on x86.

  19 Jun 2004; Ciaran McCreesh <ciaranm@gentoo.org> vim-core-6.3.ebuild:
  Stable on sparc, mips

  14 Jun 2004; Ciaran McCreesh <ciaranm@gentoo.org> files/vimrc:
  Add in crontab autocmd to fix backupcopy, see bug 53437 and :help crontab. No
  revbump as it's only a minor change.

  11 Jun 2004; Ciaran McCreesh <ciaranm@gentoo.org>
  -vim-core-6.3_beta2.ebuild:
  Remove beta versions

*vim-core-6.3 (08 Jun 2004)

  08 Jun 2004; Ciaran McCreesh <ciaranm@gentoo.org> +vim-core-6.3.ebuild:
  Version bump, bug #53295

  07 Jun 2004; Ciaran McCreesh <ciaranm@gentoo.org> vim-core-6.3_beta2.ebuild:
  Added in remaining keywords, bug #51705

  02 Jun 2004; Travis Tilley <lv@gentoo.org> vim-core-6.2-r9.ebuild:
  stable on amd64

  28 May 2004; Ian Leitch <port001@gentoo.org> vim-core-6.3_beta2.ebuild:
  Keyworded ~x86

  27 May 2004; Aron Griffis <agriffis@gentoo.org> vim-core-6.3_beta2.ebuild:
  Add ~ia64

  26 May 2004; Bryan Østergaard <kloeri@gentoo.org> vim-core-6.3_beta2.ebuild:
  Keyworded ~alpha, bug #51705.

  26 May 2004; Luca Barbato <lu_zero@gentoo.org> vim-core-6.3_beta2.ebuild:
  Marked ~ppc

*vim-core-6.3_beta2 (21 May 2004)

  21 May 2004; Ciaran McCreesh <ciaranm@gentoo.org>
  +vim-core-6.3_beta2.ebuild:
  Added vim 6.3b (as _beta2) ebuilds in preparation for 6.3 final. These are
  masked in package.mask -- if you unmask locally, you should unmask vim, gvim
  and vim-core. Only leaving in ~arch on archs for which I've tested, filing a
  bug for everyone else.

  12 May 2004; Ciaran McCreesh <ciaranm@gentoo.org> vim-core-6.2-r9.ebuild:
  Stable on sparc, mips

*vim-core-6.2-r9 (01 May 2004)

  01 May 2004; Aron Griffis <agriffis@gentoo.org> +vim-core-6.2-r9.ebuild:
  Includes patches up to 517 and selinux support, plus update to 20040430
  runtime snapshot

  19 Apr 2004; Tom Gall <tgall@gentoo.org> vim-core-6.2-r8.ebuild:
  added ppc64, marked stable, it works

*vim-core-6.2-r8 (09 Apr 2004)

  09 Apr 2004; Aron Griffis <agriffis@gentoo.org> +vim-core-6.2-r8.ebuild:
  Update to vim-6.2.461 and vim-runtime-20040408

  07 Apr 2004; Brian Jackson <iggy@gentoo.org> vim-core-6.2-r7.ebuild:
  added s390 keyword

  30 Mar 2004; Jon Portnoy <avenj@gentoo.org> vim-core-6.2-r7.ebuild :
  Stable on AMD64

  29 Mar 2004; Lars Weiler <pylon@gentoo.org> vim-core-6.2-r7.ebuild:
  stable on ppc

  26 Mar 2004; Guy Martin <gmsoft@gentoo.org> vim-core-6.2-r7.ebuild:
  Marked stable on hppa.

  08 Mar 2004; Ciaran McCreesh <ciaranm@gentoo.org> vim-core-6.2-r7.ebuild:
  Sparc, mips stable

  03 Mar 2004; <agriffis@gentoo.org> vim-core-6.2-r1.ebuild,
  vim-core-6.2-r2.ebuild, vim-core-6.2-r3.ebuild, vim-core-6.2.ebuild:
  Remove old ebuilds

  03 Mar 2004; <agriffis@gentoo.org> vim-core-6.2-r7.ebuild:
  stable on x86, alpha, ia64

  22 Feb 2004; Aron Griffis <agriffis@gentoo.org> vim-core-6.2-r1.ebuild,
  vim-core-6.2-r2.ebuild, vim-core-6.2-r3.ebuild, vim-core-6.2-r4.ebuild,
  vim-core-6.2-r5.ebuild, vim-core-6.2-r6.ebuild, vim-core-6.2-r7.ebuild,
  vim-core-6.2.ebuild:
  Remove arm keywords

*vim-core-6.2-r7 (15 Feb 2004)

  15 Feb 2004; Aron Griffis <agriffis@gentoo.org> vim-core-6.2-r7.ebuild:
  new vim-core which uses a runtime snapshot since Bram doesn't publish patches
  for every runtime fix

*vim-core-6.2-r6 (28 Jan 2004)

  28 Jan 2004; <rphillips@gentoo.org> vim-core-6.2-r6.ebuild:
  Added -r6 to support patches up to 214

  28 Dec 2003; Joshua Kinard <kumba@gentoo.org> vim-core-6.2-r5.ebuild:
  Move to mips stable (~mips -> mips)

  14 Dec 2003; Guy Martin <gmsoft@gentoo.org> vim-core-6.2-r5.ebuild:
  Marked stable on hppa.

  09 Dec 2003; Aron Griffis <agriffis@gentoo.org> vim-core-6.2-r5.ebuild:
  Revert to vim-6.2.069-gentoo-patches.tar.bz2 because the autoconf/EGREP patch
  requires autoconf-2.5, and we don't want to depend on that.  This change
  goes along with a modification to vim.eclass to force autoconf-2.13

  07 Dec 2003; Aron Griffis <agriffis@gentoo.org> vim-core-6.2-r5.ebuild:
  Use vim-6.2.140-gentoo-patches.tar.bz2 to fix bug 34505: Patch
  008_all_vim-6.2-slrnrc.patch is removed (it was never applying anyway!) and
  009_all_vim-6.2-egrep.patch.gz is added to fix building with
  WANT_AUTOCONF_2_5. I'll be pushing this patch upstream...

  04 Dec 2003; <agriffis@gentoo.org> vim-core-6.2-r5.ebuild:
  Mark stable on alpha, sparc, x86

  12 Nov 2003; Aron Griffis <agriffis@gentoo.org> vim-core-6.1-r4.ebuild,
  vim-core-6.1-r5.ebuild:
  Repair digests and remove old ebuilds

  11 Nov 2003; Aron Griffis <agriffis@gentoo.org> vim-core-6.2-r5.ebuild:
  Mark stable on ia64

  01 Nov 2003; Aron Griffis <agriffis@gentoo.org> :
  Fix digest for bug 32474

*vim-core-6.2-r5 (31 Oct 2003)

  31 Oct 2003; Ryan Phillips <rphillips@gentoo.org> vim-core-6.2-r5.ebuild:
  added patches up to 140.  Skipped to -r5 to sync vim-core with vim/ 
  and gvim/.

  07 Oct 2003; Aron Griffis <agriffis@gentoo.org> files/vimrc:
  Use nomodeline instead of modelines=0

  01 Oct 2003; Aron Griffis <agriffis@gentoo.org> vim-core-6.2-r4.ebuild,
  vim-core-6.2_pre1.ebuild, vim-core-6.2_pre2.ebuild,
  vim-core-6.2_pre3.ebuild, vim-core-6.2_pre4.ebuild,
  vim-core-6.2_pre5.ebuild, vim-core-6.2_pre6-r1.ebuild,
  vim-core-6.2_pre6.ebuild:
  Remove 6.2_pre ebuilds

  24 Sep 2003; Aron Griffis <agriffis@gentoo.org> vim-core-6.2-r4.ebuild:
  Mark stable on all arches

  19 Sep 2003; Christian Birchinger <joker@gentoo.org> vim-core-6.2-r3.ebuild:
  Added sparc stable keyword

*vim-core-6.2-r4 (18 Sep 2003)

  18 Sep 2003; Aron Griffis <agriffis@gentoo.org> vim-core-6.2-r3.ebuild,
  vim-core-6.2-r4.ebuild:
  Mark 6.2-r3 stable on alpha,x86; add 6.2-r4 which raises patchlevel from 69 to
  98

*vim-core-6.2-r3 (11 Aug 2003)

  24 Aug 2003; Guy Martin <gmsoft@gentoo.org> vim-core-6.2-r3.ebuild :
  Marked stable on hppa.

  11 Aug 2003; Aron Griffis <agriffis@gentoo.org> vim-core-6.2-r3.ebuild:
  Update to 6.2.069 plus a runtime patch to fix bug 25868

*vim-core-6.2-r2 (30 Jul 2003)

  30 Jul 2003; Aron Griffis <agriffis@gentoo.org> vim-core-6.2-r1.ebuild,
  vim-core-6.2-r2.ebuild:
  Revert accidental changes to -r1 and create -r2 instead

  29 Jul 2003; Aron Griffis <agriffis@gentoo.org> vim-core-6.2-r1.ebuild:
  Update to 6.2.057

  09 Jul 2003; Christian Birchinger <joker@gentoo.org> vim-core-6.2-r1.ebuild:
  Added sparc stable keyword

  06 Jul 2003; Aron Griffis <agriffis@gentoo.org> metadata.xml:
  Add metadata.xml

*vim-core-6.2-r1 (03 Jul 2003)

  03 Jul 2003; Aron Griffis <agriffis@gentoo.org> vim-core-6.2-r1.ebuild,
  files/vimrc:
  Increase saved register lines in viminfo to something more reasonable

  27 Jun 2003; Aron Griffis <agriffis@gentoo.org> vim-core-6.2.ebuild:
  Mark stable on x86 and alpha

*vim-core-6.2 (03 Jun 2003)

  02 Jul 2003; Guy Martin <gmsoft@gentoo.org> vim-core-6.2.ebuild :
  Marked stable on hppa.

  03 Jun 2003; Aron Griffis <agriffis@gentoo.org> vim-core-6.2.ebuild:
  Update to 6.2 release with the 11 available patches

*vim-core-6.2_pre6-r1 (28 May 2003)

  28 May 2003; Aron Griffis <agriffis@gentoo.org> vim-core-6.2_pre6-r1.ebuild:
  Add patch to make autoconf-2.57 work with Vim. This fixes bug 19438. Bram is
  also integrating this patch into his sources.

  26 May 2003; Aron Griffis <agriffis@gentoo.org> files/vimrc:
  Update vimrc to respect user textwidth setting; fixes bug 20217

*vim-core-6.2_pre6 (26 May 2003)

  26 May 2003; Aron Griffis <agriffis@gentoo.org> vim-core-6.2_pre6.ebuild:
  Update to 6.2f

*vim-core-6.2_pre5 (23 May 2003)

  23 May 2003; Aron Griffis <agriffis@gentoo.org> vim-core-6.2_pre5.ebuild:
  Update to 6.2e

*vim-core-6.2_pre4 (21 May 2003)

  21 May 2003; Aron Griffis <agriffis@gentoo.org> vim-core-6.2_pre4.ebuild:
  Update to 6.2d

*vim-core-6.2_pre3 (06 May 2003)

  06 May 2003; Aron Griffis <agriffis@gentoo.org> vim-core-6.2_pre3.ebuild:
  Update to 6.2c

*vim-core-6.2_pre2 (28 Apr 2003)

  29 Jun 2003; Daniel Ahlberg <aliz@gentoo.org> :
  Added missing changelog entry.

*vim-core-6.2_pre1 (23 Apr 2003)

  24 Apr 2003; Aron Griffis <agriffis@gentoo.org> :
  Update digests

  23 Apr 2003; Aron Griffis <agriffis@gentoo.org> vim-core-6.1-r4.ebuild,
  vim-core-6.1-r5.ebuild, vim-core-6.2_pre1.ebuild:
  Update all ebuilds to work with new eclass.  Add version 6.2a.

*vim-core-6.1-r5 (22 Mar 2003)

  16 Apr 2003; Guy Martin <gmsoft@gentoo.org> vim-core-6.1-r5.ebuild :
  Marked stable on hppa.

  02 Apr 2003; Aron Griffis <agriffis@gentoo.org> vim-core-6.1-r5.ebuild:
  Move primary deps to eclass and add IUSE=ncurses in support of bug 18488

  28 Mar 2003; Christian Birchinger <joker@gentoo.org> vim-core-6.1-r5.ebuild:
  Added sparc stable keyword

  22 Mar 2003; Aron Griffis <agriffis@gentoo.org> vim-core-6.1-r5.ebuild,
  files/vimrc:
  Move vimrc from vim to vim-core. Update to patchlevel 411. Mark stable on
  x86, alpha.  Changes to the eclass are described in the vim ChangeLog.

  08 Feb 2003; Guy Martin <gmsoft@gentoo.org> vim-core-6.1-r4.ebuild :
  Added hppa to keywords.

  22 Jan 2003; Daniel Ahlberg <aliz@gentoo.org> vim-core-6.1-r4.ebuild :
  Unmasked, security update.

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
  12 Nov 2002; Mark Guertin <gerk@gentoo.org> :
  set all builds except 6.1-r3 to -ppc, the -r3 build is now
  ppc (its only one that works on ppc)

*vim-core-6.1-r4 (21 Jan 2003)

  14 Mar 2003; Seemant Kulleen <seemant@gentoo.org> vim-core-6.1-r1.ebuild,
  vim-core-6.1-r1.ebuild, vim-core-6.1-r2.ebuild, vim-core-6.1-r2.ebuild,
  vim-core-6.1-r3.ebuild, vim-core-6.1-r3.ebuild, vim-core-6.1-r4.ebuild,
  vim-core-6.1.ebuild, vim-core-6.1.ebuild:
  uses the vim.eclass now

  14 Mar 2003; Jan Seidel <tuxus@gentoo.org> vim-core-6.1-r4.ebuild :
  Added mips to KEYWORDS

  24 Feb 2003; Zach Welch <zwelch@gentoo.org> vim-core-6.1-r4.ebuild :
  Add arm keyword

  21 Jan 2003; Ryan Phillips <rphillips@gentoo.org> vim-core-6.1-r4.ebuild :
  Patches 1-300

*vim-core-6.1-r3 (27 Oct 2002)

  12 Nov 2002; Ryan Phillips <rphillips@gentoo.org> vim-core-6.1-r3.ebuild :

  Added libtermcap to deps

  07 Nov 2002; Ryan Phillips <rphillips@gentoo.org> vim-core-6.1-r3.ebuild :

  Added Bret Towe's fixes to the ebuild. Fixes #10044

  27 Oct 2002; Ryan Phillips <rphillips@gentoo.org> vim-core-6.1-r3.ebuild :

  Added vim eclass support

*vim-core-6.1-r2 (8 Oct 2002)

  8 Oct 2002; Ryan Phillips <rphillips@gentoo.org> vim-core-6.1-r2.ebuild :

  Added 201-215 patches.

*vim-core-6.1-r1 (29 Sep 2002)

  29 Sep 2002; Ryan Phillips <rphillips@gentoo.org> vim-core-6.1-r1.ebuild :

  Added patches 1-200. Submitted by Bret Towe. Fixes #8400

*vim-core-6.1 (12 Sep 2002)

  12 Sep 2002; Hannes Mehnert <hannes@gentoo.org> vim-core-6.1.ebuild:

  splitted vim into gvim, vim and vim-core