summaryrefslogtreecommitdiff
blob: 8cb1faf92994f66985321c38b2d6af010409d7f4 (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
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
# ChangeLog for dev-util/git
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/git/ChangeLog,v 1.312 2008/12/23 19:33:57 armin76 Exp $

  23 Dec 2008; Raúl Porcel <armin76@gentoo.org> git-1.6.0.6.ebuild:
  alpha/arm/ia64 stable wrt #251343

  23 Dec 2008; Robin H. Johnson <robbat2@gentoo.org> git-1.6.0.6.ebuild:
  Factor out the long emake invocation so that we can consistently call it
  and avoid triggering a rebuild during install or test.

  23 Dec 2008; Markus Meier <maekke@gentoo.org> git-1.6.0.6.ebuild:
  amd64/x86 stable, bug #251343

  23 Dec 2008; Ferris McCormick <fmccor@gentoo.org> git-1.6.0.6.ebuild:
  Sparc stable --- Security Bug #251343 --- all tests expected to pass do pass.

*git-1.6.0.6 (23 Dec 2008)

  23 Dec 2008; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.0.6.ebuild:
  Version bump.

  27 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> files/git-daemon.initd:
  Refix bug #238351 so that it works under baselayout1 and baselayout2.

*git-1.6.0.4-r2 (24 Nov 2008)

  24 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> files/git-daemon.initd,
  +git-1.6.0.4-r2.ebuild:
  Fix dumb typo, revbump to ensure any users that got the typo also get the
  fix.

  24 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> metadata.xml:
  Document what USE=gtk does for Git.

  24 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> git-1.6.0.4-r1.ebuild:
  Bug #240280, fix to use CFLAGS/LDFLAGS better.

  24 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> git-1.5.4.5.ebuild,
  git-1.5.5.3.ebuild, git-1.5.5.3-r1.ebuild, git-1.5.5.4.ebuild,
  git-1.5.6.1.ebuild, git-1.5.6.2.ebuild, git-1.5.6.3.ebuild,
  git-1.5.6.4.ebuild, git-1.5.6.5.ebuild, git-1.6.0.ebuild,
  git-1.6.0.1.ebuild, git-1.6.0.2.ebuild, git-1.6.0.3.ebuild,
  git-1.6.0.4.ebuild, git-1.6.0.4-r1.ebuild:
  Even better fixup for bug #238129.

  24 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> git-1.6.0.4-r1.ebuild:
  Bug #238586, issue a warning for dev-util/subversion[dso].

  24 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> git-1.5.4.5.ebuild,
  git-1.5.5.3.ebuild, git-1.5.5.3-r1.ebuild, git-1.5.5.4.ebuild,
  git-1.5.6.1.ebuild, git-1.5.6.2.ebuild, git-1.5.6.3.ebuild,
  git-1.5.6.4.ebuild, git-1.5.6.5.ebuild, git-1.6.0.ebuild,
  git-1.6.0.1.ebuild, git-1.6.0.2.ebuild, git-1.6.0.3.ebuild,
  git-1.6.0.4.ebuild, git-1.6.0.4-r1.ebuild:
  Bug #238129, the default behavior of built_with_use changed at some point.
  We do not want to die, but just to print a warning.

*git-1.6.0.4-r1 (24 Nov 2008)

  24 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> +files/50git-gentoo.el,
  +files/20081123-git-1.6.0.4-noperl-cvsserver.patch,
  files/git-daemon.confd, files/git-daemon.initd, +git-1.6.0.4-r1.ebuild:
  Fix bug #235393 for Emacs users. Fix bug #238351 for running the
  standalone init.d more safely as non-root and include the pidfile. Bug
  #247487, cvsserver now needs the Perl stuff. Bug #248446, fix htmldir
  support.

*git-1.6.0.4 (18 Nov 2008)

  18 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.0.4.ebuild:
  Bug #246244, version bump.

*git-1.6.0.3 (29 Oct 2008)

  29 Oct 2008; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.0.3.ebuild:
  Version bump.

*git-1.6.0.2 (21 Sep 2008)

  21 Sep 2008; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.0.2.ebuild:
  Version bump.

  16 Sep 2008; Jeroen Roovers <jer@gentoo.org> git-1.5.6.4.ebuild:
  Stable for HPPA (bug #234075).

  16 Sep 2008; Robin H. Johnson <robbat2@gentoo.org> files/git-daemon.initd,
  files/git-daemon.xinetd:
  Git 1.6 requires that daemon been an argument not part of the name.

*git-1.6.0.1 (30 Aug 2008)

  30 Aug 2008; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.0.1.ebuild:
  Version bump, only bugfixes.

  25 Aug 2008; Ulrich Mueller <ulm@gentoo.org> -files/71git-gentoo.el,
  files/72git-gentoo.el:
  Add comment in Emacs site-init file wrt bug 235393. Remove unused file.

  27 Aug 2008; Robin H. Johnson <robbat2@gentoo.org> git-1.5.6.4.ebuild,
  git-1.5.6.5.ebuild, git-1.6.0.ebuild:
  Remove references to dev-util/tla is latest stable and ~arch versions, per
  bug #235681

*git-1.6.0 (24 Aug 2008)

  24 Aug 2008; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.0.ebuild:
  Major version bump. Fixes bugs 219839, 225601 for userpriv during testing,
  working subversion-1.5 support per bug 224185 and skips installing git-svn
  when USE=-subversion per bug 233550.

*git-1.5.6.5 (16 Aug 2008)

  16 Aug 2008; Robin H. Johnson <robbat2@gentoo.org> +git-1.5.6.5.ebuild:
  Version bump.

  16 Aug 2008; Robin H. Johnson <robbat2@gentoo.org> metadata.xml:
  Make repoman happy.

  08 Aug 2008; Tobias Scherbaum <dertobi123@gentoo.org> git-1.5.6.4.ebuild:
  ppc stable, bug #234075

  08 Aug 2008; Raúl Porcel <armin76@gentoo.org> git-1.5.6.4.ebuild:
  alpha/ia64 stable wrt #234075

  07 Aug 2008; Markus Meier <maekke@gentoo.org> git-1.5.6.4.ebuild:
  x86 stable, bug #234075

  07 Aug 2008; Markus Rothe <corsair@gentoo.org> git-1.5.6.4.ebuild:
  Stable on ppc64; bug #234075

  07 Aug 2008; Thomas Anderson <gentoofan23@gentoo.org> git-1.5.6.4.ebuild:
  stable amd64, bug #234075

  06 Aug 2008; Ferris McCormick <fmccor@gentoo.org> git-1.5.6.4.ebuild:
  Sparc stable, security bug #234075 (good for about a week anyway).

*git-1.5.6.4 (28 Jul 2008)

  28 Jul 2008; Robin H. Johnson <robbat2@gentoo.org> +git-1.5.6.4.ebuild:
  Version bump.

*git-1.5.6.3 (17 Jul 2008)

  17 Jul 2008; Robin H. Johnson <robbat2@gentoo.org> +git-1.5.6.3.ebuild:
  Bug #232068, version bump.

*git-1.5.6.2 (10 Jul 2008)

  10 Jul 2008; Robin H. Johnson <robbat2@gentoo.org> +git-1.5.6.2.ebuild:
  Version bump per bug #231380.

*git-1.5.6.1 (26 Jun 2008)

  26 Jun 2008; Robin H. Johnson <robbat2@gentoo.org>
  +files/20080626-git-1.5.6.1-noperl.patch, +git-1.5.6.1.ebuild:
  Version bump.

  24 Jun 2008; Robin H. Johnson <robbat2@gentoo.org> git-1.5.5.4.ebuild:
  Fix bug thanks to compnerd.

  11 Jun 2008; nixnut <nixnut@gentoo.org> git-1.5.4.5.ebuild:
  Stable on ppc wrt bug 225231

  11 Jun 2008; Kenneth Prugh <ken69267@gentoo.org> git-1.5.4.5.ebuild:
  amd64 stable, bug #225231

*git-1.5.5.4 (11 Jun 2008)

  11 Jun 2008; Robin H. Johnson <robbat2@gentoo.org> +git-1.5.5.4.ebuild:
  Version bump.

  10 Jun 2008; Raúl Porcel <armin76@gentoo.org> git-1.5.4.5.ebuild:
  alpha/ia64/sparc/x86 stable wrt #225231

  09 Jun 2008; Brent Baude <ranger@gentoo.org> git-1.5.4.5.ebuild:
  stable ppc64, bug 225231

*git-1.5.5.3-r1 (07 Jun 2008)

  07 Jun 2008; Fernando J. Pereda <ferdy@gentoo.org> -git-1.5.2.5.ebuild,
  -git-1.5.4.ebuild, -git-1.5.4.2.ebuild, -git-1.5.4.3.ebuild,
  -git-1.5.4.4.ebuild, -git-1.5.4.4-r1.ebuild, -git-1.5.5.1.ebuild,
  -git-1.5.5.1-r1.ebuild, +git-1.5.5.3-r1.ebuild:
  Remove unneeded patches to Makefile. Stop die'ing upon a bad USE
  configuration by taking a sane decision. Remove unused versions.

  28 May 2008; Robin H. Johnson <robbat2@gentoo.org>
  files/20080528-git-1.5.5.3-noperl.patch:
  Forgot to add doc at the top of the new patch.

*git-1.5.5.3 (28 May 2008)

  28 May 2008; Robin H. Johnson <robbat2@gentoo.org>
  +files/20080528-git-1.5.5.3-noperl.patch,
  +files/vim-ftdetect-gitcommit.vim, +git-1.5.5.3.ebuild:
  Version bump, 1.5.5 series is pretty ready for primetime.

*git-1.5.5.1-r1 (29 Apr 2008)

  29 Apr 2008; Robin H. Johnson <robbat2@gentoo.org> +git-1.5.5.1-r1.ebuild:
  The gitweb.cgi did not contain the build-time replacements. Ensure that it
  does, and also make it executable by default so that portage does not
  strip the executability on upgrade.

  24 Apr 2008; Robin H. Johnson <robbat2@gentoo.org>
  +files/20080322-git-1.5.4.4-noperl.patch,
  -files/20080322-git-1.5.5.4-noperl.patch, git-1.5.4.4-r1.ebuild,
  git-1.5.4.5.ebuild:
  Fix bad numbering of file.

  24 Apr 2008; Robin H. Johnson <robbat2@gentoo.org>
  files/20080423-git-1.5.5.1-noperl.patch:
  No absolute paths in patches! Bug #219099.

*git-1.5.5.1 (24 Apr 2008)

  24 Apr 2008; Robin H. Johnson <robbat2@gentoo.org>
  +files/20080423-git-1.5.5.1-noperl.patch, +git-1.5.5.1.ebuild:
  Bump to 1.5.5.1 per bug 217593, noperl patch ported by dberkholz.

*git-1.5.4.5 (29 Mar 2008)

  29 Mar 2008; Robin H. Johnson <robbat2@gentoo.org> +git-1.5.4.5.ebuild:
  Version bump.

  24 Mar 2008; Raúl Porcel <armin76@gentoo.org> git-1.5.4.4-r1.ebuild:
  Re-add ~ia64 wrt #214464

*git-1.5.4.4-r1 (24 Mar 2008)

  24 Mar 2008; Robin H. Johnson <robbat2@gentoo.org>
  +files/20080322-git-1.5.5.4-noperl.patch, +git-1.5.4.4-r1.ebuild:
  Per bug 214168, some users are really picky about wanting a Perl-free Git.
  This new revision makes that a possibility, and now also introduces most
  of the dependancies that were only previously stated in the pkg_postinst
  phase. The following arch keywords have been dropped per bug 214464 until
  the arches can keyword the dependancies: arm, ia64, s390, sh.

  20 Mar 2008; Mike Frysinger <vapier@gentoo.org> git-1.5.4.4.ebuild:
  Add support for USE=xinetd #213014.

  20 Mar 2008; Robin H. Johnson <robbat2@gentoo.org> git-1.5.4.4.ebuild:
  The base Git.pm module now requires dev-perl/Error, so it is no longer
  optional under USE=perl. dev-perl/Net-SMTP-SSL remains optional as it is
  only used for git-send-email.

  17 Mar 2008; Robin H. Johnson <robbat2@gentoo.org> git-1.5.4.4.ebuild:
  dev-perl/Authen-SASL is an indirect dependancy of Net-SMTP-SSL already w/
  USE=sasl, so we can skip it here.

*git-1.5.4.4 (17 Mar 2008)

  17 Mar 2008; Robin H. Johnson <robbat2@gentoo.org> +git-1.5.4.4.ebuild:
  Version bump, fixing bugs #213549, #213543, #212131.

*git-1.5.4.3 (27 Feb 2008)

  27 Feb 2008; Robin H. Johnson <robbat2@gentoo.org> +git-1.5.4.3.ebuild:
  Version bump.

*git-1.5.4.2 (17 Feb 2008)

  17 Feb 2008; Fernando J. Pereda <ferdy@gentoo.org> +git-1.5.4.2.ebuild:
  New upstream version

  11 Feb 2008; Diego Pettenò <flameeyes@gentoo.org> git-1.5.4.ebuild:
  Fix sed for LDFLAGS, and make CFLAGS sed as robust as that.

  03 Feb 2008; Fernando J. Pereda <ferdy@gentoo.org> git-1.5.4.ebuild:
  Add USE=threads as per bug #208422

*git-1.5.4 (03 Feb 2008)

  03 Feb 2008; Fernando J. Pereda <ferdy@gentoo.org> -git-1.5.4_rc2.ebuild,
  -git-1.5.4_rc3.ebuild, -git-1.5.4_rc4.ebuild, +git-1.5.4.ebuild:
  New upstream version. Remove RCs for 1.5.4

  01 Feb 2008; Robin H. Johnson <robbat2@gentoo.org> git-1.5.2.5.ebuild,
  git-1.5.3.7-r1.ebuild, git-1.5.3.8.ebuild, git-1.5.4_rc2.ebuild,
  git-1.5.4_rc3.ebuild, git-1.5.4_rc4.ebuild:
  Clarify the extra deps for git-svnimport.

*git-1.5.4_rc4 (01 Feb 2008)

  01 Feb 2008; Robin H. Johnson <robbat2@gentoo.org> +git-1.5.4_rc4.ebuild:
  Version bump.

  14 Jan 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  git-1.5.3.7-r1.ebuild:
  ppc. stable

*git-1.5.4_rc3 (14 Jan 2008)

  14 Jan 2008; Robin H. Johnson <robbat2@gentoo.org> +git-1.5.4_rc3.ebuild:
  Bump the release candidate for more testing.

  13 Jan 2008; Fernando J. Pereda <ferdy@gentoo.org>
  +files/git-1.5.3.8-t9101.patch, git-1.5.3.8.ebuild:
  Add a fix for some test cases under subversion 1.4.6

*git-1.5.3.8 (10 Jan 2008)

  10 Jan 2008; Fernando J. Pereda <ferdy@gentoo.org>
  +files/git-1.5.3.8-t9106.patch, -git-1.5.3.2.ebuild, -git-1.5.3.3.ebuild,
  -git-1.5.3.4.ebuild, -git-1.5.3.4-r1.ebuild, -git-1.5.3.5.ebuild,
  -git-1.5.3.6.ebuild, -git-1.5.3.6-r1.ebuild, -git-1.5.3.7.ebuild,
  +git-1.5.3.8.ebuild, -git-1.5.4_rc0.ebuild, -git-1.5.4_rc1.ebuild,
  git-1.5.4_rc2.ebuild:
  Version bump. Fix some bugs and style nits. Remove unneeded verbosity.
  Remove unused versions.

*git-1.5.4_rc2 (01 Jan 2008)

  01 Jan 2008; Markus Ullmann <jokey@gentoo.org> +git-1.5.4_rc2.ebuild:
  Version bump, granted by robbat2 as test-suite passes

  29 Dec 2007; <welp@gentoo.org> git-1.5.4_rc1.ebuild:
  Keyworded ~sparc-fbsd; bug 203655

  27 Dec 2007; Robin H. Johnson <robbat2@gentoo.org> git-1.5.3.7-r1.ebuild:
  Stable on amd64. Tested by myself and gentoofan23.

  25 Dec 2007; Raúl Porcel <armin76@gentoo.org> git-1.5.3.7-r1.ebuild:
  alpha/ia64/sparc/x86 stable wrt #202383

  25 Dec 2007; Brent Baude <ranger@gentoo.org> git-1.5.3.7-r1.ebuild:
  Marking git-1.5.3.7-r1 ppc64 for bug 203283

  25 Dec 2007; nixnut <nixnut@gentoo.org> ChangeLog:
  Stable on ppc wrt bug 203283

  25 Dec 2007; Robin H. Johnson <robbat2@gentoo.org> git-1.5.3.7-r1.ebuild,
  git-1.5.4_rc0.ebuild, git-1.5.4_rc1.ebuild:
  Bug 201544: Use the proper build mechanism to disable the Tk-using sections
  of git.

*git-1.5.4_rc1 (25 Dec 2007)

  25 Dec 2007; Robin H. Johnson <robbat2@gentoo.org> +git-1.5.4_rc1.ebuild:
  Add latest rc from upstream.

  25 Dec 2007; Robin H. Johnson <robbat2@gentoo.org> git-1.5.3.7-r1.ebuild,
  git-1.5.4_rc0.ebuild:
  Install the git-p4 tool and the import-tars tool.

  17 Dec 2007; Robin H. Johnson <robbat2@gentoo.org> git-1.5.1.6.ebuild,
  git-1.5.2.5.ebuild, git-1.5.3.2.ebuild, git-1.5.3.3.ebuild,
  git-1.5.3.4.ebuild, git-1.5.3.4-r1.ebuild, git-1.5.3.5.ebuild,
  git-1.5.3.6.ebuild, git-1.5.3.6-r1.ebuild, git-1.5.3.7.ebuild,
  git-1.5.3.7-r1.ebuild, git-1.5.4_rc0.ebuild:
  Clean up all minorsyn problems with ebuilds.

*git-1.5.4_rc0 (17 Dec 2007)

  17 Dec 2007; Robin H. Johnson <robbat2@gentoo.org> +git-1.5.4_rc0.ebuild:
  Version bump. rc0 is for testing only, not production uage. Masked via
  package.mask.

  06 Dec 2007; Robin H. Johnson <robbat2@gentoo.org> git-1.5.3.7-r1.ebuild:
  Fix typo.

*git-1.5.3.7-r1 (06 Dec 2007)

  06 Dec 2007; Robin H. Johnson <robbat2@gentoo.org> +git-1.5.3.7-r1.ebuild:
  Install the gitweb stuff, as it's used by instaweb, and is also
  independantly useful, but does not lend itself to webapp-config very well.

*git-1.5.3.7 (05 Dec 2007)

  05 Dec 2007; Robin H. Johnson <robbat2@gentoo.org> +git-1.5.3.7.ebuild:
  Version bump. Please note that the CVS testcases are disabled unless you
  have FEATURES=userpriv, as CVS rejects commits as root.

*git-1.5.3.6-r1 (22 Nov 2007)

  22 Nov 2007; Robin H. Johnson <robbat2@gentoo.org> +git-1.5.3.6-r1.ebuild:
  Add missing cpio dependancy, redo the documentation install so that the text
  versions and (optionally) HTML versions are installed including the release
  notes. Also install some new bits from contrib: blameview,
  continuous-integration, remotes2config.

*git-1.5.3.6 (20 Nov 2007)

  20 Nov 2007; Fernando J. Pereda <ferdy@gentoo.org> +git-1.5.3.6.ebuild:
  New upstream version

*git-1.5.3.5 (14 Nov 2007)

  14 Nov 2007; Fernando J. Pereda <ferdy@gentoo.org> +git-1.5.3.5.ebuild:
  Version bump (bug #198903)

  19 Oct 2007; Fernando J. Pereda <ferdy@gentoo.org> git-1.5.3.4-r1.ebuild:
  vim-plugin.eclass pulls in vim, that is not desired. Revert that change for now

*git-1.5.3.4-r1 (19 Oct 2007)

  19 Oct 2007; Fernando J. Pereda <ferdy@gentoo.org> +git-1.5.3.4-r1.ebuild:
  Install vim and some stuff from contrib (related: bug #194940)

  05 Oct 2007; Mike Frysinger <vapier@gentoo.org> git-1.5.3.4.ebuild:
  Fix incorrect binding of iconv<->uclibc.

*git-1.5.3.4 (04 Oct 2007)

  04 Oct 2007; Fernando J. Pereda <ferdy@gentoo.org> +files/72git-gentoo.el,
  +git-1.5.3.4.ebuild:
  New upstream version. Include fixes from bug #194690 thanks to Christian
  Faulhammer <opfer@gentoo.org>

*git-1.5.3.3 (30 Sep 2007)

  30 Sep 2007; Fernando J. Pereda <ferdy@gentoo.org> +git-1.5.3.3.ebuild:
  New upstream version

  28 Sep 2007; Fernando J. Pereda <ferdy@gentoo.org> -git-1.5.3.ebuild:
  Remove 1.5.3

  28 Sep 2007; Joshua Kinard <kumba@gentoo.org> git-1.5.2.5.ebuild:
  Stable on mips, per #193113.

  20 Sep 2007; Christoph Mende <angelos@gentoo.org> git-1.5.2.5.ebuild:
  Stable on amd64 wrt bug #193113

  20 Sep 2007; Raúl Porcel <armin76@gentoo.org> git-1.5.2.5.ebuild:
  alpha/ia64 stable wrt #193113

  20 Sep 2007; Jeroen Roovers <jer@gentoo.org> git-1.5.2.5.ebuild:
  Stable for SPARC (bug #193113).

  20 Sep 2007; Brent Baude <ranger@gentoo.org> git-1.5.2.5.ebuild:
  Marking git-1.5.2.5 ppc64 for bug 193113

  19 Sep 2007; Lars Weiler <pylon@gentoo.org> git-1.5.2.5.ebuild:
  Stable on ppc; bug #193113.

  19 Sep 2007; Markus Meier <maekke@gentoo.org> git-1.5.2.5.ebuild:
  x86 stable, bug #193113

*git-1.5.3.2 (19 Sep 2007)

  19 Sep 2007; Fernando J. Pereda <ferdy@gentoo.org> +git-1.5.3.2.ebuild:
  New upstream version

*git-1.5.3 (02 Sep 2007)

  02 Sep 2007; Fernando J. Pereda <ferdy@gentoo.org> -git-1.5.3_rc7.ebuild,
  +git-1.5.3.ebuild:
  New upstream version. Remove rc7

*git-1.5.3_rc7 (29 Aug 2007)

  29 Aug 2007; Fernando J. Pereda <ferdy@gentoo.org>
  -files/git-1.5.3_rc5-read-tree.patch, -git-1.5.3_rc5-r1.ebuild,
  +git-1.5.3_rc7.ebuild:
  New upstream version. Remove rc5

  24 Aug 2007; Fernando J. Pereda <ferdy@gentoo.org> -git-1.5.2.4.ebuild,
  -git-1.5.3_rc4.ebuild:
  Remove unused obsoleted versions

*git-1.5.2.5 (15 Aug 2007)

  15 Aug 2007; Fernando J. Pereda <ferdy@gentoo.org> +git-1.5.2.5.ebuild:
  New maintenance version for 1.5.2 series

*git-1.5.3_rc5-r1 (15 Aug 2007)

  15 Aug 2007; Fernando J. Pereda <ferdy@gentoo.org>
  +files/git-1.5.3_rc5-read-tree.patch, -git-1.5.3_rc5.ebuild,
  +git-1.5.3_rc5-r1.ebuild:
  Add a patch to fix a segfault in rc5. Remove the buggy version. rc4 is safe.

*git-1.5.3_rc5 (15 Aug 2007)

  15 Aug 2007; Fernando J. Pereda <ferdy@gentoo.org> +git-1.5.3_rc5.ebuild:
  New upstream version.

  13 Aug 2007; Fernando J. Pereda <ferdy@gentoo.org>
  -files/git-1.5.2-tempfile.patch, -git-1.5.0.7.ebuild, -git-1.5.2.ebuild,
  -git-1.5.2.1.ebuild, -git-1.5.2.2.ebuild:
  Remove old and unused stuff

*git-1.5.3_rc4 (08 Aug 2007)

  08 Aug 2007; Fernando J. Pereda <ferdy@gentoo.org>
  +files/git-1.5.3-symlinks.patch, +git-1.5.3_rc4.ebuild:
  Version bump

  29 Jul 2007; Christian Heim <phreak@gentoo.org> git-1.5.0.7.ebuild,
  git-1.5.1.6.ebuild, git-1.5.2.ebuild, git-1.5.2.1.ebuild,
  git-1.5.2.2.ebuild, git-1.5.2.4.ebuild:
  Fixing the DEPEND/RDEPEND for the move of net-www/apache to
  www-servers/apache (#78622).

*git-1.5.2.4 (27 Jul 2007)

  27 Jul 2007; Robin H. Johnson <robbat2@gentoo.org> metadata.xml,
  git-1.5.0.7.ebuild, git-1.5.1.6.ebuild, git-1.5.2.ebuild,
  git-1.5.2.1.ebuild, git-1.5.2.2.ebuild, +git-1.5.2.4.ebuild:
  Add new upstream version, and also improve the DESCRIPTION per bug #185057,
  and the longdescription in metadata at the same time.

  25 Jun 2007; Joshua Kinard <kumba@gentoo.org> git-1.5.1.6.ebuild:
  Stable on mips, per #179245.

  23 Jun 2007; Matti Bickel <mabi@gentoo.org> git-1.5.1.6.ebuild:
  ppc stable (bug #179245)

*git-1.5.2.2 (16 Jun 2007)

  16 Jun 2007; Fernando J. Pereda <ferdy@gentoo.org> +files/71git-gentoo.el,
  +git-1.5.2.2.ebuild:
  New upstream version. Fix for bug #181718

  14 Jun 2007; Jeroen Roovers <jer@gentoo.org> git-1.5.1.6.ebuild:
  Stable for HPPA (bug #179245).

*git-1.5.2.1 (04 Jun 2007)

  04 Jun 2007; Fernando J. Pereda <ferdy@gentoo.org> +git-1.5.2.1.ebuild:
  New upstream version

  31 May 2007; Daniel Gryniewicz <dang@gentoo.org> git-1.5.1.6.ebuild:
  Marked stable on amd64 for bug #179245

  28 May 2007; Brent Baude <ranger@gentoo.org> git-1.5.1.6.ebuild:
  Marking git-1.5.1.6 ppc64 stable for bug 179245

  24 May 2007; Raúl Porcel <armin76@gentoo.org> git-1.5.1.6.ebuild:
  ia64 + x86 stable wrt #179245

  23 May 2007; Fernando J. Pereda <ferdy@gentoo.org> git-1.5.2.ebuild:
  Add dev-perl/TermReadKey for git-svn. Fixes bug #179560

  23 May 2007; Fernando J. Pereda <ferdy@gentoo.org> git-1.5.1.6.ebuild:
  Stable on alpha as per bug #179245

  23 May 2007; Gustavo Zacarias <gustavoz@gentoo.org> git-1.5.1.6.ebuild:
  Stable on sparc wrt #179245

  21 May 2007; Jeroen Roovers <jer@gentoo.org> git-1.5.1.6.ebuild:
  Reverting to ~hppa.

  21 May 2007; Jeroen Roovers <jer@gentoo.org> git-1.5.1.6.ebuild:
  Stable for HPPA (bug #179245).

*git-1.5.2 (20 May 2007)
*git-1.5.1.6 (20 May 2007)

  20 May 2007; Fernando J. Pereda <ferdy@gentoo.org>
  +files/git-1.5.2-tempfile.patch, -git-1.5.1.2.ebuild, -git-1.5.1.3.ebuild,
  -git-1.5.1.4.ebuild, -git-1.5.1.5.ebuild, +git-1.5.1.6.ebuild,
  +git-1.5.2.ebuild:
  New upstream versions. Remove old ones.

*git-1.5.1.5 (19 May 2007)

  19 May 2007; Fernando J. Pereda <ferdy@gentoo.org> +git-1.5.1.5.ebuild:
  New upstream version. Fixes bug #177280.

*git-1.5.1.4 (09 May 2007)

  09 May 2007; Robin H. Johnson <robbat2@gentoo.org> +git-1.5.1.4.ebuild:
  Version bump.

*git-1.5.1.3 (01 May 2007)

  01 May 2007; Robin H. Johnson <robbat2@gentoo.org> +git-1.5.1.3.ebuild:
  Version bump.

  24 Apr 2007; Fernando J. Pereda <ferdy@gentoo.org> -git-1.4.1.1.ebuild,
  -git-1.4.4.4.ebuild, -git-1.5.1.1.ebuild:
  Remove unused stuff

  23 Apr 2007; Bryan Østergaard <kloeri@gentoo.org> git-1.5.0.7.ebuild:
  Stable on Mips, bug 173327.

*git-1.5.1.2 (23 Apr 2007)

  23 Apr 2007; Fernando J. Pereda <ferdy@gentoo.org> +git-1.5.1.2.ebuild:
  New upstream version.

*git-1.5.1.1 (12 Apr 2007)

  12 Apr 2007; Fernando J. Pereda <ferdy@gentoo.org> -git-1.5.1.ebuild,
  +git-1.5.1.1.ebuild:
  New upstream version, superceeds 1.5.1

  11 Apr 2007; Christian Faulhammer <opfer@gentoo.org> git-1.5.0.7.ebuild:
  stable amd64, bug 173327

  08 Apr 2007; Markus Rothe <corsair@gentoo.org> git-1.5.0.7.ebuild:
  Stable on ppc64; bug #173327

  06 Apr 2007; Tobias Scherbaum <dertobi123@gentoo.org> git-1.5.0.7.ebuild:
  ppc stable

  04 Apr 2007; Fernando J. Pereda <ferdy@gentoo.org> git-1.5.0.7.ebuild:
  Stable on alpha wrt bug #173327

  04 Apr 2007; Jeroen Roovers <jer@gentoo.org> git-1.5.0.7.ebuild:
  Stable for HPPA (bug #173327).

  04 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org> git-1.5.0.7.ebuild:
  Stable on sparc wrt #173327

  04 Apr 2007; Raúl Porcel <armin76@gentoo.org> git-1.5.0.7.ebuild:
  ia64 + x86 stable wrt bug 173327

  04 Apr 2007; Fernando J. Pereda <ferdy@gentoo.org> -git-1.4.2.4.ebuild,
  -git-1.4.4.3.ebuild:
  Remove unused versions.

*git-1.5.1 (04 Apr 2007)
*git-1.5.0.7 (04 Apr 2007)

  04 Apr 2007; Fernando J. Pereda <ferdy@gentoo.org> -git-1.5.0.6.ebuild,
  +git-1.5.0.7.ebuild, +git-1.5.1.ebuild:
  Revision and version bump. Remove 1.5.0.6

*git-1.5.0.6 (29 Mar 2007)

  29 Mar 2007; Fernando J. Pereda <ferdy@gentoo.org> -git-1.5.0.5.ebuild,
  +git-1.5.0.6.ebuild:
  New upstream version. Remove 1.5.0.5

*git-1.5.0.5 (19 Mar 2007)

  19 Mar 2007; Fernando J. Pereda <ferdy@gentoo.org> -git-1.5.0.4.ebuild,
  +git-1.5.0.5.ebuild:
  New upstream version. Remove old one.

*git-1.5.0.4 (16 Mar 2007)

  16 Mar 2007; Fernando J. Pereda <ferdy@gentoo.org> -git-1.5.0.3.ebuild,
  -git-1.5.0.3-r1.ebuild, +git-1.5.0.4.ebuild:
  New upstream version. Remove old ones.

*git-1.5.0.3-r1 (11 Mar 2007)

  11 Mar 2007; Fernando J. Pereda <ferdy@gentoo.org>
  +files/git-1.5.0-symlinks.patch, +git-1.5.0.3-r1.ebuild:
  Create relative symlinks instead of absolute ones.

*git-1.5.0.3 (09 Mar 2007)

  09 Mar 2007; Fernando J. Pereda <ferdy@gentoo.org> -git-1.5.0.2.ebuild,
  +git-1.5.0.3.ebuild:
  New upstream version. Fix for bug #170066. Remove old version.

*git-1.5.0.2 (27 Feb 2007)

  27 Feb 2007; Fernando J. Pereda <ferdy@gentoo.org> -git-1.5.0.1.ebuild,
  +git-1.5.0.2.ebuild:
  New upstream version. Remove .1 since it is buggy

  20 Feb 2007; Fernando J. Pereda <ferdy@gentoo.org> -git-1.5.0.ebuild:
  Remove unused version, superceed by 1.5.0.1

*git-1.5.0.1 (19 Feb 2007)

  19 Feb 2007; Fernando J. Pereda <ferdy@gentoo.org> +git-1.5.0.1.ebuild:
  New upstream version.

  15 Feb 2007; Fernando J. Pereda <ferdy@gentoo.org> git-1.5.0.ebuild:
  Add a showpkgdeps message for git send-email. Fixes bug #167058. Reported by
  Christian Schlotter <again@gmx.de>

*git-1.5.0 (14 Feb 2007)

  14 Feb 2007; Fernando J. Pereda <ferdy@gentoo.org> +git-1.5.0.ebuild:
  New upstream version.

  15 Jan 2007; Gustavo Zacarias <gustavoz@gentoo.org> git-1.4.4.4.ebuild:
  Stable on sparc wrt #159822

  15 Jan 2007; Jeroen Roovers <jer@gentoo.org> git-1.4.4.4.ebuild:
  Stable for HPPA (bug #159822).

  15 Jan 2007; Steve Dibb <beandog@gentoo.org> git-1.4.4.4.ebuild:
  amd64 stable, bug 159822

  14 Jan 2007; Markus Rothe <corsair@gentoo.org> git-1.4.4.4.ebuild:
  Stable on ppc64; bug #159822

  13 Jan 2007; Andrej Kacian <ticho@gentoo.org> git-1.4.4.4.ebuild:
  Stable on x86, bug #159822.

  13 Jan 2007; nixnut <nixnut@gentoo.org> git-1.4.4.4.ebuild:
  Stable on ppc wrt bug 159822

*git-1.4.4.4 (12 Jan 2007)

  12 Jan 2007; Fernando J. Pereda <ferdy@gentoo.org> +git-1.4.4.4.ebuild:
  Version bump + stable on Alpha. See bug #159822

  09 Jan 2007; Markus Rothe <corsair@gentoo.org> git-1.4.4.3.ebuild:
  Stable on ppc64; bug #159822

  07 Jan 2007; Tobias Scherbaum <dertobi123@gentoo.org> git-1.4.4.3.ebuild:
  ppc stable, bug #159822

  06 Jan 2007; Fernando J. Pereda <ferdy@gentoo.org> -git-1.4.3.5.ebuild,
  -git-1.4.4.2.ebuild:
  QA: Clean unused versions.

  06 Jan 2007; Fernando J. Pereda <ferdy@gentoo.org> git-1.4.1.1.ebuild,
  git-1.4.2.4.ebuild, git-1.4.3.5.ebuild, git-1.4.4.2.ebuild,
  git-1.4.4.3.ebuild:
  einfo -> elog

  04 Jan 2007; Bryan Østergaard <kloeri@gentoo.org> git-1.4.4.3.ebuild:
  Stable on IA64.

  04 Jan 2007; Torsten Veller <tove@gentoo.org> git-1.4.4.3.ebuild:
  Stable on x86 (#159822)

  04 Jan 2007; Fernando J. Pereda <ferdy@gentoo.org> git-1.4.4.3.ebuild:
  Stable on alpha as per bug #159822

  04 Jan 2007; Gustavo Zacarias <gustavoz@gentoo.org> git-1.4.4.3.ebuild:
  Stable on sparc wrt #159822

  03 Jan 2007; Fernando J. Pereda <ferdy@gentoo.org> git-1.4.4.3.ebuild:
  git-instaweb has some additional dependencies, fixes bug #159698

  31 Dec 2006; Robin H. Johnson <robbat2@gentoo.org> git-1.4.3.5.ebuild,
  git-1.4.4.2.ebuild, git-1.4.4.3.ebuild:
  Fix type in einfo.

*git-1.4.4.3 (20 Dec 2006)

  20 Dec 2006; Fernando J. Pereda <ferdy@gentoo.org> +git-1.4.4.3.ebuild:
  New upstream version.

*git-1.4.4.2 (07 Dec 2006)

  07 Dec 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-1.4.4.ebuild,
  -git-1.4.4.1.ebuild, +git-1.4.4.2.ebuild:
  New upstream version. Clean old ebuilds for the 1.4.4 branch.

*git-1.4.4.1 (26 Nov 2006)

  26 Nov 2006; Fernando J. Pereda <ferdy@gentoo.org> +git-1.4.4.1.ebuild:
  New upstream version.

  16 Nov 2006; Fernando J. Pereda <ferdy@gentoo.org> git-1.4.4.ebuild:
  Remove tar-tree tests if we don't have unzip installed.

*git-1.4.4 (15 Nov 2006)

  15 Nov 2006; Fernando J. Pereda <ferdy@gentoo.org> +git-1.4.4.ebuild:
  New upstream version.

*git-1.4.3.5 (12 Nov 2006)

  12 Nov 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-1.4.3.4.ebuild,
  +git-1.4.3.5.ebuild:
  New upstream version, superceeds 1.4.3.4

  09 Nov 2006; Ilya A. Volynets-Evenbakh <iluxa@gentoo.org>
  git-1.4.3.4.ebuild:
  Add ~mips to keywords

  08 Nov 2006; Ilya A. Volynets-Evenbakh <iluxa@gentoo.org>
  git-1.4.1.1.ebuild:
  Stable on mips

*git-1.4.3.4 (05 Nov 2006)

  05 Nov 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-1.4.3.3.ebuild,
  +git-1.4.3.4.ebuild:
  New upstream version.

*git-1.4.3.3 (30 Oct 2006)

  30 Oct 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-1.4.3.2.ebuild,
  +git-1.4.3.3.ebuild:
  New upstream version, remove old one.

  28 Oct 2006; Christian Faulhammer <opfer@gentoo.org> git-1.4.2.4.ebuild:
  x86 stable wrt bug #151669

*git-1.4.3.2 (24 Oct 2006)

  24 Oct 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-1.4.3.1.ebuild,
  +git-1.4.3.2.ebuild:
  New upstream version, remove buggy one. Also add a pkg_postinst message as
  per bug #152320.

*git-1.4.3.1 (21 Oct 2006)

  21 Oct 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-1.4.3.ebuild,
  +git-1.4.3.1.ebuild:
  New upstream version, remove a buggy one.

  21 Oct 2006; <nixnut@gentoo.org> git-1.4.2.4.ebuild:
  Stable on ppc wrt bug 151669

  20 Oct 2006; Fernando J. Pereda <ferdy@gentoo.org> git-1.4.3.ebuild:
  Add a needed fixlocalpod call to src_install spotted by Jakub Moc
  <jakub@gentoo.org>

*git-1.4.3 (19 Oct 2006)

  19 Oct 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-1.1.6.ebuild,
  +git-1.4.3.ebuild:
  New upstream version. Remove ancient one (1.1.6) since It is no longer useful

  18 Oct 2006; Patrick McLean <chutzpah@gentoo.org> git-1.4.2.4.ebuild:
  Stable on amd64 (bug #151669).

  17 Oct 2006; Jeroen Roovers <jer@gentoo.org> git-1.4.2.4.ebuild:
  Stable for HPPA (bug #151669).

  17 Oct 2006; Gustavo Zacarias <gustavoz@gentoo.org> git-1.4.2.4.ebuild:
  Stable on sparc wrt #151669

  17 Oct 2006; Markus Rothe <corsair@gentoo.org> git-1.4.2.4.ebuild:
  Stable on ppc64; bug #151669

  17 Oct 2006; Fernando J. Pereda <ferdy@gentoo.org> git-1.4.2.4.ebuild:
  Stable on alpha as per bug #151669

*git-1.4.2.4 (17 Oct 2006)

  17 Oct 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-1.4.0-r1.ebuild,
  -git-1.4.2.3.ebuild, +git-1.4.2.4.ebuild:
  New upstream version. Remove old (1.4.0-r1) and buggy (1.4.2.3) ones.

  04 Oct 2006; Fabian Groffen <grobian@gentoo.org> git-1.4.0-r1.ebuild,
  git-1.4.1.1.ebuild, git-1.4.2.3.ebuild:
  Dropped ~ppc-macos, see you in prefix.

*git-1.4.2.3 (02 Oct 2006)

  02 Oct 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-1.4.2.1.ebuild,
  -git-1.4.2.2.ebuild, +git-1.4.2.3.ebuild:
  New upstream version. Remove buggy ones.

*git-1.4.2.2 (30 Sep 2006)

  30 Sep 2006; Fernando J. Pereda <ferdy@gentoo.org> +git-1.4.2.2.ebuild:
  New upstream version.

  27 Sep 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-1.4.2.ebuild:
  Remove git-1.4.2 since it has a buggy builtin-mv command.

  22 Sep 2006; Fernando J. Pereda <ferdy@gentoo.org> git-1.4.2.1.ebuild:
  Typo fixed. Bug #148413 thanks to Jimmy.Jazz@gmx.net

  13 Sep 2006; Aron Griffis <agriffis@gentoo.org> git-1.4.1.1.ebuild:
  Mark 1.4.1.1 stable on ia64

*git-1.4.2.1 (13 Sep 2006)

  13 Sep 2006; Fernando J. Pereda <ferdy@gentoo.org> +git-1.4.2.1.ebuild:
  New upstream version.

  11 Sep 2006; Fernando J. Pereda <ferdy@gentoo.org>
  +files/git-daemon.xinetd, git-1.4.2.ebuild:
  Add a xinetd configuration file.As per bug #145177. Thanks to Patrick
  Guimond <patg@patg.homeunix.org>

  07 Sep 2006; Christel Dahlskjaer <christel@gentoo.org> git-1.4.1.1.ebuild:
  Added ~mips, as per bug #126850

  15 Aug 2006; Fernando J. Pereda <ferdy@gentoo.org> git-1.4.2.ebuild:
  Typo fixed: donsider -> consider

  14 Aug 2006; Fernando J. Pereda <ferdy@gentoo.org> git-1.4.2.ebuild:
  Only run git-svn tests if we have dev-util/subversion

  14 Aug 2006; <dougg@gentoo.org> git-1.1.6.ebuild, git-1.4.0-r1.ebuild,
  git-1.4.1.1.ebuild, git-1.4.2.ebuild:
  fixing tcltk USE flag as per bug #17808

  13 Aug 2006; Fernando J. Pereda <ferdy@gentoo.org> git-1.4.2.ebuild:
  app-editors/emacs -> virtual/emacs

*git-1.4.2 (13 Aug 2006)

  13 Aug 2006; Fernando J. Pereda <ferdy@gentoo.org> +git-1.4.2.ebuild:
  New upstream version.

  12 Aug 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-1.2.4.ebuild,
  -git-1.3.3.ebuild, -git-1.4.0.ebuild, -git-1.4.1.ebuild:
  Clean old versions.

  12 Aug 2006; Krzysiek Pawlik <nelchael@gentoo.org> git-1.4.1.1.ebuild:
  Stable on x86, see bug #143586.

  12 Aug 2006; Markus Rothe <corsair@gentoo.org> git-1.4.1.1.ebuild:
  Stable on ppc64; bug #143586

  12 Aug 2006; Fernando J. Pereda <ferdy@gentoo.org> git-1.4.1.1.ebuild:
  Add ( emacs? app-editors/emacs ) dependency since elisp-common.eclass
  doesn't provide it. Thanks to nixnut@gentoo.org for noticing.

  12 Aug 2006; Luca Barbato <lu_zero@gentoo.org> git-1.4.1.1.ebuild:
  Marked ppc

  11 Aug 2006; Jeroen Roovers <jer@gentoo.org> git-1.4.1.1.ebuild:
  Stable for HPPA (bug #143586).

  11 Aug 2006; Gustavo Zacarias <gustavoz@gentoo.org> git-1.4.1.1.ebuild:
  Stable on sparc wrt #143586

  11 Aug 2006; Daniel Gryniewicz <dang@gentoo.org> git-1.4.1.1.ebuild:
  Marked stable on amd64 for

  11 Aug 2006; Fernando J. Pereda <ferdy@gentoo.org> git-1.4.1.1.ebuild:
  Stable on alpha wrt bug #143586

  08 Aug 2006; Fernando J. Pereda <ferdy@gentoo.org> git-1.4.1.1.ebuild:
  Recommend dev-perl/libwww-perl to use git-svn. Fixes bug #142116.

*git-1.4.1.1 (25 Jul 2006)

  25 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> +git-1.4.1.1.ebuild:
  Version bump.

  11 Jul 2006; Aron Griffis <agriffis@gentoo.org> git-1.4.0-r1.ebuild,
  git-1.4.1.ebuild:
  Mark 1.4.0-r1 stable on ia64, mark 1.4.1 ~ia64

*git-1.4.1 (02 Jul 2006)

  02 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> +git-1.4.1.ebuild:
  Version bump to version 1.4.1. No gitweb installed as of yet.

  28 Jun 2006; Fabian Groffen <grobian@gentoo.org> git-1.4.0-r1.ebuild:
  Marked ~ppc-macos

*git-1.4.0-r1 (27 Jun 2006)

  27 Jun 2006; Fernando J. Pereda <ferdy@gentoo.org> +git-1.4.0-r1.ebuild:
  Install gitview and git-svn. Fixes bug #137942, thanks to Nguyen Thai Ngoc
  Duy <pclouds@gentoo.org>.

*git-1.4.0 (10 Jun 2006)

  10 Jun 2006; Fernando J. Pereda <ferdy@gentoo.org> metadata.xml,
  -git-1.2.6.ebuild, -git-1.3.1.ebuild, -git-1.3.2.ebuild,
  +git-1.4.0.ebuild:
  New upstream version. Removed Carlos from metadata.xml as he requested.
  Removed some old versions, too.

  21 May 2006; Fernando J. Pereda <ferdy@gentoo.org> +files/70git-gentoo.el,
  git-1.3.3.ebuild:
  Add USE=emacs support. Patch by Christian Schlotter <again@gmx.de> in bug
  #133883.

*git-1.3.3 (17 May 2006)

  17 May 2006; Fernando J. Pereda <ferdy@gentoo.org> +git-1.3.3.ebuild:
  New upstream version.

  14 May 2006; Diego Pettenò <flameeyes@gentoo.org> git-1.3.2.ebuild:
  Add ~x86-fbsd keyword.

*git-1.3.2 (04 May 2006)

  04 May 2006; Fernando J. Pereda <ferdy@gentoo.org> +git-1.3.2.ebuild:
  New upstream version.

*git-1.3.1 (25 Apr 2006)

  25 Apr 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-1.3.0-r1.ebuild,
  +git-1.3.1.ebuild:
  Version bump. Remove 1.3.0-r1.

  21 Apr 2006; Gustavo Zacarias <gustavoz@gentoo.org> git-1.2.4.ebuild:
  Stable on hppa

*git-1.3.0-r1 (19 Apr 2006)

  19 Apr 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-1.3.0.ebuild,
  +git-1.3.0-r1.ebuild:
  Remove unneeded dependencies and add a new tarball with some late
  documentation changes. Install git-send-email unconditionally since now it
  doesn't require extra deps (the related USE-flag goes away). Inform about
  git-cvsserver. Remove the buggy old one.

*git-1.3.0 (18 Apr 2006)

  18 Apr 2006; Fernando J. Pereda <ferdy@gentoo.org> +git-1.3.0.ebuild:
  New upstream version.

*git-1.2.6 (08 Apr 2006)

  08 Apr 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-1.2.5.ebuild,
  +git-1.2.6.ebuild:
  New upstream version. Removed 1.2.5

*git-1.2.5 (05 Apr 2006)

  05 Apr 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-1.2.3.ebuild,
  +git-1.2.5.ebuild:
  New upstream version. Use the X use flag instead of tcltk. Remove 1.2.3.

  22 Mar 2006; Luis Medinas <metalgod@gentoo.org> git-1.2.4.ebuild:
  Stable on amd64. Bug #126850.

  22 Mar 2006; Gustavo Zacarias <gustavoz@gentoo.org> git-1.2.4.ebuild:
  ~hppa blessing

  20 Mar 2006; Gustavo Zacarias <gustavoz@gentoo.org> git-1.2.4.ebuild:
  Stable on sparc wrt #126850

  20 Mar 2006; Luca Barbato <lu_zero@gentoo.org> git-1.2.4.ebuild:
  Marked ppc

  19 Mar 2006; Krzysiek Pawlik <nelchael@gentoo.org> git-1.2.4.ebuild:
  Stable on x86, see bug #126850.

  19 Mar 2006; Markus Rothe <corsair@gentoo.org> git-1.2.4.ebuild:
  Stable on ppc64; bug #126850

  19 Mar 2006; Fernando J. Pereda <ferdy@gentoo.org> git-1.2.4.ebuild:
  Stable on alpha wrt bug #126850

*git-1.2.4 (02 Mar 2006)

  02 Mar 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-1.2.1.ebuild,
  -git-1.2.2.ebuild, +git-1.2.4.ebuild:
  New upstream version. Trim old ones

*git-1.2.3 (23 Feb 2006)

  23 Feb 2006; Fernando J. Pereda <ferdy@gentoo.org> +git-1.2.3.ebuild:
  New upstream version

*git-1.2.2 (19 Feb 2006)

  19 Feb 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-1.2.0.ebuild,
  +git-1.2.2.ebuild:
  New upstream version. Remove old one.

  18 Feb 2006; Simon Stelling <blubb@gentoo.org> git-1.1.6.ebuild:
  stable on amd64

  17 Feb 2006; Joseph Jezak <josejx@gentoo.org> git-1.1.6.ebuild:
  Marked ppc stable for bug #122887.

*git-1.2.1 (16 Feb 2006)

  16 Feb 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-0.7.ebuild,
  +git-1.2.1.ebuild:
  New upstream version, remove ancient one

  15 Feb 2006; Markus Rothe <corsair@gentoo.org> git-1.1.6.ebuild:
  Stable on ppc64; bug #122887

  15 Feb 2006; Gustavo Zacarias <gustavoz@gentoo.org> git-1.1.6.ebuild:
  Stable on sparc wrt #122887

  15 Feb 2006; Krzysiek Pawlik <nelchael@gentoo.org> git-1.1.6.ebuild:
  Stable on x86, bug #122887.

  15 Feb 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-0.99.8a.ebuild,
  -git-0.99.9n.ebuild, -git-1.0.6.ebuild, git-1.1.6.ebuild:
  git-1.1.6 stable on alpha. Remove ancienct ~arch versions

  13 Feb 2006; Stuart Longland <redhatter@gentoo.org> git-1.1.6.ebuild:
  Added ~mips to git-1.1.6 as per bug #108215.

*git-1.2.0 (13 Feb 2006)

  13 Feb 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-1.1.5.ebuild,
  +git-1.2.0.ebuild:
  Version bump, remove 1.1.5

*git-1.1.6 (30 Jan 2006)

  30 Jan 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-1.1.3.ebuild,
  -git-1.1.4.ebuild, +git-1.1.6.ebuild:
  New upstream version, remove old ones

*git-1.1.5 (28 Jan 2006)

  28 Jan 2006; Fernando J. Pereda <ferdy@gentoo.org> +git-1.1.5.ebuild:
  new upstream version

*git-1.1.4 (20 Jan 2006)

  20 Jan 2006; Fernando J. Pereda <ferdy@gentoo.org> -git-1.1.2.ebuild,
  +git-1.1.4.ebuild:
  New upstream version.

*git-1.1.3 (17 Jan 2006)

  17 Jan 2006; Fernando J. Pereda <ferdy@gentoo.org>
  -files/git-1.1.1-glossary-from-1.1.0.diff, -git-1.1.1.ebuild,
  +git-1.1.3.ebuild:
  new upstream version, remove 1.1.1

*git-1.1.2 (14 Jan 2006)

  14 Jan 2006; Fernando J. Pereda <ferdy@gentoo.org> +git-1.1.2.ebuild:
  new upstream version

  12 Jan 2006; Fernando J. Pereda <ferdy@gentoo.org> git-1.1.1.ebuild:
  We should only try to apply git-1.1.1-glossary-from-1.1.0.diff if USE=doc.
  Fixes bug #118755, thanks to Christian Heim <phreak@gentoo.org>

*git-1.1.1 (11 Jan 2006)

  11 Jan 2006; Fernando J. Pereda <ferdy@gentoo.org>
  +files/git-1.1.1-glossary-from-1.1.0.diff, -git-1.1.0.ebuild,
  +git-1.1.1.ebuild:
  Version bump. Remove 1.1.0 as it reported a wrong version and might make
  confuse bugreports.

  09 Jan 2006; Fernando J. Pereda <ferdy@gentoo.org> git-1.1.0.ebuild:
  http://kernel.org/pub -> mirror://kernel/ in SRC_URI

*git-1.1.0 (09 Jan 2006)

  09 Jan 2006; Fernando J. Pereda <ferdy@gentoo.org> +git-1.1.0.ebuild:
  New upstream version

*git-1.0.6 (28 Dec 2005)

  28 Dec 2005; Fernando J. Pereda <ferdy@gentoo.org> -git-1.0.5.ebuild,
  +git-1.0.6.ebuild:
  A new day, means a new upstream version

*git-1.0.5 (27 Dec 2005)

  27 Dec 2005; Fernando J. Pereda <ferdy@gentoo.org> -git-1.0.4.ebuild,
  +git-1.0.5.ebuild:
  New upstream version.

*git-1.0.4 (24 Dec 2005)

  24 Dec 2005; Fernando J. Pereda <ferdy@gentoo.org> -git-1.0.3.ebuild,
  +git-1.0.4.ebuild:
  New upstream version. Remove 1.0.3

*git-1.0.3 (23 Dec 2005)

  23 Dec 2005; Fernando J. Pereda <ferdy@gentoo.org>
  -files/git-1.0.0-http-fix.patch, -git-1.0.0-r1.ebuild, +git-1.0.3.ebuild:
  Version bump, remove old version

*git-1.0.0-r1 (21 Dec 2005)

  21 Dec 2005; Fernando J. Pereda <ferdy@gentoo.org>
  +files/git-1.0.0-http-fix.patch, -git-1.0.0.ebuild, +git-1.0.0-r1.ebuild:
  This is what upstream calls 1.0.0a. Remove 1.0.0 since it is a bit broken

*git-1.0.0 (21 Dec 2005)

  21 Dec 2005; Fernando J. Pereda <ferdy@gentoo.org> +git-1.0.0.ebuild:
  New upstream version

*git-0.99.9n (15 Dec 2005)

  15 Dec 2005; Fernando J. Pereda <ferdy@gentoo.org> -git-0.99.9m.ebuild,
  +git-0.99.9n.ebuild:
  New upstream version, remove old one

*git-0.99.9m (12 Dec 2005)

  12 Dec 2005; Fernando J. Pereda <ferdy@gentoo.org> -git-0.99.9l.ebuild,
  +git-0.99.9m.ebuild:
  version bump, remove old version

*git-0.99.9l (04 Dec 2005)

  04 Dec 2005; Fernando J. Pereda <ferdy@gentoo.org> -git-0.99.9k.ebuild,
  +git-0.99.9l.ebuild:
  version bump. remove old version

  02 Dec 2005; Fernando J. Pereda <ferdy@gentoo.org>
  -files/git-0.99.9j-binary-diff-fix.patch:
  remove unneeded patch

*git-0.99.9k (01 Dec 2005)

  01 Dec 2005; Fernando J. Pereda <ferdy@gentoo.org> -git-0.99.9j.ebuild,
  +git-0.99.9k.ebuild:
  version bump, remove old version

  30 Nov 2005; Tom Gall <tgall@gentoo.org> git-0.99.9j.ebuild:
  stable on ppc64 (and works well!)

  19 Nov 2005; Carlos Silva <r3pek@gentoo.org>
  +files/git-0.99.9j-binary-diff-fix.patch, -files/git-0.99.9j-diff.patch,
  git-0.99.9j.ebuild:
  Rename the patch to a more understandable name

*git-0.99.9j (19 Nov 2005)

  19 Nov 2005; Fernando J. Pereda <ferdy@gentoo.org>
  +files/git-0.99.9j-diff.patch, -git-0.99.9i.ebuild, +git-0.99.9j.ebuild:
  version bump; this is 1.0rc2. Remove old version (aka 1.0rc1)

*git-0.99.9i (15 Nov 2005)

  15 Nov 2005; Carlos Silva <r3pek@gentoo.org> -git-0.99.9h.ebuild,
  +git-0.99.9i.ebuild:
  Version bump

*git-0.99.9h (14 Nov 2005)

  14 Nov 2005; Fernando J. Pereda <ferdy@gentoo.org> -git-0.99.9g.ebuild,
  +git-0.99.9h.ebuild:
  version bump, remove old version

*git-0.99.9g (10 Nov 2005)

  10 Nov 2005; Carlos Silva <r3pek@gentoo.org> -git-0.99.9f.ebuild,
  +git-0.99.9g.ebuild:
  Version bump

*git-0.99.9f (08 Nov 2005)

  08 Nov 2005; Carlos Silva <r3pek@gentoo.org> -git-0.99.9e.ebuild,
  +git-0.99.9f.ebuild:
  Version bump

*git-0.99.9e (07 Nov 2005)

  07 Nov 2005; Fernando J. Pereda <ferdy@gentoo.org> -git-0.99.9d.ebuild,
  +git-0.99.9e.ebuild:
  version bump, remove old one

*git-0.99.9d (06 Nov 2005)

  06 Nov 2005; Fernando J. Pereda <ferdy@gentoo.org> -git-0.99.9c.ebuild,
  +git-0.99.9d.ebuild:
  version bump, remove old version

*git-0.99.9c (04 Nov 2005)

  04 Nov 2005; Fernando J. Pereda <ferdy@gentoo.org> -git-0.99.9b.ebuild,
  +git-0.99.9c.ebuild:
  version bump, remove old version

*git-0.99.9b (02 Nov 2005)

  02 Nov 2005; Fernando J. Pereda <ferdy@gentoo.org> -git-0.99.9.ebuild,
  +git-0.99.9b.ebuild:
  version bump, removed old version

*git-0.99.9 (30 Oct 2005)

  30 Oct 2005; Fernando J. Pereda <ferdy@gentoo.org> -git-0.99.8f.ebuild,
  +git-0.99.9.ebuild:
  version bump. remove old version

*git-0.99.8f (19 Oct 2005)

  19 Oct 2005; Fernando J. Pereda <ferdy@gentoo.org> -git-0.99.8d.ebuild,
  -git-0.99.8e.ebuild, +git-0.99.8f.ebuild:
  version bump, remove old versions

*git-0.99.8e (18 Oct 2005)

  18 Oct 2005; Carlos Silva <r3pek@gentoo.org> +git-0.99.8e.ebuild:
  Version bump

*git-0.99.8d (16 Oct 2005)

  16 Oct 2005; Fernando J. Pereda <ferdy@gentoo.org> -git-0.99.8c-r1.ebuild,
  +git-0.99.8d.ebuild:
  version bump, remove old version

*git-0.99.8c-r1 (14 Oct 2005)

  14 Oct 2005; Fernando J. Pereda <ferdy@gentoo.org> -git-0.99.8b.ebuild,
  -git-0.99.8c.ebuild, +git-0.99.8c-r1.ebuild:
  provide a custom src_test since the default one fails. fix one pkg_postinst
  einfo. remove 0.99.8{b,c}

*git-0.99.8c (11 Oct 2005)

  11 Oct 2005; Carlos Silva <r3pek@gentoo.org> +git-0.99.8c.ebuild:
  New version from upstream. This version have an important fix to
  git-ls-tree. When two identical blobs or trees were contained in a tree, the
  earlier code mislabeled them in the output.

*git-0.99.8b (06 Oct 2005)

  06 Oct 2005; Fernando J. Pereda <ferdy@gentoo.org> +git-0.99.8b.ebuild:
  version bump. Fix git-send-email installation. Added missing dependency on
  dev-perl/Email-Valid. Dropped ~mips keyword, see bug #108215 for more
  information.

*git-0.99.8a (05 Oct 2005)

  05 Oct 2005; Fernando J. Pereda <ferdy@gentoo.org>
  +files/git-daemon.confd, +files/git-daemon.initd, metadata.xml,
  -git-0.99.8.ebuild, +git-0.99.8a.ebuild:
  Added myself to metadata. Version bump, added init script and its conf.d
  file. Fixed USE=doc. Removed not needed deps and rephrased pkg_postinst.
  Removed old version

*git-0.99.8 (03 Oct 2005)

  03 Oct 2005; Carlos Silva <r3pek@gentoo.org> -git-0.99.6.ebuild,
  -git-0.99.7d.ebuild, +git-0.99.8.ebuild:
  Version bump

  28 Sep 2005; Ilya A. Volynets-Evenbakh <ilya@total-knowledge.com>
  git-0.99.7d.ebuild:
  mark ~mips

*git-0.99.7d (25 Sep 2005)

  25 Sep 2005; Carlos Silva <r3pek@gentoo.org> -git-0.99.7a-r1.ebuild,
  +git-0.99.7d.ebuild:
  Version bump. Applied the patches found in bug #106998

*git-0.99.7a-r1 (22 Sep 2005)

  22 Sep 2005; Carlos Silva <r3pek@gentoo.org> -git-0.99.7a.ebuild,
  +git-0.99.7a-r1.ebuild:
  Rev bump to fix some dependencies and added the tcltk use flag

*git-0.99.7a (21 Sep 2005)

  21 Sep 2005; Carlos Silva <r3pek@gentoo.org> -git-0.99.7.ebuild,
  +git-0.99.7a.ebuild:
  Version bump. Also did some cleanup on the DEPEND/RDEPEND var's and added
  the gitsendemail use flag. Fixes bug #106791, thx to Max Loparyev.

*git-0.99.7 (19 Sep 2005)

  19 Sep 2005; Carlos Silva <r3pek@gentoo.org> +git-0.99.7.ebuild:
  Version bump

  18 Sep 2005; Markus Rothe <corsair@gentoo.org> git-0.99.6.ebuild:
  Added ~ppc64 (bug #106318)

  12 Sep 2005; Carlos Silva <r3pek@gentoo.org> git-0.7.ebuild,
  git-0.99.6.ebuild:
  Fixed homepage. Closes bug #105648

*git-0.99.6 (08 Sep 2005)

  08 Sep 2005; Carlos Silva <r3pek@gentoo.org> -git-0.99.5-r2.ebuild,
  +git-0.99.6.ebuild:
  Version bump. Removed version 0.99.5

*git-0.99.5-r2 (04 Sep 2005)

  04 Sep 2005; Carlos Silva <r3pek@gentoo.org> -git-0.99.5-r1.ebuild,
  +git-0.99.5-r2.ebuild:
  Forgot to revbump

  04 Sep 2005; Carlos Silva <r3pek@gentoo.org> git-0.99.5-r1.ebuild:
  Added app-text/rcs as dep. Closes bug #104536

*git-0.99.5-r1 (27 Aug 2005)

  27 Aug 2005; Carlos Silva <r3pek@gentoo.org> -git-0.99.4.ebuild,
  -git-0.99.5.ebuild, +git-0.99.5-r1.ebuild:
  Removed version 0.99.4. Revbumped version 0.99.5 to add a missing dep
  (dev-util/cvsps). Closes bug #103962

  26 Aug 2005; Fernando J. Pereda <ferdy@gentoo.org> git-0.99.5.ebuild:
  marked ~alpha wrt bug #101907

*git-0.99.5 (25 Aug 2005)

  25 Aug 2005; Carlos Silva <r3pek@gentoo.org> -git-0.99.3.ebuild,
  git-0.99.4.ebuild, +git-0.99.5.ebuild:
  Version bump

  24 Aug 2005; Gustavo Zacarias <gustavoz@gentoo.org> git-0.7.ebuild:
  Stable on sparc

*git-0.99.4 (13 Aug 2005)

  13 Aug 2005; Carlos Silva <r3pek@gentoo.org> git-0.7.ebuild,
  +git-0.99.4.ebuild:
  Marked version 0.7 stable on x86 and added version 0.99.4

*git-0.99.3 (09 Aug 2005)

  09 Aug 2005; Michał Januszewski <spock@gentoo.org> +git-0.99.3.ebuild:
  Version bump.

  15 Jul 2005; Carlos Silva <r3pek@gentoo.org> git-0.7.ebuild:
  Closing bug #98032. thx Carsten Lohrke

  24 Jun 2005; Gustavo Zacarias <gustavoz@gentoo.org> git-0.7.ebuild:
  To ~sparc

  19 May 2005; Carlos Silva <r3pek@gentoo.org> git-0.7.ebuild:
  Adding net-misc/curl as a dep. Thanks to Priit Laes in bug #93247

  17 May 2005; Carlos Silva <r3pek@gentoo.org> git-0.7.ebuild:
  Removing git-pasky references

  07 May 2005; David Holm <dholm@gentoo.org> git-0.7.ebuild:
  Added to ~ppc.

*git-0.7 (05 May 2005)

  05 May 2005; Carlos Silva <r3pek@gentoo.org> -git-0.6.ebuild,
  +git-0.7.ebuild:
  Removing old git version (0.6) and adding the new one (0.7)

*git-0.6 (26 Apr 2005)

  26 Apr 2005; Carlos Silva <r3pek@gentoo.org> -git-0.04.ebuild,
  +git-0.6.ebuild:
  Bumping to 0.6

*git-0.5 (21 Apr 2005)

  21 Apr 2005; Carlos Silva <r3pek@gentoo.org> +git-0.5.ebuild:
  Version bump

  15 Apr 2005; Carlos Silva <r3pek@gentoo.org> :
  Cleaning up the ebuild

*git-0.04 (15 Apr 2005)

  15 Apr 2005; Carlos Silva <r3pek@gentoo.org> +metadata.xml:
  Initial import