summaryrefslogtreecommitdiff
blob: 159567a0f39b2900282fada9d960c7b8b41384d4 (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
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
# ChangeLog for dev-vcs/git
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/ChangeLog,v 1.88 2011/04/04 08:58:41 pacho Exp $

  04 Apr 2011; Pacho Ramos <pacho@gentoo.org> git-1.6.4.5.ebuild,
  git-1.7.2.5.ebuild, git-1.7.3.4-r1.ebuild, git-1.7.3.5.ebuild,
  git-1.7.3.5-r1.ebuild, git-1.7.3.5-r2.ebuild, git-1.7.4_rc1.ebuild,
  git-1.7.4_rc1-r1.ebuild, git-1.7.4_rc1-r2.ebuild, git-1.7.4_rc2.ebuild,
  git-1.7.4_rc3.ebuild, git-1.7.4.ebuild, git-1.7.4.1.ebuild, git-9999.ebuild:
  RDEPEND only in dev-python/pygtksourceview:2 as
  dev-python/gtksourceview-python will be dropped soon (bug #355049 with Robin
  Johnson authorization).

  12 Feb 2011; Robin H. Johnson <robbat2@gentoo.org> -git-1.6.4.4.ebuild,
  -git-1.6.4.4-r1.ebuild, -files/git-1.6.4.5-gitweb-cve-2010-3906.patch,
  -files/git-1.7.0-always-install-js.patch,
  -files/git-1.7.1-always-install-js.patch,
  -files/git-1.7.1-noiconv-segfault-fix.patch, -git-1.7.2.2.ebuild,
  -git-1.7.2.3.ebuild, -git-1.7.2.4.ebuild, -git-1.7.2.4-r1.ebuild,
  -git-1.7.3.2.ebuild, -git-1.7.3.2-r1.ebuild, -git-1.7.3.3.ebuild,
  -git-1.7.3.4.ebuild:
  Cleanup old files.

*git-1.7.4.1 (12 Feb 2011)

  12 Feb 2011; Robin H. Johnson <robbat2@gentoo.org> +git-1.7.4.1.ebuild:
  Version bump.

*git-1.7.4 (01 Feb 2011)

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

*git-1.7.4_rc3 (24 Jan 2011)

  24 Jan 2011; Robin H. Johnson <robbat2@gentoo.org> +git-1.7.4_rc3.ebuild:
  version bump

*git-1.7.4_rc2 (15 Jan 2011)

  15 Jan 2011; Robin H. Johnson <robbat2@gentoo.org> +git-1.7.4_rc2.ebuild,
  git-9999.ebuild:
  Version bump.

  12 Jan 2011; Michael Haubenwallner <haubi@gentoo.org>
  git-1.7.4_rc1-r2.ebuild:
  aix lacks FNMATCH_CASEFOLD

  10 Jan 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  git-1.7.3.5-r2.ebuild, git-1.7.4_rc1-r2.ebuild, git-9999.ebuild:
  Call python_mod_optimize() and python_mod_cleanup() (bug #329479).

  08 Jan 2011; Fabian Groffen <grobian@gentoo.org> git-1.7.3.5-r2.ebuild,
  git-1.7.4_rc1-r2.ebuild, git-9999.ebuild:
  Fix for Prefix

  08 Jan 2011; Robin H. Johnson <robbat2@gentoo.org> git-1.7.3.4-r1.ebuild:
  Backport bug #350330 automagic CVS to stable ebuild.

  08 Jan 2011; Robin H. Johnson <robbat2@gentoo.org> git-1.7.3.5-r2.ebuild,
  -git-1.7.3.5-r2.ebuild.orig, git-1.7.4_rc1-r2.ebuild, git-9999.ebuild:
  Fix missing argument in call to python_convert_shebangs, and drop accidently
  added .orig file.

  07 Jan 2011; Robin H. Johnson <robbat2@gentoo.org> git-9999.ebuild:
  Also import python improvements to 9999 ebuild.

*git-1.7.4_rc1-r2 (07 Jan 2011)
*git-1.7.3.5-r2 (07 Jan 2011)

  07 Jan 2011; Robin H. Johnson <robbat2@gentoo.org> +git-1.7.3.5-r2.ebuild,
  +git-1.7.3.5-r2.ebuild.orig, +git-1.7.4_rc1-r2.ebuild:
  Bug #329479: improve python usage to new python eclass. Does not support
  multiple active versions of python easily.

  07 Jan 2011; Robin H. Johnson <robbat2@gentoo.org> git-1.7.4_rc1-r1.ebuild,
  git-9999.ebuild:
  Port bug #350330 fixes to newer ebuilds.

  07 Jan 2011; Markos Chandras <hwoarang@gentoo.org> git-1.6.4.5.ebuild,
  git-1.7.2.5.ebuild, git-1.7.3.4-r1.ebuild:
  Stable on amd64 wrt bug #349045

  07 Jan 2011; Robin H. Johnson <robbat2@gentoo.org> git-1.7.3.5-r1.ebuild,
  +files/git-1.7.3.5-optional-cvs.patch:
  Bug #350330: Avoid automagic CVS.

  07 Jan 2011; Fabian Groffen <grobian@gentoo.org> git-1.7.3.5-r1.ebuild,
  git-1.7.4_rc1-r1.ebuild, git-9999.ebuild:
  Fix gitweb removal for Prefix

*git-1.7.4_rc1-r1 (07 Jan 2011)

  07 Jan 2011; Robin H. Johnson <robbat2@gentoo.org> +git-1.7.4_rc1-r1.ebuild,
  git-9999.ebuild:
  Port the 1.7.3.5-r1 Prefix USE=python code to newer ebuilds since Prefix team
  has tested.

*git-1.7.3.5-r1 (06 Jan 2011)

  06 Jan 2011; Robin H. Johnson <robbat2@gentoo.org> +git-1.7.3.5-r1.ebuild:
  Bug #320647 redux: Full ability to disable Python usage for Prefix (needed to
  work around circular dependency loop).

*git-1.7.4_rc1 (06 Jan 2011)

  06 Jan 2011; Robin H. Johnson <robbat2@gentoo.org> +git-1.7.4_rc1.ebuild:
  Version bump for new major release.

*git-1.7.3.5 (06 Jan 2011)

  06 Jan 2011; Robin H. Johnson <robbat2@gentoo.org> git-1.7.3.4-r1.ebuild,
  +git-1.7.3.5.ebuild:
  Version bump. Also backport minor improvement to testsuite running to get
  cleaner repeat results.

  01 Jan 2011; Raúl Porcel <armin76@gentoo.org> git-1.6.4.5.ebuild,
  git-1.7.2.5.ebuild, git-1.7.3.4-r1.ebuild:
  alpha/arm/ia64/s390/sh/sparc stable wrt #349045

  31 Dec 2010; Christian Faulhammer <fauli@gentoo.org>
  git-1.7.3.4-r1.ebuild:
  stable x86, security bug 349045

  29 Dec 2010; Robin H. Johnson <robbat2@gentoo.org> git-1.7.3.4-r1.ebuild,
  +files/git-1.7.3.4-fix-perl-test-prereq.patch:
  Bug #350075: t/t9001: fix missing prereq on some tests.

  27 Dec 2010; Brent Baude <ranger@gentoo.org> git-1.6.4.5.ebuild,
  git-1.7.2.5.ebuild, git-1.7.3.4-r1.ebuild:
  marking -1.6.4.5 -1.7.2.5 -1.7.3.4-r1 ppc64 stable for bug 349045

  26 Dec 2010; Robin H. Johnson <robbat2@gentoo.org> git-1.7.3.2.ebuild,
  git-1.7.3.2-r1.ebuild, git-1.7.3.3.ebuild, git-1.7.3.4.ebuild,
  git-1.7.3.4-r1.ebuild, +files/git-1.7.3.4-avoid-shell-issues.patch:
  Bug #349083: Fix a false positive in the Git testsuite, triggered when the
  portage user had a shell of /bin/false.

  25 Dec 2010; Robin H. Johnson <robbat2@gentoo.org> git-1.7.2.5.ebuild,
  git-1.7.3.4-r1.ebuild:
  Minor fail with displaying aggregate-results to fix.

  25 Dec 2010; Robin H. Johnson <robbat2@gentoo.org> git-1.7.2.5.ebuild,
  git-1.7.3.4-r1.ebuild:
  Improve output phase of src_test block for new stables.

  23 Dec 2010; Jeroen Roovers <jer@gentoo.org> git-1.7.3.4-r1.ebuild:
  Stable for HPPA PPC (bug #349045).

  23 Dec 2010; Jeroen Roovers <jer@gentoo.org> git-1.6.4.5.ebuild,
  git-1.7.2.5.ebuild:
  Stable for PPC (bug #349045).

  22 Dec 2010; Jeroen Roovers <jer@gentoo.org> git-1.7.2.5.ebuild:
  Stable for HPPA (bug #349045).

  22 Dec 2010; Jeroen Roovers <jer@gentoo.org> git-1.6.4.5.ebuild:
  Stable for HPPA (bug #349045).

  20 Dec 2010; Tobias Klausmann <klausman@gentoo.org> git-1.7.3.4-r1.ebuild:
  Stable on alpha, bug #349045

  20 Dec 2010; Tobias Klausmann <klausman@gentoo.org> git-1.7.2.5.ebuild:
  Stable on alpha, bug #349045

  20 Dec 2010; Tobias Klausmann <klausman@gentoo.org> git-1.6.4.5.ebuild:
  Stable on alpha, bug #349045

  20 Dec 2010; Robin H. Johnson <robbat2@gentoo.org> git-1.6.4.4.ebuild,
  git-1.6.4.4-r1.ebuild, git-1.6.4.5.ebuild, git-1.7.2.2.ebuild,
  git-1.7.2.3.ebuild, git-1.7.2.4.ebuild, git-1.7.2.4-r1.ebuild,
  git-1.7.2.5.ebuild, git-1.7.3.2.ebuild:
  Backport the doman cosmetic fix to ALL ebuilds since I got yet another bug
  about it.

  19 Dec 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> git-1.6.4.5.ebuild,
  git-1.7.2.5.ebuild:
  x86 stable wrt security bug #349045

*git-1.7.3.4-r1 (19 Dec 2010)

  19 Dec 2010; Robin H. Johnson <robbat2@gentoo.org> +git-1.7.3.4-r1.ebuild:
  Bug #339278: Do not install gitweb with USE=-cgi. Bug #320647: Python path
  for G/FreeBSD. Bug #326625: Perl path with local::lib. Bug #333405: no color
  for test output to make log parsing easier.

*git-1.7.2.5 (19 Dec 2010)
*git-1.6.4.5 (19 Dec 2010)

  19 Dec 2010; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.4.5.ebuild,
  +git-1.7.2.5.ebuild:
  Version bump to official releases with gitweb XSS fixes, rather than our
  revbumps with the patch.

*git-1.7.3.4 (16 Dec 2010)
*git-1.7.2.4-r1 (16 Dec 2010)
*git-1.6.4.4-r1 (16 Dec 2010)

  16 Dec 2010; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.4.4-r1.ebuild,
  +files/git-1.6.4.5-gitweb-cve-2010-3906.patch, +git-1.7.2.4-r1.ebuild,
  +git-1.7.3.4.ebuild:
  Version bump. Contains fix for CVE-2010-3906: gitweb XSS.

*git-1.7.3.3 (07 Dec 2010)
*git-1.7.2.4 (07 Dec 2010)

  07 Dec 2010; Robin H. Johnson <robbat2@gentoo.org> -git-1.7.0.ebuild,
  -git-1.7.1-r1.ebuild, -git-1.7.1.1.ebuild, -git-1.7.2.ebuild,
  -git-1.7.2-r2.ebuild, +git-1.7.2.4.ebuild, -git-1.7.3.ebuild,
  -git-1.7.3.1.ebuild, +git-1.7.3.3.ebuild:
  Version bump and cleanup.

  11 Nov 2010; Sebastian Pipping <sping@gentoo.org> git-1.7.3.2-r1.ebuild:
  Merge changes to 9999 back into latest release ebuild.

  11 Nov 2010; Sebastian Pipping <sping@gentoo.org> git-9999.ebuild:
  Make live ebuild depend on asciidoc and xmlto independent of flag "doc"
  (bug #343063)

  09 Nov 2010; Robin H. Johnson <robbat2@gentoo.org> git-1.7.2.3.ebuild,
  git-1.7.3.ebuild, git-1.7.3.1.ebuild, git-1.7.3.2.ebuild,
  git-1.7.3.2-r1.ebuild:
  Fix useless extra KEYWORDS.

  29 Oct 2010; Mark Loeser <halcy0n@gentoo.org> git-9999.ebuild:
  Remove ~ppc and ~ppc64

  27 Oct 2010; Robin H. Johnson <robbat2@gentoo.org> git-9999.ebuild:
  Bump live build.

  27 Oct 2010; Robin H. Johnson <robbat2@gentoo.org> git-1.7.3.2-r1.ebuild:
  Bug #342845: fix contrib install and doman warning.

*git-1.7.3.2-r1 (26 Oct 2010)

  26 Oct 2010; Robin H. Johnson <robbat2@gentoo.org> +git-1.7.3.2-r1.ebuild:
  revbump with installing more of new contrib.
  
  22 Oct 2010; Daniel Pielmeier <billie@gentoo.org>
  +files/git-1.6.6.1-interix6.patch, +files/git-1.7.1-interix.patch:
  Interix patches are still needed for some older versions.

*git-1.7.3.2 (22 Oct 2010)

  22 Oct 2010; Markus Duft <mduft@gentoo.org> git-1.7.3.2.ebuild,
  +files/git-1.7.3.2-interix.patch,
  -files/git-1.6.6.1-interix6.patch,
  -files/git-1.7.1-interix.patch:
  removed obsolete patches, added a new one instead. the new patch matches
  more the spirit of upstream, and has been submitted there.

  22 Oct 2010; Robin H. Johnson <robbat2@gentoo.org> +git-1.7.3.2.ebuild:
  Version bump.

*git-1.7.3.1 (30 Sep 2010)

  30 Sep 2010; Robin H. Johnson <robbat2@gentoo.org> +git-1.7.3.1.ebuild:
  Version bump.

*git-1.7.3 (19 Sep 2010)

  19 Sep 2010; Robin H. Johnson <robbat2@gentoo.org> +git-1.7.3.ebuild:
  Version bump.

*git-1.7.2.3 (13 Sep 2010)

  13 Sep 2010; Robin H. Johnson <robbat2@gentoo.org> +git-1.7.2.3.ebuild:
  Bug #337104: verbump.

  11 Sep 2010; Raúl Porcel <armin76@gentoo.org> git-1.7.2.2.ebuild:
  arm/ia64/s390/sh/sparc stable wrt #335891

  10 Sep 2010; Jeroen Roovers <jer@gentoo.org> git-1.7.2.2.ebuild:
  Stable for HPPA (bug #335891).

  10 Sep 2010; Tobias Klausmann <klausman@gentoo.org> git-1.7.2.2.ebuild:
  Stable on alpha, bug #335891

  07 Sep 2010; Jeroen Roovers <jer@gentoo.org> git-1.7.2.2.ebuild:
  Stable for PPC (bug #335891).

  06 Sep 2010; Brent Baude <ranger@gentoo.org> git-1.7.2.2.ebuild:
  Marking git-1.7.2.2 ppc64 for bug 335891

  06 Sep 2010; Markos Chandras <hwoarang@gentoo.org> git-1.7.2.2.ebuild:
  Stable on amd64 wrt bug #335891

  06 Sep 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> git-1.7.2.2.ebuild:
  x86 stable wrt security bug #335891

  03 Sep 2010; Christian Faulhammer <fauli@gentoo.org> git-1.7.2.2.ebuild:
  add ~x86-freebsd

  29 Aug 2010; Sven Wegener <swegener@gentoo.org> git-1.7.2.ebuild,
  git-1.7.2-r2.ebuild, git-1.7.2.2.ebuild:
  Install static gitweb files into correct location.

*git-1.7.2.2 (23 Aug 2010)

  23 Aug 2010; Robin H. Johnson <robbat2@gentoo.org> +git-1.7.2.2.ebuild:
  Version bump.

  16 Aug 2010; Robin H. Johnson <robbat2@gentoo.org> git-1.6.4.4.ebuild,
  git-1.7.0.ebuild, git-1.7.1-r1.ebuild, git-1.7.1.1.ebuild,
  git-1.7.2.ebuild, git-1.7.2-r2.ebuild, git-9999.ebuild:
  Bug #332935: In newer EAPIs, perl-module brings in dev-lang/perl as well,
  which we do not always want.

*git-1.7.2-r2 (09 Aug 2010)

  09 Aug 2010; Fabian Groffen <grobian@gentoo.org> -git-1.7.2-r1.ebuild,
  +git-1.7.2-r2.ebuild:
  Change SHELL_PATH from bash to sh to resolve problems with git's shell
  scripts for some people, bug #331031

  31 Jul 2010; Fabian Groffen <grobian@gentoo.org> git-1.7.2-r1.ebuild:
  Fix compilation with USE=-iconv on non-glibc platforms since disabling of
  iconv is still ignored due to bugs mentioned in the ebuild

  30 Jul 2010; Robin H. Johnson <robbat2@gentoo.org> -git-1.6.3.1.ebuild,
  -git-1.6.3.3.ebuild, -git-1.6.3.4.ebuild, -git-1.6.4.ebuild,
  -git-1.6.4.1.ebuild, -git-1.6.4.2.ebuild, -git-1.6.4.3.ebuild,
  -git-1.6.5_rc1.ebuild, -git-1.6.5_rc2.ebuild, -git-1.6.5.ebuild,
  -git-1.6.5.1.ebuild, -git-1.6.5.1-r1.ebuild, -git-1.6.5.2.ebuild,
  -git-1.6.5.3.ebuild, -git-1.6.5.4.ebuild, -git-1.6.5.5.ebuild,
  -git-1.6.5.6.ebuild, -git-1.6.5.7.ebuild, -git-1.6.5.8.ebuild,
  -git-1.6.6_rc3.ebuild, -git-1.6.6_rc4.ebuild, -git-1.6.6.ebuild,
  -git-1.6.6-r1.ebuild, -git-1.6.6-r2.ebuild, -git-1.6.6.1.ebuild,
  -git-1.6.6.2.ebuild, -files/git-1.6.6-always-install-js.patch,
  -git-1.7.0.3.ebuild, -git-1.7.0.4.ebuild:
  Cleanup old versions.

*git-1.7.2-r1 (22 Jul 2010)

  22 Jul 2010; Jeremy Olexa <darkside@gentoo.org>
  +files/git-1.6.6.1-interix6.patch, +files/git-1.7.1-interix.patch,
  +git-1.7.2-r1.ebuild:
  Migrate changes from Gentoo Prefix overlay. Convert to EAPI3, add patches,
  modify paths, etc. Approved by maintainer, reference bug 329273. Revbump
  per request but no substantial changes for the end user

*git-1.7.2 (22 Jul 2010)

  22 Jul 2010; Robin H. Johnson <robbat2@gentoo.org> +git-1.7.2.ebuild,
  +files/git-1.7.2-always-install-js.patch:
  Version bump.

  18 Jul 2010; Raúl Porcel <armin76@gentoo.org> git-1.7.1-r1.ebuild:
  alpha/arm/ia64/s390/sh/sparc stable wrt #321899

  18 Jul 2010; <nixnut@gentoo.org> git-1.7.0.ebuild:
  ppc stable #321899

*git-1.7.1.1 (30 Jun 2010)

  30 Jun 2010; Robin H. Johnson <robbat2@gentoo.org> +git-1.7.1.1.ebuild:
  Version bump.

  22 Jun 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  git-1.6.3.1.ebuild, git-1.6.3.3.ebuild, git-1.6.3.4.ebuild,
  git-1.6.4.ebuild, git-1.6.4.1.ebuild, git-1.6.4.2.ebuild,
  git-1.6.4.3.ebuild, git-1.6.4.4.ebuild, git-1.6.5_rc1.ebuild,
  git-1.6.5_rc2.ebuild, git-1.6.5.ebuild, git-1.6.5.1.ebuild,
  git-1.6.5.1-r1.ebuild, git-1.6.5.2.ebuild, git-1.6.5.3.ebuild,
  git-1.6.5.4.ebuild, git-1.6.5.5.ebuild, git-1.6.5.6.ebuild,
  git-1.6.5.7.ebuild, git-1.6.5.8.ebuild, git-1.6.6_rc3.ebuild,
  git-1.6.6_rc4.ebuild, git-1.6.6.ebuild, git-1.6.6-r1.ebuild,
  git-1.6.6-r2.ebuild, git-1.6.6.1.ebuild, git-1.6.6.2.ebuild,
  git-1.7.0.ebuild, git-1.7.0.3.ebuild, git-1.7.0.4.ebuild,
  git-1.7.1-r1.ebuild, git-9999.ebuild, metadata.xml:
  dev-util/subversion renamed to dev-vcs/subversion.

  22 Jun 2010; Jeroen Roovers <jer@gentoo.org> git-1.7.1-r1.ebuild:
  Stable for HPPA (bug #321899).

  19 Jun 2010; Jonathan Callen <abcd@gentoo.org> git-1.6.3.1.ebuild,
  git-1.6.3.3.ebuild, git-1.6.3.4.ebuild, git-1.6.4.ebuild,
  git-1.6.4.1.ebuild, git-1.6.4.2.ebuild, git-1.6.4.3.ebuild,
  git-1.6.4.4.ebuild, git-1.6.5_rc1.ebuild, git-1.6.5_rc2.ebuild,
  git-1.6.5.ebuild, git-1.6.5.1.ebuild, git-1.6.5.1-r1.ebuild,
  git-1.6.5.2.ebuild, git-1.6.5.3.ebuild, git-1.6.5.4.ebuild,
  git-1.6.5.5.ebuild, git-1.6.5.6.ebuild, git-1.6.5.7.ebuild,
  git-1.6.5.8.ebuild, git-1.6.6_rc3.ebuild, git-1.6.6_rc4.ebuild,
  git-1.6.6.ebuild, git-1.6.6-r1.ebuild, git-1.6.6-r2.ebuild,
  git-1.6.6.1.ebuild, git-1.6.6.2.ebuild, git-1.7.0.ebuild,
  git-1.7.0.3.ebuild, git-1.7.0.4.ebuild, git-1.7.1-r1.ebuild,
  git-9999.ebuild:
  Moving dev-util/cvs* to dev-vcs/cvs*

  14 Jun 2010; Christoph Mende <angelos@gentoo.org> git-1.7.1-r1.ebuild:
  Stable on amd64 wrt bug #321899

  05 Jun 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> git-1.7.1-r1.ebuild:
  x86 stable wrt bug #321899

  31 May 2010; Robin H. Johnson <robbat2@gentoo.org> git-1.7.1-r1.ebuild:
  Bug #322205: The iconv patch added for -r1 just stopped the segfaults, the
  testsuite still fails, so forcing USE=iconv for now.

  28 May 2010; Robin H. Johnson <robbat2@gentoo.org> -git-1.7.1.ebuild:
  Remove broken 1.7.1.

*git-1.7.1-r1 (28 May 2010)

  28 May 2010; Robin H. Johnson <robbat2@gentoo.org> +git-1.7.1-r1.ebuild,
  +files/git-1.7.1-noiconv-segfault-fix.patch:
  Bug #321895: patch from upstream to avoid segfault with USE=-iconv.

*git-1.7.1 (01 May 2010)

  01 May 2010; Robin H. Johnson <robbat2@gentoo.org> +git-1.7.1.ebuild,
  +files/git-1.7.1-always-install-js.patch:
  Bug #317953: Version bump.

*git-1.7.0.4 (01 Apr 2010)

  01 Apr 2010; Robin H. Johnson <robbat2@gentoo.org> +git-1.7.0.4.ebuild:
  Version bump.

  31 Mar 2010; Robin H. Johnson <robbat2@gentoo.org> git-1.6.5.1-r1.ebuild,
  git-1.6.5.2.ebuild, git-1.6.5.3.ebuild, git-1.6.5.4.ebuild,
  git-1.6.5.5.ebuild, git-1.6.5.6.ebuild, git-1.6.5.7.ebuild,
  git-1.6.5.8.ebuild, git-1.6.6_rc3.ebuild, git-1.6.6_rc4.ebuild,
  git-1.6.6.ebuild, git-1.6.6-r1.ebuild, git-1.6.6-r2.ebuild,
  git-1.6.6.1.ebuild, git-1.6.6.2.ebuild, git-1.7.0.ebuild,
  git-1.7.0.3.ebuild:
  Forward-port ~ppc64 keyword to other ebuilds since it came back in bug
  #290163.

  24 Mar 2010; Robin H. Johnson <robbat2@gentoo.org> git-1.6.3.1.ebuild,
  git-1.6.3.3.ebuild, git-1.6.3.4.ebuild, git-1.6.4.ebuild,
  git-1.6.4.1.ebuild, git-1.6.4.2.ebuild, git-1.6.4.3.ebuild,
  git-1.6.4.4.ebuild, git-1.6.5_rc1.ebuild, git-1.6.5_rc2.ebuild,
  git-1.6.5.ebuild, git-1.6.5.1.ebuild, git-1.6.5.1-r1.ebuild,
  git-1.6.5.2.ebuild, git-1.6.5.3.ebuild, git-1.6.5.4.ebuild,
  git-1.6.5.5.ebuild, git-1.6.5.6.ebuild, git-1.6.5.7.ebuild,
  git-1.6.5.8.ebuild, git-1.6.6_rc3.ebuild, git-1.6.6_rc4.ebuild,
  git-1.6.6.ebuild, git-1.6.6-r1.ebuild, git-1.6.6-r2.ebuild,
  git-1.6.6.1.ebuild, git-1.6.6.2.ebuild, git-1.7.0.ebuild,
  git-1.7.0.3.ebuild, git-9999.ebuild:
  Bug #296628: Expand list of tests disabled when CVS is not available.

*git-1.7.0.3 (24 Mar 2010)

  24 Mar 2010; Robin H. Johnson <robbat2@gentoo.org> -git-1.7.0.2.ebuild,
  +git-1.7.0.3.ebuild:
  Bug #310967: 1.7.0.2 has a segfault bug in git-daemon, remove and replace
  with 1.7.0.3

  17 Mar 2010; Sebastian Pipping <sping@gentoo.org> +files/50git-gentoo.el,
  +git-1.6.3.1.ebuild, +git-1.6.3.3.ebuild, +git-1.6.3.4.ebuild,
  +git-1.6.4.ebuild, +git-1.6.4.1.ebuild, +git-1.6.4.2.ebuild,
  +git-1.6.4.3.ebuild, +git-1.6.4.4.ebuild, +git-1.6.5_rc1.ebuild,
  +git-1.6.5_rc2.ebuild, +git-1.6.5.ebuild, +git-1.6.5.1.ebuild,
  +git-1.6.5.1-r1.ebuild, +git-1.6.5.2.ebuild, +git-1.6.5.3.ebuild,
  +git-1.6.5.4.ebuild, +git-1.6.5.5.ebuild, +git-1.6.5.6.ebuild,
  +git-1.6.5.7.ebuild, +git-1.6.5.8.ebuild, +git-1.6.6_rc3.ebuild,
  +git-1.6.6_rc4.ebuild, +git-1.6.6.ebuild, +git-1.6.6-r1.ebuild,
  +git-1.6.6-r2.ebuild, +git-1.6.6.1.ebuild, +git-1.6.6.2.ebuild,
  +files/git-1.6.6-always-install-js.patch, +git-1.7.0.ebuild,
  +git-1.7.0.2.ebuild, +files/git-1.7.0-always-install-js.patch,
  +git-9999.ebuild, +files/git-daemon.confd, +files/git-daemon.initd,
  +files/git-daemon.xinetd, +metadata.xml:
  New package (copied from dev-util/git)

*git-1.7.0.2 (07 Mar 2010)

  07 Mar 2010; Robin H. Johnson <robbat2@gentoo.org> +git-1.7.0.2.ebuild:
  version bump.

  28 Feb 2010; Sebastian Pipping <sping@gentoo.org> git-9999.ebuild:
  Sync live ebuild with latest (bug #305157)

*git-1.7.0 (13 Feb 2010)

  13 Feb 2010; Robin H. Johnson <robbat2@gentoo.org> +git-1.7.0.ebuild,
  +files/git-1.7.0-always-install-js.patch:
  Version bump.

*git-1.6.6.2 (13 Feb 2010)

  13 Feb 2010; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.6.2.ebuild:
  Version bump.

*git-1.6.6.1 (21 Jan 2010)
*git-1.6.5.8 (21 Jan 2010)

  21 Jan 2010; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.5.8.ebuild,
  +git-1.6.6.1.ebuild:
  Version bump.

  02 Jan 2010; Brent Baude <ranger@gentoo.org> git-1.6.5.1-r1.ebuild:
  Marking git-1.6.5.1-r1 ~ppc64 for bug 290163

*git-1.6.6-r2 (26 Dec 2009)

  26 Dec 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.6-r2.ebuild,
  git-9999.ebuild:
  Bug #298390: All the Subversion ebuilds now offer perl, so we can USE-dep
  on it.

*git-1.6.6-r1 (26 Dec 2009)

  26 Dec 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.6-r1.ebuild,
  +files/git-1.6.6-always-install-js.patch, git-9999.ebuild:
  Bug #298277: Fixup JS install for Gitweb. Also port all recent fixes to
  the live ebuild.

*git-1.6.6 (24 Dec 2009)

  24 Dec 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.6.ebuild:
  Version bump.

*git-1.6.6_rc4 (21 Dec 2009)

  21 Dec 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.6_rc4.ebuild:
  Version bump.

*git-1.6.6_rc3 (17 Dec 2009)

  17 Dec 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.6_rc3.ebuild:
  Version bump for the upstream rc.

*git-1.6.5.7 (17 Dec 2009)

  17 Dec 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.5.7.ebuild:
  Version bump and fix bug #296310 for Perl 5.10 users.

*git-1.6.5.6 (11 Dec 2009)

  11 Dec 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.5.6.ebuild:
  version bump

*git-1.6.5.5 (06 Dec 2009)

  06 Dec 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.5.5.ebuild:
  Version bump.

*git-1.6.5.4 (03 Dec 2009)

  03 Dec 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.5.4.ebuild:
  Version bump.

  18 Nov 2009; Raúl Porcel <armin76@gentoo.org> git-1.6.5.1-r1.ebuild,
  git-1.6.5.2.ebuild, git-1.6.5.3.ebuild:
  Add ~alpha/~ia64 wrt #290163

  17 Nov 2009; Robin H. Johnson <robbat2@gentoo.org> git-1.6.5.3.ebuild:
  Bug #290163: rekeyword for arm. Tested on mv78100.

  17 Nov 2009; Robin H. Johnson <robbat2@gentoo.org> git-1.6.5.3.ebuild:
  Bug #290465: uclibc needs an additional define to select a codepath that
  it will compile against.

  17 Nov 2009; Robin H. Johnson <robbat2@gentoo.org> git-1.6.5.3.ebuild:
  Bug #290131: cpio is only needed for building git-gui now, and nothing
  else at runtime.

*git-1.6.5.3 (17 Nov 2009)

  17 Nov 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.5.3.ebuild:
  Version bump. Testcases updated to run a working subset with
  FEATURES=-userpriv per bug #292865.

  16 Nov 2009; Jeremy Olexa <darkside@gentoo.org> git-1.6.3.1.ebuild,
  git-1.6.3.3.ebuild, git-1.6.3.4.ebuild, git-1.6.4.ebuild,
  git-1.6.4.1.ebuild, git-1.6.4.2.ebuild, git-1.6.4.3.ebuild,
  git-1.6.4.4.ebuild, git-1.6.5_rc1.ebuild, git-1.6.5_rc2.ebuild,
  git-1.6.5.ebuild, git-1.6.5.1.ebuild, git-1.6.5.1-r1.ebuild,
  git-1.6.5.2.ebuild, git-9999.ebuild:
  Since app-misc/git was removed from the tree, remove that invalid atom
  from the CDEPEND variable in dev-util/git ebuilds

*git-1.6.5.2 (30 Oct 2009)

  30 Oct 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.5.2.ebuild:
  Bug #291107: version bump.

  23 Oct 2009; Robin H. Johnson <robbat2@gentoo.org> git-1.6.5_rc2.ebuild,
  git-1.6.5.ebuild, git-1.6.5.1.ebuild, git-1.6.5.1-r1.ebuild,
  git-9999.ebuild:
  USE-default on doc was unpopular, and got even more so with USE=doc now
  bringing in dependencies. Turn off the default.

*git-1.6.5.1-r1 (22 Oct 2009)

  22 Oct 2009; Sebastian Pipping <sping@gentoo.org> +git-1.6.5.1-r1.ebuild,
  git-9999.ebuild:
  Build and install info pages (bug 287112), add dependency on texinfo, drop
  keywords: alpha arm ia64 ppc64

  22 Oct 2009; Tobias Klausmann <klausman@gentoo.org> git-1.6.4.4.ebuild:
  Added two more test sets to the black list for UID-0 testing

*git-1.6.5.1 (18 Oct 2009)

  18 Oct 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.5.1.ebuild:
  Version bump

  12 Oct 2009; Raúl Porcel <armin76@gentoo.org> git-1.6.4.4.ebuild:
  ia64/s390/sh/sparc stable wrt #287031

*git-1.6.5 (11 Oct 2009)

  11 Oct 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.5.ebuild,
  git-9999.ebuild:
  Version bump. Bug #287101: fix manpage formatting. Bug #287104: build
  manpages as needed.

  11 Oct 2009; Tobias Klausmann <klausman@gentoo.org> git-1.6.4.4.ebuild:
  Stable on alpha, bug #287031

  09 Oct 2009; Markus Meier <maekke@gentoo.org> git-1.6.4.4.ebuild:
  arm/x86 stable, bug #287031

  09 Oct 2009; Markus Meier <maekke@gentoo.org> git-1.6.3.1.ebuild,
  git-1.6.3.3.ebuild, git-1.6.3.4.ebuild, git-1.6.4.ebuild,
  git-1.6.4.1.ebuild, git-1.6.4.2.ebuild, git-1.6.4.3.ebuild,
  git-1.6.4.4.ebuild, git-1.6.5_rc1.ebuild, git-1.6.5_rc2.ebuild,
  git-9999.ebuild:
  fix dev-util/cvs detection in src_test due to built_with_use change for
  non-existant package

  02 Oct 2009; Joseph Jezak <josejx@gentoo.org> git-1.6.4.4.ebuild:
  Marked ppc/ppc64 stable for bug #287031.

  01 Oct 2009; Jeroen Roovers <jer@gentoo.org> git-1.6.4.4.ebuild:
  Stable for HPPA (bug #287031).

  30 Sep 2009; Dawid Węgliński <cla@gentoo.org> git-1.6.4.4.ebuild:
  Stable on amd64 (bu #287031)

  30 Sep 2009; Robin H. Johnson <robbat2@gentoo.org> git-1.6.5_rc2.ebuild:
  No git-svn by default.

*git-1.6.5_rc2 (29 Sep 2009)

  29 Sep 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.5_rc2.ebuild,
  git-9999.ebuild, metadata.xml:
  Version bump again. Also handle bug #285238 to use the new SHA1
  implementation by default (and add other IUSE defaults too).

*git-1.6.4.4 (18 Sep 2009)

  18 Sep 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.4.4.ebuild:
  Bug #285418: Version bump

  16 Sep 2009; Robin H. Johnson <robbat2@gentoo.org> git-1.6.3.1.ebuild,
  git-1.6.3.3.ebuild, git-1.6.3.4.ebuild, git-1.6.4.ebuild,
  git-1.6.4.1.ebuild, git-1.6.4.2.ebuild, git-1.6.4.3.ebuild,
  git-1.6.5_rc1.ebuild, git-9999.ebuild:
  Bug #283732: Perl module should be installed to vendor_perl instead of
  site_perl.

  16 Sep 2009; Robin H. Johnson <robbat2@gentoo.org> git-1.6.3.1.ebuild,
  git-1.6.3.3.ebuild, git-1.6.3.4.ebuild, git-1.6.4.ebuild,
  git-1.6.4.1.ebuild, git-1.6.4.2.ebuild, git-1.6.4.3.ebuild,
  git-1.6.5_rc1.ebuild:
  Bug #278738: Do not use FEATURES.

  16 Sep 2009; Robin H. Johnson <robbat2@gentoo.org> git-1.6.3.1.ebuild,
  git-1.6.3.3.ebuild, git-1.6.3.4.ebuild, git-1.6.4.ebuild,
  git-1.6.4.1.ebuild, git-1.6.4.2.ebuild, git-1.6.4.3.ebuild,
  git-1.6.5_rc1.ebuild, git-9999.ebuild:
  Bug #267853: Update deps for gtksourceviewer with newer GNOME.

*git-1.6.5_rc1 (13 Sep 2009)

  13 Sep 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.5_rc1.ebuild:
  Version bump

*git-1.6.4.3 (13 Sep 2009)

  13 Sep 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.4.3.ebuild:
  Version bump

*git-1.6.4.2 (30 Aug 2009)

  30 Aug 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.4.2.ebuild:
  Version bump.

*git-1.6.4.1 (27 Aug 2009)

  27 Aug 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.4.1.ebuild:
  Bug #282667: version bump.

  30 Jul 2009; Robin H. Johnson <robbat2@gentoo.org>
  -files/20080626-git-1.5.6.1-noperl.patch,
  -files/20081123-git-1.6.0.4-noperl-cvsserver.patch, -git-1.6.0.6.ebuild,
  -git-1.6.1.ebuild, -git-1.6.1.1.ebuild,
  -files/20090126-git-1.6.1.1-noperl.patch, -git-1.6.1.2.ebuild,
  -git-1.6.1.3.ebuild, -git-1.6.2.ebuild, -git-1.6.2.2.ebuild,
  -git-1.6.2.2-r1.ebuild, -git-1.6.2.3.ebuild, -git-1.6.2.5.ebuild,
  -git-1.6.2.5-r1.ebuild, -files/20090505-git-1.6.2.5-getopt-fixes.patch,
  -files/20090305-git-1.6.2-noperl.patch, -git-1.6.3.ebuild,
  -files/vim-ftdetect-gitcommit.vim:
  Trim old version.

*git-1.6.4 (29 Jul 2009)
*git-1.6.3.4 (29 Jul 2009)

  29 Jul 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.3.4.ebuild,
  +git-1.6.4.ebuild:
  New upstream releases.

  30 Jun 2009; Raúl Porcel <armin76@gentoo.org> git-1.6.3.3.ebuild:
  arm/ia64/s390/sh/sparc stable wrt #273905

  27 Jun 2009; Brent Baude <ranger@gentoo.org> git-1.6.3.3.ebuild:
  Marking git-1.6.3.3 ppc64 and ppc for bug 273905

  27 Jun 2009; Christian Faulhammer <fauli@gentoo.org> git-1.6.3.3.ebuild:
  stable x86, security bug 273905

  26 Jun 2009; Tobias Heinlein <keytoaster@gentoo.org> git-1.6.3.3.ebuild:
  amd64 stable, security bug ##273905

  26 Jun 2009; Tobias Klausmann <klausman@gentoo.org> git-1.6.3.3.ebuild:
  Stable on alpha, bug #273905

  24 Jun 2009; Jeroen Roovers <jer@gentoo.org> git-1.6.3.3.ebuild:
  Stable for HPPA (bug #273905).

*git-1.6.3.3 (22 Jun 2009)

  22 Jun 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.3.3.ebuild:
  Version bump per bugs 274608 and 273905, has DoS fixes for gid-daemon.

*git-1.6.3.1 (18 May 2009)

  18 May 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.3.1.ebuild:
  Version bump.

  10 May 2009; Robin H. Johnson <robbat2@gentoo.org> git-9999.ebuild:
  getopt fixes in HEAD.

  08 May 2009; Robin H. Johnson <robbat2@gentoo.org> +files/50git-gentoo.el:
  Accidently removed a used file.

  08 May 2009; Robin H. Johnson <robbat2@gentoo.org> -git-1.5.1.6.ebuild,
  -git-1.5.3.7-r1.ebuild, -git-1.5.3.8.ebuild,
  -files/git-1.5.3.8-t9101.patch, -files/git-1.5.3.8-t9106.patch,
  -files/20080322-git-1.5.4.4-noperl.patch, -git-1.5.5.4.ebuild,
  -files/70git-gentoo.el, -files/git-1.5.0-symlinks.patch,
  -git-1.5.4.5.ebuild, -files/20080423-git-1.5.5.1-noperl.patch,
  -git-1.5.5.3.ebuild, -git-1.5.5.3-r1.ebuild,
  -files/20080528-git-1.5.5.3-noperl.patch, -git-1.5.6.1.ebuild,
  -files/50git-gentoo.el, -git-1.5.6.2.ebuild, -files/72git-gentoo.el,
  -files/git-1.5.3-symlinks.patch, -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, -git-1.6.0.4-r2.ebuild, -git-1.6.3_rc4.ebuild:
  Cleanup old ebuilds and files.

*git-1.6.3 (08 May 2009)

  08 May 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.3.ebuild:
  Version bump.

*git-1.6.2.5-r1 (08 May 2009)

  08 May 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.2.5-r1.ebuild:
  Bug 268817: Accidently dropped the noperl patch, it's only merged in
  upstreams 1.6.3.x series.

  05 May 2009; Robin H. Johnson <robbat2@gentoo.org> git-1.6.2.5.ebuild,
  git-1.6.3_rc4.ebuild, git-9999.ebuild:
  Fix bug #267853: dev-python/gtksourceview-python needed for gitview.
  Update git-9999 for getopt fixes.

  05 May 2009; Robin H. Johnson <robbat2@gentoo.org> git-1.6.2.5.ebuild,
  git-1.6.3_rc4.ebuild:
  Backport a fix from the live ebuild.

  05 May 2009; Robin H. Johnson <robbat2@gentoo.org> git-1.6.2.5.ebuild,
  +files/20090505-git-1.6.2.5-getopt-fixes.patch, git-1.6.3_rc4.ebuild:
  Fix Getopt::Long usage bug, patch submitted to upstream as well.

*git-1.6.2.5 (05 May 2009)

  05 May 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.2.5.ebuild:
  Version bump.

*git-1.6.3_rc4 (05 May 2009)

  05 May 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.3_rc4.ebuild:
  Version bump to release candidate for 1.6.3. In package.mask for the
  moment.

*git-1.6.2.3 (13 Apr 2009)

  13 Apr 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.2.3.ebuild:
  Version bump.

  13 Apr 2009; Robin H. Johnson <robbat2@gentoo.org> git-1.6.2.2-r1.ebuild,
  git-9999.ebuild:
  Bug #221179, do not install perl .packlist.

  12 Apr 2009; Robin H. Johnson <robbat2@gentoo.org> git-1.6.2.2-r1.ebuild,
  git-9999.ebuild:
  Manpages were missed in live ebuild.

  05 Apr 2009; Robin H. Johnson <robbat2@gentoo.org> git-9999.ebuild:
  Upstream is mergign the noperl patch now.

  05 Apr 2009; Robin H. Johnson <robbat2@gentoo.org> git-9999.ebuild:
  Forgot a bit.

  05 Apr 2009; Robin H. Johnson <robbat2@gentoo.org> git-1.6.2.2-r1.ebuild:
  Refix bug #237210, missed a part.

*git-9999 (03 Apr 2009)
*git-1.6.2.2-r1 (03 Apr 2009)

  03 Apr 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.2.2-r1.ebuild,
  +git-9999.ebuild:
  Bug #238023 - add an scm-capable ebuild for Git, use it to tidy up the
  ebuild a bit too. Based on the work by Sebastian Pipping
  <webmaster@hartwork.org>.

*git-1.6.2.2 (03 Apr 2009)

  03 Apr 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.2.2.ebuild:
  Version bump, also fixes bug #237210 for Emacs users.

  03 Apr 2009; Robin H. Johnson <robbat2@gentoo.org>
  files/20090305-git-1.6.2-noperl.patch:
  Fix testsuite functionality with USE=-perl, the add-interactive test uses
  perl and was not excluded.

  23 Mar 2009; Robin H. Johnson <robbat2@gentoo.org> metadata.xml:
  Update metadata, ricmm is joining as a maintainer.

  21 Mar 2009; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
  metadata.xml:
  Removing ferdy as a maintainer since he was retired.

  06 Mar 2009; Christian Faulhammer <fauli@gentoo.org> git-1.6.2.ebuild:
  fix HOMEPAGE

*git-1.6.2 (06 Mar 2009)

  06 Mar 2009; Robin H. Johnson <robbat2@gentoo.org>
  +files/20090305-git-1.6.2-noperl.patch, +git-1.6.2.ebuild:
  Version bump per bug #261241. Also fix bugs #256964, #238586. EAPI2 now in
  use.

*git-1.6.1.3 (11 Feb 2009)

  11 Feb 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.1.3.ebuild:
  Version bump.

*git-1.6.1.2 (02 Feb 2009)

  02 Feb 2009; Greg Kroah-Hartman <gregkh@gentoo.org> +git-1.6.1.2.ebuild:
  version bump to 1.6.1.2 to fix pack-objects problem in 1.6.1.1

*git-1.6.1.1 (26 Jan 2009)

  26 Jan 2009; Robin H. Johnson <robbat2@gentoo.org>
  +files/20090126-git-1.6.1.1-noperl.patch, +git-1.6.1.1.ebuild:
  Version bump. Also bug #254029 - fix noperl patch.

  08 Jan 2009; Brent Baude <ranger@gentoo.org> git-1.6.0.6.ebuild:
  Marking git-1.6.0.6 ppc64 for bug 251343

*git-1.6.1 (06 Jan 2009)

  06 Jan 2009; Robin H. Johnson <robbat2@gentoo.org> +git-1.6.1.ebuild:
  Version bump, bug 250321.

  01 Jan 2009; Raúl Porcel <armin76@gentoo.org> git-1.6.0.6.ebuild:
  s390/sh stable wrt #251343

  29 Dec 2008; Tobias Scherbaum <dertobi123@gentoo.org> git-1.6.0.6.ebuild:
  ppc stable, bug #251343

  25 Dec 2008; Jeroen Roovers <jer@gentoo.org> git-1.6.0.6.ebuild:
  Stable for HPPA (bug #251343).

  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