summaryrefslogtreecommitdiff
blob: 454ba96e9fc62d30f9f7cbbeda646c5ef0f67ff8 (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
# ChangeLog for gnome-extra/evolution-data-server
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-data-server/ChangeLog,v 1.389 2014/03/09 11:59:34 pacho Exp $

  09 Mar 2014; Pacho Ramos <pacho@gentoo.org>
  evolution-data-server-3.10.4.ebuild:
  x86 stable, bug 499954

  09 Mar 2014; Pacho Ramos <pacho@gentoo.org>
  evolution-data-server-3.10.4.ebuild:
  amd64 stable, bug 499954

  22 Feb 2014; Pacho Ramos <pacho@gentoo.org>
  evolution-data-server-3.10.4.ebuild, evolution-data-server-3.8.5.ebuild:
  Fix wrong commit, bug 502160

  10 Feb 2014; Pacho Ramos <pacho@gentoo.org>
  evolution-data-server-3.10.4.ebuild:
  Update homepage

*evolution-data-server-3.10.4 (10 Feb 2014)

  10 Feb 2014; Pacho Ramos <pacho@gentoo.org>
  +evolution-data-server-3.10.4.ebuild:
  Version bump

  24 Dec 2013; Gilles Dartiguelongue <eva@gentoo.org>
  evolution-data-server-3.10.3.ebuild:
  Re-add crypt USE flag to libsecret dependency.

*evolution-data-server-3.10.3 (24 Dec 2013)

  24 Dec 2013; Pacho Ramos <pacho@gentoo.org>
  +evolution-data-server-3.10.3.ebuild:
  Version bump for Gnome 3.10

  08 Dec 2013; Pacho Ramos <pacho@gentoo.org>
  evolution-data-server-3.8.5.ebuild:
  x86 stable, bug #478252

  30 Nov 2013; Pacho Ramos <pacho@gentoo.org>
  evolution-data-server-3.8.5.ebuild:
  amd64 stable, bug #478252

  18 Nov 2013; Pacho Ramos <pacho@gentoo.org>
  -evolution-data-server-3.6.4.ebuild, -evolution-data-server-3.8.4-r1.ebuild,
  -evolution-data-server-3.8.4.ebuild,
  -files/evolution-data-server-3.8.4-pop3-removal.patch,
  evolution-data-server-3.8.5.ebuild:
  RDEPEND on libsecret[crypt] (#491548 by Rick Harris), drop old

  05 Sep 2013; Michał Górny <mgorny@gentoo.org>
  evolution-data-server-3.6.4.ebuild, evolution-data-server-3.8.4-r1.ebuild,
  evolution-data-server-3.8.4.ebuild, evolution-data-server-3.8.5.ebuild:
  Clean up PYTHON_COMPAT from old implementations.

*evolution-data-server-3.8.5 (25 Aug 2013)

  25 Aug 2013; Gilles Dartiguelongue <eva@gentoo.org>
  +evolution-data-server-3.8.5.ebuild:
  Version bump.

*evolution-data-server-3.8.4-r1 (09 Aug 2013)

  09 Aug 2013; Pacho Ramos <pacho@gentoo.org>
  +evolution-data-server-3.8.4-r1.ebuild,
  +files/evolution-data-server-3.8.4-pop3-removal.patch:
  Fix 'Old POP3 mails can be removed before getting them, upstream bug #705446'

  29 Jul 2013; Pacho Ramos <pacho@gentoo.org>
  evolution-data-server-3.8.4.ebuild:
  Really fix python compat, drop old

  28 Jul 2013; Pacho Ramos <pacho@gentoo.org>
  evolution-data-server-3.8.4.ebuild:
  Fix PYTHON_COMPAT (#478442 by Alphat-PC)

  28 Jul 2013; Gilles Dartiguelongue <eva@gentoo.org>
  evolution-data-server-3.8.4.ebuild:
  Add missing PYTHON_DEPS and phonenumber configure switch + cosmetics.

*evolution-data-server-3.8.4 (23 Jul 2013)

  23 Jul 2013; Pacho Ramos <pacho@gentoo.org>
  +evolution-data-server-3.8.4.ebuild, -evolution-data-server-3.8.2.ebuild:
  Version bump, drop old

*evolution-data-server-3.8.3 (09 Jun 2013)

  09 Jun 2013; Pacho Ramos <pacho@gentoo.org>
  +evolution-data-server-3.8.3.ebuild, -evolution-data-server-3.8.1.ebuild,
  metadata.xml:
  Version bump, drop old

  12 May 2013; Pacho Ramos <pacho@gentoo.org>
  evolution-data-server-3.8.2.ebuild:
  Remove unneeded USE flag and enable google support always as talked with
  nirbheek.

  12 May 2013; Nirbheek Chauhan <nirbheek@gentoo.org>
  evolution-data-server-3.8.1.ebuild, evolution-data-server-3.8.2.ebuild:
  IUSE=+google, no reason not to make this default

*evolution-data-server-3.8.2 (12 May 2013)

  12 May 2013; Pacho Ramos <pacho@gentoo.org>
  +evolution-data-server-3.8.2.ebuild, -evolution-data-server-3.6.3.ebuild,
  -evolution-data-server-3.8.0.ebuild:
  Version bump, drop old

*evolution-data-server-3.8.1 (14 Apr 2013)

  14 Apr 2013; Pacho Ramos <pacho@gentoo.org>
  +evolution-data-server-3.8.1.ebuild:
  Version bump

*evolution-data-server-3.6.4 (31 Mar 2013)

  31 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org>
  +evolution-data-server-3.6.4.ebuild:
  Version bump.

  29 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org>
  -evolution-data-server-2.32.3-r2.ebuild, -evolution-data-server-3.4.4.ebuild,
  -evolution-data-server-3.6.2-r1.ebuild:
  Clean up old revisions.

  29 Mar 2013; Pacho Ramos <pacho@gentoo.org>
  evolution-data-server-3.8.0.ebuild:
  Update symlink to new evolutionperson.schema location

*evolution-data-server-3.8.0 (28 Mar 2013)

  28 Mar 2013; Pacho Ramos <pacho@gentoo.org>
  +evolution-data-server-3.8.0.ebuild, metadata.xml:
  Version bump for Gnome 3.8

  24 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  evolution-data-server-2.32.3-r3.ebuild:
  Stable for amd64, wrt bug #448798

  23 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  evolution-data-server-2.32.3-r3.ebuild:
  Stable for ppc64, wrt bug #448798

  23 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  evolution-data-server-2.32.3-r3.ebuild:
  Stable for alpha, wrt bug #448798

  22 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  evolution-data-server-2.32.3-r3.ebuild:
  Stable for arm, wrt bug #448798

  22 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  evolution-data-server-2.32.3-r3.ebuild:
  Stable for ppc, wrt bug #448798

  21 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  evolution-data-server-2.32.3-r3.ebuild:
  Stable for x86, wrt bug #448798

  21 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  evolution-data-server-2.32.3-r3.ebuild:
  Stable for sparc, wrt bug #448798

  21 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  evolution-data-server-2.32.3-r3.ebuild:
  Stable for ia64, wrt bug #448798

  20 Feb 2013; Alexandre Rostovtsev <tetromino@gentoo.org>
  evolution-data-server-2.32.3-r3.ebuild,
  +files/evolution-data-server-2.32.3-libxml2-2.9.patch,
  evolution-data-server-3.6.3.ebuild:
  2.32.3-r3: add patch to fix build failure with libxml2-2.9 (bug #448798).
  3.6.3: propagate ~arm keyword from 3.6.2-r1.

  02 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  evolution-data-server-3.6.2-r1.ebuild:
  Add ~arm, wrt bug #449220

*evolution-data-server-2.32.3-r3 (22 Jan 2013)

  22 Jan 2013; Pacho Ramos <pacho@gentoo.org>
  +evolution-data-server-2.32.3-r3.ebuild,
  +files/evolution-data-server-2.32.3-libical-0.48.patch:
  Fix incompatibility with libical-0.48 (#453546 by lor)

*evolution-data-server-3.6.3 (22 Jan 2013)

  22 Jan 2013; Alexandre Rostovtsev <tetromino@gentoo.org>
  +evolution-data-server-3.6.3.ebuild:
  Version bump with various bugfixes. Modernize ebuild.

  06 Jan 2013; Agostino Sarubbo <ago@gentoo.org>
  evolution-data-server-3.6.2-r1.ebuild:
  Add ~sparc, wrt bug #449220

  01 Jan 2013; Agostino Sarubbo <ago@gentoo.org>
  evolution-data-server-3.6.2-r1.ebuild:
  Add ~alpha, wrt bug #449220

  01 Jan 2013; Agostino Sarubbo <ago@gentoo.org>
  evolution-data-server-3.6.2-r1.ebuild:
  Add ~ia64, wrt bug #449220

*evolution-data-server-3.6.2-r1 (19 Dec 2012)

  19 Dec 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  -files/evolution-data-server-3.2.2-g_thread_init.patch,
  -files/evolution-data-server-3.2.2-gmodule-explicit.patch,
  -evolution-data-server-3.2.3-r2.ebuild,
  -files/evolution-data-server-3.2.3-caldav-cannot-modify.patch,
  -files/evolution-data-server-3.2.3-google-calendar.patch,
  +evolution-data-server-3.6.2-r1.ebuild, metadata.xml:
  Version bump for gnome-3.6. Drop old. Switch to global introspection flag.

  25 Nov 2012; Ulrich Müller <ulm@gentoo.org>
  evolution-data-server-2.32.3-r2.ebuild,
  evolution-data-server-3.2.3-r2.ebuild, evolution-data-server-3.4.4.ebuild:
  Update LICENSE: DB and OracleDB are identical, except for the different
  copyright holder. They have been unified in the "Sleepycat" license
  template, which is the name used by both OSI and SPDX. Bug 300426.

  17 Oct 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  -evolution-data-server-2.32.3-r1.ebuild,
  evolution-data-server-2.32.3-r2.ebuild,
  evolution-data-server-3.2.3-r2.ebuild, -evolution-data-server-3.4.3.ebuild,
  evolution-data-server-3.4.4.ebuild:
  Drop useless USE=doc, it only regenerated documentation. Update license. Use
  vala.eclass. Drop old.

  27 Sep 2012; Anthony G. Basile <blueness@gentoo.org>
  evolution-data-server-3.4.4.ebuild:
  keyword ~ppc, bug #436396

  23 Sep 2012; Anthony G. Basile <blueness@gentoo.org>
  evolution-data-server-3.4.4.ebuild:
  keyword ~ppc64, bug #379651

  10 Sep 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  evolution-data-server-3.4.3.ebuild, evolution-data-server-3.4.4.ebuild:
  Raise glib dependency (bug #434598, thanks to Gauthier Monserand).

*evolution-data-server-3.4.4 (13 Aug 2012)

  13 Aug 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  evolution-data-server-3.2.3-r2.ebuild, evolution-data-server-3.4.3.ebuild,
  +evolution-data-server-3.4.4.ebuild:
  Version bump with various bugfixes. Use systemwide fix-la-relink-command
  script instead of an old local copy.

  15 Jul 2012; Raúl Porcel <armin76@gentoo.org>
  evolution-data-server-2.32.3-r2.ebuild:
  alpha/ia64/sparc stable wrt #410611

  08 Jul 2012; Pacho Ramos <pacho@gentoo.org>
  -evolution-data-server-3.2.3-r1.ebuild, -evolution-data-server-3.4.1.ebuild,
  -evolution-data-server-3.4.2.ebuild, evolution-data-server-2.32.3-r2.ebuild:
  Doesn't work with automake-1.12 (#425296 by Pascariu Olimpiu), drop Werror
  usage allowing it compile against libgdata-0.10.x (#415043 by venom01 and
  Peter Alfredsen). Drop old.

*evolution-data-server-3.4.3 (24 Jun 2012)

  24 Jun 2012; Nirbheek Chauhan <nirbheek@gentoo.org>
  +evolution-data-server-3.4.3.ebuild:
  Bump to 3.4.3

  20 Jun 2012; Samuli Suominen <ssuominen@gentoo.org>
  evolution-data-server-3.2.3-r2.ebuild:
  Fix sys-devel/automake >= 1.12 compability wrt #420351

  24 May 2012; Samuli Suominen <ssuominen@gentoo.org>
  evolution-data-server-2.32.3-r2.ebuild:
  ppc stable wrt #410611

*evolution-data-server-3.4.2 (20 May 2012)

  20 May 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  +evolution-data-server-3.4.2.ebuild:
  Version bump with various bugfixes.

*evolution-data-server-3.4.1 (07 May 2012)
*evolution-data-server-3.2.3-r2 (07 May 2012)

  07 May 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  -evolution-data-server-3.2.3.ebuild, +evolution-data-server-3.2.3-r2.ebuild,
  +files/evolution-data-server-3.2.3-google-calendar.patch,
  +evolution-data-server-3.4.1.ebuild:
  Version bump for gnome-3.4 with numerous bugfixes. Backport patch fixing
  adding events to Google calendar to 3.2.3-r2 (bug #412829, thanks to Bernd
  Feige). Drop old.

  05 May 2012; Jeff Horelick <jdhore@gentoo.org>
  evolution-data-server-2.32.3-r1.ebuild,
  evolution-data-server-2.32.3-r2.ebuild, evolution-data-server-3.2.3.ebuild,
  evolution-data-server-3.2.3-r1.ebuild:
  dev-util/pkgconfig -> virtual/pkgconfig

  29 Apr 2012; Markus Meier <maekke@gentoo.org>
  evolution-data-server-2.32.3-r2.ebuild:
  x86 stable, bug #410611

  25 Apr 2012; Markus Meier <maekke@gentoo.org>
  evolution-data-server-2.32.3-r2.ebuild:
  arm stable, bug #410611

  19 Apr 2012; Brent Baude <ranger@gentoo.org>
  evolution-data-server-2.32.3-r2.ebuild:
  Marking evolution-data-server-2.32.3-r2 ppc64 stable for bug 410611

  18 Apr 2012; Agostino Sarubbo <ago@gentoo.org>
  evolution-data-server-2.32.3-r2.ebuild:
  Stable for amd64, wrt bug #410611

  16 Apr 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  evolution-data-server-2.32.3-r2.ebuild,
  +files/evolution-data-server-2.32.3-g_thread_init.patch:
  Add another glib-2.32 fix.

  15 Apr 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  evolution-data-server-2.32.3-r2.ebuild,
  +files/evolution-data-server-2.32.3-gmodule-explicit.patch:
  Fix building with glib-2.32 (bug #412109, thanks to Peter Alfredsen).

*evolution-data-server-3.2.3-r1 (24 Feb 2012)

  24 Feb 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  +evolution-data-server-3.2.3-r1.ebuild,
  +files/evolution-data-server-3.2.3-caldav-cannot-modify.patch:
  Fix quoting problems with libical-0.48 (i.e. the 'existing event has
  different ETag' error), bug #405647 (thanks to Ole Craig for reporting).

*evolution-data-server-2.32.3-r2 (12 Feb 2012)

  12 Feb 2012; Pacho Ramos <pacho@gentoo.org>
  +evolution-data-server-2.32.3-r2.ebuild,
  +files/evolution-data-server-2.32.3-imap-move.patch:
  Fix imap messages reappearing after moving/deleting them, bug #392665 by Wayne
  and Gilles Dartiguelongue.

  01 Feb 2012; Mart Raudsepp <leio@gentoo.org>
  -files/evolution-data-server-2.32.1-libgdata07.patch,
  -evolution-data-server-2.32.2.ebuild,
  -evolution-data-server-2.32.2-r1.ebuild,
  -evolution-data-server-3.2.2-r1.ebuild,
  -files/evolution-data-server-3.2.2-libical-timezones.patch,
  -files/evolution-data-server-3.2.2-new-folder-imap.patch,
  -files/evolution-data-server-3.2.2-retrieval_done-crash.patch:
  Remove old

*evolution-data-server-3.2.3 (20 Jan 2012)

  20 Jan 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  -evolution-data-server-3.2.1.ebuild, -evolution-data-server-3.2.2.ebuild,
  +evolution-data-server-3.2.3.ebuild:
  Bump, fixes assorted bugs and crashes. Drop old.

  06 Jan 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  evolution-data-server-3.2.2-r1.ebuild,
  +files/evolution-data-server-3.2.2-g_thread_init.patch:
  Fix another glib-2.31 linking problem (bug #395777 comment 5, thanks to
  Alphat-PC for reporting).

*evolution-data-server-3.2.2-r1 (31 Dec 2011)

  31 Dec 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
  +evolution-data-server-3.2.2-r1.ebuild,
  +files/evolution-data-server-3.2.2-gmodule-explicit.patch,
  +files/evolution-data-server-3.2.2-libical-timezones.patch,
  +files/evolution-data-server-3.2.2-new-folder-imap.patch,
  +files/evolution-data-server-3.2.2-retrieval_done-crash.patch:
  Add upstream patches to fix several bugs, including a crash. Also, fix
  linking with glib-2.31 (bug #395777, thanks to Oschtan for reporting).

  07 Dec 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
  evolution-data-server-2.32.2.ebuild, evolution-data-server-2.32.2-r1.ebuild,
  evolution-data-server-2.32.3-r1.ebuild:
  Do not pull in libgweather-3 (bug #393253, thanks to megabaks for reporting).

  02 Dec 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
  evolution-data-server-3.2.1.ebuild, evolution-data-server-3.2.2.ebuild:
  Remove ssl USE flag since evolution-data-server-3.x fails to build with
  --disable-ssl (bug #392679, thanks to Alexander Kozyrev
  <sequoiahead@gmail.com> for reporting).

*evolution-data-server-3.2.2 (16 Nov 2011)

  16 Nov 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
  evolution-data-server-2.32.2.ebuild, evolution-data-server-2.32.2-r1.ebuild,
  evolution-data-server-2.32.3-r1.ebuild, -evolution-data-server-3.0.3.ebuild,
  +evolution-data-server-3.2.2.ebuild:
  Bump to 3.2.2 with assorted bugfixes. Drop old.
  Also, QA: eautoreconf should be before gnome2_src_prepare.

  15 Nov 2011; Nirbheek Chauhan <nirbheek@gentoo.org>
  evolution-data-server-3.2.1.ebuild:
  Fix automagic introspection, always pass VALAC and VAPIGEN, doesn't hurt

*evolution-data-server-3.2.1 (31 Oct 2011)

  31 Oct 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
  +evolution-data-server-3.2.1.ebuild, metadata.xml:
  Bump to 3.2.1 from the gnome overlay. The venerable gentoo_etc_services patch
  is not needed for any version of baselayout in portage. Drop alpha, arm,
  ia64, ppc, ppc64, sparc keywords due to new liboauth, libgdata, and
  gnome-online-accounts dependencies.

  30 Oct 2011; Raúl Porcel <armin76@gentoo.org>
  evolution-data-server-2.32.3-r1.ebuild:
  alpha/ia64/sparc stable wrt #385699

  28 Oct 2011; Markus Meier <maekke@gentoo.org>
  evolution-data-server-2.32.3-r1.ebuild:
  arm stable, bug #385699

  21 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  evolution-data-server-2.32.3-r1.ebuild:
  x86 stable wrt bug #385699

  16 Oct 2011; Kacper Kowalik <xarthisius@gentoo.org>
  evolution-data-server-2.32.3-r1.ebuild:
  ppc/ppc64 stable wrt #385699

  14 Oct 2011; Samuli Suominen <ssuominen@gentoo.org>
  evolution-data-server-2.32.3-r1.ebuild:
  amd64 stable wrt #385699

  05 Oct 2011; Kacper Kowalik <xarthisius@gentoo.org>
  evolution-data-server-2.32.2-r1.ebuild:
  ppc/ppc64 stable wrt #369909

*evolution-data-server-3.0.3 (02 Sep 2011)

  02 Sep 2011; Nirbheek Chauhan <nirbheek@gentoo.org>
  -evolution-data-server-3.0.2.1.ebuild, +evolution-data-server-3.0.3.ebuild:
  Bump to 3.0.3, remove old

*evolution-data-server-3.0.2.1 (18 Aug 2011)

  18 Aug 2011; Nirbheek Chauhan <nirbheek@gentoo.org>
  -evolution-data-server-2.32.3.ebuild, +evolution-data-server-3.0.2.1.ebuild,
  metadata.xml:
  Bump to 3.0.2.1, from gnome overlay for GNOME 3, remove old.

  13 Aug 2011; Raúl Porcel <armin76@gentoo.org>
  evolution-data-server-2.32.2-r1.ebuild:
  alpha/ia64/sparc stable wrt #369909

*evolution-data-server-2.32.3-r1 (31 Jul 2011)

  31 Jul 2011; Pacho Ramos <pacho@gentoo.org>
  +evolution-data-server-2.32.3-r1.ebuild:
  Remove patches causing evolution to close when creating an appointment (bug
  #372651), that patches look to be no longer needed as told by original author
  in upstream report (https://bugzilla.gnome.org/show_bug.cgi?id=649787#c5).

  17 Jul 2011; Markus Meier <maekke@gentoo.org>
  evolution-data-server-2.32.2-r1.ebuild:
  arm stable, bug #369909

  14 Jul 2011; Thomas Kahle <tomka@gentoo.org>
  evolution-data-server-2.32.2-r1.ebuild:
  x86 stable per bug 369909

  01 Jul 2011; Markos Chandras <hwoarang@gentoo.org>
  evolution-data-server-2.32.2-r1.ebuild:
  Stable on amd64 wrt bug #278255

*evolution-data-server-2.32.3 (19 Jun 2011)

  19 Jun 2011; Pacho Ramos <pacho@gentoo.org>
  +evolution-data-server-2.32.3.ebuild, +files/fix_relink_command.pl:
  Version bump, also fix bug #349782 (linking problems) with tetromino's
  solution.

  13 Apr 2011; Pacho Ramos <pacho@gentoo.org>
  evolution-data-server-2.32.2-r1.ebuild:
  Newer x11-libs/gtk+ needed (bug #363405 by Uwe Breidenbach).

*evolution-data-server-2.32.2-r1 (12 Apr 2011)

  12 Apr 2011; Pacho Ramos <pacho@gentoo.org>
  +evolution-data-server-2.32.2-r1.ebuild:
  Apply upstream fixes and backports from master and 2.32 branch, force ssl
  usage as told by upstream in upstream bug #642984.

  10 Apr 2011; Gilles Dartiguelongue <eva@gentoo.org>
  -files/evolution-data-server-1.8.0-camel-rewind.patch,
  -files/evolution-data-server-2.28.0-gentoo_etc_services.patch,
  -files/evolution-data-server-2.30.2-revert-addressbook.patch,
  -evolution-data-server-2.30.3.ebuild,
  -files/evolution-data-server-2.32.1-no-kerberos.patch:
  Clean up old revision.

  23 Mar 2011; Nirbheek Chauhan <nirbheek@gentoo.org>
  evolution-data-server-2.30.3.ebuild:
  Actually fix the deps...

  23 Mar 2011; Nirbheek Chauhan <nirbheek@gentoo.org>
  -evolution-data-server-2.30.2.ebuild,
  -evolution-data-server-2.32.1-r1.ebuild:
  Fix slot-deps on gnome libs, remove old

  22 Mar 2011; Brent Baude <ranger@gentoo.org>
  evolution-data-server-2.32.2.ebuild:
  Marking evolution-data-server-2.32.2 ppc stable for bug 353436

  21 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org>
  evolution-data-server-2.32.2.ebuild:
  ppc64 stable wrt #353436

  12 Mar 2011; Raúl Porcel <armin76@gentoo.org>
  evolution-data-server-2.32.2.ebuild:
  alpha/arm/ia64/sparc stable wrt #353436

  24 Feb 2011; Thomas Kahle <tomka@gentoo.org>
  evolution-data-server-2.32.2.ebuild:
  x86 stable per bug 353436

  23 Feb 2011; Markos Chandras <hwoarang@gentoo.org>
  evolution-data-server-2.32.2.ebuild:
  Stable on amd64 wrt bug #353436

  07 Feb 2011; Diego E. Pettenò <flameeyes@gentoo.org>
  evolution-data-server-2.32.2.ebuild:
  QA: add missing dependency over gperf.

*evolution-data-server-2.32.2 (07 Feb 2011)

  07 Feb 2011; Pacho Ramos <pacho@gentoo.org>
  +evolution-data-server-2.32.2.ebuild:
  Version bump with some bugfixes.

  05 Feb 2011; Pacho Ramos <pacho@gentoo.org>
  -evolution-data-server-2.32.1.ebuild:
  Remove old and broken version.

  30 Jan 2011; Raúl Porcel <armin76@gentoo.org>
  evolution-data-server-2.30.3.ebuild:
  alpha/arm/ia64/sparc stable wrt #348987

  19 Jan 2011; Markos Chandras <hwoarang@gentoo.org>
  evolution-data-server-2.30.3.ebuild:
  Stable on amd64 wrt bug #348987

  18 Jan 2011; Christian Faulhammer <fauli@gentoo.org>
  evolution-data-server-2.30.3.ebuild:
  x86 stable, bug 348987

  15 Jan 2011; <nirbheek@gentoo.org> evolution-data-server-2.30.2.ebuild,
  evolution-data-server-2.30.3.ebuild, evolution-data-server-2.32.1.ebuild,
  evolution-data-server-2.32.1-r1.ebuild:
  libgweather slotmove 0 -> 2, new gtk+:3 version coming up

  13 Jan 2011; Gilles Dartiguelongue <eva@gentoo.org>
  evolution-data-server-2.32.1-r1.ebuild,
  +files/evolution-data-server-2.32.1-libgdata07.patch:
  Backport upstream work to fix build with >=libgdata-0.7.

  03 Jan 2011; Pacho Ramos <pacho@gentoo.org>
  evolution-data-server-2.32.1-r1.ebuild,
  +files/evolution-data-server-2.32.1-no-kerberos.patch:
  Fix building without kerberos, bug #348260 by Stephan Friedrichs and
  backported patch from Jonathan-Christofer Demay.

*evolution-data-server-2.32.1-r1 (01 Jan 2011)

  01 Jan 2011; Pacho Ramos <pacho@gentoo.org>
  +evolution-data-server-2.32.1-r1.ebuild:
  Revision bump including all bugfixes committed to gnome-2.32 branch.

*evolution-data-server-2.32.1 (16 Nov 2010)

  16 Nov 2010; Pacho Ramos <pacho@gentoo.org>
  -files/evolution-data-server-2.31-camel-rewind.patch,
  -evolution-data-server-2.32.0.ebuild,
  -files/evolution-data-server-2.32.0-libtool-fix.patch,
  +evolution-data-server-2.32.1.ebuild:
  Version bump with lots of bugfixes, remove old.

  15 Nov 2010; Doug Goldstein <cardoe@gentoo.org>
  evolution-data-server-2.30.3.ebuild:
  Enable USE weather by default so that 'emerge gnome' does not require a
  package.use change.

  15 Nov 2010; Pacho Ramos <pacho@gentoo.org>
  evolution-data-server-2.32.0.ebuild:
  Make calendar checks work, enable weather USE flag by default to prevent
  people using evolution (common on Gnome systems) to have to change
  package.use.

*evolution-data-server-2.32.0 (14 Nov 2010)

  14 Nov 2010; Gilles Dartiguelongue <eva@gentoo.org>
  -files/evolution-data-server-1.2.0-gentoo_etc_services.patch,
  -files/evolution-data-server-2.25.5-as-needed.patch,
  -files/evolution-data-server-2.25.90-no-libdb.patch,
  -evolution-data-server-2.26.3.ebuild,
  -files/evolution-data-server-2.26.3-camel-vee-folder.patch,
  -evolution-data-server-2.28.3.1-r1.ebuild,
  -files/evolution-data-server-2.28.3.1-version-number.patch,
  evolution-data-server-2.30.3.ebuild,
  +files/evolution-data-server-2.31-camel-rewind.patch,
  +files/evolution-data-server-2.31-gentoo_etc_services.patch,
  +evolution-data-server-2.32.0.ebuild,
  +files/evolution-data-server-2.32.0-libtool-fix.patch, metadata.xml:
  Version bump for Gnome 2.32. Make weather component optional, bug #289796.
  Clean up old revisions.

  17 Oct 2010; Raúl Porcel <armin76@gentoo.org>
  evolution-data-server-2.30.2.ebuild:
  alpha/ia64/sparc stable wrt #324077

  14 Oct 2010; Markus Meier <maekke@gentoo.org>
  evolution-data-server-2.30.2.ebuild:
  arm stable, bug #324077

  09 Oct 2010; Samuli Suominen <ssuominen@gentoo.org>
  evolution-data-server-2.30.2.ebuild:
  ppc64 stable wrt #324077

  26 Sep 2010; <nirbheek@gentoo.org> evolution-data-server-2.30.2.ebuild,
  evolution-data-server-2.30.3.ebuild:
  Fix build issues with gtk+-2.22 by *actually* removing
  -D*DISABLE_DEPRECATED cflags

  11 Sep 2010; Joseph Jezak <josejx@gentoo.org>
  evolution-data-server-2.30.2.ebuild:
  Marked ppc for bug #324077.

*evolution-data-server-2.30.3 (07 Sep 2010)

  07 Sep 2010; Gilles Dartiguelongue <eva@gentoo.org>
  +evolution-data-server-2.30.3.ebuild:
  Version bump. IMAPX backports from master and various fixes.

  22 Aug 2010; Gilles Dartiguelongue <eva@gentoo.org>
  evolution-data-server-2.30.2.ebuild:
  Reorder dependencies. Depend on gmime-2.4 as in 2.28. Removing nntp USE
  flag, it does not pull any dependency and is not properly depended upon in
  evolution. Drop deprecated gtk-doc fix. Add missing preserved-lib for
  libecal.

  18 Aug 2010; Markus Meier <maekke@gentoo.org>
  evolution-data-server-2.28.3.1-r1.ebuild:
  arm stable, bug #314899

  14 Aug 2010; Raúl Porcel <armin76@gentoo.org>
  evolution-data-server-2.28.3.1-r1.ebuild:
  alpha/ia64/sparc stable wrt #314899

  05 Aug 2010; Samuli Suominen <ssuominen@gentoo.org>
  evolution-data-server-2.26.3.ebuild,
  evolution-data-server-2.28.3.1-r1.ebuild:
  Remove USE="krb4" because app-crypt/mit-krb5 doesn't have krb4 support
  anymore.

  01 Aug 2010; Christian Faulhammer <fauli@gentoo.org>
  evolution-data-server-2.30.2.ebuild:
  x86 stable, bug 324077

  31 Jul 2010; Pacho Ramos <pacho@gentoo.org>
  evolution-data-server-2.30.2.ebuild:
  amd64 stable, bug 324077

  19 Jul 2010; Jeroen Roovers <jer@gentoo.org>
  evolution-data-server-2.26.3.ebuild,
  evolution-data-server-2.28.3.1-r1.ebuild,
  evolution-data-server-2.30.2.ebuild:
  Drop HPPA keywording (bug #324511).

  11 Jul 2010; Pacho Ramos <pacho@gentoo.org>
  evolution-data-server-2.26.3.ebuild:
  Drop hppa keyword per bug #324511.

  05 Jul 2010; Pacho Ramos <pacho@gentoo.org>
  evolution-data-server-2.30.2.ebuild:
  Skip failing tests until upstream fixes them (bug #323663).

*evolution-data-server-2.30.2 (23 Jun 2010)

  23 Jun 2010; Pacho Ramos <pacho@gentoo.org>
  -evolution-data-server-2.28.2.ebuild,
  -evolution-data-server-2.30.1-r1.ebuild,
  +evolution-data-server-2.30.2.ebuild,
  +files/evolution-data-server-2.30.2-revert-addressbook.patch:
  Version bump with updated translations and fixes, remove old.

*evolution-data-server-2.30.1-r1 (13 Jun 2010)

  13 Jun 2010; Pacho Ramos <pacho@gentoo.org>
  +evolution-data-server-2.30.1-r1.ebuild,
  +files/e-d-s-camel-skip-failing-test.patch:
  Add new version for Gnome 2.30.

  04 Jun 2010; Markus Meier <maekke@gentoo.org>
  evolution-data-server-2.28.3.1-r1.ebuild:
  x86 stable, bug #314899

  03 May 2010; Olivier Crête <tester@gentoo.org>
  evolution-data-server-2.28.3.1-r1.ebuild:
  amd64 stable, bug #314899

*evolution-data-server-2.28.3.1-r1 (29 Apr 2010)

  29 Apr 2010; Pacho Ramos <pacho@gentoo.org>
  -evolution-data-server-2.28.3.1.ebuild,
  +evolution-data-server-2.28.3.1-r1.ebuild,
  +files/evolution-data-server-2.28.3.1-version-number.patch:
  Revision bump to apply a patch for setting version properly as talked with
  Matthew Barnes (read the patch for more information). Thanks a lot to him
  for his help.

*evolution-data-server-2.28.3.1 (08 Mar 2010)

  08 Mar 2010; Gilles Dartiguelongue <eva@gentoo.org>
  +evolution-data-server-2.28.3.1.ebuild:
  Version bump. Bug fixes and translation updates.

  25 Feb 2010; Mark Loeser <halcy0n@gentoo.org>
  -files/evolution-data-server-1.11.3-no-libdb.patch,
  -files/evolution-data-server-2.23.6-as-needed.patch,
  -evolution-data-server-2.24.5-r3.ebuild,
  -files/evolution-data-server-2.24.5-CVE-2009-0547.patch,
  -files/evolution-data-server-2.24.5-fix-body.patch,
  -files/evolution-data-server-CVE-2009-0582.patch:
  evolution-sharp-0.18.1 has been dropped, so we can drop this version
  again

  25 Feb 2010; Mark Loeser <halcy0n@gentoo.org>
  +files/evolution-data-server-1.11.3-no-libdb.patch,
  +files/evolution-data-server-2.23.6-as-needed.patch,
  +evolution-data-server-2.24.5-r3.ebuild,
  +files/evolution-data-server-2.24.5-CVE-2009-0547.patch,
  +files/evolution-data-server-2.24.5-fix-body.patch,
  +files/evolution-data-server-CVE-2009-0582.patch:
  Restoring due to dev-dotnet/evolution-sharp-0.18.1 requiring it

  24 Feb 2010; Gilles Dartiguelongue <eva@gentoo.org>
  -files/evolution-data-server-1.11.3-no-libdb.patch,
  -files/evolution-data-server-2.23.6-as-needed.patch,
  -evolution-data-server-2.24.5-r3.ebuild,
  -files/evolution-data-server-2.24.5-CVE-2009-0547.patch,
  -files/evolution-data-server-2.24.5-fix-body.patch,
  -files/evolution-data-server-2.26.2-as-needed-configure.patch,
  -evolution-data-server-2.28.1.ebuild,
  -files/evolution-data-server-CVE-2009-0582.patch:
  Clean up old revisions.

  18 Jan 2010; Jeroen Roovers <jer@gentoo.org>
  evolution-data-server-2.26.3.ebuild:
  Stable for HPPA (bug #281427).

  17 Jan 2010; Ulrich Mueller <ulm@gentoo.org>
  evolution-data-server-2.24.5-r3.ebuild,
  evolution-data-server-2.26.3.ebuild, evolution-data-server-2.28.1.ebuild,
  evolution-data-server-2.28.2.ebuild:
  Fix LICENSE, bug 300426.

  16 Jan 2010; Jonathan Callen <abcd@gentoo.org>
  evolution-data-server-2.28.2.ebuild:
  Add prefix keywords

*evolution-data-server-2.28.2 (23 Dec 2009)

  23 Dec 2009; Gilles Dartiguelongue <eva@gentoo.org>
  +evolution-data-server-2.28.2.ebuild:
  Version bump. Bug/leak fixes. Translation updates.

  03 Dec 2009; Brent Baude <ranger@gentoo.org>
  evolution-data-server-2.26.3.ebuild:
  Marking evolution-data-server-2.26.3 ppc64 stable for bug 281427

  28 Nov 2009; Raúl Porcel <armin76@gentoo.org>
  evolution-data-server-2.26.3.ebuild:
  alpha/ia64/sparc stable wrt #281427

  12 Nov 2009; Gilles Dartiguelongue <eva@gentoo.org>
  evolution-data-server-2.28.1.ebuild:
  intltool rules fix.

  05 Nov 2009; Markus Meier <maekke@gentoo.org>
  evolution-data-server-2.26.3.ebuild:
  arm stable, bug #281427

*evolution-data-server-2.28.1 (29 Oct 2009)

  29 Oct 2009; Gilles Dartiguelongue <eva@gentoo.org>
  -evolution-data-server-2.24.5-r2.ebuild,
  -evolution-data-server-2.26.2.ebuild,
  +files/evolution-data-server-2.28.0-gentoo_etc_services.patch,
  +evolution-data-server-2.28.1.ebuild:
  New version for GNOME 2.28. Clean up old revision.

  24 Oct 2009; nixnut <nixnut@gentoo.org>
  evolution-data-server-2.26.3.ebuild:
  ppc stable #281427

  16 Oct 2009; Markus Meier <maekke@gentoo.org>
  evolution-data-server-2.26.3.ebuild:
  x86 stable, bug #281427

  08 Oct 2009; Olivier Crête <tester@gentoo.org>
  evolution-data-server-2.26.3.ebuild:
  Stable on amd64, bug #281427

  02 Aug 2009; Raúl Porcel <armin76@gentoo.org>
  evolution-data-server-2.24.5-r3.ebuild:
  alpha/arm/ia64/sparc stable wrt #258867

  29 Jul 2009; Markus Meier <maekke@gentoo.org>
  evolution-data-server-2.24.5-r3.ebuild:
  amd64 stable, bug #258867

  26 Jul 2009; Jeroen Roovers <jer@gentoo.org>
  evolution-data-server-2.24.5-r3.ebuild:
  Stable for HPPA (bug #258867).

  25 Jul 2009; Joseph Jezak <josejx@gentoo.org>
  evolution-data-server-2.24.5-r3.ebuild,
  evolution-data-server-2.26.3.ebuild:
  Marked 2.24.5-r3 ppc/ppc64 stable for bug #258867. Marked 2.26.3 ~ppc.

  23 Jul 2009; Christian Faulhammer <fauli@gentoo.org>
  evolution-data-server-2.24.5-r3.ebuild:
  stable x86, security bug 258867

*evolution-data-server-2.24.5-r3 (22 Jul 2009)

  22 Jul 2009; Gilles Dartiguelongue <eva@gentoo.org>
  +evolution-data-server-2.24.5-r3.ebuild,
  +files/evolution-data-server-2.24.5-fix-body.patch,
  evolution-data-server-2.26.3.ebuild:
  Fix gtkdoc-rebase breaking build, bug #278538. Apply bug #277218 on other
  ebuilds except current stable which will be kicked out soon. Apply last
  fix for bug #261203 in 2.24.5-r3.

*evolution-data-server-2.26.3 (20 Jul 2009)

  20 Jul 2009; Gilles Dartiguelongue <eva@gentoo.org>
  +evolution-data-server-2.26.3.ebuild,
  +files/evolution-data-server-2.26.3-camel-vee-folder.patch:
  Version bump. Use non-virtual dependency for kerberos4, bug #277218. Add
  patch to fix camel search folder hang, bug #277864.

  31 May 2009; Brent Baude <ranger@gentoo.org>
  evolution-data-server-2.26.2.ebuild:
  Marking evolution-data-server-2.26.2 ~ppc64 for bug 270996

  28 May 2009; Tiziano Müller <dev-zero@gentoo.org>
  evolution-data-server-2.26.2.ebuild,
  +files/evolution-data-server-2.26.2-as-needed-configure.patch:
  Fixed configure with USE=kerberos and --as-needed (bug #271492).

*evolution-data-server-2.26.2 (23 May 2009)

  23 May 2009; Gilles Dartiguelongue <eva@gentoo.org>
  -files/evolution-data-server-1.11.3-as-needed.patch,
  -files/evolution-data-server-1.12.1-icaltz-util.patch,
  -evolution-data-server-1.12.3.ebuild,
  -files/evolution-data-server-1.12.3-gtk-doc.patch,
  -files/evolution-data-server-1.12.3-no-libsoup24.patch,
  -files/evolution-data-server-2.21.4-as-needed.patch,
  -files/evolution-data-server-2.21.4-gtkdoc-rebase.patch,
  -files/evolution-data-server-2.21.90-icaltz-util.patch,
  -evolution-data-server-2.22.3-r2.ebuild,
  -files/evolution-data-server-2.22.3-CVE-2009-0547.patch,
  -files/evolution-data-server-2.22.3-mail-cleanup-delay.patch,
  -files/evolution-data-server-2.22.3-timezone-western.patch,
  +files/evolution-data-server-2.25.5-as-needed.patch,
  +files/evolution-data-server-2.25.90-no-libdb.patch,
  +evolution-data-server-2.26.2.ebuild,
  -files/evolution-data-server-no_lazy_bindings.patch:
  New version for GNOME 2.26. CalDAV support for VTODO and VJOURNAL. Drop
  libical fork and use system's copy. Mail DB reorganization for unreleased
  beagle/tracker. Clean up old revisions.

  27 Apr 2009; Jeroen Roovers <jer@gentoo.org>
  evolution-data-server-2.24.5-r2:
  Stable for HPPA (bug #260063).

  27 Apr 2009; Raúl Porcel <armin76@gentoo.org>
  evolution-data-server-2.24.5-r2.ebuild:
  arm stable

  26 Apr 2009; Gilles Dartiguelongue <eva@gentoo.org>
  -evolution-data-server-2.22.3-r1.ebuild,
  -evolution-data-server-2.24.5.ebuild,
  -evolution-data-server-2.24.5-r1.ebuild:
  Clean up old revisions.

  12 Apr 2009; Friedrich Oslage <bluebird@gentoo.org>
  evolution-data-server-2.24.5-r2.ebuild:
  Stable on sparc, security bug #261203

  19 Mar 2009; Jeroen Roovers <jer@gentoo.org>
  evolution-data-server-2.22.3-r2.ebuild:
  Stable for HPPA (bug #258867).

  18 Mar 2009; Brent Baude <ranger@gentoo.org>
  evolution-data-server-2.24.5-r2.ebuild:
  Marking evolution-data-server-2.24.5-r2 ppc for bug 261203

  18 Mar 2009; Brent Baude <ranger@gentoo.org>
  evolution-data-server-2.22.3-r2.ebuild,
  evolution-data-server-2.24.5-r1.ebuild:
  marking eds-2.22.3-r2 and 2.24.5-r1 for bug 258867

  18 Mar 2009; Raúl Porcel <armin76@gentoo.org>
  evolution-data-server-2.22.3-r2.ebuild,
  evolution-data-server-2.24.5-r1.ebuild,
  evolution-data-server-2.24.5-r2.ebuild:
  alpha/ia64/sparc stable wrt #258867

  18 Mar 2009; Raúl Porcel <armin76@gentoo.org>
  evolution-data-server-2.24.5.ebuild:
  alpha/ia64 stable wrt #260063

  16 Mar 2009; Gilles Dartiguelongue <eva@gentoo.org>
  evolution-data-server-1.12.3.ebuild, -evolution-data-server-2.22.3.ebuild,
  evolution-data-server-2.22.3-r1.ebuild,
  -evolution-data-server-2.24.2.ebuild,
  -evolution-data-server-2.24.3.ebuild,
  -evolution-data-server-2.24.4.ebuild:
  Clean up old revisions.

  15 Mar 2009; Markus Meier <maekke@gentoo.org>
  evolution-data-server-2.24.5-r2.ebuild:
  x86 stable, bug #260063

  15 Mar 2009; Brent Baude <ranger@gentoo.org>
  evolution-data-server-2.24.5-r2.ebuild:
  Marking evolution-data-server-2.24.5-r2 ppc64 for bug 261203

  12 Mar 2009; Daniel Gryniewicz <dang@gentoo.org>
  evolution-data-server-2.24.5-r2.ebuild:
  Marked stable on amd64 for bug #261203

*evolution-data-server-2.24.5-r2 (12 Mar 2009)

  12 Mar 2009; Daniel Gryniewicz <dang@gentoo.org>
  +files/evolution-data-server-CVE-2009-0582.patch,
  +evolution-data-server-2.24.5-r2.ebuild:
  Add fix for bug #261203

  12 Mar 2009; Tobias Klausmann <klausman@gentoo.org>
  evolution-data-server-2.24.5-r1.ebuild:
  Stable on alpha, bug #258867

  12 Mar 2009; Tobias Klausmann <klausman@gentoo.org>
  evolution-data-server-2.22.3-r2.ebuild:
  Stable on alpha, bug #258867

  11 Mar 2009; Brent Baude <ranger@gentoo.org>
  evolution-data-server-2.22.3-r2.ebuild,
  evolution-data-server-2.24.5-r1.ebuild:
  Marking evolution-data-server-2.22.3-r2 and evolution-data-server-2.24.5-r1
  for bug 258867

  11 Mar 2009; Daniel Gryniewicz <dang@gentoo.org>
  evolution-data-server-2.24.5.ebuild:
  Marked stable on amd64

  09 Mar 2009; Markus Meier <maekke@gentoo.org>
  evolution-data-server-2.22.3-r2.ebuild:
  amd64/x86 stable, bug #258867

  08 Mar 2009; Daniel Gryniewicz <dang@gentoo.org>
  files/evolution-data-server-2.22.3-CVE-2009-0547.patch:
  And fix the 2.22 version as well

  08 Mar 2009; Daniel Gryniewicz <dang@gentoo.org>
  files/evolution-data-server-2.24.5-CVE-2009-0547.patch:
  Updated patch from upstream

*evolution-data-server-2.24.5-r1 (07 Mar 2009)
*evolution-data-server-2.22.3-r2 (07 Mar 2009)

  07 Mar 2009; Daniel Gryniewicz <dang@gentoo.org>
  +files/evolution-data-server-2.22.3-CVE-2009-0547.patch,
  +files/evolution-data-server-2.24.5-CVE-2009-0547.patch,
  +evolution-data-server-2.22.3-r2.ebuild,
  +evolution-data-server-2.24.5-r1.ebuild:
  Fix bug #258867: S/MIME parsing.

  06 Mar 2009; Brent Baude <ranger@gentoo.org>
  evolution-data-server-2.24.5.ebuild:
  Marking evolution-data-server-2.24.5 ppc stable for bug 260063

  05 Mar 2009; Brent Baude <ranger@gentoo.org>
  evolution-data-server-2.24.5.ebuild:
  Marking evolution-data-server-2.24.5 ppc64 stable for bug 260063

*evolution-data-server-2.24.5 (26 Feb 2009)

  26 Feb 2009; Daniel Gryniewicz <dang@gentoo.org>
  +evolution-data-server-2.24.5.ebuild:
  Bump to evolution-data-server-2.24.5

  06 Feb 2009; Jeroen Roovers <jer@gentoo.org>
  evolution-data-server-2.22.3-r1.ebuild:
  Stable for HPPA (bug #250728).

  03 Feb 2009; Alexis Ballier <aballier@gentoo.org>
  evolution-data-server-2.24.4.ebuild:
  Dont call true with an absolute path which is different between FreeBSD
  and linux, bug #257471

*evolution-data-server-2.24.4 (01 Feb 2009)

  01 Feb 2009; Gilles Dartiguelongue <eva@gentoo.org>
  +files/calentry.schema, -evolution-data-server-2.22.2.ebuild,
  evolution-data-server-2.24.2.ebuild, evolution-data-server-2.24.3.ebuild,
  +evolution-data-server-2.24.4.ebuild:
  Bump to 2.24.4. Lots of bug fixes. Install LDAP schemas, bug #83988.

*evolution-data-server-2.24.3 (18 Jan 2009)

  18 Jan 2009; Arun Raghavan <ford_prefect@gentoo.org>
  +evolution-data-server-2.24.3.ebuild:
  Bump to 2.24.3 - lots of bug fixes. Dropping icaltz-util.patch since this
  has been committed.

  20 Dec 2008; nixnut <nixnut@gentoo.org>
  evolution-data-server-2.22.3-r1.ebuild:
  Stable on ppc wrt bug 250728

  17 Dec 2008; Daniel Gryniewicz <dang@gentoo.org>
  evolution-data-server-2.22.3-r1.ebuild:
  Marked stable on amd64 for bug #250728

  16 Dec 2008; Raúl Porcel <armin76@gentoo.org>
  evolution-data-server-2.22.3-r1.ebuild:
  alpha/ia64/sparc/x86 stable wrt #250728

  16 Dec 2008; Brent Baude <ranger@gentoo.org>
  evolution-data-server-2.22.3-r1.ebuild:
  Marking evolution-data-server-2.22.3-r1 ppc64 for bug 250728

*evolution-data-server-2.24.2 (01 Dec 2008)

  01 Dec 2008; Gilles Dartiguelongue <eva@gentoo.org>
  +files/evolution-data-server-2.23.6-as-needed.patch,
  +evolution-data-server-2.24.2.ebuild:
  New version for GNOME 2.24. Support for Google and WebDAV contacts
  backend, Quota for IMAP and sqlite on-disk format.

  13 Nov 2008; Brent Baude <ranger@gentoo.org>
  evolution-data-server-2.22.3.ebuild:
  Marking evolution-data-server-2.22.3 ppc64 stable for bug 236971

  18 Oct 2008; Brent Baude <ranger@gentoo.org>
  evolution-data-server-2.22.3.ebuild:
  Marking evolution-data-server-2.22.3 ppc stable for bug 236971

*evolution-data-server-2.22.3-r1 (12 Oct 2008)

  12 Oct 2008; Gilles Dartiguelongue <eva@gentoo.org>
  +files/evolution-data-server-2.22.3-mail-cleanup-delay.patch,
  +files/evolution-data-server-2.22.3-timezone-western.patch,
  +evolution-data-server-2.22.3-r1.ebuild:
  bump to 2.22.3-r1, backport upstream bug fixes announced on distributor
  list.

  06 Oct 2008; Gilles Dartiguelongue <eva@gentoo.org>
  evolution-data-server-1.12.3.ebuild:
  gnome-common is a DEPEND only.

  25 Sep 2008; Jeroen Roovers <jer@gentoo.org>
  evolution-data-server-2.22.3.ebuild:
  Stable for HPPA (bug #236971).

  09 Sep 2008; Raúl Porcel <armin76@gentoo.org>
  evolution-data-server-2.22.3.ebuild:
  alpha/ia64/sparc stable wrt #236971

  08 Sep 2008; Markus Meier <maekke@gentoo.org>
  evolution-data-server-2.22.3.ebuild:
  x86 stable, bug #236971

  07 Sep 2008; Olivier Crête <tester@gentoo.org>
  evolution-data-server-2.22.3.ebuild:
  amd64 stable, bug #236971

  12 Aug 2008; Raúl Porcel <armin76@gentoo.org>
  evolution-data-server-2.22.2.ebuild:
  alpha/ia64/sparc stable wrt #229709

  10 Aug 2008; Markus Meier <maekke@gentoo.org>
  evolution-data-server-2.22.2.ebuild:
  x86 stable, bug #229709

  30 Jul 2008; Brent Baude <ranger@gentoo.org>
  evolution-data-server-2.22.2.ebuild:
  Marking evolution-data-server-2.22.2 ppc stable for bug 229709

  26 Jul 2008; Olivier Crête <tester@gentoo.org>
  evolution-data-server-2.22.2.ebuild:
  Stable on amd64, bug #229709

*evolution-data-server-2.22.3 (03 Jul 2008)

  03 Jul 2008; Gilles Dartiguelongue <eva@gentoo.org>
  -evolution-data-server-2.22.1.ebuild,
  -evolution-data-server-2.22.1.1.ebuild,
  +evolution-data-server-2.22.3.ebuild:
  bump to 2.22.3. A bunch of bug fixes as usual and translation updates.

*evolution-data-server-2.22.2 (26 May 2008)

  26 May 2008; Gilles Dartiguelongue <eva@gentoo.org>
  -evolution-data-server-1.12.1.ebuild,
  -evolution-data-server-2.22.0.ebuild,
  +evolution-data-server-2.22.2.ebuild:
  New version for GNOME-2.22.2. Bug fixes and translation updates. Cleaning
  up old revisions.
  #325882: If a parent window was given, make the password dialog transient
  for the parent and center it over the parent. (Matthew Barnes)
  #354923: Store passwords in the keyring by server, username and protocol
  (Matthew Barnes)
  #388579: (Novell Bugzilla) Exchange crashes everytime on startup. A
  regression patch for the leak fixes. (Chenthill Palanisamy)
  #517244: Add test for nl_langinfo(CODESET). Defines HAVE_CODESET (Matthew
  Barnes)
  #523541: Fix a memory leak (Milan Crha)
  #530514: Added a necessary condition to handle a specific server response
  and to prevent a crash (Sankar P)
  #530543: Large memory leak while syncing mails for offline usage (Sankar
  P)
  #530763: Return NULL if the value of dest_folder is disturbed to prevent
  the crash (Bharath Acharya)
  #531009: Use the right iterator to prevent a crash in offline mail
  movement (Sankar P)
  #531439: Prevent GPG passphrases from destroying other passwords (Matthew
  Barnes)
  #532284: Fixes a double free (Sankar P)
  #533058: Enable GROUPWISE_DEBUG logs. (Sankar P)
  #534077: Don't use freed memory (Paul Smith)

*evolution-data-server-2.22.1.1 (02 May 2008)

  02 May 2008; Daniel Gryniewicz <dang@gentoo.org>
  +evolution-data-server-2.22.1.1.ebuild:
  Bump to 2.22.1.1

  Also copy user tags when copying messages between folders (Milan Crha)

  (Novell Bugzilla) Internet Based Calendar Events Are Declined By

  Evolution/GroupWise (Chenthill Palanisamy)

  (Novell Bugzilla) Fix a severe memory leak in evolution-data-server

  (Chenthill Palanisamy)

  (Novell Bugzilla) Display of web calendars ignores timezones

  (Chenthill Palanisamy)

  (Novell Bugzilla) Retracted groupwise appointments should disappear as

  soon as they are retracted. (Chenthill Palanisamy)

  (Novell Bugzilla) International clock applet is crashing (Chenthill

  Palanisamy)

  Run a single delta-thread to fetch changes from the server, instead of

  spawning multiple threads (Ashish Shrivastava)

  Fixed a few compiler warnings (Suman Manjunath)

  Use recursive mutex (Milan Crha)

  Fix a crash (Milan Crha)

  Make sure we do the Inbox -> INBOX translation at the right place

  (Christian Kellner)

  Support migration from password file to keyring (Matthew Barnes)

  Fixed a crash when searching with an expression (Milan Crha)

  Do not ship .svn files (Matthew Barnes)

  Don't free the same variable twice (Sebastien Bacher)

  Load addressbook conditionally (Srinivasa Ragavan)

  21 Apr 2008; <welp@gentoo.org> evolution-data-server-1.12.1.ebuild,
  evolution-data-server-1.12.3.ebuild, evolution-data-server-2.22.0.ebuild,
  evolution-data-server-2.22.1.ebuild:
  keyring to gnome-keyring

*evolution-data-server-2.22.1 (07 Apr 2008)

  07 Apr 2008; Daniel Gryniewicz <dang@gentoo.org>
  +evolution-data-server-2.22.1.ebuild:
  Bump to 2.22.1 Bug Fixes:

  - Better support for non RFC 2047 subject line with encoded words

  (Milan Crha)

  - IMAP custom/user flags are now synced in summary between two

  Evolutions (Milan Crha)

  - Stop work as soon as we know application is going to exit (Milan

  Crha)

  - Open files with O_LARGEFILE flag (Milan Crha)

  - Removed some infinite loops and corrected the conditional statement

  (Sankar P)

  - (Novell Bugzilla) Some mails with attachments do not have an

  attachment icon. Mail size is not shown for some mails and not all

  related recurring appointments are deleted as well (Sankar P)

  - Use correct type for g_base64_decode to fix stack corruption on

  x86_64. (Stanislav Brabec)

  - Fall back to simple binds if the global catalog server does not

  support NTLM binds. (Matthew Barnes)

  - Fix a severe memory leak when using exchange (Matthew Barnes)

  - Don't terminate connection after sucessful reconnect by ORBit.

  (Ondrej Jirman)

  - Initialize variable to NULL, so do not free random memory (Milan

  Crha)

  - Random crash looking up addresses in new email (Milan Crha)

  26 Mar 2008; Mart Raudsepp <leio@gentoo.org>
  +files/evolution-data-server-1.12.3-no-libsoup24.patch,
  evolution-data-server-1.12.3.ebuild:
  Do not build against libsoup-2.4 if available in this older version - it
  does not work with the stable API of libsoup-2.4, bug 214488

  24 Mar 2008; Gilles Dartiguelongue <eva@gentoo.org>
  evolution-data-server-2.22.0.ebuild:
  updating gnome-keyring dependency, bug #213470

*evolution-data-server-2.22.0 (24 Mar 2008)

  24 Mar 2008; Gilles Dartiguelongue <eva@gentoo.org>
  +files/evolution-data-server-2.21.4-as-needed.patch,
  +files/evolution-data-server-2.21.4-gtkdoc-rebase.patch,
  +files/evolution-data-server-2.21.90-icaltz-util.patch,
  +evolution-data-server-2.22.0.ebuild:
  New version for GNOME-2.22. Litterally tons of bug fixes and uses
  libsoup-2.4.

  10 Mar 2008; Mart Raudsepp <leio@gentoo.org>
  -files/evolution-data-server-1.7.3-libdb.patch,
  -files/evolution-data-server-1.9.91-as-needed.patch,
  -files/evolution-data-server-1.10-fix-maildir-account.patch,
  -files/evolution-data-server-1.10-newline-in-contacts.patch,
  -files/evolution-data-server-1.12.2-local-delivery.patch,
  -evolution-data-server-1.10.3.1.ebuild,
  -evolution-data-server-1.12.2-r1.ebuild:
  Remove GNOME 2.18 version

  04 Feb 2008; Jeroen Roovers <jer@gentoo.org>
  evolution-data-server-1.12.3.ebuild:
  Stable for HPPA (bug #208366).

  03 Feb 2008; Raúl Porcel <armin76@gentoo.org>
  evolution-data-server-1.12.3.ebuild:
  alpha/ia64/sparc stable wrt #208366

  02 Feb 2008; Chris Gianelloni <wolf31o2@gentoo.org>
  evolution-data-server-1.12.3.ebuild:
  Stable on amd64 wrt bug #208366.

  01 Feb 2008; Brent Baude <ranger@gentoo.org>
  evolution-data-server-1.12.3.ebuild:
  Marking evolution-data-server-1.12.3 ppc64 and ppc stable for bug 208366

  01 Feb 2008; Christian Faulhammer <opfer@gentoo.org>
  evolution-data-server-1.12.3.ebuild:
  stable x86, bug 208366

  29 Jan 2008; Daniel Gryniewicz <dang@gentoo.org>
  evolution-data-server-1.10.3.1.ebuild,
  evolution-data-server-1.12.1.ebuild,
  evolution-data-server-1.12.2-r1.ebuild,
  evolution-data-server-1.12.3.ebuild:
  Add a slot dep on libsoup to prepare for the new 2.4 slot

  20 Jan 2008; Gilles Dartiguelongue <eva@gentoo.org>
  +files/evolution-data-server-1.12.3-gtk-doc.patch,
  evolution-data-server-1.12.3.ebuild:
  fix gtk-doc mess (bug #206771)

*evolution-data-server-1.12.3 (20 Jan 2008)

  20 Jan 2008; Gilles Dartiguelongue <eva@gentoo.org>
  -files/evolution-data-server-1.4.2.1-calandar-crash-fix.patch,
  -files/evolution-data-server-1.7.3-exchange-storage.patch,
  -files/evolution-data-server-1.7.4-move-subdirs.patch,
  -files/evolution-data-server-1.8.3-category.patch,
  -files/evolution-data-server-1.8.3-dst.patch.gz,
  -files/evolution-data-server-1.10.1-imap-overflow.patch,
  -files/evolution-data-server-APOP-auth-fix.patch,
  -evolution-data-server-1.6.2-r1.ebuild,
  -evolution-data-server-1.8.3-r5.ebuild,
  -evolution-data-server-1.10.2.ebuild,
  -evolution-data-server-1.12.0.ebuild,
  +evolution-data-server-1.12.3.ebuild:
  bump to 1.12.3 and clean up old revisions

*evolution-data-server-1.12.2-r1 (09 Dec 2007)

  09 Dec 2007; Gilles Dartiguelongue <eva@gentoo.org>
  files/evolution-data-server-1.12.2-local-delivery.patch,
  -evolution-data-server-1.12.2.ebuild,
  +evolution-data-server-1.12.2-r1.ebuild:
  revbump with the actual fix

  08 Dec 2007; Gilles Dartiguelongue <eva@gentoo.org>
  +files/evolution-data-server-1.12.2-local-delivery.patch,
  evolution-data-server-1.12.2.ebuild:
  fix selection of mbox file for local delivery, see bug #201504

  29 Nov 2007; Jeroen Roovers <jer@gentoo.org>
  evolution-data-server-1.12.1.ebuild:
  Stable for HPPA (bug #199740).

*evolution-data-server-1.12.2 (26 Nov 2007)

  26 Nov 2007; Daniel Gryniewicz <dang@gentoo.org>
  +evolution-data-server-1.12.2.ebuild:
  Bump to 1.12.2
  	- Keep character's case as user types. (Milan Crha)
  	- Use correct year when filling structure, not only years 1970+ (Peter
  	  Lord)
  	- Disable SSLv2 compatible HELLO on SSL stream when SSLv2 is disabled
  	  (Niels Vorgaard Christensen)
  	- Use proxy if user uses it and do not crash if have proxy without name
  	  and password (Milan Crha)
  	- Fix a crash when IMAP server sent response to FETCH BODY containing
  	  size=0 (Milan Crha)
  	- The base URL can be without a path, so do not crash, if that happen
  	  (Milan Crha)
  	- Move mail to/from sent-items (Sankar P)
  	- Avoid a double free and make sure that the view_ functions free at all
  	  cases (Akhil Laddha)
  	- Don't reopen a database using the same DB handle (Matthew Barnes)
  	- Return NULL pointer after freeing timezone structure (Ondrej Jirman)
  	- Check for NULL too, so do not crash when something goes wrong (Milan
  	  Crha)

  26 Nov 2007; Markus Rothe <corsair@gentoo.org>
  evolution-data-server-1.12.1.ebuild:
  Stable on ppc64; bug #199740

  24 Nov 2007; Brent Baude <ranger@gentoo.org>
  evolution-data-server-1.12.1.ebuild:
  Marking evolution-data-server-1.12.1 ppc stable for bug 199740

  22 Nov 2007; Raúl Porcel <armin76@gentoo.org>
  evolution-data-server-1.12.1.ebuild:
  alpha/ia64/sparc stable wrt #199740

  21 Nov 2007; Dawid Węgliński <cla@gentoo.org>
  evolution-data-server-1.12.1.ebuild:
  Stable on x86 (bug #199740)

  20 Nov 2007; Samuli Suominen <drac@gentoo.org>
  evolution-data-server-1.12.1.ebuild:
  amd64 stable wrt #199740

  19 Oct 2007; Roy Marples <uberlord@gentoo.org>
  +files/evolution-data-server-1.12.1-icaltz-util.patch,
  evolution-data-server-1.12.1.ebuild:
  bswap_32 is linux only, BSD's use bswap32

*evolution-data-server-1.12.1 (17 Oct 2007)

  17 Oct 2007; Daniel Gryniewicz <dang@gentoo.org>
  +evolution-data-server-1.12.1.ebuild:
  Bump to 1.12.1
  	- e-d-s now exits with gnome-session (Milan Crha)
  	- Composer stops completing addresses if you come back to the To: line
  	  (Srinivasa Ragavan)

  12 Oct 2007; Gilles Dartiguelongue <eva@gentoo.org>
  evolution-data-server-1.10.2.ebuild,
  evolution-data-server-1.10.3.1.ebuild,
  evolution-data-server-1.12.0.ebuild:
  fix QA warnings, remove useless RESTRICT

*evolution-data-server-1.12.0 (30 Sep 2007)

  30 Sep 2007; Daniel Gryniewicz <dang@gentoo.org>
  +files/evolution-data-server-1.11.3-as-needed.patch,
  +files/evolution-data-server-1.11.3-no-libdb.patch,
  +evolution-data-server-1.12.0.ebuild:
  New series for Gnome 2.20

  22 Sep 2007; Tom Gall <tgall@gentoo.org>
  evolution-data-server-1.10.3.1.ebuild:
  stable on ppc64

  01 Sep 2007; Raúl Porcel <armin76@gentoo.org>
  evolution-data-server-1.10.3.1.ebuild:
  alpha/ia64 stable wrt security #190861

  01 Sep 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  evolution-data-server-1.10.3.1.ebuild:
  ppc stable, bug #190861

  31 Aug 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  evolution-data-server-1.10.3.1.ebuild:
  Stable on amd64/x86 wrt bug #190861.

  31 Aug 2007; Jeroen Roovers <jer@gentoo.org>
  evolution-data-server-1.10.3.1.ebuild:
  Stable for HPPA (bug #190861).

  31 Aug 2007; Ferris McCormick <fmccor@gentoo.org>
  evolution-data-server-1.10.3.1.ebuild:
  Sparc stable --- Security Bug #190861 --- installs as expected.

*evolution-data-server-1.10.3.1 (31 Aug 2007)

  31 Aug 2007; Mart Raudsepp <leio@gentoo.org>
  -evolution-data-server-1.10.2-r1.ebuild,
  +evolution-data-server-1.10.3.1.ebuild:
  Version bump for regular bug fixes and reintroducing imap overflow security
  fix that was lost in our 1.10.2 revision, bug 190861

*evolution-data-server-1.10.2-r1 (31 Aug 2007)

  31 Aug 2007; <pva@gentoo.org>
  +files/evolution-data-server-1.10-fix-maildir-account.patch,
  +files/evolution-data-server-1.10-newline-in-contacts.patch,
  +evolution-data-server-1.10.2-r1.ebuild:
  Fixed bug #133504 (maildir account file-chooser descended into directories),
  reported by Lindsay Haisley <fmouse-gentoo AT fmp.com>, and bug #175516
  (contacts displays \n) reported by roger <roger AT eskimo.com>.

  28 Aug 2007; Jeroen Roovers <jer@gentoo.org>
  evolution-data-server-1.10.2.ebuild:
  Stable for HPPA (bug #185823).

  11 Aug 2007; Andrej Kacian <ticho@gentoo.org>
  evolution-data-server-1.10.2.ebuild:
  Stable on x86, bug #185823.

  10 Aug 2007; Christoph Mende <angelos@gentoo.org>
  evolution-data-server-1.10.2.ebuild:
  Stable on amd64 wrt bug #185823

  08 Aug 2007; Raúl Porcel <armin76@gentoo.org>
  evolution-data-server-1.10.2.ebuild:
  alpha/ia64 stable wrt #185823

  07 Aug 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  evolution-data-server-1.10.2.ebuild:
  Stable on ppc wrt bug #185823.

  07 Aug 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  evolution-data-server-1.10.2.ebuild:
  Stable on sparc wrt #185823

  02 Jul 2007; Piotr Jaroszyński <peper@gentoo.org>
  evolution-data-server-1.6.2.ebuild, evolution-data-server-1.6.2-r1.ebuild,
  evolution-data-server-1.8.3-r5.ebuild,
  evolution-data-server-1.10.1-r3.ebuild,
  evolution-data-server-1.10.2.ebuild:
  (QA) RESTRICT clean up.

*evolution-data-server-1.10.2 (27 Jun 2007)

  27 Jun 2007; <pva@gentoo.org> +evolution-data-server-1.10.2.ebuild:
  Version bump.

  17 Jun 2007; Mart Raudsepp <leio@gentoo.org>
  -evolution-data-server-1.8.3-r4.ebuild,
  -evolution-data-server-1.10.1-r2.ebuild:
  Remove some of the old revisions that are security vulnerable from IMAP
  overflow

  16 Jun 2007; Jeroen Roovers <jer@gentoo.org>
  evolution-data-server-1.8.3-r5.ebuild:
  Stable for HPPA (bug #182011).

  16 Jun 2007; Jeroen Roovers <jer@gentoo.org>
  evolution-data-server-1.6.2-r1.ebuild:
  Stable for HPPA (bug #182011).

  15 Jun 2007; Raúl Porcel <armin76@gentoo.org>
  evolution-data-server-1.6.2-r1.ebuild,
  evolution-data-server-1.8.3-r5.ebuild:
  alpha/ia64 stable wrt security #182011

  14 Jun 2007; Christian Faulhammer <opfer@gentoo.org>
  evolution-data-server-1.6.2-r1.ebuild,
  evolution-data-server-1.8.3-r5.ebuild:
  stable x86, security bug 182011

  14 Jun 2007; Brent Baude <ranger@gentoo.org>
  evolution-data-server-1.6.2-r1.ebuild,
  evolution-data-server-1.8.3-r5.ebuild:
  Marking evolution-data-server-1.6.2-r1.ebuild,
  evolution-data-server-1.8.3-r5.ebuild stable for bug #182011

  14 Jun 2007; Daniel Gryniewicz <dang@gentoo.org>
  evolution-data-server-1.6.2-r1.ebuild,
  evolution-data-server-1.8.3-r5.ebuild:
  Marked stable on amd64 for bug #182011

  14 Jun 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  evolution-data-server-1.6.2-r1.ebuild,
  evolution-data-server-1.8.3-r5.ebuild:
  ppc stable, bug #182011

  14 Jun 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  evolution-data-server-1.6.2-r1.ebuild,
  evolution-data-server-1.8.3-r5.ebuild:
  Stable on sparc wrt security #182011

*evolution-data-server-1.10.1-r3 (14 Jun 2007)
*evolution-data-server-1.8.3-r5 (14 Jun 2007)
*evolution-data-server-1.6.2-r1 (14 Jun 2007)

  14 Jun 2007; Daniel Gryniewicz <dang@gentoo.org>
  +files/evolution-data-server-1.10.1-imap-overflow.patch,
  +evolution-data-server-1.6.2-r1.ebuild,
  +evolution-data-server-1.8.3-r5.ebuild,
  +evolution-data-server-1.10.1-r3.ebuild:
  Add fix for IMAP overflow; bug #182011

  02 Jun 2007; <leio@gentoo.org> -evolution-data-server-1.8.2.ebuild,
  -evolution-data-server-1.8.3.ebuild,
  -evolution-data-server-1.8.3-r1.ebuild,
  -evolution-data-server-1.8.3-r2.ebuild:
  Remove old

  02 Jun 2007; Brent Baude <ranger@gentoo.org>
  evolution-data-server-1.8.3-r4.ebuild:
  Marking evolution-data-server-1.8.3-r4 ppc stable for bug #171107

  31 May 2007; Jeroen Roovers <jer@gentoo.org>
  evolution-data-server-1.8.3-r4.ebuild:
  Stable for HPPA (bug #171107).

  31 May 2007; Daniel Gryniewicz <dang@gentoo.org>
  evolution-data-server-1.8.3-r4.ebuild:
  Marked stable on amd64 for bug #171107

  31 May 2007; Brent Baude <ranger@gentoo.org>
  evolution-data-server-1.8.3-r4.ebuild:
  Marking evolution-data-server-1.8.3-r4 ppc64 stable for bug #171107

  30 May 2007; Raúl Porcel <armin76@gentoo.org>
  evolution-data-server-1.8.3-r4.ebuild:
  alpha/ia64 stable wrt #171107

  29 May 2007; Andrej Kacian <ticho@gentoo.org>
  evolution-data-server-1.8.3-r4.ebuild:
  Stable on x86, bug #171107.

  29 May 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  evolution-data-server-1.8.3-r4.ebuild:
  Stable on sparc wrt #171107

*evolution-data-server-1.10.1-r2 (03 May 2007)
*evolution-data-server-1.8.3-r4 (03 May 2007)

  03 May 2007; <pva@gentoo.org>
  files/evolution-data-server-APOP-auth-fix.patch,
  -evolution-data-server-1.8.3-r3.ebuild,
  +evolution-data-server-1.8.3-r4.ebuild,
  -evolution-data-server-1.10.1-r1.ebuild,
  +evolution-data-server-1.10.1-r2.ebuild:
  Respect String Freeze in the stable branch in ${PN}-APOP-auth-fix.patch.

*evolution-data-server-1.10.1-r1 (01 May 2007)
*evolution-data-server-1.8.3-r3 (01 May 2007)

  01 May 2007; <pva@gentoo.org>
  +files/evolution-data-server-APOP-auth-fix.patch,
  +evolution-data-server-1.8.3-r3.ebuild,
  -evolution-data-server-1.10.0.ebuild,
  -evolution-data-server-1.10.1.ebuild,
  +evolution-data-server-1.10.1-r1.ebuild:
  Fixed APOP authentication vulnerability (CVE-2007-1558). Thank Sune
  Kloppenborg Jeppesen <jaervosz AT gentoo.org> for report. Removed vulnerable
  versions from 1.10 branch.

  18 Apr 2007; Roy Marples <uberlord@gentoo.org>
  evolution-data-server-1.8.3.ebuild, evolution-data-server-1.8.3-r1.ebuild,
  evolution-data-server-1.8.3-r2.ebuild,
  evolution-data-server-1.10.1.ebuild:
  Blessed with the ~x86-fbsd keyword.

*evolution-data-server-1.10.1 (16 Apr 2007)

  16 Apr 2007; Daniel Gryniewicz <dang@gentoo.org>
  +evolution-data-server-1.10.1.ebuild:
  Bump to 1.10.1

*evolution-data-server-1.8.3-r2 (16 Apr 2007)

  16 Apr 2007; Daniel Gryniewicz <dang@gentoo.org>
  +files/evolution-data-server-1.8.3-dst.patch.gz,
  +evolution-data-server-1.8.3-r2.ebuild:
  Bump to 1.8.3-r2
  	Fix DST changes; bug #172835

*evolution-data-server-1.10.0 (27 Mar 2007)

  27 Mar 2007; Daniel Gryniewicz <dang@gentoo.org>
  +files/evolution-data-server-1.9.91-as-needed.patch,
  +evolution-data-server-1.10.0.ebuild:
  gnome 2.18.0

*evolution-data-server-1.8.3-r1 (01 Mar 2007)

  01 Mar 2007; Daniel Gryniewicz <dang@gentoo.org>
  +files/evolution-data-server-1.8.3-category.patch,
  +evolution-data-server-1.8.3-r1.ebuild:
  Bump to 1.8.3-r1
  
  - Add patch from upstream to fix adding contacts to new mail in non-english
  locales.

*evolution-data-server-1.8.3 (08 Feb 2007)

  08 Feb 2007; Mart Raudsepp <leio@gentoo.org>
  +evolution-data-server-1.8.3.ebuild:
  New version for translation updates

  21 Jan 2007; Bryan Østergaard <kloeri@gentoo.org>
  evolution-data-server-1.8.2.ebuild:
  Stable on IA64, bug 156662.

  18 Jan 2007; Jeroen Roovers <jer@gentoo.org>
  evolution-data-server-1.8.2.ebuild:
  Stable for HPPA (bug #147751).

  14 Jan 2007; Bryan Østergaard <kloeri@gentoo.org>
  evolution-data-server-1.8.2.ebuild:
  Stable on Alpha.

  10 Jan 2007; Mart Raudsepp <leio@gentoo.org>
  -files/evolution-data-server-1.2.3-gcc4.patch,
  -files/evolution-data-server-1.8.1-inbox-folders.patch,
  -evolution-data-server-1.4.2.1.ebuild,
  -evolution-data-server-1.8.1-r1.ebuild:
  Prune old versions

  21 Dec 2006; Markus Rothe <corsair@gentoo.org>
  evolution-data-server-1.8.2.ebuild:
  Stable on ppc64; bug #156662

  18 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  evolution-data-server-1.8.2.ebuild:
  Stable on sparc

  16 Dec 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  evolution-data-server-1.8.2.ebuild:
  Stable on ppc wrt bug #156662.

  11 Dec 2006; Daniel Gryniewicz <dang@gentoo.org>
  evolution-data-server-1.8.2.ebuild:
  Marked stable on amd64 for bug #156662

  10 Dec 2006; Andrej Kacian <ticho@gentoo.org>
  evolution-data-server-1.8.2.ebuild:
  Stable on x86, bug #156662.

*evolution-data-server-1.8.2 (21 Nov 2006)

  21 Nov 2006; <dang@gentoo.org> +evolution-data-server-1.8.2.ebuild:
  Bump to 1.8.2

  06 Nov 2006; John N. Laliberte <allanonjl@gentoo.org>
  evolution-data-server-1.8.1-r1.ebuild:
  add WANT_AUTOMAKE/WANT_AUTOCONF, fixes #154127

*evolution-data-server-1.8.1-r1 (01 Nov 2006)

  01 Nov 2006; John N. Laliberte <allanonjl@gentoo.org>
  +files/evolution-data-server-1.8.1-inbox-folders.patch,
  -evolution-data-server-1.8.0.ebuild, -evolution-data-server-1.8.1.ebuild,
  +evolution-data-server-1.8.1-r1.ebuild:
  apply patch to fix subfolder problem with exchange.  fixes #151048

  19 Oct 2006; Bryan Østergaard <kloeri@gentoo.org>
  evolution-data-server-1.6.2.ebuild:
  Stable on Alpha.

*evolution-data-server-1.8.1 (12 Oct 2006)

  12 Oct 2006; Mart Raudsepp <leio@gentoo.org>
  +evolution-data-server-1.8.1.ebuild:
  Version bump

  16 Sep 2006; Daniel Gryniewicz <dang@gentoo.org>
  evolution-data-server-1.8.0.ebuild:
  Add a keyring use flag to enable gnome-keyring support

  13 Sep 2006; Aron Griffis <agriffis@gentoo.org>
  evolution-data-server-1.6.2.ebuild:
  Mark 1.6.2 stable on ia64. #139612

*evolution-data-server-1.8.0 (07 Sep 2006)

  07 Sep 2006; Daniel Gryniewicz <dang@gentoo.org>
  +files/evolution-data-server-1.7.3-exchange-storage.patch,
  +files/evolution-data-server-1.7.3-libdb.patch,
  +files/evolution-data-server-1.7.4-move-subdirs.patch,
  +files/evolution-data-server-1.8.0-camel-rewind.patch,
  +evolution-data-server-1.8.0.ebuild:
  New version for gnome 2.16

  06 Sep 2006; Joshua Kinard <kumba@gentoo.org>
  evolution-data-server-1.4.2.1.ebuild, evolution-data-server-1.6.2.ebuild:
  Removing mips keywords as gnome is no longer supported on mips.

  16 Aug 2006; Markus Rothe <corsair@gentoo.org>
  evolution-data-server-1.6.2.ebuild:
  Stable on ppc64

  23 Jul 2006; Daniel Gryniewicz <dang@gentoo.org>
  -files/evolution-data-server-1.2.1-local-provider.patch,
  -evolution-data-server-1.6.0.ebuild, -evolution-data-server-1.6.1.ebuild:
  Clean up unnecessary versions

  17 Jul 2006; Daniel Gryniewicz <dang@gentoo.org>
  evolution-data-server-1.6.2.ebuild:
  Marked stable on amd64 for bug #139612

  16 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  evolution-data-server-1.6.2.ebuild:
  hppa stable, bug #139612

  14 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  evolution-data-server-1.6.2.ebuild:
  ppc stable, bug #139612

  12 Jul 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  evolution-data-server-1.6.2.ebuild:
  Stable on x86 wrt bug #139612.

  10 Jul 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  evolution-data-server-1.6.2.ebuild:
  Stable on sparc wrt #139612

  03 Jul 2006; John N. Laliberte <allanonjl@gentoo.org>
  -evolution-data-server-1.2.3.ebuild:
  remove old version depending on mozilla

*evolution-data-server-1.6.2 (27 Jun 2006)

  27 Jun 2006; Daniel Gryniewicz <dang@gentoo.org>
  +evolution-data-server-1.6.2.ebuild:
  Bump for 2.14.2

*evolution-data-server-1.6.1 (06 May 2006)

  06 May 2006; <dang@gentoo.org> +evolution-data-server-1.6.1.ebuild:
  Bump for 2.14.1

  18 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  evolution-data-server-1.2.3.ebuild, evolution-data-server-1.4.2.1.ebuild,
  evolution-data-server-1.6.0.ebuild:
  Restrict confcache as per bug #130117.

  30 Mar 2006; Leonardo Boshell <leonardop@gentoo.org>
  -files/evolution-data-server-1.0.2-amd64_mutex.patch,
  -evolution-data-server-1.0.2.ebuild, -evolution-data-server-1.0.3.ebuild,
  -evolution-data-server-1.0.4.ebuild,
  -evolution-data-server-1.4.1.1.ebuild, evolution-data-server-1.6.0.ebuild:
  Purging old ebuilds. Dropped 'static' USE flag. Removed USE_DESTDIR.

*evolution-data-server-1.6.0 (18 Mar 2006)

  18 Mar 2006; John N. Laliberte <allanonjl@gentoo.org>
  +evolution-data-server-1.6.0.ebuild:
  new version

  03 Feb 2006; Guy Martin <gmsoft@gentoo.org>
  evolution-data-server-1.4.2.1.ebuild:
  Stable on hppa.

  02 Feb 2006; Aron Griffis <agriffis@gentoo.org>
  evolution-data-server-1.4.2.1.ebuild:
  Mark 1.4.2.1 stable on alpha

  02 Feb 2006; Aron Griffis <agriffis@gentoo.org>
  evolution-data-server-1.4.2.1.ebuild:
  Mark 1.4.2.1 stable on ia64

  22 Jan 2006; Markus Rothe <corsair@gentoo.org>
  evolution-data-server-1.4.2.1.ebuild:
  Stable on ppc64

  22 Jan 2006; <dang@gentoo.org> evolution-data-server-1.4.2.1.ebuild:
  Marked stable on amd64 per bug #119634

  22 Jan 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  evolution-data-server-1.4.2.1.ebuild:
  Marked ppc stable for bug #119634; Stabilize Gnome-2.12.2

  22 Jan 2006; Joshua Jackson <tsunam@gentoo.org>
  evolution-data-server-1.4.2.1.ebuild:
  Stable on x86 for bug #119634; Stabilize Gnome-2.12.2

  20 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  evolution-data-server-1.4.2.1.ebuild:
  Stable on sparc wrt #119634

  08 Jan 2006; <dang@gentoo.org>
  evolution-data-server-1.2.3.ebuild:
  Downgrade arm to ~ because of mozilla dep, to allow repoman to commit

  08 Jan 2006; <dang@gentoo.org>
  +files/evolution-data-server-1.4.2.1-calandar-crash-fix.patch,
  evolution-data-server-1.4.2.1.ebuild:
  Add fix for calendar crash. Bug #86174

  04 Dec 2005; <dang@gentoo.org> evolution-data-server-1.4.2.1.ebuild:
  Begin removing mozilla/firefox as sources for nspf/nss per mozilla herd

*evolution-data-server-1.4.2.1 (01 Dec 2005)

  01 Dec 2005; Leonardo Boshell <leonardop@gentoo.org>
  +evolution-data-server-1.4.2.1.ebuild:
  New version.

*evolution-data-server-1.4.1.1 (05 Nov 2005)

  05 Nov 2005; <dang@gentoo.org> -evolution-data-server-1.4.0.ebuild,
  +evolution-data-server-1.4.1.1.ebuild:
  Revbump.  Fixed exchange-storage crashes

  25 Oct 2005; <dang@gentoo.org> evolution-data-server-1.4.1.ebuild:
  older gtk-doc doesn't support named enumerations. Bug #110151

  10 Oct 2005; Hardave Riar <hardave@gentoo.org>
  evolution-data-server-1.2.3.ebuild:
  Stable on mips.

*evolution-data-server-1.4.1 (04 Oct 2005)

  04 Oct 2005; <dang@gentoo.org> +evolution-data-server-1.4.1.ebuild:
  New version

  14 Sep 2005; <dang@gentoo.org> evolution-data-server-1.4.0.ebuild:
  Remove firefox flag for now, as evo can't be built against it yet and have
  working ssl

  10 Sep 2005; Leonardo Boshell <leonardop@gentoo.org>
  evolution-data-server-1.4.0.ebuild:
  Move pkg-config calls to src_compile() to avoid problems in binary
  packages.

*evolution-data-server-1.4.0 (05 Sep 2005)

  05 Sep 2005; Leonardo Boshell <leonardop@gentoo.org>
  -evolution-data-server-1.3.8.ebuild, +evolution-data-server-1.4.0.ebuild:
  New version.

*evolution-data-server-1.3.8 (29 Aug 2005)

  29 Aug 2005; Leonardo Boshell <leonardop@gentoo.org>
  files/evolution-data-server-no_lazy_bindings.patch,
  -evolution-data-server-1.3.7.ebuild, +evolution-data-server-1.3.8.ebuild:
  New version. Fixed patch. Added 'firefox' USE flag.

  22 Aug 2005; Bryan Østergaard <kloeri@gentoo.org>
  evolution-data-server-1.2.3.ebuild:
  Stable on ia64.

  22 Aug 2005; Fernando J. Pereda <ferdy@gentoo.org>
  evolution-data-server-1.2.3.ebuild:
  stable on alpha

*evolution-data-server-1.3.7 (17 Aug 2005)

  17 Aug 2005; Leonardo Boshell <leonardop@gentoo.org>
  +evolution-data-server-1.3.7.ebuild,
  +files/evolution-data-server-no_lazy_bindings.patch:
  New version. Added 'static' and 'krb4' USE flags. Updated dependencies.
  Added patch to avoid lazy linking in a setgid binary.

  02 Aug 2005; Simon Stelling <blubb@gentoo.org>
  evolution-data-server-1.2.3.ebuild:
  stable on amd64

  31 Jul 2005; Tobias Scherbaum <dertobi123@gentoo.org>
  evolution-data-server-1.2.3.ebuild:
  ppc stable

  27 Jul 2005; Guy Martin <gmsoft@gentoo.org>
  evolution-data-server-1.2.3.ebuild:
  Stable on hppa.

  26 Jul 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  evolution-data-server-1.2.3.ebuild:
  Stable on sparc

  25 Jul 2005; Leonardo Boshell <leonardop@gentoo.org>
  evolution-data-server-1.2.3.ebuild:
  Stable on x86.

  17 Jul 2005; John N. Laliberte <allanonjl@gentoo.org>
  evolution-data-server-1.2.1-r1.ebuild, evolution-data-server-1.2.3.ebuild:
  add libgnomeui as a dep. configure checks for it.  fixes #91628

  12 Jul 2005; Stephen P. Becker <geoman@gentoo.org>
  evolution-data-server-1.2.1-r1.ebuild:
  stable on mips

  23 Jun 2005; Guy Martin <gmsoft@gentoo.org>
  evolution-data-server-1.2.1-r1.ebuild:
  Stable on hppa.

  17 Jun 2005; Fernando J. Pereda <ferdy@gentoo.org>
  evolution-data-server-1.2.1-r1.ebuild:
  Stable on alpha

  12 Jun 2005; Olivier Crête <tester@gentoo.org>
  evolution-data-server-1.2.1-r1.ebuild:
  Stable on amd64

  12 Jun 2005; Tobias Scherbaum <dertobi123@gentoo.org>
  evolution-data-server-1.2.1-r1.ebuild:
  Stable on ppc.

  10 Jun 2005; Mark Loeser <halcy0n@gentoo.org>
  +files/evolution-data-server-1.2.3-gcc4.patch,
  evolution-data-server-1.2.3.ebuild:
  Adding upstream patch to fix compilation with gcc4

  09 Jun 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  evolution-data-server-1.2.1-r1.ebuild:
  Stable on sparc

*evolution-data-server-1.2.3 (09 Jun 2005)

  09 Jun 2005; Marinus Schraal <foser@gentoo.org> evolution-data-server-1.2.3.ebuild :
  New release

*evolution-data-server-1.2.1-r1 (09 Jun 2005)

  09 Jun 2005; <brix@gentoo.org>
  +files/evolution-data-server-1.2.1-local-provider.patch,
  +evolution-data-server-1.2.1-r1.ebuild:
  Apply patch from upstream, fixing bug #87043 (Evolution mail folder pane
  doesn't update).

  18 May 2005; Jason Wever <weeve@gentoo.org>
  evolution-data-server-1.0.4.ebuild:
  Stable on SPARC.

  11 May 2005; Guy Martin <gmsoft@gentoo.org>
  evolution-data-server-1.0.4.ebuild:
  Stable on hppa.

  08 May 2005; Herbie Hopkins <herbs@gentoo.org>
  evolution-data-server-1.0.4.ebuild:
  Stable on amd64.

  28 Apr 2005; Bryan Østergaard <kloeri@gentoo.org>
  evolution-data-server-1.0.4.ebuild:
  Stable on alpha.

  27 Apr 2005; Bryan Østergaard <kloeri@gentoo.org>
  evolution-data-server-1.0.4.ebuild:
  Stable on ia64.

  25 Apr 2005; Mike Gardiner <obz@gentoo.org>
  evolution-data-server-1.0.4.ebuild:
  Keyworded ppc x86

  07 Apr 2005; Simon Stelling <blubb@gentoo.org>
  evolution-data-server-1.0.3.ebuild:
  stable on amd64

  02 Apr 2005; Stephen P. Becker <geoman@gentoo.org>
  evolution-data-server-1.0.3.ebuild:
  stable on mips

  23 Mar 2005; Seemant Kulleen <seemant@gentoo.org>
  evolution-data-server-1.2.0-r1.ebuild, evolution-data-server-1.2.1.ebuild:
  change dep from net-www/mozilla to www-client/mozilla

*evolution-data-server-1.2.1 (21 Mar 2005)

  21 Mar 2005; Mike Gardiner <obz@gentoo.org>
  +evolution-data-server-1.2.1.ebuild:
  New version

  20 Mar 2005; Bryan Østergaard <kloeri@gentoo.org>
  evolution-data-server-1.0.3.ebuild:
  Stable on alpha.

*evolution-data-server-1.2.0-r1 (19 Mar 2005)

  19 Mar 2005; Mike Gardiner <obz@gentoo.org>
  +evolution-data-server-1.2.0-r1.ebuild:
  The camel backends have been moved into evolution-data-server from
  evolution, so we need to handle the ssl detection properly. See bug
  #85086 for more information

  09 Mar 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  evolution-data-server-1.0.3.ebuild:
  Stable on sparc

*evolution-data-server-1.2.0 (09 Mar 2005)

  09 Mar 2005; Joe McCann <joem@gentoo.org>
  +files/evolution-data-server-1.2.0-gentoo_etc_services.patch,
  +evolution-data-server-1.2.0.ebuild:
  gnome-2.10 release

  09 Mar 2005; Mike Gardiner <obz@gentoo.org>
  evolution-data-server-1.0.3.ebuild:
  Keyworded x86 ppc

*evolution-data-server-1.0.4 (02 Mar 2005)

  02 Mar 2005; Mike Gardiner <obz@gentoo.org>
  +evolution-data-server-1.0.4.ebuild:
  New version

  04 Feb 2005; Stephen P. Becker <geoman@gentoo.org>
  evolution-data-server-1.0.2.ebuild:
  stable on mips

  20 Jan 2005; Aron Griffis <agriffis@gentoo.org>
  evolution-data-server-1.0.2.ebuild:
  stable on ia64

  08 Jan 2005; Tom Martin <slarti@gentoo.org>
  evolution-data-server-1.0.2.ebuild:
  Stable on amd64.

*evolution-data-server-1.0.3 (30 Dec 2004)

  30 Dec 2004; Mike Gardiner <obz@gentoo.org>
  +evolution-data-server-1.0.3.ebuild:
  New version

  23 Dec 2004; Guy Martin <gmsoft@gentoo.org>
  evolution-data-server-1.0.2.ebuild:
  Stable on hppa.

  17 Dec 2004; Markus Rothe <corsair@gentoo.org>
  evolution-data-server-1.0.2.ebuild:
  Stable on ppc64

  11 Dec 2004; Bryan Østergaard <kloeri@gentoo.org>
  evolution-data-server-1.0.2.ebuild:
  Stable on alpha.

  12 Nov 2004; Gustavo Zacarias <gustavoz@gentoo.org>
  evolution-data-server-1.0.2.ebuild:
  Stable on sparc

  11 Nov 2004; Mike Gardiner <obz@gentoo.org>
  evolution-data-server-1.0.2.ebuild:
  Keyworded ppc for GNOME 2.8

  11 Nov 2004; Markus Rothe <corsair@gentoo.org>
  evolution-data-server-1.0.2.ebuild:
  Marked ~ppc64

  17 Oct 2004; Alastair Tse <liquidx@gentoo.org>
  evolution-data-server-1.0.2.ebuild:
  fix for am64, take2

  17 Oct 2004; Alastair Tse <liquidx@gentoo.org>
  evolution-data-server-1.0.2.ebuild:
  add workaround for different mutex.h for amd64 (#67818)

*evolution-data-server-1.0.2 (16 Oct 2004)

  16 Oct 2004; Alastair Tse <liquidx@gentoo.org>
  -evolution-data-server-1.0.0.ebuild, +evolution-data-server-1.0.2.ebuild:
  version bump. add amd64 fix for libdb (#64911).

  04 Oct 2004; Guy Martin <gmsoft@gentoo.org>
  evolution-data-server-1.0.1.ebuild:
  Added ~hppa to KEYWORDS.

*evolution-data-server-1.0.1 (01 Oct 2004)

  01 Oct 2004; Alastair Tse <liquidx@gentoo.org>
  +evolution-data-server-1.0.1.ebuild:
  version bump

  30 Sep 2004; Stephen P. Becker <geoman@gentoo.org>
  evolution-data-server-1.0.0.ebuild:
  added ~mips keyword

  28 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org>
  evolution-data-server-1.0.0.ebuild:
  Keyworded ~sparc wrt #64135

  21 Sep 2004; Travis Tilley <lv@gentoo.org>
  evolution-data-server-1.0.0.ebuild:
  added ~amd64 keyword

*evolution-data-server-1.0.0 (17 Sep 2004)

  17 Sep 2004; foser <foser@gentoo.org> evolution-data-server-1.0.0.ebuild :
  Gnome 2.8 release

*evolution-data-server-0.0.99 (13 Sep 2004)

  13 Sep 2004; Brandon Hale <tseng@gentoo.org>
  +evolution-data-server-0.0.99.ebuild:
  Version bump, closes bug #62583

  29 Aug 2004; David Holm <dholm@gentoo.org>
  evolution-data-server-0.0.98.ebuild:
  Added to ~ppc.

*evolution-data-server-0.0.98 (24 Aug 2004)

  24 Aug 2004; Brandon Hale <tseng@gentoo.org>
  +evolution-data-server-0.0.98.ebuild:
  Version bump.

*evolution-data-server-0.0.97 (06 Aug 2004)

  06 Aug 2004; Alastair Tse <liquidx@gentoo.org>
  +evolution-data-server-0.0.97.ebuild:
  initial commit for evolution-data-server ebuild. based on ebuild submitted buy
  Joe McCann <joe@breakmygentoo.net> (#35456)